diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-01-09 23:25:51 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-01-09 23:25:51 +0100 |
commit | 9ae787093d95f7db42f05c8b7f7c2ca035e3364a (patch) | |
tree | f12bcc4cb28c9be35ce7e0de7031034c8a9ba589 | |
parent | 5e03cbd6883439616f7e35302f4089d86f2a7055 (diff) | |
download | Ishtar-9ae787093d95f7db42f05c8b7f7c2ca035e3364a.tar.bz2 Ishtar-9ae787093d95f7db42f05c8b7f7c2ca035e3364a.zip |
Treatment/treatment file sheet: add translation context
-rw-r--r-- | archaeological_finds/templates/ishtar/sheet_treatment.html | 4 | ||||
-rw-r--r-- | archaeological_finds/templates/ishtar/sheet_treatmentfile.html | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/archaeological_finds/templates/ishtar/sheet_treatment.html b/archaeological_finds/templates/ishtar/sheet_treatment.html index 1bf5209fb..9ec9db754 100644 --- a/archaeological_finds/templates/ishtar/sheet_treatment.html +++ b/archaeological_finds/templates/ishtar/sheet_treatment.html @@ -17,9 +17,9 @@ {% if item.external_id %} <p class="window-refs">{{ item.external_id }}</p>{% endif %} {% if item.end_date %} -<p class="window-refs">{% trans "Closed" %} ({{item.end_date}})</p> +<p class="window-refs">{% trans "Closed" context "Treatment" %} ({{item.end_date}})</p> {% else %} -<p class="window-refs">{% trans "Active" %}</p> +<p class="window-refs">{% trans "Active" context "Treatment" %}</p> {% endif %} <ul class='form-flex'> diff --git a/archaeological_finds/templates/ishtar/sheet_treatmentfile.html b/archaeological_finds/templates/ishtar/sheet_treatmentfile.html index 7159493c5..097f5defd 100644 --- a/archaeological_finds/templates/ishtar/sheet_treatmentfile.html +++ b/archaeological_finds/templates/ishtar/sheet_treatmentfile.html @@ -13,9 +13,9 @@ {% if item.external_id %} <p class="window-refs">{{ item.external_id }}</p>{% endif %} {% if item.end_date %} -<p class="window-refs">{% trans "Closed" %} ({{item.end_date}})</p> +<p class="window-refs">{% trans "Closed" context "Treatment request" %} ({{item.end_date}})</p> {% else %} -<p class="window-refs">{% trans "Active" %}</p> +<p class="window-refs">{% trans "Active" context "Treatment request" %}</p> {% endif %} <ul class='form-flex'> |