summaryrefslogtreecommitdiff
path: root/archaeological_operations/import_from_csv.py
diff options
context:
space:
mode:
authorValérie-Emma Leroux <valerie-emma.leroux@iggdrasil.net>2016-02-24 19:03:18 +0100
committerValérie-Emma Leroux <valerie-emma.leroux@iggdrasil.net>2016-02-24 19:03:18 +0100
commit5208d6dac15325c8c25d2082a0196c6de3496339 (patch)
tree80049a20180878b3420252db8d80370d48684cf3 /archaeological_operations/import_from_csv.py
parent517a4fd08d52b1e932a4c771f2517ef6578527be (diff)
downloadIshtar-5208d6dac15325c8c25d2082a0196c6de3496339.tar.bz2
Ishtar-5208d6dac15325c8c25d2082a0196c6de3496339.zip
Update translations
Diffstat (limited to 'archaeological_operations/import_from_csv.py')
-rw-r--r--archaeological_operations/import_from_csv.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/archaeological_operations/import_from_csv.py b/archaeological_operations/import_from_csv.py
index 714825ff4..45faae632 100644
--- a/archaeological_operations/import_from_csv.py
+++ b/archaeological_operations/import_from_csv.py
@@ -403,18 +403,18 @@ def import_operations_csv(values, col_defs=OPE_COLS, update=True, person=None,
errors = []
if error_ope:
- error = "Error while recording theses operations:\n"
+ error = "Error while recording these operations:\n"
for line_idx, args in error_ope:
error += "line: " + str(line_idx) + " args: " + str(args) + '\n'
errors.append(error)
if error_multis:
- error = "Error while recording theses multiples items attached to "\
+ error = "Error while recording these multiples items attached to "\
"operation:"
for line_idx, args in error_multis:
error += "line: " + str(line_idx) + " args: " + str(args) + '\n'
errors.append(error)
if error_reversed:
- error = "Error while recording theses items that depend to operation:"
+ error = "Error while recording these items that depend to operation:"
for line_idx, args in error_reversed:
error += "line: " + str(line_idx) + " args: " + str(args) + '\n'
errors.append(error)