From da5e046419e22bb4f0a70aeac7bf3cbb1ba2e3e1 Mon Sep 17 00:00:00 2001
From: Rachel Bawden <rachel.bawden@inria.fr@users.noreply.github.com>
Date: Fri, 29 Apr 2022 01:16:08 +0200
Subject: [PATCH 01/31] added first templates for DiaBLa dataset rbawden/DiaBLa

---
 promptsource/templates.py                     |   2 +-
 .../templates/rbawden/DiaBLa/templates.yaml   | 476 ++++++++++++++++++
 2 files changed, 477 insertions(+), 1 deletion(-)
 create mode 100644 promptsource/templates/rbawden/DiaBLa/templates.yaml

diff --git a/promptsource/templates.py b/promptsource/templates.py
index 3ece927fe..fe05949c2 100644
--- a/promptsource/templates.py
+++ b/promptsource/templates.py
@@ -26,7 +26,7 @@
 
 # These are users whose datasets should be included in the results returned by
 # filter_english_datasets (regardless of their metadata)
-INCLUDED_USERS = {"Zaid", "craffel"}
+INCLUDED_USERS = {"Zaid", "craffel", "rbawden"}
 
 
 def highlight(input):
diff --git a/promptsource/templates/rbawden/DiaBLa/templates.yaml b/promptsource/templates/rbawden/DiaBLa/templates.yaml
new file mode 100644
index 000000000..048675357
--- /dev/null
+++ b/promptsource/templates/rbawden/DiaBLa/templates.yaml
@@ -0,0 +1,476 @@
+dataset: rbawden/DiaBLa
+templates:
+  0e55b858-92b0-4e5b-923b-0d23518035e3: !Template
+    answer_choices: null
+    id: 0e55b858-92b0-4e5b-923b-0d23518035e3
+    jinja: '{% if utterance_meta.lang == "french" %}
+
+      {% if dialogue_history|length > 0 %}
+
+
+      "{% if utterance_meta.lang == dialogue_history[-1].utterance_meta.lang %}{{
+      dialogue_history[-1].orig }}{% set previous_ref = dialogue_history[-1].ref %}{%
+      else %}{{ dialogue_history[-1].ref }}{% set previous_ref = dialogue_history[-1].orig
+      %}{% endif %}" translates into English as: {{ previous_ref }}
+
+
+      "{{ orig }}" translates into English as: ||| {{ ref }}
+
+
+      {% endif %}
+
+      {% endif %}'
+    metadata: !TemplateMetadata
+      choices_in_prompt: false
+      metrics:
+      - BLEU
+      original_task: true
+    name: MT_1-context-analogy_lang-given_fr2en
+    reference: 1 previous context (same language) used for analogy, French-to-English
+  0e841022-eb3c-4f5a-b57a-0cbd3d628b68: !Template
+    answer_choices: null
+    id: 0e841022-eb3c-4f5a-b57a-0cbd3d628b68
+    jinja: "{% if utterance_meta.lang == \"english\" %}\n{% if dialogue_history|length\
+      \ > 0 %}\nGiven the following dialogue between person A and person B:\n\n{%\
+      \ set first_lang=dialogue_history[-5:][0].utterance_meta.lang %}{% for previous\
+      \ in dialogue_history[-5:] %}{% if previous.utterance_meta.lang == first_lang\
+      \ %}A{% else %}B{% endif %}: {{ previous.orig }}\n{% endfor %} \nTranslate the\
+      \ next utterance in the dialogue into {% if utterance_meta.lang == \"english\"\
+      \ %}French{% else %}English{% endif %}:\n{% if utterance_meta.lang == first_lang\
+      \ %}A{% else %}B{% endif %}: {{ orig }}\n\n||| {% if utterance_meta.lang ==\
+      \ first_lang %}A{% else %}B{% endif %}: {{ ref }}\n{% endif %}\n{% endif %}"
+    metadata: !TemplateMetadata
+      choices_in_prompt: false
+      metrics:
+      - BLEU
+      original_task: true
+    name: MT_5-context_orig-lang_en2fr
+    reference: Up to 5 previous sentences (original language), English-to-French
+  123f36ee-c808-4cf0-aa5c-ed1f03ac3b69: !Template
+    answer_choices: yes || no
+    id: 123f36ee-c808-4cf0-aa5c-ed1f03ac3b69
+    jinja: "{% if utterance_meta.lang == \"english\" %}\n{% set options = [\"word\
+      \ choice\", \"grammar\", \"style\", \"coherence\", \"meaning\"] %}\n{% set label\
+      \ = range(0,5)|random %}\n{% if options[label] in utterance_meta.eval_problems\
+      \ %}{% set reply=0 %}{% else %}{% set reply=1 %}{% endif %}\n{% if utterance_meta.eval_problems|length\
+      \ > 0 %}\n{% if dialogue_history|length > 0 %}\nGiven the following dialogue\
+      \ between person A and person B:\n\n{% set first_lang=dialogue_history[-5:][0].utterance_meta.lang\
+      \ %}{% for previous in dialogue_history[-5:] %}{% if previous.utterance_meta.lang\
+      \ == first_lang %}A{% else %}B{% endif %}: {% if previous.utterance_meta.lang\
+      \ != utterance_meta.lang %}{{ previous.orig }}{% else %}{{ previous.mt }}{%\
+      \ endif %}{% endfor %} \n{% if utterance_meta.lang == first_lang %}A{% else\
+      \ %}B{% endif %}: {{ mt }}\n\nDoes the last utterance contain a {{ options[label]\
+      \ }} problem, {{ \"yes\" }} or {{ \"no\" }}?\n\n||| {{ [\"yes\", \"no\" ][reply]\
+      \ }}\n{% endif %}\n{% endif %}\n{% endif %}"
+    metadata: !TemplateMetadata
+      choices_in_prompt: true
+      metrics:
+      - Accuracy
+      original_task: false
+    name: classify-errors_same-lang_fr
+    reference: Identify presence of notable errors, same language context (5), French
+      translation
+  1798dee9-8a9c-45ed-87d8-237ec7dbf5ca: !Template
+    answer_choices: null
+    id: 1798dee9-8a9c-45ed-87d8-237ec7dbf5ca
+    jinja: "{% if utterance_meta.lang == \"english\" %}\n{% if dialogue_history|length\
+      \ > 0 %}\nGiven the following dialogue between person A and person B:\n\n{%\
+      \ set first_lang=dialogue_history[-5:][0].utterance_meta.lang %}{% for previous\
+      \ in dialogue_history[-5:] %}{% if previous.utterance_meta.lang == first_lang\
+      \ %}A{% else %}B{% endif %}: {% if previous.utterance_meta.lang == utterance_meta.lang\
+      \ %}{{ previous.orig }}{% else %}{{ previous.ref }}{% endif %}\n{% endfor %}\
+      \ \nTranslate the next utterance in the dialogue into {% if utterance_meta.lang\
+      \ == \"english\" %}French{% else %}English{% endif %}:\n{% if utterance_meta.lang\
+      \ == first_lang %}A{% else %}B{% endif %}: {{ orig }}\n\n||| {% if utterance_meta.lang\
+      \ == first_lang %}A{% else %}B{% endif %}: {{ ref }}\n{% endif %}\n{% endif\
+      \ %}\n"
+    metadata: !TemplateMetadata
+      choices_in_prompt: false
+      metrics:
+      - BLEU
+      original_task: true
+    name: MT_5-context_same-lang-ref_en2fr
+    reference: Up to 5 previous sentences (same language, ref), English-to-French
+  2731216a-b994-48f9-aaf6-00c7038bbed5: !Template
+    answer_choices: null
+    id: 2731216a-b994-48f9-aaf6-00c7038bbed5
+    jinja: "{% if dialogue_history|length > 0 %}\nGiven the following dialogue between\
+      \ person A and person B:\n\n{% set first_lang=dialogue_history[-5:][0].utterance_meta.lang\
+      \ %}{% for previous in dialogue_history[-5:] %}{% if previous.utterance_meta.lang\
+      \ == first_lang %}A{% else %}B{% endif %}: {% if previous.utterance_meta.lang\
+      \ == utterance_meta.lang %}{{ previous.orig }}{% else %}{{ previous.ref }}{%\
+      \ endif %}\n{% endfor %} \nTranslate the next utterance in the dialogue into\
+      \ {% if utterance_meta.lang == \"english\" %}French{% else %}English{% endif\
+      \ %}:\n{% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}: {{\
+      \ orig }}\n\n||| {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif\
+      \ %}: {{ ref }}\n{% endif %}"
+    metadata: !TemplateMetadata
+      choices_in_prompt: false
+      metrics:
+      - BLEU
+      original_task: true
+    name: MT_5-context_same-lang-ref_both-directions
+    reference: Up to 5 previous sentences (same language, ref), both language directions
+  28ea04f4-338e-40cf-8730-4a794b5b64b2: !Template
+    answer_choices: yes || no
+    id: 28ea04f4-338e-40cf-8730-4a794b5b64b2
+    jinja: "{% set options = [\"word choice\", \"grammar\", \"style\", \"coherence\"\
+      , \"meaning\"] %}\n{% set label = range(0,5)|random %}\n{% if options[label]\
+      \ in utterance_meta.eval_problems %}{% set reply=0 %}{% else %}{% set reply=1\
+      \ %}{% endif %}\n{% if utterance_meta.eval_problems|length > 0 %}\n{% if dialogue_history|length\
+      \ > 0 %}\nGiven the following dialogue between person A and person B:\n\n{%\
+      \ set first_lang=dialogue_history[-5:][0].utterance_meta.lang %}{% for previous\
+      \ in dialogue_history[-5:] %}{% if previous.utterance_meta.lang == first_lang\
+      \ %}A{% else %}B{% endif %}: {% if previous.utterance_meta.lang != utterance_meta.lang\
+      \ %}{{ previous.orig }}{% else %}{{ previous.mt }}{% endif %}{% endfor %} \n\
+      {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}: {{ mt }}\n\
+      \nDoes the last utterance contain a {{ options[label] }} problem, {{ \"yes\"\
+      \ }} or {{ \"no\" }}?\n\n||| {{ [\"yes\", \"no\" ][reply] }}\n{% endif %}\n\
+      {% endif %}"
+    metadata: !TemplateMetadata
+      choices_in_prompt: true
+      metrics:
+      - Accuracy
+      original_task: false
+    name: classify-errors_same-lang_both-directions
+    reference: Identify presence of notable errors
+  2abc728f-e7fc-44fc-ba2a-ad78ae2469a9: !Template
+    answer_choices: null
+    id: 2abc728f-e7fc-44fc-ba2a-ad78ae2469a9
+    jinja: '{% if utterance_meta.lang == "english" %}
+
+      {% if dialogue_history|length > 0 %}
+
+
+      "{% if utterance_meta.lang == dialogue_history[-1].utterance_meta.lang %}{{
+      dialogue_history[-1].orig }}{% set previous_ref = dialogue_history[-1].ref %}{%
+      else %}{{ dialogue_history[-1].ref }}{% set previous_ref = dialogue_history[-1].orig
+      %}{% endif %}" translates as: {{ previous_ref }}
+
+
+      "{{ orig }}" translates as: ||| {{ ref }}
+
+
+      {% endif %}
+
+      {% endif %}'
+    metadata: !TemplateMetadata
+      choices_in_prompt: false
+      metrics:
+      - BLEU
+      original_task: true
+    name: MT_1-context-analogy_infer-lang_en2fr
+    reference: 1 previous context (same language) used for analogy, English-to-French
+  40c1ee21-3cf4-4efc-b902-d3aab0a79c40: !Template
+    answer_choices: null
+    id: 40c1ee21-3cf4-4efc-b902-d3aab0a79c40
+    jinja: '{% if utterance_meta.lang == "french" %}
+
+      {% if dialogue_history|length > 0 %}
+
+
+      "{% if utterance_meta.lang == dialogue_history[-1].utterance_meta.lang %}{{
+      dialogue_history[-1].orig }}{% set previous_ref = dialogue_history[-1].ref %}{%
+      else %}{{ dialogue_history[-1].ref }}{% set previous_ref = dialogue_history[-1].orig
+      %}{% endif %}" translates as: {{ previous_ref }}
+
+
+      "{{ orig }}" translates as: ||| {{ ref }}
+
+
+      {% endif %}
+
+      {% endif %}'
+    metadata: !TemplateMetadata
+      choices_in_prompt: false
+      metrics:
+      - BLEU
+      original_task: true
+    name: MT_1-context-analogy_infer-lang_fr2en
+    reference: 1 previous context (same language) used for analogy, French-to-English
+  6a01fbe6-d5ec-4ad9-a2ee-3c48ed095885: !Template
+    answer_choices: null
+    id: 6a01fbe6-d5ec-4ad9-a2ee-3c48ed095885
+    jinja: '{% if dialogue_history|length > 0 %}
+
+      {% if utterance_meta.lang == "french" %}{% set other_lang = "English" %}{% else
+      %}{% set other_lang = "French" %}{% endif %}
+
+      "{% if utterance_meta.lang == dialogue_history[-1].utterance_meta.lang %}{{
+      dialogue_history[-1].orig }}{% set previous_ref = dialogue_history[-1].ref %}{%
+      else %}{{ dialogue_history[-1].ref }}{% set previous_ref = dialogue_history[-1].orig
+      %}{% endif %}" translates into {{ other_lang }} as: {{ previous_ref }}
+
+
+      "{{ orig }}" translates into {{ other_lang }} as: ||| {{ ref }}
+
+
+      {% endif %}'
+    metadata: !TemplateMetadata
+      choices_in_prompt: false
+      metrics:
+      - BLEU
+      original_task: true
+    name: MT_1-context-analogy_lang-given_both-directions
+    reference: 1 previous context (same language) used for analogy, both directions
+  702f1f50-d6b0-4e65-a8e6-b449257f1e35: !Template
+    answer_choices: null
+    id: 702f1f50-d6b0-4e65-a8e6-b449257f1e35
+    jinja: "{% if utterance_meta.lang == \"french\" %}\n{% if dialogue_history|length\
+      \ > 0 %}\nGiven the following dialogue between person A and person B:\n\n{%\
+      \ set first_lang=dialogue_history[-5:][0].utterance_meta.lang %}{% for previous\
+      \ in dialogue_history[-5:] %}{% if previous.utterance_meta.lang == first_lang\
+      \ %}A{% else %}B{% endif %}: {% if previous.utterance_meta.lang == utterance_meta.lang\
+      \ %}{{ previous.orig }}{% else %}{{ previous.mt }}{% endif %}\n{% endfor %}\
+      \ \nTranslate the next utterance in the dialogue into {% if utterance_meta.lang\
+      \ == \"english\" %}French{% else %}English{% endif %}:\n{% if utterance_meta.lang\
+      \ == first_lang %}A{% else %}B{% endif %}: {{ orig }}\n\n||| {% if utterance_meta.lang\
+      \ == first_lang %}A{% else %}B{% endif %}: {{ ref }}\n{% endif %}\n{% endif\
+      \ %}\n"
+    metadata: !TemplateMetadata
+      choices_in_prompt: false
+      metrics:
+      - BLEU
+      original_task: true
+    name: MT_5-context_same-lang-ref_fr2en
+    reference: Up to 5 previous sentences (same language, ref), French-to-English
+  72759632-7764-4493-9a6e-8f1c8b337bde: !Template
+    answer_choices: null
+    id: 72759632-7764-4493-9a6e-8f1c8b337bde
+    jinja: "{% if utterance_meta.lang == \"french\" %}\n{% if dialogue_history|length\
+      \ > 0 %}\nGiven the following dialogue between person A and person B:\n\n{%\
+      \ set first_lang=dialogue_history[-5:][0].utterance_meta.lang %}{% for previous\
+      \ in dialogue_history[-5:] %}{% if previous.utterance_meta.lang == first_lang\
+      \ %}A{% else %}B{% endif %}: {% if previous.utterance_meta.lang == utterance_meta.lang\
+      \ %}{{ previous.orig }}{% else %}{{ previous.mt }}{% endif %}\n{% endfor %}\
+      \ \nTranslate the next utterance in the dialogue into {% if utterance_meta.lang\
+      \ == \"english\" %}French{% else %}English{% endif %}:\n{% if utterance_meta.lang\
+      \ == first_lang %}A{% else %}B{% endif %}: {{ orig }}\n\n||| {% if utterance_meta.lang\
+      \ == first_lang %}A{% else %}B{% endif %}: {{ ref }}\n{% endif %}\n{% endif\
+      \ %}\n"
+    metadata: !TemplateMetadata
+      choices_in_prompt: false
+      metrics:
+      - BLEU
+      original_task: true
+    name: MT_5-context_same-lang-mt_fr2en
+    reference: Up to 5 previous sentences (same language, MT), French-to-English
+  72c1cbbd-956f-4721-9cee-fd50148cf77d: !Template
+    answer_choices: null
+    id: 72c1cbbd-956f-4721-9cee-fd50148cf77d
+    jinja: '{% if utterance_meta.lang == "french"  %}
+
+      Translate the following into English: "{{ orig }}" ||| {{ ref }}
+
+      {% endif %}'
+    metadata: !TemplateMetadata
+      choices_in_prompt: false
+      metrics:
+      - BLEU
+      original_task: true
+    name: MT_sent_fr2en
+    reference: Sentence-level, French-to-English
+  836c5096-2fd6-478c-89e8-39a050347d28: !Template
+    answer_choices: null
+    id: 836c5096-2fd6-478c-89e8-39a050347d28
+    jinja: "{% if utterance_meta.lang == \"french\" %}\n{% if dialogue_history|length\
+      \ > 0 %}\nGiven the following dialogue between person A and person B:\n\n{%\
+      \ set first_lang=dialogue_history[-5:][0].utterance_meta.lang %}{% for previous\
+      \ in dialogue_history[-5:] %}{% if previous.utterance_meta.lang == first_lang\
+      \ %}A{% else %}B{% endif %}: {{ previous.orig }}\n{% endfor %} \nTranslate the\
+      \ next utterance in the dialogue into {% if utterance_meta.lang == \"english\"\
+      \ %}French{% else %}English{% endif %}:\n{% if utterance_meta.lang == first_lang\
+      \ %}A{% else %}B{% endif %}: {{ orig }}\n\n||| {% if utterance_meta.lang ==\
+      \ first_lang %}A{% else %}B{% endif %}: {{ ref }}\n{% endif %}\n{% endif %}"
+    metadata: !TemplateMetadata
+      choices_in_prompt: false
+      metrics:
+      - BLEU
+      original_task: false
+    name: MT_5-context_orig-lang_fr2en
+    reference: Up to 5 previous sentences (original language), French-to-English
+  842dc41a-8af0-4dca-8b55-a87026bfac31: !Template
+    answer_choices: null
+    id: 842dc41a-8af0-4dca-8b55-a87026bfac31
+    jinja: 'Translate the following into {% if utterance_meta.lang == "english"  %}French{%
+      else %}English{% endif %}: "{{ orig }}"? ||| {{ ref }}'
+    metadata: !TemplateMetadata
+      choices_in_prompt: false
+      metrics:
+      - BLEU
+      original_task: true
+    name: MT_sent_both-directions
+    reference: Sentence-level, both directions
+  93f5256d-bd93-4056-b466-152b55860d02: !Template
+    answer_choices: null
+    id: 93f5256d-bd93-4056-b466-152b55860d02
+    jinja: "{% if dialogue_history|length > 0 %}\nGiven the following dialogue between\
+      \ person A and person B:\n\n{% set first_lang=dialogue_history[-5:][0].utterance_meta.lang\
+      \ %}{% for previous in dialogue_history[-5:] %}{% if previous.utterance_meta.lang\
+      \ == first_lang %}A{% else %}B{% endif %}: {{ previous.orig }}\n{% endfor %}\
+      \ \nTranslate the next utterance in the dialogue into {% if utterance_meta.lang\
+      \ == \"english\" %}French{% else %}English{% endif %}:\n{% if utterance_meta.lang\
+      \ == first_lang %}A{% else %}B{% endif %}: {{ orig }}\n\n||| {% if utterance_meta.lang\
+      \ == first_lang %}A{% else %}B{% endif %}: {{ ref }}\n{% endif %}"
+    metadata: !TemplateMetadata
+      choices_in_prompt: false
+      metrics:
+      - BLEU
+      original_task: true
+    name: MT_5-context_orig-lang_both-directions
+    reference: Up to 5 previous sentences (original language), both language directions
+  96da9c0e-e606-4283-8494-7129c75b4d02: !Template
+    answer_choices: null
+    id: 96da9c0e-e606-4283-8494-7129c75b4d02
+    jinja: '{% if utterance_meta.lang == "english"  %}
+
+      Translate the following into French: "{{ orig }}" ||| {{ ref }}
+
+      {% endif %}'
+    metadata: !TemplateMetadata
+      choices_in_prompt: false
+      metrics:
+      - BLEU
+      original_task: true
+    name: MT_sent_en2fr
+    reference: Sentence-level, English-to-French
+  97d56019-a7df-4733-aed0-332c222e9079: !Template
+    answer_choices: null
+    id: 97d56019-a7df-4733-aed0-332c222e9079
+    jinja: '{% if utterance_meta.lang == "english" %}
+
+      {% if dialogue_history|length > 0 %}
+
+
+      "{% if utterance_meta.lang == dialogue_history[-1].utterance_meta.lang %}{{
+      dialogue_history[-1].orig }}{% set previous_ref = dialogue_history[-1].ref %}{%
+      else %}{{ dialogue_history[-1].ref }}{% set previous_ref = dialogue_history[-1].orig
+      %}{% endif %}" translates into French as: {{ previous_ref }}
+
+
+      "{{ orig }}" translates into French as: ||| {{ ref }}
+
+
+      {% endif %}
+
+      {% endif %}'
+    metadata: !TemplateMetadata
+      choices_in_prompt: false
+      metrics:
+      - BLEU
+      original_task: true
+    name: MT_1-context-analogy_lang-given_en2fr
+    reference: 1 previous context (same language) used for analogy, English-to-French
+  ac4c63da-32d2-40ac-aa7a-632e8ba42b4a: !Template
+    answer_choices: A ||| B
+    id: ac4c63da-32d2-40ac-aa7a-632e8ba42b4a
+    jinja: '{% if ref != mt %}
+
+      Which of the following translations of "{{ orig }}" is produced automatically?
+
+      {% set label = range(0,2)|random %}
+
+      {{ "A" }}) {% if label == 0 %}{{ ref }}{% else %}{{ mt }}{% endif %}
+
+      {{ "B" }}) {% if label == 0 %}{{ mt }}{% else %}{{ ref }}{% endif %}
+
+      ||| {{ ["A", "B"][label] }}
+
+      {% endif %}'
+    metadata: !TemplateMetadata
+      choices_in_prompt: true
+      metrics:
+      - Accuracy
+      original_task: false
+    name: discriminate-mt-ref
+    reference: Identify-MT-output
+  b61c81ec-29eb-47f8-a1c6-561264ac04f3: !Template
+    answer_choices: null
+    id: b61c81ec-29eb-47f8-a1c6-561264ac04f3
+    jinja: "{% if dialogue_history|length > 0 %}\nGiven the following dialogue between\
+      \ person A and person B:\n\n{% set first_lang=dialogue_history[-5:][0].utterance_meta.lang\
+      \ %}{% for previous in dialogue_history[-5:] %}{% if previous.utterance_meta.lang\
+      \ == first_lang %}A{% else %}B{% endif %}: {% if previous.utterance_meta.lang\
+      \ == utterance_meta.lang %}{{ previous.orig }}{% else %}{{ previous.mt }}{%\
+      \ endif %}\n{% endfor %} \nTranslate the next utterance in the dialogue into\
+      \ {% if utterance_meta.lang == \"english\" %}French{% else %}English{% endif\
+      \ %}:\n{% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}: {{\
+      \ orig }}\n\n||| {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif\
+      \ %}: {{ ref }}\n{% endif %}"
+    metadata: !TemplateMetadata
+      choices_in_prompt: false
+      metrics:
+      - BLEU
+      original_task: true
+    name: MT_5-context_same-lang-mt_both-directions
+    reference: Up to 5 previous sentences (same language, MT), both language directions
+  d068ba77-ce75-4de3-a170-ca0a7cd3f8d1: !Template
+    answer_choices: null
+    id: d068ba77-ce75-4de3-a170-ca0a7cd3f8d1
+    jinja: "{% if utterance_meta.lang == \"english\" %}\n{% if dialogue_history|length\
+      \ > 0 %}\nGiven the following dialogue between person A and person B:\n\n{%\
+      \ set first_lang=dialogue_history[-5:][0].utterance_meta.lang %}{% for previous\
+      \ in dialogue_history[-5:] %}{% if previous.utterance_meta.lang == first_lang\
+      \ %}A{% else %}B{% endif %}: {% if previous.utterance_meta.lang == utterance_meta.lang\
+      \ %}{{ previous.orig }}{% else %}{{ previous.ref }}{% endif %}\n{% endfor %}\
+      \ \nTranslate the next utterance in the dialogue into {% if utterance_meta.lang\
+      \ == \"english\" %}French{% else %}English{% endif %}:\n{% if utterance_meta.lang\
+      \ == first_lang %}A{% else %}B{% endif %}: {{ orig }}\n\n||| {% if utterance_meta.lang\
+      \ == first_lang %}A{% else %}B{% endif %}: {{ ref }}\n{% endif %}\n{% endif\
+      \ %}\n"
+    metadata: !TemplateMetadata
+      choices_in_prompt: false
+      metrics:
+      - BLEU
+      original_task: true
+    name: MT_5-context_same-lang-mt_en2fr
+    reference: Up to 5 previous sentences (same language, MT), English-to-French
+  dddd6f35-5a01-431b-b59b-e9a8e76377aa: !Template
+    answer_choices: yes || no
+    id: dddd6f35-5a01-431b-b59b-e9a8e76377aa
+    jinja: "{% if utterance_meta.lang == \"french\" %}\n{% set options = [\"word choice\"\
+      , \"grammar\", \"style\", \"coherence\", \"meaning\"] %}\n{% set label = range(0,5)|random\
+      \ %}\n{% if options[label] in utterance_meta.eval_problems %}{% set reply=0\
+      \ %}{% else %}{% set reply=1 %}{% endif %}\n{% if utterance_meta.eval_problems|length\
+      \ > 0 %}\n{% if dialogue_history|length > 0 %}\nGiven the following dialogue\
+      \ between person A and person B:\n\n{% set first_lang=dialogue_history[-5:][0].utterance_meta.lang\
+      \ %}{% for previous in dialogue_history[-5:] %}{% if previous.utterance_meta.lang\
+      \ == first_lang %}A{% else %}B{% endif %}: {% if previous.utterance_meta.lang\
+      \ != utterance_meta.lang %}{{ previous.orig }}{% else %}{{ previous.mt }}{%\
+      \ endif %}{% endfor %} \n{% if utterance_meta.lang == first_lang %}A{% else\
+      \ %}B{% endif %}: {{ mt }}\n\nDoes the last utterance contain a {{ options[label]\
+      \ }} problem, {{ \"yes\" }} or {{ \"no\" }}?\n\n||| {{ [\"yes\", \"no\" ][reply]\
+      \ }}\n{% endif %}\n{% endif %}\n{% endif %}"
+    metadata: !TemplateMetadata
+      choices_in_prompt: true
+      metrics:
+      - Accuracy
+      original_task: false
+    name: classify-errors_same-lang_en
+    reference: Identify presence of notable errors, same language context (5), English
+      translation
+  eea8f47e-9bf5-4423-980b-58a9635c1f49: !Template
+    answer_choices: 1 previous context (same language) used for analogy, both directions
+    id: eea8f47e-9bf5-4423-980b-58a9635c1f49
+    jinja: '{% if dialogue_history|length > 0 %}
+
+      {% if utterance_meta.lang == "french" %}{% set other_lang = "English" %}{% else
+      %}{% set other_lang = "French" %}{% endif %}
+
+      "{% if utterance_meta.lang == dialogue_history[-1].utterance_meta.lang %}{{
+      dialogue_history[-1].orig }}{% set previous_ref = dialogue_history[-1].ref %}{%
+      else %}{{ dialogue_history[-1].ref }}{% set previous_ref = dialogue_history[-1].orig
+      %}{% endif %}" translates as: {{ previous_ref }}
+
+
+      "{{ orig }}" translates as: ||| {{ ref }}
+
+
+      {% endif %}'
+    metadata: !TemplateMetadata
+      choices_in_prompt: false
+      metrics:
+      - BLEU
+      original_task: true
+    name: MT_1-context-analogy_infer-lang_both-directions
+    reference: MT task, 1 previous context (orig language)

From 77ba6e9f814b5bb54c1016171597627c2b8e845a Mon Sep 17 00:00:00 2001
From: Rachel Bawden <rachel.bawden@inria.fr@users.noreply.github.com>
Date: Fri, 29 Apr 2022 01:33:16 +0200
Subject: [PATCH 02/31] declared previous_ref at beginning of templates

---
 .../templates/rbawden/DiaBLa/templates.yaml   | 25 +++++++++++--------
 1 file changed, 15 insertions(+), 10 deletions(-)

diff --git a/promptsource/templates/rbawden/DiaBLa/templates.yaml b/promptsource/templates/rbawden/DiaBLa/templates.yaml
index 048675357..bd7e905eb 100644
--- a/promptsource/templates/rbawden/DiaBLa/templates.yaml
+++ b/promptsource/templates/rbawden/DiaBLa/templates.yaml
@@ -3,7 +3,9 @@ templates:
   0e55b858-92b0-4e5b-923b-0d23518035e3: !Template
     answer_choices: null
     id: 0e55b858-92b0-4e5b-923b-0d23518035e3
-    jinja: '{% if utterance_meta.lang == "french" %}
+    jinja: '{% set previous_ref = "" %}
+
+      {% if utterance_meta.lang == "french" %}
 
       {% if dialogue_history|length > 0 %}
 
@@ -137,11 +139,10 @@ templates:
   2abc728f-e7fc-44fc-ba2a-ad78ae2469a9: !Template
     answer_choices: null
     id: 2abc728f-e7fc-44fc-ba2a-ad78ae2469a9
-    jinja: '{% if utterance_meta.lang == "english" %}
+    jinja: '{% set previous_ref = "" %}{% if utterance_meta.lang == "english" %}
 
       {% if dialogue_history|length > 0 %}
 
-
       "{% if utterance_meta.lang == dialogue_history[-1].utterance_meta.lang %}{{
       dialogue_history[-1].orig }}{% set previous_ref = dialogue_history[-1].ref %}{%
       else %}{{ dialogue_history[-1].ref }}{% set previous_ref = dialogue_history[-1].orig
@@ -164,11 +165,10 @@ templates:
   40c1ee21-3cf4-4efc-b902-d3aab0a79c40: !Template
     answer_choices: null
     id: 40c1ee21-3cf4-4efc-b902-d3aab0a79c40
-    jinja: '{% if utterance_meta.lang == "french" %}
+    jinja: '{% set previous_ref = "" %}{% if utterance_meta.lang == "french" %}
 
       {% if dialogue_history|length > 0 %}
 
-
       "{% if utterance_meta.lang == dialogue_history[-1].utterance_meta.lang %}{{
       dialogue_history[-1].orig }}{% set previous_ref = dialogue_history[-1].ref %}{%
       else %}{{ dialogue_history[-1].ref }}{% set previous_ref = dialogue_history[-1].orig
@@ -191,10 +191,11 @@ templates:
   6a01fbe6-d5ec-4ad9-a2ee-3c48ed095885: !Template
     answer_choices: null
     id: 6a01fbe6-d5ec-4ad9-a2ee-3c48ed095885
-    jinja: '{% if dialogue_history|length > 0 %}
+    jinja: '{% set previous_ref = "" %}
 
-      {% if utterance_meta.lang == "french" %}{% set other_lang = "English" %}{% else
-      %}{% set other_lang = "French" %}{% endif %}
+      {% if dialogue_history|length > 0 %}{% if utterance_meta.lang == "french" %}{%
+      set other_lang = "English" %}{% else %}{% set other_lang = "French" %}{% endif
+      %}
 
       "{% if utterance_meta.lang == dialogue_history[-1].utterance_meta.lang %}{{
       dialogue_history[-1].orig }}{% set previous_ref = dialogue_history[-1].ref %}{%
@@ -337,7 +338,9 @@ templates:
   97d56019-a7df-4733-aed0-332c222e9079: !Template
     answer_choices: null
     id: 97d56019-a7df-4733-aed0-332c222e9079
-    jinja: '{% if utterance_meta.lang == "english" %}
+    jinja: '{% set previous_ref = "" %}
+
+      {% if utterance_meta.lang == "english" %}
 
       {% if dialogue_history|length > 0 %}
 
@@ -452,7 +455,9 @@ templates:
   eea8f47e-9bf5-4423-980b-58a9635c1f49: !Template
     answer_choices: 1 previous context (same language) used for analogy, both directions
     id: eea8f47e-9bf5-4423-980b-58a9635c1f49
-    jinja: '{% if dialogue_history|length > 0 %}
+    jinja: '{% set previous_ref = "" %}
+
+      {% if dialogue_history|length > 0 %}
 
       {% if utterance_meta.lang == "french" %}{% set other_lang = "English" %}{% else
       %}{% set other_lang = "French" %}{% endif %}

From fa96aa0a5d41abc6306babffd62643d4569d1392 Mon Sep 17 00:00:00 2001
From: Rachel Bawden <rachel.bawden@inria.fr@users.noreply.github.com>
Date: Fri, 29 Apr 2022 01:45:08 +0200
Subject: [PATCH 03/31] declared more variables at beginning of templates

---
 .../templates/rbawden/DiaBLa/templates.yaml   | 26 +++++++++----------
 1 file changed, 13 insertions(+), 13 deletions(-)

diff --git a/promptsource/templates/rbawden/DiaBLa/templates.yaml b/promptsource/templates/rbawden/DiaBLa/templates.yaml
index bd7e905eb..c9869b2a8 100644
--- a/promptsource/templates/rbawden/DiaBLa/templates.yaml
+++ b/promptsource/templates/rbawden/DiaBLa/templates.yaml
@@ -51,10 +51,10 @@ templates:
   123f36ee-c808-4cf0-aa5c-ed1f03ac3b69: !Template
     answer_choices: yes || no
     id: 123f36ee-c808-4cf0-aa5c-ed1f03ac3b69
-    jinja: "{% if utterance_meta.lang == \"english\" %}\n{% set options = [\"word\
-      \ choice\", \"grammar\", \"style\", \"coherence\", \"meaning\"] %}\n{% set label\
-      \ = range(0,5)|random %}\n{% if options[label] in utterance_meta.eval_problems\
-      \ %}{% set reply=0 %}{% else %}{% set reply=1 %}{% endif %}\n{% if utterance_meta.eval_problems|length\
+    jinja: "{% set options = [\"word choice\", \"grammar\", \"style\", \"coherence\"\
+      , \"meaning\"] %}\n{% set label = range(0,5)|random %}\n{% if utterance_meta.lang\
+      \ == \"english\" %}\n{% if options[label] in utterance_meta.eval_problems %}{%\
+      \ set reply=0 %}{% else %}{% set reply=1 %}{% endif %}\n{% if utterance_meta.eval_problems|length\
       \ > 0 %}\n{% if dialogue_history|length > 0 %}\nGiven the following dialogue\
       \ between person A and person B:\n\n{% set first_lang=dialogue_history[-5:][0].utterance_meta.lang\
       \ %}{% for previous in dialogue_history[-5:] %}{% if previous.utterance_meta.lang\
@@ -191,7 +191,7 @@ templates:
   6a01fbe6-d5ec-4ad9-a2ee-3c48ed095885: !Template
     answer_choices: null
     id: 6a01fbe6-d5ec-4ad9-a2ee-3c48ed095885
-    jinja: '{% set previous_ref = "" %}
+    jinja: '{% set previous_ref = "" %}{% set other_lang = "" %}
 
       {% if dialogue_history|length > 0 %}{% if utterance_meta.lang == "french" %}{%
       set other_lang = "English" %}{% else %}{% set other_lang = "French" %}{% endif
@@ -367,11 +367,11 @@ templates:
   ac4c63da-32d2-40ac-aa7a-632e8ba42b4a: !Template
     answer_choices: A ||| B
     id: ac4c63da-32d2-40ac-aa7a-632e8ba42b4a
-    jinja: '{% if ref != mt %}
+    jinja: '{% set label = range(0,2)|random %}
 
-      Which of the following translations of "{{ orig }}" is produced automatically?
+      {% if ref != mt %}
 
-      {% set label = range(0,2)|random %}
+      Which of the following translations of "{{ orig }}" is produced automatically?
 
       {{ "A" }}) {% if label == 0 %}{{ ref }}{% else %}{{ mt }}{% endif %}
 
@@ -431,10 +431,10 @@ templates:
   dddd6f35-5a01-431b-b59b-e9a8e76377aa: !Template
     answer_choices: yes || no
     id: dddd6f35-5a01-431b-b59b-e9a8e76377aa
-    jinja: "{% if utterance_meta.lang == \"french\" %}\n{% set options = [\"word choice\"\
-      , \"grammar\", \"style\", \"coherence\", \"meaning\"] %}\n{% set label = range(0,5)|random\
-      \ %}\n{% if options[label] in utterance_meta.eval_problems %}{% set reply=0\
-      \ %}{% else %}{% set reply=1 %}{% endif %}\n{% if utterance_meta.eval_problems|length\
+    jinja: "{% set options = [\"word choice\", \"grammar\", \"style\", \"coherence\"\
+      , \"meaning\"] %}\n{% set label = range(0,5)|random %}\n{% if utterance_meta.lang\
+      \ == \"french\" %}\n{% if options[label] in utterance_meta.eval_problems %}{%\
+      \ set reply=0 %}{% else %}{% set reply=1 %}{% endif %}\n{% if utterance_meta.eval_problems|length\
       \ > 0 %}\n{% if dialogue_history|length > 0 %}\nGiven the following dialogue\
       \ between person A and person B:\n\n{% set first_lang=dialogue_history[-5:][0].utterance_meta.lang\
       \ %}{% for previous in dialogue_history[-5:] %}{% if previous.utterance_meta.lang\
@@ -455,7 +455,7 @@ templates:
   eea8f47e-9bf5-4423-980b-58a9635c1f49: !Template
     answer_choices: 1 previous context (same language) used for analogy, both directions
     id: eea8f47e-9bf5-4423-980b-58a9635c1f49
-    jinja: '{% set previous_ref = "" %}
+    jinja: '{% set previous_ref = "" %}{% set other_lang = "" %}
 
       {% if dialogue_history|length > 0 %}
 

From 3a19cfb1df609292bfd1698432ca943e2ab53118 Mon Sep 17 00:00:00 2001
From: Rachel Bawden <rachel.bawden@inria.fr@users.noreply.github.com>
Date: Fri, 29 Apr 2022 01:54:55 +0200
Subject: [PATCH 04/31] declared more variables at beginning of templates

---
 .../templates/rbawden/DiaBLa/templates.yaml   | 152 +++++++++---------
 1 file changed, 77 insertions(+), 75 deletions(-)

diff --git a/promptsource/templates/rbawden/DiaBLa/templates.yaml b/promptsource/templates/rbawden/DiaBLa/templates.yaml
index c9869b2a8..6f5afac93 100644
--- a/promptsource/templates/rbawden/DiaBLa/templates.yaml
+++ b/promptsource/templates/rbawden/DiaBLa/templates.yaml
@@ -32,15 +32,16 @@ templates:
   0e841022-eb3c-4f5a-b57a-0cbd3d628b68: !Template
     answer_choices: null
     id: 0e841022-eb3c-4f5a-b57a-0cbd3d628b68
-    jinja: "{% if utterance_meta.lang == \"english\" %}\n{% if dialogue_history|length\
-      \ > 0 %}\nGiven the following dialogue between person A and person B:\n\n{%\
-      \ set first_lang=dialogue_history[-5:][0].utterance_meta.lang %}{% for previous\
-      \ in dialogue_history[-5:] %}{% if previous.utterance_meta.lang == first_lang\
-      \ %}A{% else %}B{% endif %}: {{ previous.orig }}\n{% endfor %} \nTranslate the\
-      \ next utterance in the dialogue into {% if utterance_meta.lang == \"english\"\
-      \ %}French{% else %}English{% endif %}:\n{% if utterance_meta.lang == first_lang\
-      \ %}A{% else %}B{% endif %}: {{ orig }}\n\n||| {% if utterance_meta.lang ==\
-      \ first_lang %}A{% else %}B{% endif %}: {{ ref }}\n{% endif %}\n{% endif %}"
+    jinja: "{% set first_lang=\"\" %}\n{% if utterance_meta.lang == \"english\" %}\n\
+      {% if dialogue_history|length > 0 %}\nGiven the following dialogue between person\
+      \ A and person B:\n\n{% set first_lang=dialogue_history[-5:][0].utterance_meta.lang\
+      \ %}{% for previous in dialogue_history[-5:] %}{% if previous.utterance_meta.lang\
+      \ == first_lang %}A{% else %}B{% endif %}: {{ previous.orig }}\n{% endfor %}\
+      \ \nTranslate the next utterance in the dialogue into {% if utterance_meta.lang\
+      \ == \"english\" %}French{% else %}English{% endif %}:\n{% if utterance_meta.lang\
+      \ == first_lang %}A{% else %}B{% endif %}: {{ orig }}\n\n||| {% if utterance_meta.lang\
+      \ == first_lang %}A{% else %}B{% endif %}: {{ ref }}\n{% endif %}\n{% endif\
+      \ %}"
     metadata: !TemplateMetadata
       choices_in_prompt: false
       metrics:
@@ -52,9 +53,9 @@ templates:
     answer_choices: yes || no
     id: 123f36ee-c808-4cf0-aa5c-ed1f03ac3b69
     jinja: "{% set options = [\"word choice\", \"grammar\", \"style\", \"coherence\"\
-      , \"meaning\"] %}\n{% set label = range(0,5)|random %}\n{% if utterance_meta.lang\
-      \ == \"english\" %}\n{% if options[label] in utterance_meta.eval_problems %}{%\
-      \ set reply=0 %}{% else %}{% set reply=1 %}{% endif %}\n{% if utterance_meta.eval_problems|length\
+      , \"meaning\"] %}\n{% set label = range(0,5)|random %}\n{% set reply=0 %}\n\
+      {% if utterance_meta.lang == \"english\" %}\n{% if options[label] in utterance_meta.eval_problems\
+      \ %}{% set reply=0 %}{% else %}{% set reply=1 %}{% endif %}\n{% if utterance_meta.eval_problems|length\
       \ > 0 %}\n{% if dialogue_history|length > 0 %}\nGiven the following dialogue\
       \ between person A and person B:\n\n{% set first_lang=dialogue_history[-5:][0].utterance_meta.lang\
       \ %}{% for previous in dialogue_history[-5:] %}{% if previous.utterance_meta.lang\
@@ -96,8 +97,8 @@ templates:
   2731216a-b994-48f9-aaf6-00c7038bbed5: !Template
     answer_choices: null
     id: 2731216a-b994-48f9-aaf6-00c7038bbed5
-    jinja: "{% if dialogue_history|length > 0 %}\nGiven the following dialogue between\
-      \ person A and person B:\n\n{% set first_lang=dialogue_history[-5:][0].utterance_meta.lang\
+    jinja: "{% set first_lang=\"\" %}\n{% if dialogue_history|length > 0 %}\nGiven\
+      \ the following dialogue between person A and person B:\n\n{% set first_lang=dialogue_history[-5:][0].utterance_meta.lang\
       \ %}{% for previous in dialogue_history[-5:] %}{% if previous.utterance_meta.lang\
       \ == first_lang %}A{% else %}B{% endif %}: {% if previous.utterance_meta.lang\
       \ == utterance_meta.lang %}{{ previous.orig }}{% else %}{{ previous.ref }}{%\
@@ -117,18 +118,18 @@ templates:
     answer_choices: yes || no
     id: 28ea04f4-338e-40cf-8730-4a794b5b64b2
     jinja: "{% set options = [\"word choice\", \"grammar\", \"style\", \"coherence\"\
-      , \"meaning\"] %}\n{% set label = range(0,5)|random %}\n{% if options[label]\
-      \ in utterance_meta.eval_problems %}{% set reply=0 %}{% else %}{% set reply=1\
-      \ %}{% endif %}\n{% if utterance_meta.eval_problems|length > 0 %}\n{% if dialogue_history|length\
-      \ > 0 %}\nGiven the following dialogue between person A and person B:\n\n{%\
-      \ set first_lang=dialogue_history[-5:][0].utterance_meta.lang %}{% for previous\
-      \ in dialogue_history[-5:] %}{% if previous.utterance_meta.lang == first_lang\
-      \ %}A{% else %}B{% endif %}: {% if previous.utterance_meta.lang != utterance_meta.lang\
-      \ %}{{ previous.orig }}{% else %}{{ previous.mt }}{% endif %}{% endfor %} \n\
-      {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}: {{ mt }}\n\
-      \nDoes the last utterance contain a {{ options[label] }} problem, {{ \"yes\"\
-      \ }} or {{ \"no\" }}?\n\n||| {{ [\"yes\", \"no\" ][reply] }}\n{% endif %}\n\
-      {% endif %}"
+      , \"meaning\"] %}\n{% set label = range(0,5)|random %}\n{% set reply=0 %}\n\
+      {% if options[label] in utterance_meta.eval_problems %}{% set reply=0 %}{% else\
+      \ %}{% set reply=1 %}{% endif %}\n{% if utterance_meta.eval_problems|length\
+      \ > 0 %}\n{% if dialogue_history|length > 0 %}\nGiven the following dialogue\
+      \ between person A and person B:\n\n{% set first_lang=dialogue_history[-5:][0].utterance_meta.lang\
+      \ %}{% for previous in dialogue_history[-5:] %}{% if previous.utterance_meta.lang\
+      \ == first_lang %}A{% else %}B{% endif %}: {% if previous.utterance_meta.lang\
+      \ != utterance_meta.lang %}{{ previous.orig }}{% else %}{{ previous.mt }}{%\
+      \ endif %}{% endfor %} \n{% if utterance_meta.lang == first_lang %}A{% else\
+      \ %}B{% endif %}: {{ mt }}\n\nDoes the last utterance contain a {{ options[label]\
+      \ }} problem, {{ \"yes\" }} or {{ \"no\" }}?\n\n||| {{ [\"yes\", \"no\" ][reply]\
+      \ }}\n{% endif %}\n{% endif %}"
     metadata: !TemplateMetadata
       choices_in_prompt: true
       metrics:
@@ -217,17 +218,17 @@ templates:
   702f1f50-d6b0-4e65-a8e6-b449257f1e35: !Template
     answer_choices: null
     id: 702f1f50-d6b0-4e65-a8e6-b449257f1e35
-    jinja: "{% if utterance_meta.lang == \"french\" %}\n{% if dialogue_history|length\
-      \ > 0 %}\nGiven the following dialogue between person A and person B:\n\n{%\
-      \ set first_lang=dialogue_history[-5:][0].utterance_meta.lang %}{% for previous\
-      \ in dialogue_history[-5:] %}{% if previous.utterance_meta.lang == first_lang\
-      \ %}A{% else %}B{% endif %}: {% if previous.utterance_meta.lang == utterance_meta.lang\
-      \ %}{{ previous.orig }}{% else %}{{ previous.mt }}{% endif %}\n{% endfor %}\
-      \ \nTranslate the next utterance in the dialogue into {% if utterance_meta.lang\
-      \ == \"english\" %}French{% else %}English{% endif %}:\n{% if utterance_meta.lang\
-      \ == first_lang %}A{% else %}B{% endif %}: {{ orig }}\n\n||| {% if utterance_meta.lang\
-      \ == first_lang %}A{% else %}B{% endif %}: {{ ref }}\n{% endif %}\n{% endif\
-      \ %}\n"
+    jinja: "{% set first_lang=\"\" %}\n{% if utterance_meta.lang == \"french\" %}\n\
+      {% if dialogue_history|length > 0 %}\nGiven the following dialogue between person\
+      \ A and person B:\n\n{% set first_lang=dialogue_history[-5:][0].utterance_meta.lang\
+      \ %}{% for previous in dialogue_history[-5:] %}{% if previous.utterance_meta.lang\
+      \ == first_lang %}A{% else %}B{% endif %}: {% if previous.utterance_meta.lang\
+      \ == utterance_meta.lang %}{{ previous.orig }}{% else %}{{ previous.mt }}{%\
+      \ endif %}\n{% endfor %} \nTranslate the next utterance in the dialogue into\
+      \ {% if utterance_meta.lang == \"english\" %}French{% else %}English{% endif\
+      \ %}:\n{% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}: {{\
+      \ orig }}\n\n||| {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif\
+      \ %}: {{ ref }}\n{% endif %}\n{% endif %}\n"
     metadata: !TemplateMetadata
       choices_in_prompt: false
       metrics:
@@ -238,17 +239,17 @@ templates:
   72759632-7764-4493-9a6e-8f1c8b337bde: !Template
     answer_choices: null
     id: 72759632-7764-4493-9a6e-8f1c8b337bde
-    jinja: "{% if utterance_meta.lang == \"french\" %}\n{% if dialogue_history|length\
-      \ > 0 %}\nGiven the following dialogue between person A and person B:\n\n{%\
-      \ set first_lang=dialogue_history[-5:][0].utterance_meta.lang %}{% for previous\
-      \ in dialogue_history[-5:] %}{% if previous.utterance_meta.lang == first_lang\
-      \ %}A{% else %}B{% endif %}: {% if previous.utterance_meta.lang == utterance_meta.lang\
-      \ %}{{ previous.orig }}{% else %}{{ previous.mt }}{% endif %}\n{% endfor %}\
-      \ \nTranslate the next utterance in the dialogue into {% if utterance_meta.lang\
-      \ == \"english\" %}French{% else %}English{% endif %}:\n{% if utterance_meta.lang\
-      \ == first_lang %}A{% else %}B{% endif %}: {{ orig }}\n\n||| {% if utterance_meta.lang\
-      \ == first_lang %}A{% else %}B{% endif %}: {{ ref }}\n{% endif %}\n{% endif\
-      \ %}\n"
+    jinja: "{% set first_lang=\"\" %}\n{% if utterance_meta.lang == \"french\" %}\n\
+      {% if dialogue_history|length > 0 %}\nGiven the following dialogue between person\
+      \ A and person B:\n\n{% set first_lang=dialogue_history[-5:][0].utterance_meta.lang\
+      \ %}{% for previous in dialogue_history[-5:] %}{% if previous.utterance_meta.lang\
+      \ == first_lang %}A{% else %}B{% endif %}: {% if previous.utterance_meta.lang\
+      \ == utterance_meta.lang %}{{ previous.orig }}{% else %}{{ previous.mt }}{%\
+      \ endif %}\n{% endfor %} \nTranslate the next utterance in the dialogue into\
+      \ {% if utterance_meta.lang == \"english\" %}French{% else %}English{% endif\
+      \ %}:\n{% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}: {{\
+      \ orig }}\n\n||| {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif\
+      \ %}: {{ ref }}\n{% endif %}\n{% endif %}\n"
     metadata: !TemplateMetadata
       choices_in_prompt: false
       metrics:
@@ -274,15 +275,16 @@ templates:
   836c5096-2fd6-478c-89e8-39a050347d28: !Template
     answer_choices: null
     id: 836c5096-2fd6-478c-89e8-39a050347d28
-    jinja: "{% if utterance_meta.lang == \"french\" %}\n{% if dialogue_history|length\
-      \ > 0 %}\nGiven the following dialogue between person A and person B:\n\n{%\
-      \ set first_lang=dialogue_history[-5:][0].utterance_meta.lang %}{% for previous\
-      \ in dialogue_history[-5:] %}{% if previous.utterance_meta.lang == first_lang\
-      \ %}A{% else %}B{% endif %}: {{ previous.orig }}\n{% endfor %} \nTranslate the\
-      \ next utterance in the dialogue into {% if utterance_meta.lang == \"english\"\
-      \ %}French{% else %}English{% endif %}:\n{% if utterance_meta.lang == first_lang\
-      \ %}A{% else %}B{% endif %}: {{ orig }}\n\n||| {% if utterance_meta.lang ==\
-      \ first_lang %}A{% else %}B{% endif %}: {{ ref }}\n{% endif %}\n{% endif %}"
+    jinja: "{% set first_lang=\"\" %}\n{% if utterance_meta.lang == \"french\" %}\n\
+      {% if dialogue_history|length > 0 %}\nGiven the following dialogue between person\
+      \ A and person B:\n\n{% set first_lang=dialogue_history[-5:][0].utterance_meta.lang\
+      \ %}{% for previous in dialogue_history[-5:] %}{% if previous.utterance_meta.lang\
+      \ == first_lang %}A{% else %}B{% endif %}: {{ previous.orig }}\n{% endfor %}\
+      \ \nTranslate the next utterance in the dialogue into {% if utterance_meta.lang\
+      \ == \"english\" %}French{% else %}English{% endif %}:\n{% if utterance_meta.lang\
+      \ == first_lang %}A{% else %}B{% endif %}: {{ orig }}\n\n||| {% if utterance_meta.lang\
+      \ == first_lang %}A{% else %}B{% endif %}: {{ ref }}\n{% endif %}\n{% endif\
+      \ %}"
     metadata: !TemplateMetadata
       choices_in_prompt: false
       metrics:
@@ -305,8 +307,8 @@ templates:
   93f5256d-bd93-4056-b466-152b55860d02: !Template
     answer_choices: null
     id: 93f5256d-bd93-4056-b466-152b55860d02
-    jinja: "{% if dialogue_history|length > 0 %}\nGiven the following dialogue between\
-      \ person A and person B:\n\n{% set first_lang=dialogue_history[-5:][0].utterance_meta.lang\
+    jinja: "{% set first_lang=\"\" %}\n{% if dialogue_history|length > 0 %}\nGiven\
+      \ the following dialogue between person A and person B:\n\n{% set first_lang=dialogue_history[-5:][0].utterance_meta.lang\
       \ %}{% for previous in dialogue_history[-5:] %}{% if previous.utterance_meta.lang\
       \ == first_lang %}A{% else %}B{% endif %}: {{ previous.orig }}\n{% endfor %}\
       \ \nTranslate the next utterance in the dialogue into {% if utterance_meta.lang\
@@ -390,8 +392,8 @@ templates:
   b61c81ec-29eb-47f8-a1c6-561264ac04f3: !Template
     answer_choices: null
     id: b61c81ec-29eb-47f8-a1c6-561264ac04f3
-    jinja: "{% if dialogue_history|length > 0 %}\nGiven the following dialogue between\
-      \ person A and person B:\n\n{% set first_lang=dialogue_history[-5:][0].utterance_meta.lang\
+    jinja: "{% set first_lang=\"\" %}\n{% if dialogue_history|length > 0 %}\nGiven\
+      \ the following dialogue between person A and person B:\n\n{% set first_lang=dialogue_history[-5:][0].utterance_meta.lang\
       \ %}{% for previous in dialogue_history[-5:] %}{% if previous.utterance_meta.lang\
       \ == first_lang %}A{% else %}B{% endif %}: {% if previous.utterance_meta.lang\
       \ == utterance_meta.lang %}{{ previous.orig }}{% else %}{{ previous.mt }}{%\
@@ -410,17 +412,17 @@ templates:
   d068ba77-ce75-4de3-a170-ca0a7cd3f8d1: !Template
     answer_choices: null
     id: d068ba77-ce75-4de3-a170-ca0a7cd3f8d1
-    jinja: "{% if utterance_meta.lang == \"english\" %}\n{% if dialogue_history|length\
-      \ > 0 %}\nGiven the following dialogue between person A and person B:\n\n{%\
-      \ set first_lang=dialogue_history[-5:][0].utterance_meta.lang %}{% for previous\
-      \ in dialogue_history[-5:] %}{% if previous.utterance_meta.lang == first_lang\
-      \ %}A{% else %}B{% endif %}: {% if previous.utterance_meta.lang == utterance_meta.lang\
-      \ %}{{ previous.orig }}{% else %}{{ previous.ref }}{% endif %}\n{% endfor %}\
-      \ \nTranslate the next utterance in the dialogue into {% if utterance_meta.lang\
-      \ == \"english\" %}French{% else %}English{% endif %}:\n{% if utterance_meta.lang\
-      \ == first_lang %}A{% else %}B{% endif %}: {{ orig }}\n\n||| {% if utterance_meta.lang\
-      \ == first_lang %}A{% else %}B{% endif %}: {{ ref }}\n{% endif %}\n{% endif\
-      \ %}\n"
+    jinja: "{% set first_lang=\"\" %}\n{% if utterance_meta.lang == \"english\" %}\n\
+      {% if dialogue_history|length > 0 %}\nGiven the following dialogue between person\
+      \ A and person B:\n\n{% set first_lang=dialogue_history[-5:][0].utterance_meta.lang\
+      \ %}{% for previous in dialogue_history[-5:] %}{% if previous.utterance_meta.lang\
+      \ == first_lang %}A{% else %}B{% endif %}: {% if previous.utterance_meta.lang\
+      \ == utterance_meta.lang %}{{ previous.orig }}{% else %}{{ previous.ref }}{%\
+      \ endif %}\n{% endfor %} \nTranslate the next utterance in the dialogue into\
+      \ {% if utterance_meta.lang == \"english\" %}French{% else %}English{% endif\
+      \ %}:\n{% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}: {{\
+      \ orig }}\n\n||| {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif\
+      \ %}: {{ ref }}\n{% endif %}\n{% endif %}\n"
     metadata: !TemplateMetadata
       choices_in_prompt: false
       metrics:
@@ -432,9 +434,9 @@ templates:
     answer_choices: yes || no
     id: dddd6f35-5a01-431b-b59b-e9a8e76377aa
     jinja: "{% set options = [\"word choice\", \"grammar\", \"style\", \"coherence\"\
-      , \"meaning\"] %}\n{% set label = range(0,5)|random %}\n{% if utterance_meta.lang\
-      \ == \"french\" %}\n{% if options[label] in utterance_meta.eval_problems %}{%\
-      \ set reply=0 %}{% else %}{% set reply=1 %}{% endif %}\n{% if utterance_meta.eval_problems|length\
+      , \"meaning\"] %}\n{% set label = range(0,5)|random %}\n{% set reply=0 %}\n\
+      {% if utterance_meta.lang == \"french\" %}\n{% if options[label] in utterance_meta.eval_problems\
+      \ %}{% set reply=0 %}{% else %}{% set reply=1 %}{% endif %}\n{% if utterance_meta.eval_problems|length\
       \ > 0 %}\n{% if dialogue_history|length > 0 %}\nGiven the following dialogue\
       \ between person A and person B:\n\n{% set first_lang=dialogue_history[-5:][0].utterance_meta.lang\
       \ %}{% for previous in dialogue_history[-5:] %}{% if previous.utterance_meta.lang\

From 44c7551015fdc2e55ed410c790ad312890599c2d Mon Sep 17 00:00:00 2001
From: Rachel Bawden <rachel.bawden@inria.fr@users.noreply.github.com>
Date: Fri, 29 Apr 2022 02:02:48 +0200
Subject: [PATCH 05/31] declared more variables at beginning of templates

---
 .../templates/rbawden/DiaBLa/templates.yaml        | 14 ++++++++------
 1 file changed, 8 insertions(+), 6 deletions(-)

diff --git a/promptsource/templates/rbawden/DiaBLa/templates.yaml b/promptsource/templates/rbawden/DiaBLa/templates.yaml
index 6f5afac93..2b8c59970 100644
--- a/promptsource/templates/rbawden/DiaBLa/templates.yaml
+++ b/promptsource/templates/rbawden/DiaBLa/templates.yaml
@@ -54,8 +54,9 @@ templates:
     id: 123f36ee-c808-4cf0-aa5c-ed1f03ac3b69
     jinja: "{% set options = [\"word choice\", \"grammar\", \"style\", \"coherence\"\
       , \"meaning\"] %}\n{% set label = range(0,5)|random %}\n{% set reply=0 %}\n\
-      {% if utterance_meta.lang == \"english\" %}\n{% if options[label] in utterance_meta.eval_problems\
-      \ %}{% set reply=0 %}{% else %}{% set reply=1 %}{% endif %}\n{% if utterance_meta.eval_problems|length\
+      {% set first_lang=\"\" %}\n{% if utterance_meta.lang == \"english\" %}\n{% if\
+      \ options[label] in utterance_meta.eval_problems %}{% set reply=0 %}{% else\
+      \ %}{% set reply=1 %}{% endif %}\n{% if utterance_meta.eval_problems|length\
       \ > 0 %}\n{% if dialogue_history|length > 0 %}\nGiven the following dialogue\
       \ between person A and person B:\n\n{% set first_lang=dialogue_history[-5:][0].utterance_meta.lang\
       \ %}{% for previous in dialogue_history[-5:] %}{% if previous.utterance_meta.lang\
@@ -119,8 +120,8 @@ templates:
     id: 28ea04f4-338e-40cf-8730-4a794b5b64b2
     jinja: "{% set options = [\"word choice\", \"grammar\", \"style\", \"coherence\"\
       , \"meaning\"] %}\n{% set label = range(0,5)|random %}\n{% set reply=0 %}\n\
-      {% if options[label] in utterance_meta.eval_problems %}{% set reply=0 %}{% else\
-      \ %}{% set reply=1 %}{% endif %}\n{% if utterance_meta.eval_problems|length\
+      {% set first_lang=\"\" %}\n{% if options[label] in utterance_meta.eval_problems\
+      \ %}{% set reply=0 %}{% else %}{% set reply=1 %}{% endif %}\n{% if utterance_meta.eval_problems|length\
       \ > 0 %}\n{% if dialogue_history|length > 0 %}\nGiven the following dialogue\
       \ between person A and person B:\n\n{% set first_lang=dialogue_history[-5:][0].utterance_meta.lang\
       \ %}{% for previous in dialogue_history[-5:] %}{% if previous.utterance_meta.lang\
@@ -435,8 +436,9 @@ templates:
     id: dddd6f35-5a01-431b-b59b-e9a8e76377aa
     jinja: "{% set options = [\"word choice\", \"grammar\", \"style\", \"coherence\"\
       , \"meaning\"] %}\n{% set label = range(0,5)|random %}\n{% set reply=0 %}\n\
-      {% if utterance_meta.lang == \"french\" %}\n{% if options[label] in utterance_meta.eval_problems\
-      \ %}{% set reply=0 %}{% else %}{% set reply=1 %}{% endif %}\n{% if utterance_meta.eval_problems|length\
+      {% set first_lang=\"\" %}\n{% if utterance_meta.lang == \"french\" %}\n{% if\
+      \ options[label] in utterance_meta.eval_problems %}{% set reply=0 %}{% else\
+      \ %}{% set reply=1 %}{% endif %}\n{% if utterance_meta.eval_problems|length\
       \ > 0 %}\n{% if dialogue_history|length > 0 %}\nGiven the following dialogue\
       \ between person A and person B:\n\n{% set first_lang=dialogue_history[-5:][0].utterance_meta.lang\
       \ %}{% for previous in dialogue_history[-5:] %}{% if previous.utterance_meta.lang\

From 9379706dd2d9c1a21966ce8d5820b8d0867cbbaf Mon Sep 17 00:00:00 2001
From: Rachel Bawden <rachel.bawden@inria.fr@users.noreply.github.com>
Date: Fri, 29 Apr 2022 02:12:43 +0200
Subject: [PATCH 06/31] declared more variables at beginning of templates

---
 .../templates/rbawden/DiaBLa/templates.yaml   | 22 +++++++++----------
 1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/promptsource/templates/rbawden/DiaBLa/templates.yaml b/promptsource/templates/rbawden/DiaBLa/templates.yaml
index 2b8c59970..32dff34be 100644
--- a/promptsource/templates/rbawden/DiaBLa/templates.yaml
+++ b/promptsource/templates/rbawden/DiaBLa/templates.yaml
@@ -77,17 +77,17 @@ templates:
   1798dee9-8a9c-45ed-87d8-237ec7dbf5ca: !Template
     answer_choices: null
     id: 1798dee9-8a9c-45ed-87d8-237ec7dbf5ca
-    jinja: "{% if utterance_meta.lang == \"english\" %}\n{% if dialogue_history|length\
-      \ > 0 %}\nGiven the following dialogue between person A and person B:\n\n{%\
-      \ set first_lang=dialogue_history[-5:][0].utterance_meta.lang %}{% for previous\
-      \ in dialogue_history[-5:] %}{% if previous.utterance_meta.lang == first_lang\
-      \ %}A{% else %}B{% endif %}: {% if previous.utterance_meta.lang == utterance_meta.lang\
-      \ %}{{ previous.orig }}{% else %}{{ previous.ref }}{% endif %}\n{% endfor %}\
-      \ \nTranslate the next utterance in the dialogue into {% if utterance_meta.lang\
-      \ == \"english\" %}French{% else %}English{% endif %}:\n{% if utterance_meta.lang\
-      \ == first_lang %}A{% else %}B{% endif %}: {{ orig }}\n\n||| {% if utterance_meta.lang\
-      \ == first_lang %}A{% else %}B{% endif %}: {{ ref }}\n{% endif %}\n{% endif\
-      \ %}\n"
+    jinja: "{% set first_lang=\"\" %}\n{% if utterance_meta.lang == \"english\" %}\n\
+      {% if dialogue_history|length > 0 %}\nGiven the following dialogue between person\
+      \ A and person B:\n\n{% set first_lang=dialogue_history[-5:][0].utterance_meta.lang\
+      \ %}{% for previous in dialogue_history[-5:] %}{% if previous.utterance_meta.lang\
+      \ == first_lang %}A{% else %}B{% endif %}: {% if previous.utterance_meta.lang\
+      \ == utterance_meta.lang %}{{ previous.orig }}{% else %}{{ previous.ref }}{%\
+      \ endif %}\n{% endfor %} \nTranslate the next utterance in the dialogue into\
+      \ {% if utterance_meta.lang == \"english\" %}French{% else %}English{% endif\
+      \ %}:\n{% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}: {{\
+      \ orig }}\n\n||| {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif\
+      \ %}: {{ ref }}\n{% endif %}\n{% endif %}\n"
     metadata: !TemplateMetadata
       choices_in_prompt: false
       metrics:

From f5fc2a92a4041e8c6d88dd511ba48155a6226e7d Mon Sep 17 00:00:00 2001
From: Rachel Bawden <rachel.bawden@inria.fr@users.noreply.github.com>
Date: Fri, 29 Apr 2022 02:21:11 +0200
Subject: [PATCH 07/31] corrected ref for mt in one template

---
 promptsource/templates/rbawden/DiaBLa/templates.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/promptsource/templates/rbawden/DiaBLa/templates.yaml b/promptsource/templates/rbawden/DiaBLa/templates.yaml
index 32dff34be..146e84adf 100644
--- a/promptsource/templates/rbawden/DiaBLa/templates.yaml
+++ b/promptsource/templates/rbawden/DiaBLa/templates.yaml
@@ -418,7 +418,7 @@ templates:
       \ A and person B:\n\n{% set first_lang=dialogue_history[-5:][0].utterance_meta.lang\
       \ %}{% for previous in dialogue_history[-5:] %}{% if previous.utterance_meta.lang\
       \ == first_lang %}A{% else %}B{% endif %}: {% if previous.utterance_meta.lang\
-      \ == utterance_meta.lang %}{{ previous.orig }}{% else %}{{ previous.ref }}{%\
+      \ == utterance_meta.lang %}{{ previous.orig }}{% else %}{{ previous.mt }}{%\
       \ endif %}\n{% endfor %} \nTranslate the next utterance in the dialogue into\
       \ {% if utterance_meta.lang == \"english\" %}French{% else %}English{% endif\
       \ %}:\n{% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}: {{\

From ec3d5e853356c0aeaa6f3c294969db9b73d1ee65 Mon Sep 17 00:00:00 2001
From: Rachel Bawden <rachel.bawden@inria.fr@users.noreply.github.com>
Date: Fri, 29 Apr 2022 02:22:32 +0200
Subject: [PATCH 08/31] corrected ref for mt in one template

---
 promptsource/templates/rbawden/DiaBLa/templates.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/promptsource/templates/rbawden/DiaBLa/templates.yaml b/promptsource/templates/rbawden/DiaBLa/templates.yaml
index 146e84adf..287c306f6 100644
--- a/promptsource/templates/rbawden/DiaBLa/templates.yaml
+++ b/promptsource/templates/rbawden/DiaBLa/templates.yaml
@@ -224,7 +224,7 @@ templates:
       \ A and person B:\n\n{% set first_lang=dialogue_history[-5:][0].utterance_meta.lang\
       \ %}{% for previous in dialogue_history[-5:] %}{% if previous.utterance_meta.lang\
       \ == first_lang %}A{% else %}B{% endif %}: {% if previous.utterance_meta.lang\
-      \ == utterance_meta.lang %}{{ previous.orig }}{% else %}{{ previous.mt }}{%\
+      \ == utterance_meta.lang %}{{ previous.orig }}{% else %}{{ previous.ref }}{%\
       \ endif %}\n{% endfor %} \nTranslate the next utterance in the dialogue into\
       \ {% if utterance_meta.lang == \"english\" %}French{% else %}English{% endif\
       \ %}:\n{% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}: {{\

From ffee1479bd29bfb3fc052e07af1ee719d09768bf Mon Sep 17 00:00:00 2001
From: Rachel Bawden <rachel.bawden@inria.fr@users.noreply.github.com>
Date: Fri, 29 Apr 2022 16:47:55 +0200
Subject: [PATCH 09/31] moved condition to just target side rather than around
 entire prompt

---
 .../templates/rbawden/DiaBLa/templates.yaml   | 310 +++++++++---------
 1 file changed, 152 insertions(+), 158 deletions(-)

diff --git a/promptsource/templates/rbawden/DiaBLa/templates.yaml b/promptsource/templates/rbawden/DiaBLa/templates.yaml
index 287c306f6..46865c493 100644
--- a/promptsource/templates/rbawden/DiaBLa/templates.yaml
+++ b/promptsource/templates/rbawden/DiaBLa/templates.yaml
@@ -3,25 +3,13 @@ templates:
   0e55b858-92b0-4e5b-923b-0d23518035e3: !Template
     answer_choices: null
     id: 0e55b858-92b0-4e5b-923b-0d23518035e3
-    jinja: '{% set previous_ref = "" %}
-
-      {% if utterance_meta.lang == "french" %}
-
-      {% if dialogue_history|length > 0 %}
-
-
-      "{% if utterance_meta.lang == dialogue_history[-1].utterance_meta.lang %}{{
-      dialogue_history[-1].orig }}{% set previous_ref = dialogue_history[-1].ref %}{%
-      else %}{{ dialogue_history[-1].ref }}{% set previous_ref = dialogue_history[-1].orig
-      %}{% endif %}" translates into English as: {{ previous_ref }}
-
-
-      "{{ orig }}" translates into English as: ||| {{ ref }}
-
-
-      {% endif %}
-
-      {% endif %}'
+    jinja: "{% set previous_ref = \"\" %}\n{% if dialogue_history|length > 0 %}\n\"\
+      {% if utterance_meta.lang == dialogue_history[-1].utterance_meta.lang %}{{ dialogue_history[-1].orig\
+      \ }}{% set previous_ref = dialogue_history[-1].ref %}{% else %}{{ dialogue_history[-1].ref\
+      \ }}{% set previous_ref = dialogue_history[-1].orig %}{% endif %}\" translates\
+      \ into French as: {{ previous_ref }}{% endif %}\n\n\"{{ orig }}\" translates\
+      \ into English as: ||| \n{% if utterance_meta.lang == \"french\" %}\n{% if dialogue_history|length\
+      \ > 0 %}\n{{ ref }}\n{% endif %}\n{% endif %}"
     metadata: !TemplateMetadata
       choices_in_prompt: false
       metrics:
@@ -32,16 +20,15 @@ templates:
   0e841022-eb3c-4f5a-b57a-0cbd3d628b68: !Template
     answer_choices: null
     id: 0e841022-eb3c-4f5a-b57a-0cbd3d628b68
-    jinja: "{% set first_lang=\"\" %}\n{% if utterance_meta.lang == \"english\" %}\n\
-      {% if dialogue_history|length > 0 %}\nGiven the following dialogue between person\
-      \ A and person B:\n\n{% set first_lang=dialogue_history[-5:][0].utterance_meta.lang\
+    jinja: "{% set first_lang=\"\" %}\n{% if dialogue_history|length > 0 %}\nGiven\
+      \ the following dialogue between person A and person B:\n\n{% set first_lang=dialogue_history[-5:][0].utterance_meta.lang\
       \ %}{% for previous in dialogue_history[-5:] %}{% if previous.utterance_meta.lang\
-      \ == first_lang %}A{% else %}B{% endif %}: {{ previous.orig }}\n{% endfor %}\
-      \ \nTranslate the next utterance in the dialogue into {% if utterance_meta.lang\
-      \ == \"english\" %}French{% else %}English{% endif %}:\n{% if utterance_meta.lang\
-      \ == first_lang %}A{% else %}B{% endif %}: {{ orig }}\n\n||| {% if utterance_meta.lang\
-      \ == first_lang %}A{% else %}B{% endif %}: {{ ref }}\n{% endif %}\n{% endif\
-      \ %}"
+      \ == first_lang %}A{% else %}B{% endif %}: {{ previous.orig }}\n{% endfor %}{%\
+      \ endif %}\nTranslate the next utterance in the dialogue into French:\n{% if\
+      \ utterance_meta.lang == first_lang %}A{% else %}B{% endif %}: {{ orig }}\n\n\
+      ||| \n{% if utterance_meta.lang == \"english\" %}\n{% if dialogue_history|length\
+      \ > 0 %}\n{% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}:\
+      \ {{ ref }}\n{% endif %}\n{% endif %}"
     metadata: !TemplateMetadata
       choices_in_prompt: false
       metrics:
@@ -52,20 +39,44 @@ templates:
   123f36ee-c808-4cf0-aa5c-ed1f03ac3b69: !Template
     answer_choices: yes || no
     id: 123f36ee-c808-4cf0-aa5c-ed1f03ac3b69
-    jinja: "{% set options = [\"word choice\", \"grammar\", \"style\", \"coherence\"\
-      , \"meaning\"] %}\n{% set label = range(0,5)|random %}\n{% set reply=0 %}\n\
-      {% set first_lang=\"\" %}\n{% if utterance_meta.lang == \"english\" %}\n{% if\
-      \ options[label] in utterance_meta.eval_problems %}{% set reply=0 %}{% else\
-      \ %}{% set reply=1 %}{% endif %}\n{% if utterance_meta.eval_problems|length\
-      \ > 0 %}\n{% if dialogue_history|length > 0 %}\nGiven the following dialogue\
-      \ between person A and person B:\n\n{% set first_lang=dialogue_history[-5:][0].utterance_meta.lang\
-      \ %}{% for previous in dialogue_history[-5:] %}{% if previous.utterance_meta.lang\
-      \ == first_lang %}A{% else %}B{% endif %}: {% if previous.utterance_meta.lang\
-      \ != utterance_meta.lang %}{{ previous.orig }}{% else %}{{ previous.mt }}{%\
-      \ endif %}{% endfor %} \n{% if utterance_meta.lang == first_lang %}A{% else\
-      \ %}B{% endif %}: {{ mt }}\n\nDoes the last utterance contain a {{ options[label]\
-      \ }} problem, {{ \"yes\" }} or {{ \"no\" }}?\n\n||| {{ [\"yes\", \"no\" ][reply]\
-      \ }}\n{% endif %}\n{% endif %}\n{% endif %}"
+    jinja: '{% set options = ["word choice", "grammar", "style", "coherence", "meaning"]
+      %}
+
+      {% set label = range(0,5)|random %}
+
+      {% set reply=0 %}
+
+      {% set first_lang="" %}
+
+
+      {% if options[label] in utterance_meta.eval_problems %}{% set reply=0 %}{% else
+      %}{% set reply=1 %}{% endif %}
+
+      {% if utterance_meta.eval_problems|length > 0 %}
+
+
+      Given the following dialogue between person A and person B:
+
+      {% if dialogue_history|length > 0 %}{% set first_lang=dialogue_history[-5:][0].utterance_meta.lang
+      %}{% for previous in dialogue_history[-5:] %}
+
+      {% if previous.utterance_meta.lang == first_lang %}A{% else %}B{% endif %}:
+      {% if previous.utterance_meta.lang != utterance_meta.lang %}{{ previous.orig
+      }}{% else %}{{ previous.mt }}{% endif %}{% endfor %}{% endif %}
+
+      {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}: {{ mt }}
+
+
+      Does the last utterance contain a {{ options[label] }} problem, {{ "yes" }}
+      or {{ "no" }}?
+
+
+      ||| {% if utterance_meta.eval_problems|length > 0 %}{% if utterance_meta.lang
+      == "english" %}{{ ["yes", "no" ][reply] }}{% endif %}
+
+      {% endif %}
+
+      {% endif %}'
     metadata: !TemplateMetadata
       choices_in_prompt: true
       metrics:
@@ -77,17 +88,16 @@ templates:
   1798dee9-8a9c-45ed-87d8-237ec7dbf5ca: !Template
     answer_choices: null
     id: 1798dee9-8a9c-45ed-87d8-237ec7dbf5ca
-    jinja: "{% set first_lang=\"\" %}\n{% if utterance_meta.lang == \"english\" %}\n\
-      {% if dialogue_history|length > 0 %}\nGiven the following dialogue between person\
-      \ A and person B:\n\n{% set first_lang=dialogue_history[-5:][0].utterance_meta.lang\
+    jinja: "{% set first_lang=\"\" %}\n{% if dialogue_history|length > 0 %}\nGiven\
+      \ the following dialogue between person A and person B:\n\n{% set first_lang=dialogue_history[-5:][0].utterance_meta.lang\
       \ %}{% for previous in dialogue_history[-5:] %}{% if previous.utterance_meta.lang\
       \ == first_lang %}A{% else %}B{% endif %}: {% if previous.utterance_meta.lang\
       \ == utterance_meta.lang %}{{ previous.orig }}{% else %}{{ previous.ref }}{%\
-      \ endif %}\n{% endfor %} \nTranslate the next utterance in the dialogue into\
-      \ {% if utterance_meta.lang == \"english\" %}French{% else %}English{% endif\
-      \ %}:\n{% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}: {{\
-      \ orig }}\n\n||| {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif\
-      \ %}: {{ ref }}\n{% endif %}\n{% endif %}\n"
+      \ endif %}\n{% endfor %}{% endif %}\nTranslate the next utterance in the dialogue\
+      \ into French:\n{% if utterance_meta.lang == first_lang %}A{% else %}B{% endif\
+      \ %}: {{ orig }}\n\n||| \n{% if utterance_meta.lang == \"english\" %}\n{% if\
+      \ dialogue_history|length > 0 %}\n{% if utterance_meta.lang == first_lang %}A{%\
+      \ else %}B{% endif %}: {{ ref }}\n{% endif %}\n{% endif %}\n"
     metadata: !TemplateMetadata
       choices_in_prompt: false
       metrics:
@@ -141,22 +151,13 @@ templates:
   2abc728f-e7fc-44fc-ba2a-ad78ae2469a9: !Template
     answer_choices: null
     id: 2abc728f-e7fc-44fc-ba2a-ad78ae2469a9
-    jinja: '{% set previous_ref = "" %}{% if utterance_meta.lang == "english" %}
-
-      {% if dialogue_history|length > 0 %}
-
-      "{% if utterance_meta.lang == dialogue_history[-1].utterance_meta.lang %}{{
-      dialogue_history[-1].orig }}{% set previous_ref = dialogue_history[-1].ref %}{%
-      else %}{{ dialogue_history[-1].ref }}{% set previous_ref = dialogue_history[-1].orig
-      %}{% endif %}" translates as: {{ previous_ref }}
-
-
-      "{{ orig }}" translates as: ||| {{ ref }}
-
-
-      {% endif %}
-
-      {% endif %}'
+    jinja: "{% set previous_ref = \"\" %}\n{% if dialogue_history|length > 0 %}\n\"\
+      {% if utterance_meta.lang == dialogue_history[-1].utterance_meta.lang %}{{ dialogue_history[-1].orig\
+      \ }}{% set previous_ref = dialogue_history[-1].ref %}{% else %}{{ dialogue_history[-1].ref\
+      \ }}{% set previous_ref = dialogue_history[-1].orig %}{% endif %}\" translates\
+      \ as: {{ previous_ref }}{% endif %}\n\n\"{{ orig }}\" translates as: ||| \n\
+      {% if dialogue_history|length > 0 %}\n{% if utterance_meta.lang == \"english\"\
+      \ %}\n{{ ref }}\n{% endif %}\n{% endif %}"
     metadata: !TemplateMetadata
       choices_in_prompt: false
       metrics:
@@ -167,22 +168,13 @@ templates:
   40c1ee21-3cf4-4efc-b902-d3aab0a79c40: !Template
     answer_choices: null
     id: 40c1ee21-3cf4-4efc-b902-d3aab0a79c40
-    jinja: '{% set previous_ref = "" %}{% if utterance_meta.lang == "french" %}
-
-      {% if dialogue_history|length > 0 %}
-
-      "{% if utterance_meta.lang == dialogue_history[-1].utterance_meta.lang %}{{
-      dialogue_history[-1].orig }}{% set previous_ref = dialogue_history[-1].ref %}{%
-      else %}{{ dialogue_history[-1].ref }}{% set previous_ref = dialogue_history[-1].orig
-      %}{% endif %}" translates as: {{ previous_ref }}
-
-
-      "{{ orig }}" translates as: ||| {{ ref }}
-
-
-      {% endif %}
-
-      {% endif %}'
+    jinja: "{% set previous_ref = \"\" %}\n{% if dialogue_history|length > 0 %}\n\"\
+      {% if utterance_meta.lang == dialogue_history[-1].utterance_meta.lang %}{{ dialogue_history[-1].orig\
+      \ }}{% set previous_ref = dialogue_history[-1].ref %}{% else %}{{ dialogue_history[-1].ref\
+      \ }}{% set previous_ref = dialogue_history[-1].orig %}{% endif %}\" translates\
+      \ as: {{ previous_ref }}{% endif %}\n\n\"{{ orig }}\" translates as: ||| \n\
+      {% if dialogue_history|length > 0 %}\n{% if utterance_meta.lang == \"french\"\
+      \ %}\n{{ ref }}\n{% endif %}\n{% endif %}"
     metadata: !TemplateMetadata
       choices_in_prompt: false
       metrics:
@@ -219,17 +211,16 @@ templates:
   702f1f50-d6b0-4e65-a8e6-b449257f1e35: !Template
     answer_choices: null
     id: 702f1f50-d6b0-4e65-a8e6-b449257f1e35
-    jinja: "{% set first_lang=\"\" %}\n{% if utterance_meta.lang == \"french\" %}\n\
-      {% if dialogue_history|length > 0 %}\nGiven the following dialogue between person\
-      \ A and person B:\n\n{% set first_lang=dialogue_history[-5:][0].utterance_meta.lang\
+    jinja: "{% set first_lang=\"\" %}\n{% if dialogue_history|length > 0 %}\nGiven\
+      \ the following dialogue between person A and person B:\n\n{% set first_lang=dialogue_history[-5:][0].utterance_meta.lang\
       \ %}{% for previous in dialogue_history[-5:] %}{% if previous.utterance_meta.lang\
       \ == first_lang %}A{% else %}B{% endif %}: {% if previous.utterance_meta.lang\
       \ == utterance_meta.lang %}{{ previous.orig }}{% else %}{{ previous.ref }}{%\
-      \ endif %}\n{% endfor %} \nTranslate the next utterance in the dialogue into\
-      \ {% if utterance_meta.lang == \"english\" %}French{% else %}English{% endif\
-      \ %}:\n{% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}: {{\
-      \ orig }}\n\n||| {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif\
-      \ %}: {{ ref }}\n{% endif %}\n{% endif %}\n"
+      \ endif %}\n{% endfor %}{% endif %}\nTranslate the next utterance in the dialogue\
+      \ into English:\n{% if utterance_meta.lang == first_lang %}A{% else %}B{% endif\
+      \ %}: {{ orig }}\n\n||| \n{% if utterance_meta.lang == \"french\" %}\n{% if\
+      \ dialogue_history|length > 0 %}\n{% if utterance_meta.lang == first_lang %}A{%\
+      \ else %}B{% endif %}: {{ ref }}\n{% endif %}\n{% endif %}\n"
     metadata: !TemplateMetadata
       choices_in_prompt: false
       metrics:
@@ -240,17 +231,16 @@ templates:
   72759632-7764-4493-9a6e-8f1c8b337bde: !Template
     answer_choices: null
     id: 72759632-7764-4493-9a6e-8f1c8b337bde
-    jinja: "{% set first_lang=\"\" %}\n{% if utterance_meta.lang == \"french\" %}\n\
-      {% if dialogue_history|length > 0 %}\nGiven the following dialogue between person\
-      \ A and person B:\n\n{% set first_lang=dialogue_history[-5:][0].utterance_meta.lang\
+    jinja: "{% set first_lang=\"\" %}\n\n{% if dialogue_history|length > 0 %}\nGiven\
+      \ the following dialogue between person A and person B:\n\n{% set first_lang=dialogue_history[-5:][0].utterance_meta.lang\
       \ %}{% for previous in dialogue_history[-5:] %}{% if previous.utterance_meta.lang\
       \ == first_lang %}A{% else %}B{% endif %}: {% if previous.utterance_meta.lang\
       \ == utterance_meta.lang %}{{ previous.orig }}{% else %}{{ previous.mt }}{%\
-      \ endif %}\n{% endfor %} \nTranslate the next utterance in the dialogue into\
-      \ {% if utterance_meta.lang == \"english\" %}French{% else %}English{% endif\
-      \ %}:\n{% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}: {{\
-      \ orig }}\n\n||| {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif\
-      \ %}: {{ ref }}\n{% endif %}\n{% endif %}\n"
+      \ endif %}\n{% endfor %}{% endif %}\nTranslate the next utterance in the dialogue\
+      \ into English:\n{% if utterance_meta.lang == first_lang %}A{% else %}B{% endif\
+      \ %}: {{ orig }}\n\n||| \n{% if utterance_meta.lang == \"french\" %}\n{% if\
+      \ dialogue_history|length > 0 %}\n{% if utterance_meta.lang == first_lang %}A{%\
+      \ else %}B{% endif %}: {{ ref }}\n{% endif %}\n{% endif %}\n"
     metadata: !TemplateMetadata
       choices_in_prompt: false
       metrics:
@@ -261,11 +251,8 @@ templates:
   72c1cbbd-956f-4721-9cee-fd50148cf77d: !Template
     answer_choices: null
     id: 72c1cbbd-956f-4721-9cee-fd50148cf77d
-    jinja: '{% if utterance_meta.lang == "french"  %}
-
-      Translate the following into English: "{{ orig }}" ||| {{ ref }}
-
-      {% endif %}'
+    jinja: 'Translate the following into English: "{{ orig }}" ||| {% if utterance_meta.lang
+      == "french"  %}{{ ref }}{% endif %}'
     metadata: !TemplateMetadata
       choices_in_prompt: false
       metrics:
@@ -276,16 +263,15 @@ templates:
   836c5096-2fd6-478c-89e8-39a050347d28: !Template
     answer_choices: null
     id: 836c5096-2fd6-478c-89e8-39a050347d28
-    jinja: "{% set first_lang=\"\" %}\n{% if utterance_meta.lang == \"french\" %}\n\
-      {% if dialogue_history|length > 0 %}\nGiven the following dialogue between person\
-      \ A and person B:\n\n{% set first_lang=dialogue_history[-5:][0].utterance_meta.lang\
+    jinja: "{% set first_lang=\"\" %}\n\n{% if dialogue_history|length > 0 %}\nGiven\
+      \ the following dialogue between person A and person B:\n\n{% set first_lang=dialogue_history[-5:][0].utterance_meta.lang\
       \ %}{% for previous in dialogue_history[-5:] %}{% if previous.utterance_meta.lang\
-      \ == first_lang %}A{% else %}B{% endif %}: {{ previous.orig }}\n{% endfor %}\
-      \ \nTranslate the next utterance in the dialogue into {% if utterance_meta.lang\
-      \ == \"english\" %}French{% else %}English{% endif %}:\n{% if utterance_meta.lang\
-      \ == first_lang %}A{% else %}B{% endif %}: {{ orig }}\n\n||| {% if utterance_meta.lang\
-      \ == first_lang %}A{% else %}B{% endif %}: {{ ref }}\n{% endif %}\n{% endif\
-      \ %}"
+      \ == first_lang %}A{% else %}B{% endif %}: {{ previous.orig }}\n{% endfor %}{%\
+      \ endif %}\nTranslate the next utterance in the dialogue into English:\n{% if\
+      \ utterance_meta.lang == first_lang %}A{% else %}B{% endif %}: {{ orig }}\n\n\
+      ||| \n\n{% if utterance_meta.lang == \"french\" %}\n{% if dialogue_history|length\
+      \ > 0 %}\n{% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}:\
+      \ {{ ref }}\n{% endif %}\n{% endif %}"
     metadata: !TemplateMetadata
       choices_in_prompt: false
       metrics:
@@ -326,11 +312,8 @@ templates:
   96da9c0e-e606-4283-8494-7129c75b4d02: !Template
     answer_choices: null
     id: 96da9c0e-e606-4283-8494-7129c75b4d02
-    jinja: '{% if utterance_meta.lang == "english"  %}
-
-      Translate the following into French: "{{ orig }}" ||| {{ ref }}
-
-      {% endif %}'
+    jinja: 'Translate the following into French: "{{ orig }}" ||| {% if utterance_meta.lang
+      == "english"  %}{{ ref }}{% endif %}'
     metadata: !TemplateMetadata
       choices_in_prompt: false
       metrics:
@@ -341,25 +324,13 @@ templates:
   97d56019-a7df-4733-aed0-332c222e9079: !Template
     answer_choices: null
     id: 97d56019-a7df-4733-aed0-332c222e9079
-    jinja: '{% set previous_ref = "" %}
-
-      {% if utterance_meta.lang == "english" %}
-
-      {% if dialogue_history|length > 0 %}
-
-
-      "{% if utterance_meta.lang == dialogue_history[-1].utterance_meta.lang %}{{
-      dialogue_history[-1].orig }}{% set previous_ref = dialogue_history[-1].ref %}{%
-      else %}{{ dialogue_history[-1].ref }}{% set previous_ref = dialogue_history[-1].orig
-      %}{% endif %}" translates into French as: {{ previous_ref }}
-
-
-      "{{ orig }}" translates into French as: ||| {{ ref }}
-
-
-      {% endif %}
-
-      {% endif %}'
+    jinja: "{% set previous_ref = \"\" %}\n{% if dialogue_history|length > 0 %}\n\"\
+      {% if utterance_meta.lang == dialogue_history[-1].utterance_meta.lang %}{{ dialogue_history[-1].orig\
+      \ }}{% set previous_ref = dialogue_history[-1].ref %}{% else %}{{ dialogue_history[-1].ref\
+      \ }}{% set previous_ref = dialogue_history[-1].orig %}{% endif %}\" translates\
+      \ into French as: {{ previous_ref }}{% endif %}\n\n\"{{ orig }}\" translates\
+      \ into French as: ||| \n{% if utterance_meta.lang == \"english\" %}\n{% if dialogue_history|length\
+      \ > 0 %}\n{{ ref }}\n{% endif %}\n{% endif %}"
     metadata: !TemplateMetadata
       choices_in_prompt: false
       metrics:
@@ -413,17 +384,16 @@ templates:
   d068ba77-ce75-4de3-a170-ca0a7cd3f8d1: !Template
     answer_choices: null
     id: d068ba77-ce75-4de3-a170-ca0a7cd3f8d1
-    jinja: "{% set first_lang=\"\" %}\n{% if utterance_meta.lang == \"english\" %}\n\
-      {% if dialogue_history|length > 0 %}\nGiven the following dialogue between person\
-      \ A and person B:\n\n{% set first_lang=dialogue_history[-5:][0].utterance_meta.lang\
+    jinja: "{% set first_lang=\"\" %}\n{% if dialogue_history|length > 0 %}\nGiven\
+      \ the following dialogue between person A and person B:\n\n{% set first_lang=dialogue_history[-5:][0].utterance_meta.lang\
       \ %}{% for previous in dialogue_history[-5:] %}{% if previous.utterance_meta.lang\
       \ == first_lang %}A{% else %}B{% endif %}: {% if previous.utterance_meta.lang\
       \ == utterance_meta.lang %}{{ previous.orig }}{% else %}{{ previous.mt }}{%\
-      \ endif %}\n{% endfor %} \nTranslate the next utterance in the dialogue into\
-      \ {% if utterance_meta.lang == \"english\" %}French{% else %}English{% endif\
-      \ %}:\n{% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}: {{\
-      \ orig }}\n\n||| {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif\
-      \ %}: {{ ref }}\n{% endif %}\n{% endif %}\n"
+      \ endif %}\n{% endfor %}{% endif %}\nTranslate the next utterance in the dialogue\
+      \ into French:\n{% if utterance_meta.lang == first_lang %}A{% else %}B{% endif\
+      \ %}: {{ orig }}\n\n||| \n{% if utterance_meta.lang == \"english\" %}\n{% if\
+      \ dialogue_history|length > 0 %}\n{% if utterance_meta.lang == first_lang %}A{%\
+      \ else %}B{% endif %}: {{ ref }}\n{% endif %}\n{% endif %}\n"
     metadata: !TemplateMetadata
       choices_in_prompt: false
       metrics:
@@ -434,20 +404,44 @@ templates:
   dddd6f35-5a01-431b-b59b-e9a8e76377aa: !Template
     answer_choices: yes || no
     id: dddd6f35-5a01-431b-b59b-e9a8e76377aa
-    jinja: "{% set options = [\"word choice\", \"grammar\", \"style\", \"coherence\"\
-      , \"meaning\"] %}\n{% set label = range(0,5)|random %}\n{% set reply=0 %}\n\
-      {% set first_lang=\"\" %}\n{% if utterance_meta.lang == \"french\" %}\n{% if\
-      \ options[label] in utterance_meta.eval_problems %}{% set reply=0 %}{% else\
-      \ %}{% set reply=1 %}{% endif %}\n{% if utterance_meta.eval_problems|length\
-      \ > 0 %}\n{% if dialogue_history|length > 0 %}\nGiven the following dialogue\
-      \ between person A and person B:\n\n{% set first_lang=dialogue_history[-5:][0].utterance_meta.lang\
-      \ %}{% for previous in dialogue_history[-5:] %}{% if previous.utterance_meta.lang\
-      \ == first_lang %}A{% else %}B{% endif %}: {% if previous.utterance_meta.lang\
-      \ != utterance_meta.lang %}{{ previous.orig }}{% else %}{{ previous.mt }}{%\
-      \ endif %}{% endfor %} \n{% if utterance_meta.lang == first_lang %}A{% else\
-      \ %}B{% endif %}: {{ mt }}\n\nDoes the last utterance contain a {{ options[label]\
-      \ }} problem, {{ \"yes\" }} or {{ \"no\" }}?\n\n||| {{ [\"yes\", \"no\" ][reply]\
-      \ }}\n{% endif %}\n{% endif %}\n{% endif %}"
+    jinja: '{% set options = ["word choice", "grammar", "style", "coherence", "meaning"]
+      %}
+
+      {% set label = range(0,5)|random %}
+
+      {% set reply=0 %}
+
+      {% set first_lang="" %}
+
+
+      {% if options[label] in utterance_meta.eval_problems %}{% set reply=0 %}{% else
+      %}{% set reply=1 %}{% endif %}
+
+      {% if utterance_meta.eval_problems|length > 0 %}
+
+
+      Given the following dialogue between person A and person B:
+
+      {% if dialogue_history|length > 0 %}{% set first_lang=dialogue_history[-5:][0].utterance_meta.lang
+      %}{% for previous in dialogue_history[-5:] %}
+
+      {% if previous.utterance_meta.lang == first_lang %}A{% else %}B{% endif %}:
+      {% if previous.utterance_meta.lang != utterance_meta.lang %}{{ previous.orig
+      }}{% else %}{{ previous.mt }}{% endif %}{% endfor %}{% endif %}
+
+      {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}: {{ mt }}
+
+
+      Does the last utterance contain a {{ options[label] }} problem, {{ "yes" }}
+      or {{ "no" }}?
+
+
+      ||| {% if utterance_meta.eval_problems|length > 0 %}{% if utterance_meta.lang
+      == "french" %}{{ ["yes", "no" ][reply] }}{% endif %}
+
+      {% endif %}
+
+      {% endif %}'
     metadata: !TemplateMetadata
       choices_in_prompt: true
       metrics:

From 7659b3d31992450c82e1af78f87fe19745869b28 Mon Sep 17 00:00:00 2001
From: Rachel Bawden <rachel.bawden@inria.fr@users.noreply.github.com>
Date: Fri, 29 Apr 2022 17:20:51 +0200
Subject: [PATCH 10/31] allow template even when no context (beginning of
 dialogue)

---
 .../templates/rbawden/DiaBLa/templates.yaml   | 349 ++++++++++++------
 1 file changed, 235 insertions(+), 114 deletions(-)

diff --git a/promptsource/templates/rbawden/DiaBLa/templates.yaml b/promptsource/templates/rbawden/DiaBLa/templates.yaml
index 46865c493..e2243d726 100644
--- a/promptsource/templates/rbawden/DiaBLa/templates.yaml
+++ b/promptsource/templates/rbawden/DiaBLa/templates.yaml
@@ -3,13 +3,18 @@ templates:
   0e55b858-92b0-4e5b-923b-0d23518035e3: !Template
     answer_choices: null
     id: 0e55b858-92b0-4e5b-923b-0d23518035e3
-    jinja: "{% set previous_ref = \"\" %}\n{% if dialogue_history|length > 0 %}\n\"\
-      {% if utterance_meta.lang == dialogue_history[-1].utterance_meta.lang %}{{ dialogue_history[-1].orig\
-      \ }}{% set previous_ref = dialogue_history[-1].ref %}{% else %}{{ dialogue_history[-1].ref\
-      \ }}{% set previous_ref = dialogue_history[-1].orig %}{% endif %}\" translates\
-      \ into French as: {{ previous_ref }}{% endif %}\n\n\"{{ orig }}\" translates\
-      \ into English as: ||| \n{% if utterance_meta.lang == \"french\" %}\n{% if dialogue_history|length\
-      \ > 0 %}\n{{ ref }}\n{% endif %}\n{% endif %}"
+    jinja: '{% set previous_ref = "" %}
+
+      {% if dialogue_history|length > 0 %}
+
+      "{% if utterance_meta.lang == dialogue_history[-1].utterance_meta.lang %}{{
+      dialogue_history[-1].orig }}{% set previous_ref = dialogue_history[-1].ref %}{%
+      else %}{{ dialogue_history[-1].ref }}{% set previous_ref = dialogue_history[-1].orig
+      %}{% endif %}" translates into French as: {{ previous_ref }}{% endif %}
+
+
+      "{{ orig }}" translates into English as: ||| {% if utterance_meta.lang == "french"
+      %}{{ ref }}{% endif %}'
     metadata: !TemplateMetadata
       choices_in_prompt: false
       metrics:
@@ -20,15 +25,26 @@ templates:
   0e841022-eb3c-4f5a-b57a-0cbd3d628b68: !Template
     answer_choices: null
     id: 0e841022-eb3c-4f5a-b57a-0cbd3d628b68
-    jinja: "{% set first_lang=\"\" %}\n{% if dialogue_history|length > 0 %}\nGiven\
-      \ the following dialogue between person A and person B:\n\n{% set first_lang=dialogue_history[-5:][0].utterance_meta.lang\
-      \ %}{% for previous in dialogue_history[-5:] %}{% if previous.utterance_meta.lang\
-      \ == first_lang %}A{% else %}B{% endif %}: {{ previous.orig }}\n{% endfor %}{%\
-      \ endif %}\nTranslate the next utterance in the dialogue into French:\n{% if\
-      \ utterance_meta.lang == first_lang %}A{% else %}B{% endif %}: {{ orig }}\n\n\
-      ||| \n{% if utterance_meta.lang == \"english\" %}\n{% if dialogue_history|length\
-      \ > 0 %}\n{% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}:\
-      \ {{ ref }}\n{% endif %}\n{% endif %}"
+    jinja: '{% set first_lang="" %}
+
+      {% if dialogue_history|length > 0 %}
+
+      Given the following dialogue between person A and person B:
+
+
+      {% set first_lang=dialogue_history[-5:][0].utterance_meta.lang %}{% for previous
+      in dialogue_history[-5:] %}{% if previous.utterance_meta.lang == first_lang
+      %}A{% else %}B{% endif %}: {{ previous.orig }}
+
+      {% endfor %}{% endif %}
+
+      Translate the next utterance in the dialogue into French:
+
+      {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}: {{ orig }}
+
+
+      ||| {% if utterance_meta.lang == "english" %}{% if utterance_meta.lang == first_lang
+      %}A{% else %}B{% endif %}: {{ ref }}{% endif %}'
     metadata: !TemplateMetadata
       choices_in_prompt: false
       metrics:
@@ -88,16 +104,29 @@ templates:
   1798dee9-8a9c-45ed-87d8-237ec7dbf5ca: !Template
     answer_choices: null
     id: 1798dee9-8a9c-45ed-87d8-237ec7dbf5ca
-    jinja: "{% set first_lang=\"\" %}\n{% if dialogue_history|length > 0 %}\nGiven\
-      \ the following dialogue between person A and person B:\n\n{% set first_lang=dialogue_history[-5:][0].utterance_meta.lang\
-      \ %}{% for previous in dialogue_history[-5:] %}{% if previous.utterance_meta.lang\
-      \ == first_lang %}A{% else %}B{% endif %}: {% if previous.utterance_meta.lang\
-      \ == utterance_meta.lang %}{{ previous.orig }}{% else %}{{ previous.ref }}{%\
-      \ endif %}\n{% endfor %}{% endif %}\nTranslate the next utterance in the dialogue\
-      \ into French:\n{% if utterance_meta.lang == first_lang %}A{% else %}B{% endif\
-      \ %}: {{ orig }}\n\n||| \n{% if utterance_meta.lang == \"english\" %}\n{% if\
-      \ dialogue_history|length > 0 %}\n{% if utterance_meta.lang == first_lang %}A{%\
-      \ else %}B{% endif %}: {{ ref }}\n{% endif %}\n{% endif %}\n"
+    jinja: '{% set first_lang="" %}
+
+      {% if dialogue_history|length > 0 %}
+
+      Given the following dialogue between person A and person B:
+
+
+      {% set first_lang=dialogue_history[-5:][0].utterance_meta.lang %}{% for previous
+      in dialogue_history[-5:] %}{% if previous.utterance_meta.lang == first_lang
+      %}A{% else %}B{% endif %}: {% if previous.utterance_meta.lang == utterance_meta.lang
+      %}{{ previous.orig }}{% else %}{{ previous.ref }}{% endif %}
+
+      {% endfor %}{% endif %}
+
+      Translate the next utterance in the dialogue into French:
+
+      {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}: {{ orig }}
+
+
+      ||| {% if utterance_meta.lang == "english" %}{% if utterance_meta.lang == first_lang
+      %}A{% else %}B{% endif %}: {{ ref }}{% endif %}
+
+      '
     metadata: !TemplateMetadata
       choices_in_prompt: false
       metrics:
@@ -117,7 +146,7 @@ templates:
       \ {% if utterance_meta.lang == \"english\" %}French{% else %}English{% endif\
       \ %}:\n{% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}: {{\
       \ orig }}\n\n||| {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif\
-      \ %}: {{ ref }}\n{% endif %}"
+      \ %}: {{ ref }}{% endif %}"
     metadata: !TemplateMetadata
       choices_in_prompt: false
       metrics:
@@ -151,13 +180,18 @@ templates:
   2abc728f-e7fc-44fc-ba2a-ad78ae2469a9: !Template
     answer_choices: null
     id: 2abc728f-e7fc-44fc-ba2a-ad78ae2469a9
-    jinja: "{% set previous_ref = \"\" %}\n{% if dialogue_history|length > 0 %}\n\"\
-      {% if utterance_meta.lang == dialogue_history[-1].utterance_meta.lang %}{{ dialogue_history[-1].orig\
-      \ }}{% set previous_ref = dialogue_history[-1].ref %}{% else %}{{ dialogue_history[-1].ref\
-      \ }}{% set previous_ref = dialogue_history[-1].orig %}{% endif %}\" translates\
-      \ as: {{ previous_ref }}{% endif %}\n\n\"{{ orig }}\" translates as: ||| \n\
-      {% if dialogue_history|length > 0 %}\n{% if utterance_meta.lang == \"english\"\
-      \ %}\n{{ ref }}\n{% endif %}\n{% endif %}"
+    jinja: '{% set previous_ref = "" %}
+
+      {% if dialogue_history|length > 0 %}
+
+      "{% if utterance_meta.lang == dialogue_history[-1].utterance_meta.lang %}{{
+      dialogue_history[-1].orig }}{% set previous_ref = dialogue_history[-1].ref %}{%
+      else %}{{ dialogue_history[-1].ref }}{% set previous_ref = dialogue_history[-1].orig
+      %}{% endif %}" translates as: {{ previous_ref }}{% endif %}
+
+
+      "{{ orig }}" translates as: ||| {% if utterance_meta.lang == "english" %}{{
+      ref }}{% endif %}'
     metadata: !TemplateMetadata
       choices_in_prompt: false
       metrics:
@@ -168,13 +202,18 @@ templates:
   40c1ee21-3cf4-4efc-b902-d3aab0a79c40: !Template
     answer_choices: null
     id: 40c1ee21-3cf4-4efc-b902-d3aab0a79c40
-    jinja: "{% set previous_ref = \"\" %}\n{% if dialogue_history|length > 0 %}\n\"\
-      {% if utterance_meta.lang == dialogue_history[-1].utterance_meta.lang %}{{ dialogue_history[-1].orig\
-      \ }}{% set previous_ref = dialogue_history[-1].ref %}{% else %}{{ dialogue_history[-1].ref\
-      \ }}{% set previous_ref = dialogue_history[-1].orig %}{% endif %}\" translates\
-      \ as: {{ previous_ref }}{% endif %}\n\n\"{{ orig }}\" translates as: ||| \n\
-      {% if dialogue_history|length > 0 %}\n{% if utterance_meta.lang == \"french\"\
-      \ %}\n{{ ref }}\n{% endif %}\n{% endif %}"
+    jinja: '{% set previous_ref = "" %}
+
+      {% if dialogue_history|length > 0 %}
+
+      "{% if utterance_meta.lang == dialogue_history[-1].utterance_meta.lang %}{{
+      dialogue_history[-1].orig }}{% set previous_ref = dialogue_history[-1].ref %}{%
+      else %}{{ dialogue_history[-1].ref }}{% set previous_ref = dialogue_history[-1].orig
+      %}{% endif %}" translates as: {{ previous_ref }}{% endif %}
+
+
+      "{{ orig }}" translates as: ||| {% if utterance_meta.lang == "french" %}{{ ref
+      }}{% endif %}'
     metadata: !TemplateMetadata
       choices_in_prompt: false
       metrics:
@@ -187,20 +226,21 @@ templates:
     id: 6a01fbe6-d5ec-4ad9-a2ee-3c48ed095885
     jinja: '{% set previous_ref = "" %}{% set other_lang = "" %}
 
-      {% if dialogue_history|length > 0 %}{% if utterance_meta.lang == "french" %}{%
-      set other_lang = "English" %}{% else %}{% set other_lang = "French" %}{% endif
-      %}
+      {% if utterance_meta.lang == "french" %}{% set other_lang = "English" %}{% else
+      %}{% set other_lang = "French" %}
+
+      {% if dialogue_history|length > 0 %}{% endif %}
 
       "{% if utterance_meta.lang == dialogue_history[-1].utterance_meta.lang %}{{
       dialogue_history[-1].orig }}{% set previous_ref = dialogue_history[-1].ref %}{%
       else %}{{ dialogue_history[-1].ref }}{% set previous_ref = dialogue_history[-1].orig
-      %}{% endif %}" translates into {{ other_lang }} as: {{ previous_ref }}
+      %}{% endif %}" translates into {{ other_lang }} as: {{ previous_ref }}{% endif
+      %}
 
 
       "{{ orig }}" translates into {{ other_lang }} as: ||| {{ ref }}
 
-
-      {% endif %}'
+      '
     metadata: !TemplateMetadata
       choices_in_prompt: false
       metrics:
@@ -211,16 +251,29 @@ templates:
   702f1f50-d6b0-4e65-a8e6-b449257f1e35: !Template
     answer_choices: null
     id: 702f1f50-d6b0-4e65-a8e6-b449257f1e35
-    jinja: "{% set first_lang=\"\" %}\n{% if dialogue_history|length > 0 %}\nGiven\
-      \ the following dialogue between person A and person B:\n\n{% set first_lang=dialogue_history[-5:][0].utterance_meta.lang\
-      \ %}{% for previous in dialogue_history[-5:] %}{% if previous.utterance_meta.lang\
-      \ == first_lang %}A{% else %}B{% endif %}: {% if previous.utterance_meta.lang\
-      \ == utterance_meta.lang %}{{ previous.orig }}{% else %}{{ previous.ref }}{%\
-      \ endif %}\n{% endfor %}{% endif %}\nTranslate the next utterance in the dialogue\
-      \ into English:\n{% if utterance_meta.lang == first_lang %}A{% else %}B{% endif\
-      \ %}: {{ orig }}\n\n||| \n{% if utterance_meta.lang == \"french\" %}\n{% if\
-      \ dialogue_history|length > 0 %}\n{% if utterance_meta.lang == first_lang %}A{%\
-      \ else %}B{% endif %}: {{ ref }}\n{% endif %}\n{% endif %}\n"
+    jinja: '{% set first_lang="" %}
+
+      {% if dialogue_history|length > 0 %}
+
+      Given the following dialogue between person A and person B:
+
+
+      {% set first_lang=dialogue_history[-5:][0].utterance_meta.lang %}{% for previous
+      in dialogue_history[-5:] %}{% if previous.utterance_meta.lang == first_lang
+      %}A{% else %}B{% endif %}: {% if previous.utterance_meta.lang == utterance_meta.lang
+      %}{{ previous.orig }}{% else %}{{ previous.ref }}{% endif %}
+
+      {% endfor %}{% endif %}
+
+      Translate the next utterance in the dialogue into English:
+
+      {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}: {{ orig }}
+
+
+      ||| {% if utterance_meta.lang == "french" %}{% if utterance_meta.lang == first_lang
+      %}A{% else %}B{% endif %}: {{ ref }}{% endif %}
+
+      '
     metadata: !TemplateMetadata
       choices_in_prompt: false
       metrics:
@@ -231,16 +284,30 @@ templates:
   72759632-7764-4493-9a6e-8f1c8b337bde: !Template
     answer_choices: null
     id: 72759632-7764-4493-9a6e-8f1c8b337bde
-    jinja: "{% set first_lang=\"\" %}\n\n{% if dialogue_history|length > 0 %}\nGiven\
-      \ the following dialogue between person A and person B:\n\n{% set first_lang=dialogue_history[-5:][0].utterance_meta.lang\
-      \ %}{% for previous in dialogue_history[-5:] %}{% if previous.utterance_meta.lang\
-      \ == first_lang %}A{% else %}B{% endif %}: {% if previous.utterance_meta.lang\
-      \ == utterance_meta.lang %}{{ previous.orig }}{% else %}{{ previous.mt }}{%\
-      \ endif %}\n{% endfor %}{% endif %}\nTranslate the next utterance in the dialogue\
-      \ into English:\n{% if utterance_meta.lang == first_lang %}A{% else %}B{% endif\
-      \ %}: {{ orig }}\n\n||| \n{% if utterance_meta.lang == \"french\" %}\n{% if\
-      \ dialogue_history|length > 0 %}\n{% if utterance_meta.lang == first_lang %}A{%\
-      \ else %}B{% endif %}: {{ ref }}\n{% endif %}\n{% endif %}\n"
+    jinja: '{% set first_lang="" %}
+
+
+      {% if dialogue_history|length > 0 %}
+
+      Given the following dialogue between person A and person B:
+
+
+      {% set first_lang=dialogue_history[-5:][0].utterance_meta.lang %}{% for previous
+      in dialogue_history[-5:] %}{% if previous.utterance_meta.lang == first_lang
+      %}A{% else %}B{% endif %}: {% if previous.utterance_meta.lang == utterance_meta.lang
+      %}{{ previous.orig }}{% else %}{{ previous.mt }}{% endif %}
+
+      {% endfor %}{% endif %}
+
+      Translate the next utterance in the dialogue into English:
+
+      {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}: {{ orig }}
+
+
+      ||| {% if utterance_meta.lang == "french" %}{% if utterance_meta.lang == first_lang
+      %}A{% else %}B{% endif %}: {{ ref }}{% endif %}
+
+      '
     metadata: !TemplateMetadata
       choices_in_prompt: false
       metrics:
@@ -263,15 +330,27 @@ templates:
   836c5096-2fd6-478c-89e8-39a050347d28: !Template
     answer_choices: null
     id: 836c5096-2fd6-478c-89e8-39a050347d28
-    jinja: "{% set first_lang=\"\" %}\n\n{% if dialogue_history|length > 0 %}\nGiven\
-      \ the following dialogue between person A and person B:\n\n{% set first_lang=dialogue_history[-5:][0].utterance_meta.lang\
-      \ %}{% for previous in dialogue_history[-5:] %}{% if previous.utterance_meta.lang\
-      \ == first_lang %}A{% else %}B{% endif %}: {{ previous.orig }}\n{% endfor %}{%\
-      \ endif %}\nTranslate the next utterance in the dialogue into English:\n{% if\
-      \ utterance_meta.lang == first_lang %}A{% else %}B{% endif %}: {{ orig }}\n\n\
-      ||| \n\n{% if utterance_meta.lang == \"french\" %}\n{% if dialogue_history|length\
-      \ > 0 %}\n{% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}:\
-      \ {{ ref }}\n{% endif %}\n{% endif %}"
+    jinja: '{% set first_lang="" %}
+
+
+      {% if dialogue_history|length > 0 %}
+
+      Given the following dialogue between person A and person B:
+
+
+      {% set first_lang=dialogue_history[-5:][0].utterance_meta.lang %}{% for previous
+      in dialogue_history[-5:] %}{% if previous.utterance_meta.lang == first_lang
+      %}A{% else %}B{% endif %}: {{ previous.orig }}
+
+      {% endfor %}{% endif %}
+
+      Translate the next utterance in the dialogue into English:
+
+      {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}: {{ orig }}
+
+
+      ||| {% if utterance_meta.lang == "french" %}{% if utterance_meta.lang == first_lang
+      %}A{% else %}B{% endif %}: {{ ref }}{% endif %}'
     metadata: !TemplateMetadata
       choices_in_prompt: false
       metrics:
@@ -294,14 +373,27 @@ templates:
   93f5256d-bd93-4056-b466-152b55860d02: !Template
     answer_choices: null
     id: 93f5256d-bd93-4056-b466-152b55860d02
-    jinja: "{% set first_lang=\"\" %}\n{% if dialogue_history|length > 0 %}\nGiven\
-      \ the following dialogue between person A and person B:\n\n{% set first_lang=dialogue_history[-5:][0].utterance_meta.lang\
-      \ %}{% for previous in dialogue_history[-5:] %}{% if previous.utterance_meta.lang\
-      \ == first_lang %}A{% else %}B{% endif %}: {{ previous.orig }}\n{% endfor %}\
-      \ \nTranslate the next utterance in the dialogue into {% if utterance_meta.lang\
-      \ == \"english\" %}French{% else %}English{% endif %}:\n{% if utterance_meta.lang\
-      \ == first_lang %}A{% else %}B{% endif %}: {{ orig }}\n\n||| {% if utterance_meta.lang\
-      \ == first_lang %}A{% else %}B{% endif %}: {{ ref }}\n{% endif %}"
+    jinja: '{% set first_lang="" %}
+
+      {% if dialogue_history|length > 0 %}
+
+      Given the following dialogue between person A and person B:
+
+
+      {% set first_lang=dialogue_history[-5:][0].utterance_meta.lang %}{% for previous
+      in dialogue_history[-5:] %}{% if previous.utterance_meta.lang == first_lang
+      %}A{% else %}B{% endif %}: {{ previous.orig }}
+
+      {% endfor %}{% endif %}
+
+      Translate the next utterance in the dialogue into {% if utterance_meta.lang
+      == "english" %}French{% else %}English{% endif %}:
+
+      {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}: {{ orig }}
+
+
+      ||| {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}: {{ ref
+      }}'
     metadata: !TemplateMetadata
       choices_in_prompt: false
       metrics:
@@ -324,13 +416,18 @@ templates:
   97d56019-a7df-4733-aed0-332c222e9079: !Template
     answer_choices: null
     id: 97d56019-a7df-4733-aed0-332c222e9079
-    jinja: "{% set previous_ref = \"\" %}\n{% if dialogue_history|length > 0 %}\n\"\
-      {% if utterance_meta.lang == dialogue_history[-1].utterance_meta.lang %}{{ dialogue_history[-1].orig\
-      \ }}{% set previous_ref = dialogue_history[-1].ref %}{% else %}{{ dialogue_history[-1].ref\
-      \ }}{% set previous_ref = dialogue_history[-1].orig %}{% endif %}\" translates\
-      \ into French as: {{ previous_ref }}{% endif %}\n\n\"{{ orig }}\" translates\
-      \ into French as: ||| \n{% if utterance_meta.lang == \"english\" %}\n{% if dialogue_history|length\
-      \ > 0 %}\n{{ ref }}\n{% endif %}\n{% endif %}"
+    jinja: '{% set previous_ref = "" %}
+
+      {% if dialogue_history|length > 0 %}
+
+      "{% if utterance_meta.lang == dialogue_history[-1].utterance_meta.lang %}{{
+      dialogue_history[-1].orig }}{% set previous_ref = dialogue_history[-1].ref %}{%
+      else %}{{ dialogue_history[-1].ref }}{% set previous_ref = dialogue_history[-1].orig
+      %}{% endif %}" translates into French as: {{ previous_ref }}{% endif %}
+
+
+      "{{ orig }}" translates into French as: ||| {% if utterance_meta.lang == "english"
+      %}{{ ref }}{% endif %}'
     metadata: !TemplateMetadata
       choices_in_prompt: false
       metrics:
@@ -364,16 +461,28 @@ templates:
   b61c81ec-29eb-47f8-a1c6-561264ac04f3: !Template
     answer_choices: null
     id: b61c81ec-29eb-47f8-a1c6-561264ac04f3
-    jinja: "{% set first_lang=\"\" %}\n{% if dialogue_history|length > 0 %}\nGiven\
-      \ the following dialogue between person A and person B:\n\n{% set first_lang=dialogue_history[-5:][0].utterance_meta.lang\
-      \ %}{% for previous in dialogue_history[-5:] %}{% if previous.utterance_meta.lang\
-      \ == first_lang %}A{% else %}B{% endif %}: {% if previous.utterance_meta.lang\
-      \ == utterance_meta.lang %}{{ previous.orig }}{% else %}{{ previous.mt }}{%\
-      \ endif %}\n{% endfor %} \nTranslate the next utterance in the dialogue into\
-      \ {% if utterance_meta.lang == \"english\" %}French{% else %}English{% endif\
-      \ %}:\n{% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}: {{\
-      \ orig }}\n\n||| {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif\
-      \ %}: {{ ref }}\n{% endif %}"
+    jinja: '{% set first_lang="" %}
+
+      {% if dialogue_history|length > 0 %}
+
+      Given the following dialogue between person A and person B:
+
+
+      {% set first_lang=dialogue_history[-5:][0].utterance_meta.lang %}{% for previous
+      in dialogue_history[-5:] %}{% if previous.utterance_meta.lang == first_lang
+      %}A{% else %}B{% endif %}: {% if previous.utterance_meta.lang == utterance_meta.lang
+      %}{{ previous.orig }}{% else %}{{ previous.mt }}{% endif %}
+
+      {% endfor %}{% endif %}
+
+      Translate the next utterance in the dialogue into {% if utterance_meta.lang
+      == "english" %}French{% else %}English{% endif %}:
+
+      {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}: {{ orig }}
+
+
+      ||| {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}: {{ ref
+      }}'
     metadata: !TemplateMetadata
       choices_in_prompt: false
       metrics:
@@ -384,16 +493,29 @@ templates:
   d068ba77-ce75-4de3-a170-ca0a7cd3f8d1: !Template
     answer_choices: null
     id: d068ba77-ce75-4de3-a170-ca0a7cd3f8d1
-    jinja: "{% set first_lang=\"\" %}\n{% if dialogue_history|length > 0 %}\nGiven\
-      \ the following dialogue between person A and person B:\n\n{% set first_lang=dialogue_history[-5:][0].utterance_meta.lang\
-      \ %}{% for previous in dialogue_history[-5:] %}{% if previous.utterance_meta.lang\
-      \ == first_lang %}A{% else %}B{% endif %}: {% if previous.utterance_meta.lang\
-      \ == utterance_meta.lang %}{{ previous.orig }}{% else %}{{ previous.mt }}{%\
-      \ endif %}\n{% endfor %}{% endif %}\nTranslate the next utterance in the dialogue\
-      \ into French:\n{% if utterance_meta.lang == first_lang %}A{% else %}B{% endif\
-      \ %}: {{ orig }}\n\n||| \n{% if utterance_meta.lang == \"english\" %}\n{% if\
-      \ dialogue_history|length > 0 %}\n{% if utterance_meta.lang == first_lang %}A{%\
-      \ else %}B{% endif %}: {{ ref }}\n{% endif %}\n{% endif %}\n"
+    jinja: '{% set first_lang="" %}
+
+      {% if dialogue_history|length > 0 %}
+
+      Given the following dialogue between person A and person B:
+
+
+      {% set first_lang=dialogue_history[-5:][0].utterance_meta.lang %}{% for previous
+      in dialogue_history[-5:] %}{% if previous.utterance_meta.lang == first_lang
+      %}A{% else %}B{% endif %}: {% if previous.utterance_meta.lang == utterance_meta.lang
+      %}{{ previous.orig }}{% else %}{{ previous.mt }}{% endif %}
+
+      {% endfor %}{% endif %}
+
+      Translate the next utterance in the dialogue into French:
+
+      {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}: {{ orig }}
+
+
+      ||| {% if utterance_meta.lang == "english" %}{% if utterance_meta.lang == first_lang
+      %}A{% else %}B{% endif %}: {{ ref }}{% endif %}
+
+      '
     metadata: !TemplateMetadata
       choices_in_prompt: false
       metrics:
@@ -463,13 +585,12 @@ templates:
       "{% if utterance_meta.lang == dialogue_history[-1].utterance_meta.lang %}{{
       dialogue_history[-1].orig }}{% set previous_ref = dialogue_history[-1].ref %}{%
       else %}{{ dialogue_history[-1].ref }}{% set previous_ref = dialogue_history[-1].orig
-      %}{% endif %}" translates as: {{ previous_ref }}
+      %}{% endif %}" translates as: {{ previous_ref }}{% endif %}
 
 
       "{{ orig }}" translates as: ||| {{ ref }}
 
-
-      {% endif %}'
+      '
     metadata: !TemplateMetadata
       choices_in_prompt: false
       metrics:

From 88127d4f59edf17d7fdba9f9bf1c0140ca126687 Mon Sep 17 00:00:00 2001
From: Rachel Bawden <rachel.bawden@inria.fr@users.noreply.github.com>
Date: Fri, 29 Apr 2022 18:22:12 +0200
Subject: [PATCH 11/31] corrected templates that use past history

---
 .../templates/rbawden/DiaBLa/templates.yaml   | 63 ++++++++-----------
 1 file changed, 25 insertions(+), 38 deletions(-)

diff --git a/promptsource/templates/rbawden/DiaBLa/templates.yaml b/promptsource/templates/rbawden/DiaBLa/templates.yaml
index e2243d726..c19d3db1f 100644
--- a/promptsource/templates/rbawden/DiaBLa/templates.yaml
+++ b/promptsource/templates/rbawden/DiaBLa/templates.yaml
@@ -68,8 +68,6 @@ templates:
       {% if options[label] in utterance_meta.eval_problems %}{% set reply=0 %}{% else
       %}{% set reply=1 %}{% endif %}
 
-      {% if utterance_meta.eval_problems|length > 0 %}
-
 
       Given the following dialogue between person A and person B:
 
@@ -88,11 +86,7 @@ templates:
 
 
       ||| {% if utterance_meta.eval_problems|length > 0 %}{% if utterance_meta.lang
-      == "english" %}{{ ["yes", "no" ][reply] }}{% endif %}
-
-      {% endif %}
-
-      {% endif %}'
+      == "english" %}{{ ["yes", "no" ][reply] }}{% endif %}{% endif %}'
     metadata: !TemplateMetadata
       choices_in_prompt: true
       metrics:
@@ -142,11 +136,11 @@ templates:
       \ %}{% for previous in dialogue_history[-5:] %}{% if previous.utterance_meta.lang\
       \ == first_lang %}A{% else %}B{% endif %}: {% if previous.utterance_meta.lang\
       \ == utterance_meta.lang %}{{ previous.orig }}{% else %}{{ previous.ref }}{%\
-      \ endif %}\n{% endfor %} \nTranslate the next utterance in the dialogue into\
-      \ {% if utterance_meta.lang == \"english\" %}French{% else %}English{% endif\
-      \ %}:\n{% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}: {{\
-      \ orig }}\n\n||| {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif\
-      \ %}: {{ ref }}{% endif %}"
+      \ endif %}\n{% endfor %}{% endif %} \nTranslate the next utterance in the dialogue\
+      \ into {% if utterance_meta.lang == \"english\" %}French{% else %}English{%\
+      \ endif %}:\n{% if utterance_meta.lang == first_lang %}A{% else %}B{% endif\
+      \ %}: {{ orig }}\n\n||| {% if utterance_meta.lang == first_lang %}A{% else %}B{%\
+      \ endif %}: {{ ref }}"
     metadata: !TemplateMetadata
       choices_in_prompt: false
       metrics:
@@ -160,16 +154,16 @@ templates:
     jinja: "{% set options = [\"word choice\", \"grammar\", \"style\", \"coherence\"\
       , \"meaning\"] %}\n{% set label = range(0,5)|random %}\n{% set reply=0 %}\n\
       {% set first_lang=\"\" %}\n{% if options[label] in utterance_meta.eval_problems\
-      \ %}{% set reply=0 %}{% else %}{% set reply=1 %}{% endif %}\n{% if utterance_meta.eval_problems|length\
-      \ > 0 %}\n{% if dialogue_history|length > 0 %}\nGiven the following dialogue\
-      \ between person A and person B:\n\n{% set first_lang=dialogue_history[-5:][0].utterance_meta.lang\
-      \ %}{% for previous in dialogue_history[-5:] %}{% if previous.utterance_meta.lang\
-      \ == first_lang %}A{% else %}B{% endif %}: {% if previous.utterance_meta.lang\
-      \ != utterance_meta.lang %}{{ previous.orig }}{% else %}{{ previous.mt }}{%\
-      \ endif %}{% endfor %} \n{% if utterance_meta.lang == first_lang %}A{% else\
-      \ %}B{% endif %}: {{ mt }}\n\nDoes the last utterance contain a {{ options[label]\
-      \ }} problem, {{ \"yes\" }} or {{ \"no\" }}?\n\n||| {{ [\"yes\", \"no\" ][reply]\
-      \ }}\n{% endif %}\n{% endif %}"
+      \ %}{% set reply=0 %}{% else %}{% set reply=1 %}{% endif %}\n{% if dialogue_history|length\
+      \ > 0 %}\nGiven the following dialogue between person A and person B:\n\n{%\
+      \ set first_lang=dialogue_history[-5:][0].utterance_meta.lang %}{% for previous\
+      \ in dialogue_history[-5:] %}{% if previous.utterance_meta.lang == first_lang\
+      \ %}A{% else %}B{% endif %}: {% if previous.utterance_meta.lang != utterance_meta.lang\
+      \ %}{{ previous.orig }}{% else %}{{ previous.mt }}{% endif %}{% endfor %}{%\
+      \ endif %} \n{% if utterance_meta.lang == first_lang %}A{% else %}B{% endif\
+      \ %}: {{ mt }}\n\nDoes the last utterance contain a {{ options[label] }} problem,\
+      \ {{ \"yes\" }} or {{ \"no\" }}?\n\n||| {% if utterance_meta.eval_problems|length\
+      \ > 0 %}{{ [\"yes\", \"no\" ][reply] }}{% endif %}"
     metadata: !TemplateMetadata
       choices_in_prompt: true
       metrics:
@@ -190,8 +184,8 @@ templates:
       %}{% endif %}" translates as: {{ previous_ref }}{% endif %}
 
 
-      "{{ orig }}" translates as: ||| {% if utterance_meta.lang == "english" %}{{
-      ref }}{% endif %}'
+      "{{ orig }}" translates as: ||| {% if dialogue_history|length > 0 %}{% if utterance_meta.lang
+      == "english" %}{{ ref }}{% endif %}{% endif %}'
     metadata: !TemplateMetadata
       choices_in_prompt: false
       metrics:
@@ -227,9 +221,9 @@ templates:
     jinja: '{% set previous_ref = "" %}{% set other_lang = "" %}
 
       {% if utterance_meta.lang == "french" %}{% set other_lang = "English" %}{% else
-      %}{% set other_lang = "French" %}
+      %}{% set other_lang = "French" %}{% endif %}
 
-      {% if dialogue_history|length > 0 %}{% endif %}
+      {% if dialogue_history|length > 0 %}
 
       "{% if utterance_meta.lang == dialogue_history[-1].utterance_meta.lang %}{{
       dialogue_history[-1].orig }}{% set previous_ref = dialogue_history[-1].ref %}{%
@@ -440,17 +434,13 @@ templates:
     id: ac4c63da-32d2-40ac-aa7a-632e8ba42b4a
     jinja: '{% set label = range(0,2)|random %}
 
-      {% if ref != mt %}
-
       Which of the following translations of "{{ orig }}" is produced automatically?
 
       {{ "A" }}) {% if label == 0 %}{{ ref }}{% else %}{{ mt }}{% endif %}
 
       {{ "B" }}) {% if label == 0 %}{{ mt }}{% else %}{{ ref }}{% endif %}
 
-      ||| {{ ["A", "B"][label] }}
-
-      {% endif %}'
+      ||| {% if ref != mt %}{{ ["A", "B"][label] }}{% endif %}'
     metadata: !TemplateMetadata
       choices_in_prompt: true
       metrics:
@@ -539,8 +529,6 @@ templates:
       {% if options[label] in utterance_meta.eval_problems %}{% set reply=0 %}{% else
       %}{% set reply=1 %}{% endif %}
 
-      {% if utterance_meta.eval_problems|length > 0 %}
-
 
       Given the following dialogue between person A and person B:
 
@@ -559,11 +547,9 @@ templates:
 
 
       ||| {% if utterance_meta.eval_problems|length > 0 %}{% if utterance_meta.lang
-      == "french" %}{{ ["yes", "no" ][reply] }}{% endif %}
-
-      {% endif %}
+      == "french" %}{{ ["yes", "no" ][reply] }}{% endif %}{% endif %}
 
-      {% endif %}'
+      '
     metadata: !TemplateMetadata
       choices_in_prompt: true
       metrics:
@@ -588,7 +574,8 @@ templates:
       %}{% endif %}" translates as: {{ previous_ref }}{% endif %}
 
 
-      "{{ orig }}" translates as: ||| {{ ref }}
+      "{{ orig }}" translates as: ||| {% if dialogue_history|length > 0 %}{{ ref }}{%
+      endif %}
 
       '
     metadata: !TemplateMetadata

From bf51583ef59855cc7b706fb740c2b62dd72f8ab1 Mon Sep 17 00:00:00 2001
From: Rachel Bawden <rachel.bawden@inria.fr@users.noreply.github.com>
Date: Tue, 10 May 2022 00:05:08 +0200
Subject: [PATCH 12/31] corrected multiple choice answer field

---
 promptsource/templates/rbawden/DiaBLa/templates.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/promptsource/templates/rbawden/DiaBLa/templates.yaml b/promptsource/templates/rbawden/DiaBLa/templates.yaml
index c19d3db1f..e6a2230ed 100644
--- a/promptsource/templates/rbawden/DiaBLa/templates.yaml
+++ b/promptsource/templates/rbawden/DiaBLa/templates.yaml
@@ -559,7 +559,7 @@ templates:
     reference: Identify presence of notable errors, same language context (5), English
       translation
   eea8f47e-9bf5-4423-980b-58a9635c1f49: !Template
-    answer_choices: 1 previous context (same language) used for analogy, both directions
+    answer_choices: null
     id: eea8f47e-9bf5-4423-980b-58a9635c1f49
     jinja: '{% set previous_ref = "" %}{% set other_lang = "" %}
 

From 5aa91909dd2d70619fccd99f2b60e50cf6d78a1b Mon Sep 17 00:00:00 2001
From: Rachel Bawden <rachel.bawden@inria.fr@users.noreply.github.com>
Date: Wed, 11 May 2022 16:57:59 +0200
Subject: [PATCH 13/31] updated templates - simplified some targets and added
 translation completion tasks (simpler?)

---
 .../templates/rbawden/DiaBLa/templates.yaml   | 260 ++++++++++++++----
 1 file changed, 202 insertions(+), 58 deletions(-)

diff --git a/promptsource/templates/rbawden/DiaBLa/templates.yaml b/promptsource/templates/rbawden/DiaBLa/templates.yaml
index e6a2230ed..19243b92f 100644
--- a/promptsource/templates/rbawden/DiaBLa/templates.yaml
+++ b/promptsource/templates/rbawden/DiaBLa/templates.yaml
@@ -38,13 +38,11 @@ templates:
 
       {% endfor %}{% endif %}
 
-      Translate the next utterance in the dialogue into French:
+      Translate {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}''s
+      next utterance into French: {{ orig }}
 
-      {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}: {{ orig }}
 
-
-      ||| {% if utterance_meta.lang == "english" %}{% if utterance_meta.lang == first_lang
-      %}A{% else %}B{% endif %}: {{ ref }}{% endif %}'
+      ||| {% if utterance_meta.lang == "english" %}{{ ref }}{% endif %}'
     metadata: !TemplateMetadata
       choices_in_prompt: false
       metrics:
@@ -85,8 +83,8 @@ templates:
       or {{ "no" }}?
 
 
-      ||| {% if utterance_meta.eval_problems|length > 0 %}{% if utterance_meta.lang
-      == "english" %}{{ ["yes", "no" ][reply] }}{% endif %}{% endif %}'
+      ||| {% if utterance_meta.lang == "english" %}{{ ["yes", "no" ][reply] }}{% endif
+      %}'
     metadata: !TemplateMetadata
       choices_in_prompt: true
       metrics:
@@ -112,13 +110,11 @@ templates:
 
       {% endfor %}{% endif %}
 
-      Translate the next utterance in the dialogue into French:
-
-      {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}: {{ orig }}
+      Translate {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}''s
+      next utterance into French: {{ orig }}
 
 
-      ||| {% if utterance_meta.lang == "english" %}{% if utterance_meta.lang == first_lang
-      %}A{% else %}B{% endif %}: {{ ref }}{% endif %}
+      ||| {% if utterance_meta.lang == "english" %} {{ ref }}{% endif %}
 
       '
     metadata: !TemplateMetadata
@@ -136,11 +132,10 @@ templates:
       \ %}{% for previous in dialogue_history[-5:] %}{% if previous.utterance_meta.lang\
       \ == first_lang %}A{% else %}B{% endif %}: {% if previous.utterance_meta.lang\
       \ == utterance_meta.lang %}{{ previous.orig }}{% else %}{{ previous.ref }}{%\
-      \ endif %}\n{% endfor %}{% endif %} \nTranslate the next utterance in the dialogue\
-      \ into {% if utterance_meta.lang == \"english\" %}French{% else %}English{%\
-      \ endif %}:\n{% if utterance_meta.lang == first_lang %}A{% else %}B{% endif\
-      \ %}: {{ orig }}\n\n||| {% if utterance_meta.lang == first_lang %}A{% else %}B{%\
-      \ endif %}: {{ ref }}"
+      \ endif %}\n{% endfor %}{% endif %} \nTranslate {% if utterance_meta.lang ==\
+      \ first_lang %}A{% else %}B{% endif %}'s next utterance in the dialogue into\
+      \ {% if utterance_meta.lang == \"english\" %}French{% else %}English{% endif\
+      \ %}: {{ orig }}\n\n||| {{ ref }}"
     metadata: !TemplateMetadata
       choices_in_prompt: false
       metrics:
@@ -157,13 +152,12 @@ templates:
       \ %}{% set reply=0 %}{% else %}{% set reply=1 %}{% endif %}\n{% if dialogue_history|length\
       \ > 0 %}\nGiven the following dialogue between person A and person B:\n\n{%\
       \ set first_lang=dialogue_history[-5:][0].utterance_meta.lang %}{% for previous\
-      \ in dialogue_history[-5:] %}{% if previous.utterance_meta.lang == first_lang\
+      \ in dialogue_history[-5:] %}\n{% if previous.utterance_meta.lang == first_lang\
       \ %}A{% else %}B{% endif %}: {% if previous.utterance_meta.lang != utterance_meta.lang\
       \ %}{{ previous.orig }}{% else %}{{ previous.mt }}{% endif %}{% endfor %}{%\
       \ endif %} \n{% if utterance_meta.lang == first_lang %}A{% else %}B{% endif\
       \ %}: {{ mt }}\n\nDoes the last utterance contain a {{ options[label] }} problem,\
-      \ {{ \"yes\" }} or {{ \"no\" }}?\n\n||| {% if utterance_meta.eval_problems|length\
-      \ > 0 %}{{ [\"yes\", \"no\" ][reply] }}{% endif %}"
+      \ {{ \"yes\" }} or {{ \"no\" }}?\n\n||| {{ [\"yes\", \"no\" ][reply] }}"
     metadata: !TemplateMetadata
       choices_in_prompt: true
       metrics:
@@ -193,6 +187,60 @@ templates:
       original_task: true
     name: MT_1-context-analogy_infer-lang_en2fr
     reference: 1 previous context (same language) used for analogy, English-to-French
+  35822dda-6f09-418a-a2a3-2178d94203de: !Template
+    answer_choices: null
+    id: 35822dda-6f09-418a-a2a3-2178d94203de
+    jinja: '{% set target_lang = "english" %}{% if utterance_meta.lang == "english"
+      %}{% set target_lang = "french" %}{% endif %}
+
+      {% for previous in dialogue_history[-2:] %}
+
+      {{ previous.orig }}{% endfor %}
+
+      {{ orig }}
+
+
+      The {% if utterance_meta.lang == "english" %}French{% else %}English{% endif
+      %} translation is:
+
+      {% for previous in dialogue_history[-2:] %}{% if previous.utterance_meta.lang
+      == target_lang %}{{ previous.orig }}{% else %}{{ previous.mt }}{% endif %}
+
+      {% endfor %} ||| {% if utterance_meta.lang =="french" %}{{ ref }}{% endif %}'
+    metadata: !TemplateMetadata
+      choices_in_prompt: false
+      metrics:
+      - BLEU
+      original_task: true
+    name: MT-2-context-complete-translation-orig-fr2en
+    reference: 2 previous contexts (orig language) complete translation, French-to-English
+  35aba14e-1b84-41a2-8150-e0adfd1684a2: !Template
+    answer_choices: null
+    id: 35aba14e-1b84-41a2-8150-e0adfd1684a2
+    jinja: '{% set target_lang = "english" %}{% if utterance_meta.lang == "english"
+      %}{% set target_lang = "french" %}{% endif %}
+
+      {% for previous in dialogue_history[-2:] %}
+
+      {{ previous.orig }}{% endfor %}
+
+      {{ orig }}
+
+
+      The {% if utterance_meta.lang == "english" %}French{% else %}English{% endif
+      %} translation is:
+
+      {% for previous in dialogue_history[-2:] %}{% if previous.utterance_meta.lang
+      == target_lang %}{{ previous.orig }}{% else %}{{ previous.mt }}{% endif %}
+
+      {% endfor %} ||| {% if utterance_meta.lang =="french" %}{{ ref }}{% endif %}'
+    metadata: !TemplateMetadata
+      choices_in_prompt: false
+      metrics:
+      - BLEU
+      original_task: true
+    name: MT-1-context-complete-translation-orig-fr2en
+    reference: 1 previous context (orig language) complete translation, French-to-English
   40c1ee21-3cf4-4efc-b902-d3aab0a79c40: !Template
     answer_choices: null
     id: 40c1ee21-3cf4-4efc-b902-d3aab0a79c40
@@ -259,13 +307,11 @@ templates:
 
       {% endfor %}{% endif %}
 
-      Translate the next utterance in the dialogue into English:
+      Translate {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}''s
+      next utterance into English: {{ orig }}
 
-      {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}: {{ orig }}
 
-
-      ||| {% if utterance_meta.lang == "french" %}{% if utterance_meta.lang == first_lang
-      %}A{% else %}B{% endif %}: {{ ref }}{% endif %}
+      ||| {% if utterance_meta.lang == "french" %} {{ ref }}{% endif %}
 
       '
     metadata: !TemplateMetadata
@@ -293,13 +339,11 @@ templates:
 
       {% endfor %}{% endif %}
 
-      Translate the next utterance in the dialogue into English:
-
-      {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}: {{ orig }}
+      Translate {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}''s
+      next utterance into English: {{ orig }}
 
 
-      ||| {% if utterance_meta.lang == "french" %}{% if utterance_meta.lang == first_lang
-      %}A{% else %}B{% endif %}: {{ ref }}{% endif %}
+      ||| {% if utterance_meta.lang == "french" %}{{ ref }}{% endif %}
 
       '
     metadata: !TemplateMetadata
@@ -312,7 +356,7 @@ templates:
   72c1cbbd-956f-4721-9cee-fd50148cf77d: !Template
     answer_choices: null
     id: 72c1cbbd-956f-4721-9cee-fd50148cf77d
-    jinja: 'Translate the following into English: "{{ orig }}" ||| {% if utterance_meta.lang
+    jinja: 'Translate this into English: {{ orig }} ||| {% if utterance_meta.lang
       == "french"  %}{{ ref }}{% endif %}'
     metadata: !TemplateMetadata
       choices_in_prompt: false
@@ -321,6 +365,33 @@ templates:
       original_task: true
     name: MT_sent_fr2en
     reference: Sentence-level, French-to-English
+  7c67ca68-f4bc-428e-a708-487809492fcc: !Template
+    answer_choices: null
+    id: 7c67ca68-f4bc-428e-a708-487809492fcc
+    jinja: '{% set target_lang = "english" %}{% if utterance_meta.lang == "english"
+      %}{% set target_lang = "french" %}{% endif %}
+
+      {% for previous in dialogue_history[-2:] %}
+
+      {{ previous.orig }}{% endfor %}
+
+      {{ orig }}
+
+
+      The {% if utterance_meta.lang == "english" %}French{% else %}English{% endif
+      %} translation is:
+
+      {% for previous in dialogue_history[-2:] %}{% if previous.utterance_meta.lang
+      == target_lang %}{{ previous.orig }}{% else %}{{ previous.mt }}{% endif %}
+
+      {% endfor %} ||| {% if utterance_meta.lang =="english" %}{{ ref }}{% endif %}'
+    metadata: !TemplateMetadata
+      choices_in_prompt: false
+      metrics:
+      - BLEU
+      original_task: true
+    name: MT-2-context-complete-translation-orig-en2fr
+    reference: 2 previous contexts (orig language) complete translation, English-to-French
   836c5096-2fd6-478c-89e8-39a050347d28: !Template
     answer_choices: null
     id: 836c5096-2fd6-478c-89e8-39a050347d28
@@ -338,13 +409,11 @@ templates:
 
       {% endfor %}{% endif %}
 
-      Translate the next utterance in the dialogue into English:
-
-      {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}: {{ orig }}
+      Translate {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}''s
+      next utterance in the dialogue into English: {{ orig }}
 
 
-      ||| {% if utterance_meta.lang == "french" %}{% if utterance_meta.lang == first_lang
-      %}A{% else %}B{% endif %}: {{ ref }}{% endif %}'
+      ||| {% if utterance_meta.lang == "french" %}{{ ref }}{% endif %}'
     metadata: !TemplateMetadata
       choices_in_prompt: false
       metrics:
@@ -355,7 +424,7 @@ templates:
   842dc41a-8af0-4dca-8b55-a87026bfac31: !Template
     answer_choices: null
     id: 842dc41a-8af0-4dca-8b55-a87026bfac31
-    jinja: 'Translate the following into {% if utterance_meta.lang == "english"  %}French{%
+    jinja: 'Translate this into {% if utterance_meta.lang == "english"  %}French{%
       else %}English{% endif %}: "{{ orig }}"? ||| {{ ref }}'
     metadata: !TemplateMetadata
       choices_in_prompt: false
@@ -380,14 +449,12 @@ templates:
 
       {% endfor %}{% endif %}
 
-      Translate the next utterance in the dialogue into {% if utterance_meta.lang
-      == "english" %}French{% else %}English{% endif %}:
+      Translate {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}''s
+      next utterance into {% if utterance_meta.lang == "english" %}French{% else %}English{%
+      endif %}: {{ orig }}
 
-      {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}: {{ orig }}
 
-
-      ||| {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}: {{ ref
-      }}'
+      ||| {{ ref }}'
     metadata: !TemplateMetadata
       choices_in_prompt: false
       metrics:
@@ -398,8 +465,8 @@ templates:
   96da9c0e-e606-4283-8494-7129c75b4d02: !Template
     answer_choices: null
     id: 96da9c0e-e606-4283-8494-7129c75b4d02
-    jinja: 'Translate the following into French: "{{ orig }}" ||| {% if utterance_meta.lang
-      == "english"  %}{{ ref }}{% endif %}'
+    jinja: 'Translate this into French: {{ orig }} ||| {% if utterance_meta.lang ==
+      "english"  %}{{ ref }}{% endif %}'
     metadata: !TemplateMetadata
       choices_in_prompt: false
       metrics:
@@ -429,6 +496,33 @@ templates:
       original_task: true
     name: MT_1-context-analogy_lang-given_en2fr
     reference: 1 previous context (same language) used for analogy, English-to-French
+  a7511f73-dd28-449f-bc6c-9609b736bb40: !Template
+    answer_choices: null
+    id: a7511f73-dd28-449f-bc6c-9609b736bb40
+    jinja: '{% set target_lang = "english" %}{% if utterance_meta.lang == "english"
+      %}{% set target_lang = "french" %}{% endif %}
+
+      {% for previous in dialogue_history[-2:] %}
+
+      {{ previous.orig }}{% endfor %}
+
+      {{ orig }}
+
+
+      The {% if utterance_meta.lang == "english" %}French{% else %}English{% endif
+      %} translation is:
+
+      {% for previous in dialogue_history[-2:] %}{% if previous.utterance_meta.lang
+      == target_lang %}{{ previous.orig }}{% else %}{{ previous.mt }}{% endif %}
+
+      {% endfor %} ||| {{ ref }}'
+    metadata: !TemplateMetadata
+      choices_in_prompt: true
+      metrics:
+      - BLEU
+      original_task: true
+    name: MT-2-context-complete-translation-orig-both-directions
+    reference: 2 previous contexts (orig language) complete translation, both directions
   ac4c63da-32d2-40ac-aa7a-632e8ba42b4a: !Template
     answer_choices: A ||| B
     id: ac4c63da-32d2-40ac-aa7a-632e8ba42b4a
@@ -465,14 +559,12 @@ templates:
 
       {% endfor %}{% endif %}
 
-      Translate the next utterance in the dialogue into {% if utterance_meta.lang
-      == "english" %}French{% else %}English{% endif %}:
+      Translate {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}''s
+      next utterance into {% if utterance_meta.lang == "english" %}French{% else %}English{%
+      endif %}: {{ orig }}
 
-      {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}: {{ orig }}
 
-
-      ||| {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}: {{ ref
-      }}'
+      ||| {{ ref }}'
     metadata: !TemplateMetadata
       choices_in_prompt: false
       metrics:
@@ -480,6 +572,33 @@ templates:
       original_task: true
     name: MT_5-context_same-lang-mt_both-directions
     reference: Up to 5 previous sentences (same language, MT), both language directions
+  ca6d7d89-e32d-4993-a73d-ba7b09f1597f: !Template
+    answer_choices: null
+    id: ca6d7d89-e32d-4993-a73d-ba7b09f1597f
+    jinja: '{% set target_lang = "english" %}{% if utterance_meta.lang == "english"
+      %}{% set target_lang = "french" %}{% endif %}
+
+      {% for previous in dialogue_history[-2:] %}
+
+      {{ previous.orig }}{% endfor %}
+
+      {{ orig }}
+
+
+      The {% if utterance_meta.lang == "english" %}French{% else %}English{% endif
+      %} translation is:
+
+      {% for previous in dialogue_history[-2:] %}{% if previous.utterance_meta.lang
+      == target_lang %}{{ previous.orig }}{% else %}{{ previous.mt }}{% endif %}
+
+      {% endfor %} ||| {% if utterance_meta.lang =="english" %}{{ ref }}{% endif %}'
+    metadata: !TemplateMetadata
+      choices_in_prompt: false
+      metrics:
+      - BLEU
+      original_task: true
+    name: MT-1-context-complete-translation-orig-en2fr
+    reference: 1 previous context (orig language) complete translation, English-to-French
   d068ba77-ce75-4de3-a170-ca0a7cd3f8d1: !Template
     answer_choices: null
     id: d068ba77-ce75-4de3-a170-ca0a7cd3f8d1
@@ -497,13 +616,11 @@ templates:
 
       {% endfor %}{% endif %}
 
-      Translate the next utterance in the dialogue into French:
+      Translate {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}''s
+      next utterance into French: {{ orig }}
 
-      {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}: {{ orig }}
 
-
-      ||| {% if utterance_meta.lang == "english" %}{% if utterance_meta.lang == first_lang
-      %}A{% else %}B{% endif %}: {{ ref }}{% endif %}
+      ||| {% if utterance_meta.lang == "english" %}{{ ref }}{% endif %}
 
       '
     metadata: !TemplateMetadata
@@ -546,8 +663,8 @@ templates:
       or {{ "no" }}?
 
 
-      ||| {% if utterance_meta.eval_problems|length > 0 %}{% if utterance_meta.lang
-      == "french" %}{{ ["yes", "no" ][reply] }}{% endif %}{% endif %}
+      ||| {% if utterance_meta.lang == "french" %}{{ ["yes", "no" ][reply] }}{% endif
+      %}
 
       '
     metadata: !TemplateMetadata
@@ -558,6 +675,33 @@ templates:
     name: classify-errors_same-lang_en
     reference: Identify presence of notable errors, same language context (5), English
       translation
+  e9f5dfda-42b5-4698-8e8d-9fc9924e2e29: !Template
+    answer_choices: null
+    id: e9f5dfda-42b5-4698-8e8d-9fc9924e2e29
+    jinja: '{% set target_lang = "english" %}{% if utterance_meta.lang == "english"
+      %}{% set target_lang = "french" %}{% endif %}
+
+      {% for previous in dialogue_history[-1:] %}
+
+      {{ previous.orig }}{% endfor %}
+
+      {{ orig }}
+
+
+      The {% if utterance_meta.lang == "english" %}French{% else %}English{% endif
+      %} translation is:
+
+      {% for previous in dialogue_history[-1:] %}{% if previous.utterance_meta.lang
+      == target_lang %}{{ previous.orig }}{% else %}{{ previous.mt }}{% endif %}
+
+      {% endfor %} ||| {{ ref }}'
+    metadata: !TemplateMetadata
+      choices_in_prompt: false
+      metrics:
+      - BLEU
+      original_task: true
+    name: MT-1-context-complete-translation-orig-both-directions
+    reference: 1 previous context (orig language) complete translation, both directions
   eea8f47e-9bf5-4423-980b-58a9635c1f49: !Template
     answer_choices: null
     id: eea8f47e-9bf5-4423-980b-58a9635c1f49

From 7d1fa37668149cd99de5f1945569e2d419755924 Mon Sep 17 00:00:00 2001
From: Rachel Bawden <rachel.bawden@inria.fr@users.noreply.github.com>
Date: Wed, 11 May 2022 17:01:48 +0200
Subject: [PATCH 14/31] updated templates - simplified some targets and added
 translation completion tasks (simpler?)

---
 .../templates/rbawden/DiaBLa/templates.yaml   | 731 ++++++++++++++++++
 1 file changed, 731 insertions(+)
 create mode 100644 promptsource/templates/rbawden/DiaBLa/templates.yaml

diff --git a/promptsource/templates/rbawden/DiaBLa/templates.yaml b/promptsource/templates/rbawden/DiaBLa/templates.yaml
new file mode 100644
index 000000000..19243b92f
--- /dev/null
+++ b/promptsource/templates/rbawden/DiaBLa/templates.yaml
@@ -0,0 +1,731 @@
+dataset: rbawden/DiaBLa
+templates:
+  0e55b858-92b0-4e5b-923b-0d23518035e3: !Template
+    answer_choices: null
+    id: 0e55b858-92b0-4e5b-923b-0d23518035e3
+    jinja: '{% set previous_ref = "" %}
+
+      {% if dialogue_history|length > 0 %}
+
+      "{% if utterance_meta.lang == dialogue_history[-1].utterance_meta.lang %}{{
+      dialogue_history[-1].orig }}{% set previous_ref = dialogue_history[-1].ref %}{%
+      else %}{{ dialogue_history[-1].ref }}{% set previous_ref = dialogue_history[-1].orig
+      %}{% endif %}" translates into French as: {{ previous_ref }}{% endif %}
+
+
+      "{{ orig }}" translates into English as: ||| {% if utterance_meta.lang == "french"
+      %}{{ ref }}{% endif %}'
+    metadata: !TemplateMetadata
+      choices_in_prompt: false
+      metrics:
+      - BLEU
+      original_task: true
+    name: MT_1-context-analogy_lang-given_fr2en
+    reference: 1 previous context (same language) used for analogy, French-to-English
+  0e841022-eb3c-4f5a-b57a-0cbd3d628b68: !Template
+    answer_choices: null
+    id: 0e841022-eb3c-4f5a-b57a-0cbd3d628b68
+    jinja: '{% set first_lang="" %}
+
+      {% if dialogue_history|length > 0 %}
+
+      Given the following dialogue between person A and person B:
+
+
+      {% set first_lang=dialogue_history[-5:][0].utterance_meta.lang %}{% for previous
+      in dialogue_history[-5:] %}{% if previous.utterance_meta.lang == first_lang
+      %}A{% else %}B{% endif %}: {{ previous.orig }}
+
+      {% endfor %}{% endif %}
+
+      Translate {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}''s
+      next utterance into French: {{ orig }}
+
+
+      ||| {% if utterance_meta.lang == "english" %}{{ ref }}{% endif %}'
+    metadata: !TemplateMetadata
+      choices_in_prompt: false
+      metrics:
+      - BLEU
+      original_task: true
+    name: MT_5-context_orig-lang_en2fr
+    reference: Up to 5 previous sentences (original language), English-to-French
+  123f36ee-c808-4cf0-aa5c-ed1f03ac3b69: !Template
+    answer_choices: yes || no
+    id: 123f36ee-c808-4cf0-aa5c-ed1f03ac3b69
+    jinja: '{% set options = ["word choice", "grammar", "style", "coherence", "meaning"]
+      %}
+
+      {% set label = range(0,5)|random %}
+
+      {% set reply=0 %}
+
+      {% set first_lang="" %}
+
+
+      {% if options[label] in utterance_meta.eval_problems %}{% set reply=0 %}{% else
+      %}{% set reply=1 %}{% endif %}
+
+
+      Given the following dialogue between person A and person B:
+
+      {% if dialogue_history|length > 0 %}{% set first_lang=dialogue_history[-5:][0].utterance_meta.lang
+      %}{% for previous in dialogue_history[-5:] %}
+
+      {% if previous.utterance_meta.lang == first_lang %}A{% else %}B{% endif %}:
+      {% if previous.utterance_meta.lang != utterance_meta.lang %}{{ previous.orig
+      }}{% else %}{{ previous.mt }}{% endif %}{% endfor %}{% endif %}
+
+      {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}: {{ mt }}
+
+
+      Does the last utterance contain a {{ options[label] }} problem, {{ "yes" }}
+      or {{ "no" }}?
+
+
+      ||| {% if utterance_meta.lang == "english" %}{{ ["yes", "no" ][reply] }}{% endif
+      %}'
+    metadata: !TemplateMetadata
+      choices_in_prompt: true
+      metrics:
+      - Accuracy
+      original_task: false
+    name: classify-errors_same-lang_fr
+    reference: Identify presence of notable errors, same language context (5), French
+      translation
+  1798dee9-8a9c-45ed-87d8-237ec7dbf5ca: !Template
+    answer_choices: null
+    id: 1798dee9-8a9c-45ed-87d8-237ec7dbf5ca
+    jinja: '{% set first_lang="" %}
+
+      {% if dialogue_history|length > 0 %}
+
+      Given the following dialogue between person A and person B:
+
+
+      {% set first_lang=dialogue_history[-5:][0].utterance_meta.lang %}{% for previous
+      in dialogue_history[-5:] %}{% if previous.utterance_meta.lang == first_lang
+      %}A{% else %}B{% endif %}: {% if previous.utterance_meta.lang == utterance_meta.lang
+      %}{{ previous.orig }}{% else %}{{ previous.ref }}{% endif %}
+
+      {% endfor %}{% endif %}
+
+      Translate {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}''s
+      next utterance into French: {{ orig }}
+
+
+      ||| {% if utterance_meta.lang == "english" %} {{ ref }}{% endif %}
+
+      '
+    metadata: !TemplateMetadata
+      choices_in_prompt: false
+      metrics:
+      - BLEU
+      original_task: true
+    name: MT_5-context_same-lang-ref_en2fr
+    reference: Up to 5 previous sentences (same language, ref), English-to-French
+  2731216a-b994-48f9-aaf6-00c7038bbed5: !Template
+    answer_choices: null
+    id: 2731216a-b994-48f9-aaf6-00c7038bbed5
+    jinja: "{% set first_lang=\"\" %}\n{% if dialogue_history|length > 0 %}\nGiven\
+      \ the following dialogue between person A and person B:\n\n{% set first_lang=dialogue_history[-5:][0].utterance_meta.lang\
+      \ %}{% for previous in dialogue_history[-5:] %}{% if previous.utterance_meta.lang\
+      \ == first_lang %}A{% else %}B{% endif %}: {% if previous.utterance_meta.lang\
+      \ == utterance_meta.lang %}{{ previous.orig }}{% else %}{{ previous.ref }}{%\
+      \ endif %}\n{% endfor %}{% endif %} \nTranslate {% if utterance_meta.lang ==\
+      \ first_lang %}A{% else %}B{% endif %}'s next utterance in the dialogue into\
+      \ {% if utterance_meta.lang == \"english\" %}French{% else %}English{% endif\
+      \ %}: {{ orig }}\n\n||| {{ ref }}"
+    metadata: !TemplateMetadata
+      choices_in_prompt: false
+      metrics:
+      - BLEU
+      original_task: true
+    name: MT_5-context_same-lang-ref_both-directions
+    reference: Up to 5 previous sentences (same language, ref), both language directions
+  28ea04f4-338e-40cf-8730-4a794b5b64b2: !Template
+    answer_choices: yes || no
+    id: 28ea04f4-338e-40cf-8730-4a794b5b64b2
+    jinja: "{% set options = [\"word choice\", \"grammar\", \"style\", \"coherence\"\
+      , \"meaning\"] %}\n{% set label = range(0,5)|random %}\n{% set reply=0 %}\n\
+      {% set first_lang=\"\" %}\n{% if options[label] in utterance_meta.eval_problems\
+      \ %}{% set reply=0 %}{% else %}{% set reply=1 %}{% endif %}\n{% if dialogue_history|length\
+      \ > 0 %}\nGiven the following dialogue between person A and person B:\n\n{%\
+      \ set first_lang=dialogue_history[-5:][0].utterance_meta.lang %}{% for previous\
+      \ in dialogue_history[-5:] %}\n{% if previous.utterance_meta.lang == first_lang\
+      \ %}A{% else %}B{% endif %}: {% if previous.utterance_meta.lang != utterance_meta.lang\
+      \ %}{{ previous.orig }}{% else %}{{ previous.mt }}{% endif %}{% endfor %}{%\
+      \ endif %} \n{% if utterance_meta.lang == first_lang %}A{% else %}B{% endif\
+      \ %}: {{ mt }}\n\nDoes the last utterance contain a {{ options[label] }} problem,\
+      \ {{ \"yes\" }} or {{ \"no\" }}?\n\n||| {{ [\"yes\", \"no\" ][reply] }}"
+    metadata: !TemplateMetadata
+      choices_in_prompt: true
+      metrics:
+      - Accuracy
+      original_task: false
+    name: classify-errors_same-lang_both-directions
+    reference: Identify presence of notable errors
+  2abc728f-e7fc-44fc-ba2a-ad78ae2469a9: !Template
+    answer_choices: null
+    id: 2abc728f-e7fc-44fc-ba2a-ad78ae2469a9
+    jinja: '{% set previous_ref = "" %}
+
+      {% if dialogue_history|length > 0 %}
+
+      "{% if utterance_meta.lang == dialogue_history[-1].utterance_meta.lang %}{{
+      dialogue_history[-1].orig }}{% set previous_ref = dialogue_history[-1].ref %}{%
+      else %}{{ dialogue_history[-1].ref }}{% set previous_ref = dialogue_history[-1].orig
+      %}{% endif %}" translates as: {{ previous_ref }}{% endif %}
+
+
+      "{{ orig }}" translates as: ||| {% if dialogue_history|length > 0 %}{% if utterance_meta.lang
+      == "english" %}{{ ref }}{% endif %}{% endif %}'
+    metadata: !TemplateMetadata
+      choices_in_prompt: false
+      metrics:
+      - BLEU
+      original_task: true
+    name: MT_1-context-analogy_infer-lang_en2fr
+    reference: 1 previous context (same language) used for analogy, English-to-French
+  35822dda-6f09-418a-a2a3-2178d94203de: !Template
+    answer_choices: null
+    id: 35822dda-6f09-418a-a2a3-2178d94203de
+    jinja: '{% set target_lang = "english" %}{% if utterance_meta.lang == "english"
+      %}{% set target_lang = "french" %}{% endif %}
+
+      {% for previous in dialogue_history[-2:] %}
+
+      {{ previous.orig }}{% endfor %}
+
+      {{ orig }}
+
+
+      The {% if utterance_meta.lang == "english" %}French{% else %}English{% endif
+      %} translation is:
+
+      {% for previous in dialogue_history[-2:] %}{% if previous.utterance_meta.lang
+      == target_lang %}{{ previous.orig }}{% else %}{{ previous.mt }}{% endif %}
+
+      {% endfor %} ||| {% if utterance_meta.lang =="french" %}{{ ref }}{% endif %}'
+    metadata: !TemplateMetadata
+      choices_in_prompt: false
+      metrics:
+      - BLEU
+      original_task: true
+    name: MT-2-context-complete-translation-orig-fr2en
+    reference: 2 previous contexts (orig language) complete translation, French-to-English
+  35aba14e-1b84-41a2-8150-e0adfd1684a2: !Template
+    answer_choices: null
+    id: 35aba14e-1b84-41a2-8150-e0adfd1684a2
+    jinja: '{% set target_lang = "english" %}{% if utterance_meta.lang == "english"
+      %}{% set target_lang = "french" %}{% endif %}
+
+      {% for previous in dialogue_history[-2:] %}
+
+      {{ previous.orig }}{% endfor %}
+
+      {{ orig }}
+
+
+      The {% if utterance_meta.lang == "english" %}French{% else %}English{% endif
+      %} translation is:
+
+      {% for previous in dialogue_history[-2:] %}{% if previous.utterance_meta.lang
+      == target_lang %}{{ previous.orig }}{% else %}{{ previous.mt }}{% endif %}
+
+      {% endfor %} ||| {% if utterance_meta.lang =="french" %}{{ ref }}{% endif %}'
+    metadata: !TemplateMetadata
+      choices_in_prompt: false
+      metrics:
+      - BLEU
+      original_task: true
+    name: MT-1-context-complete-translation-orig-fr2en
+    reference: 1 previous context (orig language) complete translation, French-to-English
+  40c1ee21-3cf4-4efc-b902-d3aab0a79c40: !Template
+    answer_choices: null
+    id: 40c1ee21-3cf4-4efc-b902-d3aab0a79c40
+    jinja: '{% set previous_ref = "" %}
+
+      {% if dialogue_history|length > 0 %}
+
+      "{% if utterance_meta.lang == dialogue_history[-1].utterance_meta.lang %}{{
+      dialogue_history[-1].orig }}{% set previous_ref = dialogue_history[-1].ref %}{%
+      else %}{{ dialogue_history[-1].ref }}{% set previous_ref = dialogue_history[-1].orig
+      %}{% endif %}" translates as: {{ previous_ref }}{% endif %}
+
+
+      "{{ orig }}" translates as: ||| {% if utterance_meta.lang == "french" %}{{ ref
+      }}{% endif %}'
+    metadata: !TemplateMetadata
+      choices_in_prompt: false
+      metrics:
+      - BLEU
+      original_task: true
+    name: MT_1-context-analogy_infer-lang_fr2en
+    reference: 1 previous context (same language) used for analogy, French-to-English
+  6a01fbe6-d5ec-4ad9-a2ee-3c48ed095885: !Template
+    answer_choices: null
+    id: 6a01fbe6-d5ec-4ad9-a2ee-3c48ed095885
+    jinja: '{% set previous_ref = "" %}{% set other_lang = "" %}
+
+      {% if utterance_meta.lang == "french" %}{% set other_lang = "English" %}{% else
+      %}{% set other_lang = "French" %}{% endif %}
+
+      {% if dialogue_history|length > 0 %}
+
+      "{% if utterance_meta.lang == dialogue_history[-1].utterance_meta.lang %}{{
+      dialogue_history[-1].orig }}{% set previous_ref = dialogue_history[-1].ref %}{%
+      else %}{{ dialogue_history[-1].ref }}{% set previous_ref = dialogue_history[-1].orig
+      %}{% endif %}" translates into {{ other_lang }} as: {{ previous_ref }}{% endif
+      %}
+
+
+      "{{ orig }}" translates into {{ other_lang }} as: ||| {{ ref }}
+
+      '
+    metadata: !TemplateMetadata
+      choices_in_prompt: false
+      metrics:
+      - BLEU
+      original_task: true
+    name: MT_1-context-analogy_lang-given_both-directions
+    reference: 1 previous context (same language) used for analogy, both directions
+  702f1f50-d6b0-4e65-a8e6-b449257f1e35: !Template
+    answer_choices: null
+    id: 702f1f50-d6b0-4e65-a8e6-b449257f1e35
+    jinja: '{% set first_lang="" %}
+
+      {% if dialogue_history|length > 0 %}
+
+      Given the following dialogue between person A and person B:
+
+
+      {% set first_lang=dialogue_history[-5:][0].utterance_meta.lang %}{% for previous
+      in dialogue_history[-5:] %}{% if previous.utterance_meta.lang == first_lang
+      %}A{% else %}B{% endif %}: {% if previous.utterance_meta.lang == utterance_meta.lang
+      %}{{ previous.orig }}{% else %}{{ previous.ref }}{% endif %}
+
+      {% endfor %}{% endif %}
+
+      Translate {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}''s
+      next utterance into English: {{ orig }}
+
+
+      ||| {% if utterance_meta.lang == "french" %} {{ ref }}{% endif %}
+
+      '
+    metadata: !TemplateMetadata
+      choices_in_prompt: false
+      metrics:
+      - BLEU
+      original_task: true
+    name: MT_5-context_same-lang-ref_fr2en
+    reference: Up to 5 previous sentences (same language, ref), French-to-English
+  72759632-7764-4493-9a6e-8f1c8b337bde: !Template
+    answer_choices: null
+    id: 72759632-7764-4493-9a6e-8f1c8b337bde
+    jinja: '{% set first_lang="" %}
+
+
+      {% if dialogue_history|length > 0 %}
+
+      Given the following dialogue between person A and person B:
+
+
+      {% set first_lang=dialogue_history[-5:][0].utterance_meta.lang %}{% for previous
+      in dialogue_history[-5:] %}{% if previous.utterance_meta.lang == first_lang
+      %}A{% else %}B{% endif %}: {% if previous.utterance_meta.lang == utterance_meta.lang
+      %}{{ previous.orig }}{% else %}{{ previous.mt }}{% endif %}
+
+      {% endfor %}{% endif %}
+
+      Translate {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}''s
+      next utterance into English: {{ orig }}
+
+
+      ||| {% if utterance_meta.lang == "french" %}{{ ref }}{% endif %}
+
+      '
+    metadata: !TemplateMetadata
+      choices_in_prompt: false
+      metrics:
+      - BLEU
+      original_task: true
+    name: MT_5-context_same-lang-mt_fr2en
+    reference: Up to 5 previous sentences (same language, MT), French-to-English
+  72c1cbbd-956f-4721-9cee-fd50148cf77d: !Template
+    answer_choices: null
+    id: 72c1cbbd-956f-4721-9cee-fd50148cf77d
+    jinja: 'Translate this into English: {{ orig }} ||| {% if utterance_meta.lang
+      == "french"  %}{{ ref }}{% endif %}'
+    metadata: !TemplateMetadata
+      choices_in_prompt: false
+      metrics:
+      - BLEU
+      original_task: true
+    name: MT_sent_fr2en
+    reference: Sentence-level, French-to-English
+  7c67ca68-f4bc-428e-a708-487809492fcc: !Template
+    answer_choices: null
+    id: 7c67ca68-f4bc-428e-a708-487809492fcc
+    jinja: '{% set target_lang = "english" %}{% if utterance_meta.lang == "english"
+      %}{% set target_lang = "french" %}{% endif %}
+
+      {% for previous in dialogue_history[-2:] %}
+
+      {{ previous.orig }}{% endfor %}
+
+      {{ orig }}
+
+
+      The {% if utterance_meta.lang == "english" %}French{% else %}English{% endif
+      %} translation is:
+
+      {% for previous in dialogue_history[-2:] %}{% if previous.utterance_meta.lang
+      == target_lang %}{{ previous.orig }}{% else %}{{ previous.mt }}{% endif %}
+
+      {% endfor %} ||| {% if utterance_meta.lang =="english" %}{{ ref }}{% endif %}'
+    metadata: !TemplateMetadata
+      choices_in_prompt: false
+      metrics:
+      - BLEU
+      original_task: true
+    name: MT-2-context-complete-translation-orig-en2fr
+    reference: 2 previous contexts (orig language) complete translation, English-to-French
+  836c5096-2fd6-478c-89e8-39a050347d28: !Template
+    answer_choices: null
+    id: 836c5096-2fd6-478c-89e8-39a050347d28
+    jinja: '{% set first_lang="" %}
+
+
+      {% if dialogue_history|length > 0 %}
+
+      Given the following dialogue between person A and person B:
+
+
+      {% set first_lang=dialogue_history[-5:][0].utterance_meta.lang %}{% for previous
+      in dialogue_history[-5:] %}{% if previous.utterance_meta.lang == first_lang
+      %}A{% else %}B{% endif %}: {{ previous.orig }}
+
+      {% endfor %}{% endif %}
+
+      Translate {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}''s
+      next utterance in the dialogue into English: {{ orig }}
+
+
+      ||| {% if utterance_meta.lang == "french" %}{{ ref }}{% endif %}'
+    metadata: !TemplateMetadata
+      choices_in_prompt: false
+      metrics:
+      - BLEU
+      original_task: false
+    name: MT_5-context_orig-lang_fr2en
+    reference: Up to 5 previous sentences (original language), French-to-English
+  842dc41a-8af0-4dca-8b55-a87026bfac31: !Template
+    answer_choices: null
+    id: 842dc41a-8af0-4dca-8b55-a87026bfac31
+    jinja: 'Translate this into {% if utterance_meta.lang == "english"  %}French{%
+      else %}English{% endif %}: "{{ orig }}"? ||| {{ ref }}'
+    metadata: !TemplateMetadata
+      choices_in_prompt: false
+      metrics:
+      - BLEU
+      original_task: true
+    name: MT_sent_both-directions
+    reference: Sentence-level, both directions
+  93f5256d-bd93-4056-b466-152b55860d02: !Template
+    answer_choices: null
+    id: 93f5256d-bd93-4056-b466-152b55860d02
+    jinja: '{% set first_lang="" %}
+
+      {% if dialogue_history|length > 0 %}
+
+      Given the following dialogue between person A and person B:
+
+
+      {% set first_lang=dialogue_history[-5:][0].utterance_meta.lang %}{% for previous
+      in dialogue_history[-5:] %}{% if previous.utterance_meta.lang == first_lang
+      %}A{% else %}B{% endif %}: {{ previous.orig }}
+
+      {% endfor %}{% endif %}
+
+      Translate {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}''s
+      next utterance into {% if utterance_meta.lang == "english" %}French{% else %}English{%
+      endif %}: {{ orig }}
+
+
+      ||| {{ ref }}'
+    metadata: !TemplateMetadata
+      choices_in_prompt: false
+      metrics:
+      - BLEU
+      original_task: true
+    name: MT_5-context_orig-lang_both-directions
+    reference: Up to 5 previous sentences (original language), both language directions
+  96da9c0e-e606-4283-8494-7129c75b4d02: !Template
+    answer_choices: null
+    id: 96da9c0e-e606-4283-8494-7129c75b4d02
+    jinja: 'Translate this into French: {{ orig }} ||| {% if utterance_meta.lang ==
+      "english"  %}{{ ref }}{% endif %}'
+    metadata: !TemplateMetadata
+      choices_in_prompt: false
+      metrics:
+      - BLEU
+      original_task: true
+    name: MT_sent_en2fr
+    reference: Sentence-level, English-to-French
+  97d56019-a7df-4733-aed0-332c222e9079: !Template
+    answer_choices: null
+    id: 97d56019-a7df-4733-aed0-332c222e9079
+    jinja: '{% set previous_ref = "" %}
+
+      {% if dialogue_history|length > 0 %}
+
+      "{% if utterance_meta.lang == dialogue_history[-1].utterance_meta.lang %}{{
+      dialogue_history[-1].orig }}{% set previous_ref = dialogue_history[-1].ref %}{%
+      else %}{{ dialogue_history[-1].ref }}{% set previous_ref = dialogue_history[-1].orig
+      %}{% endif %}" translates into French as: {{ previous_ref }}{% endif %}
+
+
+      "{{ orig }}" translates into French as: ||| {% if utterance_meta.lang == "english"
+      %}{{ ref }}{% endif %}'
+    metadata: !TemplateMetadata
+      choices_in_prompt: false
+      metrics:
+      - BLEU
+      original_task: true
+    name: MT_1-context-analogy_lang-given_en2fr
+    reference: 1 previous context (same language) used for analogy, English-to-French
+  a7511f73-dd28-449f-bc6c-9609b736bb40: !Template
+    answer_choices: null
+    id: a7511f73-dd28-449f-bc6c-9609b736bb40
+    jinja: '{% set target_lang = "english" %}{% if utterance_meta.lang == "english"
+      %}{% set target_lang = "french" %}{% endif %}
+
+      {% for previous in dialogue_history[-2:] %}
+
+      {{ previous.orig }}{% endfor %}
+
+      {{ orig }}
+
+
+      The {% if utterance_meta.lang == "english" %}French{% else %}English{% endif
+      %} translation is:
+
+      {% for previous in dialogue_history[-2:] %}{% if previous.utterance_meta.lang
+      == target_lang %}{{ previous.orig }}{% else %}{{ previous.mt }}{% endif %}
+
+      {% endfor %} ||| {{ ref }}'
+    metadata: !TemplateMetadata
+      choices_in_prompt: true
+      metrics:
+      - BLEU
+      original_task: true
+    name: MT-2-context-complete-translation-orig-both-directions
+    reference: 2 previous contexts (orig language) complete translation, both directions
+  ac4c63da-32d2-40ac-aa7a-632e8ba42b4a: !Template
+    answer_choices: A ||| B
+    id: ac4c63da-32d2-40ac-aa7a-632e8ba42b4a
+    jinja: '{% set label = range(0,2)|random %}
+
+      Which of the following translations of "{{ orig }}" is produced automatically?
+
+      {{ "A" }}) {% if label == 0 %}{{ ref }}{% else %}{{ mt }}{% endif %}
+
+      {{ "B" }}) {% if label == 0 %}{{ mt }}{% else %}{{ ref }}{% endif %}
+
+      ||| {% if ref != mt %}{{ ["A", "B"][label] }}{% endif %}'
+    metadata: !TemplateMetadata
+      choices_in_prompt: true
+      metrics:
+      - Accuracy
+      original_task: false
+    name: discriminate-mt-ref
+    reference: Identify-MT-output
+  b61c81ec-29eb-47f8-a1c6-561264ac04f3: !Template
+    answer_choices: null
+    id: b61c81ec-29eb-47f8-a1c6-561264ac04f3
+    jinja: '{% set first_lang="" %}
+
+      {% if dialogue_history|length > 0 %}
+
+      Given the following dialogue between person A and person B:
+
+
+      {% set first_lang=dialogue_history[-5:][0].utterance_meta.lang %}{% for previous
+      in dialogue_history[-5:] %}{% if previous.utterance_meta.lang == first_lang
+      %}A{% else %}B{% endif %}: {% if previous.utterance_meta.lang == utterance_meta.lang
+      %}{{ previous.orig }}{% else %}{{ previous.mt }}{% endif %}
+
+      {% endfor %}{% endif %}
+
+      Translate {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}''s
+      next utterance into {% if utterance_meta.lang == "english" %}French{% else %}English{%
+      endif %}: {{ orig }}
+
+
+      ||| {{ ref }}'
+    metadata: !TemplateMetadata
+      choices_in_prompt: false
+      metrics:
+      - BLEU
+      original_task: true
+    name: MT_5-context_same-lang-mt_both-directions
+    reference: Up to 5 previous sentences (same language, MT), both language directions
+  ca6d7d89-e32d-4993-a73d-ba7b09f1597f: !Template
+    answer_choices: null
+    id: ca6d7d89-e32d-4993-a73d-ba7b09f1597f
+    jinja: '{% set target_lang = "english" %}{% if utterance_meta.lang == "english"
+      %}{% set target_lang = "french" %}{% endif %}
+
+      {% for previous in dialogue_history[-2:] %}
+
+      {{ previous.orig }}{% endfor %}
+
+      {{ orig }}
+
+
+      The {% if utterance_meta.lang == "english" %}French{% else %}English{% endif
+      %} translation is:
+
+      {% for previous in dialogue_history[-2:] %}{% if previous.utterance_meta.lang
+      == target_lang %}{{ previous.orig }}{% else %}{{ previous.mt }}{% endif %}
+
+      {% endfor %} ||| {% if utterance_meta.lang =="english" %}{{ ref }}{% endif %}'
+    metadata: !TemplateMetadata
+      choices_in_prompt: false
+      metrics:
+      - BLEU
+      original_task: true
+    name: MT-1-context-complete-translation-orig-en2fr
+    reference: 1 previous context (orig language) complete translation, English-to-French
+  d068ba77-ce75-4de3-a170-ca0a7cd3f8d1: !Template
+    answer_choices: null
+    id: d068ba77-ce75-4de3-a170-ca0a7cd3f8d1
+    jinja: '{% set first_lang="" %}
+
+      {% if dialogue_history|length > 0 %}
+
+      Given the following dialogue between person A and person B:
+
+
+      {% set first_lang=dialogue_history[-5:][0].utterance_meta.lang %}{% for previous
+      in dialogue_history[-5:] %}{% if previous.utterance_meta.lang == first_lang
+      %}A{% else %}B{% endif %}: {% if previous.utterance_meta.lang == utterance_meta.lang
+      %}{{ previous.orig }}{% else %}{{ previous.mt }}{% endif %}
+
+      {% endfor %}{% endif %}
+
+      Translate {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}''s
+      next utterance into French: {{ orig }}
+
+
+      ||| {% if utterance_meta.lang == "english" %}{{ ref }}{% endif %}
+
+      '
+    metadata: !TemplateMetadata
+      choices_in_prompt: false
+      metrics:
+      - BLEU
+      original_task: true
+    name: MT_5-context_same-lang-mt_en2fr
+    reference: Up to 5 previous sentences (same language, MT), English-to-French
+  dddd6f35-5a01-431b-b59b-e9a8e76377aa: !Template
+    answer_choices: yes || no
+    id: dddd6f35-5a01-431b-b59b-e9a8e76377aa
+    jinja: '{% set options = ["word choice", "grammar", "style", "coherence", "meaning"]
+      %}
+
+      {% set label = range(0,5)|random %}
+
+      {% set reply=0 %}
+
+      {% set first_lang="" %}
+
+
+      {% if options[label] in utterance_meta.eval_problems %}{% set reply=0 %}{% else
+      %}{% set reply=1 %}{% endif %}
+
+
+      Given the following dialogue between person A and person B:
+
+      {% if dialogue_history|length > 0 %}{% set first_lang=dialogue_history[-5:][0].utterance_meta.lang
+      %}{% for previous in dialogue_history[-5:] %}
+
+      {% if previous.utterance_meta.lang == first_lang %}A{% else %}B{% endif %}:
+      {% if previous.utterance_meta.lang != utterance_meta.lang %}{{ previous.orig
+      }}{% else %}{{ previous.mt }}{% endif %}{% endfor %}{% endif %}
+
+      {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}: {{ mt }}
+
+
+      Does the last utterance contain a {{ options[label] }} problem, {{ "yes" }}
+      or {{ "no" }}?
+
+
+      ||| {% if utterance_meta.lang == "french" %}{{ ["yes", "no" ][reply] }}{% endif
+      %}
+
+      '
+    metadata: !TemplateMetadata
+      choices_in_prompt: true
+      metrics:
+      - Accuracy
+      original_task: false
+    name: classify-errors_same-lang_en
+    reference: Identify presence of notable errors, same language context (5), English
+      translation
+  e9f5dfda-42b5-4698-8e8d-9fc9924e2e29: !Template
+    answer_choices: null
+    id: e9f5dfda-42b5-4698-8e8d-9fc9924e2e29
+    jinja: '{% set target_lang = "english" %}{% if utterance_meta.lang == "english"
+      %}{% set target_lang = "french" %}{% endif %}
+
+      {% for previous in dialogue_history[-1:] %}
+
+      {{ previous.orig }}{% endfor %}
+
+      {{ orig }}
+
+
+      The {% if utterance_meta.lang == "english" %}French{% else %}English{% endif
+      %} translation is:
+
+      {% for previous in dialogue_history[-1:] %}{% if previous.utterance_meta.lang
+      == target_lang %}{{ previous.orig }}{% else %}{{ previous.mt }}{% endif %}
+
+      {% endfor %} ||| {{ ref }}'
+    metadata: !TemplateMetadata
+      choices_in_prompt: false
+      metrics:
+      - BLEU
+      original_task: true
+    name: MT-1-context-complete-translation-orig-both-directions
+    reference: 1 previous context (orig language) complete translation, both directions
+  eea8f47e-9bf5-4423-980b-58a9635c1f49: !Template
+    answer_choices: null
+    id: eea8f47e-9bf5-4423-980b-58a9635c1f49
+    jinja: '{% set previous_ref = "" %}{% set other_lang = "" %}
+
+      {% if dialogue_history|length > 0 %}
+
+      {% if utterance_meta.lang == "french" %}{% set other_lang = "English" %}{% else
+      %}{% set other_lang = "French" %}{% endif %}
+
+      "{% if utterance_meta.lang == dialogue_history[-1].utterance_meta.lang %}{{
+      dialogue_history[-1].orig }}{% set previous_ref = dialogue_history[-1].ref %}{%
+      else %}{{ dialogue_history[-1].ref }}{% set previous_ref = dialogue_history[-1].orig
+      %}{% endif %}" translates as: {{ previous_ref }}{% endif %}
+
+
+      "{{ orig }}" translates as: ||| {% if dialogue_history|length > 0 %}{{ ref }}{%
+      endif %}
+
+      '
+    metadata: !TemplateMetadata
+      choices_in_prompt: false
+      metrics:
+      - BLEU
+      original_task: true
+    name: MT_1-context-analogy_infer-lang_both-directions
+    reference: MT task, 1 previous context (orig language)

From 2728caf98da70c74fb008e9f3018eabbe91c557e Mon Sep 17 00:00:00 2001
From: Rachel Bawden <rachel.bawden@inria.fr@users.noreply.github.com>
Date: Wed, 11 May 2022 17:47:08 +0200
Subject: [PATCH 15/31] corrected duplicate name

---
 promptsource/templates/rbawden/DiaBLa/templates.yaml | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/promptsource/templates/rbawden/DiaBLa/templates.yaml b/promptsource/templates/rbawden/DiaBLa/templates.yaml
index 19243b92f..abaa6e832 100644
--- a/promptsource/templates/rbawden/DiaBLa/templates.yaml
+++ b/promptsource/templates/rbawden/DiaBLa/templates.yaml
@@ -21,7 +21,7 @@ templates:
       - BLEU
       original_task: true
     name: MT_1-context-analogy_lang-given_fr2en
-    reference: 1 previous context (same language) used for analogy, French-to-English
+    reference: 1 previous context (same language) used for analogy, lang given, French-to-English
   0e841022-eb3c-4f5a-b57a-0cbd3d628b68: !Template
     answer_choices: null
     id: 0e841022-eb3c-4f5a-b57a-0cbd3d628b68
@@ -289,7 +289,8 @@ templates:
       - BLEU
       original_task: true
     name: MT_1-context-analogy_lang-given_both-directions
-    reference: 1 previous context (same language) used for analogy, both directions
+    reference: 1 previous context (same language) used for analogy, language given,
+      both directions
   702f1f50-d6b0-4e65-a8e6-b449257f1e35: !Template
     answer_choices: null
     id: 702f1f50-d6b0-4e65-a8e6-b449257f1e35
@@ -495,7 +496,7 @@ templates:
       - BLEU
       original_task: true
     name: MT_1-context-analogy_lang-given_en2fr
-    reference: 1 previous context (same language) used for analogy, English-to-French
+    reference: 1 previous context (same language) used for analogy, lang given, English-to-French
   a7511f73-dd28-449f-bc6c-9609b736bb40: !Template
     answer_choices: null
     id: a7511f73-dd28-449f-bc6c-9609b736bb40

From d358fe147df71b195a3c27d529301650e499c7ae Mon Sep 17 00:00:00 2001
From: Rachel Bawden <rachel.bawden@inria.fr@users.noreply.github.com>
Date: Wed, 11 May 2022 18:01:39 +0200
Subject: [PATCH 16/31] updated duplicate definition

---
 promptsource/templates/rbawden/DiaBLa/templates.yaml | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/promptsource/templates/rbawden/DiaBLa/templates.yaml b/promptsource/templates/rbawden/DiaBLa/templates.yaml
index abaa6e832..0062a9f9d 100644
--- a/promptsource/templates/rbawden/DiaBLa/templates.yaml
+++ b/promptsource/templates/rbawden/DiaBLa/templates.yaml
@@ -200,8 +200,7 @@ templates:
       {{ orig }}
 
 
-      The {% if utterance_meta.lang == "english" %}French{% else %}English{% endif
-      %} translation is:
+      The English translation is:
 
       {% for previous in dialogue_history[-2:] %}{% if previous.utterance_meta.lang
       == target_lang %}{{ previous.orig }}{% else %}{{ previous.mt }}{% endif %}
@@ -379,8 +378,7 @@ templates:
       {{ orig }}
 
 
-      The {% if utterance_meta.lang == "english" %}French{% else %}English{% endif
-      %} translation is:
+      The French translation is:
 
       {% for previous in dialogue_history[-2:] %}{% if previous.utterance_meta.lang
       == target_lang %}{{ previous.orig }}{% else %}{{ previous.mt }}{% endif %}

From da98d593f75d044eb3a5927920d887030bb32d94 Mon Sep 17 00:00:00 2001
From: Rachel Bawden <rachel.bawden@inria.fr@users.noreply.github.com>
Date: Thu, 12 May 2022 09:57:00 +0200
Subject: [PATCH 17/31] corrected error of only two pipes in answer choices

---
 .../templates/rbawden/DiaBLa/templates.yaml   | 37 ++++++++++++++-----
 1 file changed, 27 insertions(+), 10 deletions(-)

diff --git a/promptsource/templates/rbawden/DiaBLa/templates.yaml b/promptsource/templates/rbawden/DiaBLa/templates.yaml
index 0062a9f9d..07bfcccdd 100644
--- a/promptsource/templates/rbawden/DiaBLa/templates.yaml
+++ b/promptsource/templates/rbawden/DiaBLa/templates.yaml
@@ -51,7 +51,7 @@ templates:
     name: MT_5-context_orig-lang_en2fr
     reference: Up to 5 previous sentences (original language), English-to-French
   123f36ee-c808-4cf0-aa5c-ed1f03ac3b69: !Template
-    answer_choices: yes || no
+    answer_choices: yes ||| no
     id: 123f36ee-c808-4cf0-aa5c-ed1f03ac3b69
     jinja: '{% set options = ["word choice", "grammar", "style", "coherence", "meaning"]
       %}
@@ -144,7 +144,7 @@ templates:
     name: MT_5-context_same-lang-ref_both-directions
     reference: Up to 5 previous sentences (same language, ref), both language directions
   28ea04f4-338e-40cf-8730-4a794b5b64b2: !Template
-    answer_choices: yes || no
+    answer_choices: yes ||| no
     id: 28ea04f4-338e-40cf-8730-4a794b5b64b2
     jinja: "{% set options = [\"word choice\", \"grammar\", \"style\", \"coherence\"\
       , \"meaning\"] %}\n{% set label = range(0,5)|random %}\n{% set reply=0 %}\n\
@@ -226,8 +226,7 @@ templates:
       {{ orig }}
 
 
-      The {% if utterance_meta.lang == "english" %}French{% else %}English{% endif
-      %} translation is:
+      The English translation is:
 
       {% for previous in dialogue_history[-2:] %}{% if previous.utterance_meta.lang
       == target_lang %}{{ previous.orig }}{% else %}{{ previous.mt }}{% endif %}
@@ -525,7 +524,7 @@ templates:
   ac4c63da-32d2-40ac-aa7a-632e8ba42b4a: !Template
     answer_choices: A ||| B
     id: ac4c63da-32d2-40ac-aa7a-632e8ba42b4a
-    jinja: '{% set label = range(0,2)|random %}
+    jinja: '{% set label = 0 %}
 
       Which of the following translations of "{{ orig }}" is produced automatically?
 
@@ -539,8 +538,8 @@ templates:
       metrics:
       - Accuracy
       original_task: false
-    name: discriminate-mt-ref
-    reference: Identify-MT-output
+    name: discriminate-mt-ref-A
+    reference: Identify-MT-output, answer=A
   b61c81ec-29eb-47f8-a1c6-561264ac04f3: !Template
     answer_choices: null
     id: b61c81ec-29eb-47f8-a1c6-561264ac04f3
@@ -584,8 +583,7 @@ templates:
       {{ orig }}
 
 
-      The {% if utterance_meta.lang == "english" %}French{% else %}English{% endif
-      %} translation is:
+      The French translation is:
 
       {% for previous in dialogue_history[-2:] %}{% if previous.utterance_meta.lang
       == target_lang %}{{ previous.orig }}{% else %}{{ previous.mt }}{% endif %}
@@ -598,6 +596,25 @@ templates:
       original_task: true
     name: MT-1-context-complete-translation-orig-en2fr
     reference: 1 previous context (orig language) complete translation, English-to-French
+  cfed1937-b4a5-4100-b489-3d8d9cd84423: !Template
+    answer_choices: A ||| B
+    id: cfed1937-b4a5-4100-b489-3d8d9cd84423
+    jinja: '{% set label = 1 %}
+
+      Which of the following translations of "{{ orig }}" is produced automatically?
+
+      {{ "A" }}) {% if label == 0 %}{{ ref }}{% else %}{{ mt }}{% endif %}
+
+      {{ "B" }}) {% if label == 0 %}{{ mt }}{% else %}{{ ref }}{% endif %}
+
+      ||| {% if ref != mt %}{{ ["A", "B"][label] }}{% endif %}'
+    metadata: !TemplateMetadata
+      choices_in_prompt: true
+      metrics:
+      - Accuracy
+      original_task: false
+    name: discriminate-mt-ref-B
+    reference: Identify-MT-output, answer=B
   d068ba77-ce75-4de3-a170-ca0a7cd3f8d1: !Template
     answer_choices: null
     id: d068ba77-ce75-4de3-a170-ca0a7cd3f8d1
@@ -630,7 +647,7 @@ templates:
     name: MT_5-context_same-lang-mt_en2fr
     reference: Up to 5 previous sentences (same language, MT), English-to-French
   dddd6f35-5a01-431b-b59b-e9a8e76377aa: !Template
-    answer_choices: yes || no
+    answer_choices: yes ||| no
     id: dddd6f35-5a01-431b-b59b-e9a8e76377aa
     jinja: '{% set options = ["word choice", "grammar", "style", "coherence", "meaning"]
       %}

From 54abd8ac3b6944a63da91f7113533d33c670d4b0 Mon Sep 17 00:00:00 2001
From: Rachel Bawden <rachel.bawden@inria.fr@users.noreply.github.com>
Date: Thu, 12 May 2022 10:05:41 +0200
Subject: [PATCH 18/31] corrected -2 index to -1 - duplicate defintiions

---
 promptsource/templates/rbawden/DiaBLa/templates.yaml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/promptsource/templates/rbawden/DiaBLa/templates.yaml b/promptsource/templates/rbawden/DiaBLa/templates.yaml
index 07bfcccdd..2a34458bc 100644
--- a/promptsource/templates/rbawden/DiaBLa/templates.yaml
+++ b/promptsource/templates/rbawden/DiaBLa/templates.yaml
@@ -219,7 +219,7 @@ templates:
     jinja: '{% set target_lang = "english" %}{% if utterance_meta.lang == "english"
       %}{% set target_lang = "french" %}{% endif %}
 
-      {% for previous in dialogue_history[-2:] %}
+      {% for previous in dialogue_history[-1:] %}
 
       {{ previous.orig }}{% endfor %}
 
@@ -228,7 +228,7 @@ templates:
 
       The English translation is:
 
-      {% for previous in dialogue_history[-2:] %}{% if previous.utterance_meta.lang
+      {% for previous in dialogue_history[-1:] %}{% if previous.utterance_meta.lang
       == target_lang %}{{ previous.orig }}{% else %}{{ previous.mt }}{% endif %}
 
       {% endfor %} ||| {% if utterance_meta.lang =="french" %}{{ ref }}{% endif %}'
@@ -576,7 +576,7 @@ templates:
     jinja: '{% set target_lang = "english" %}{% if utterance_meta.lang == "english"
       %}{% set target_lang = "french" %}{% endif %}
 
-      {% for previous in dialogue_history[-2:] %}
+      {% for previous in dialogue_history[-1:] %}
 
       {{ previous.orig }}{% endfor %}
 
@@ -585,7 +585,7 @@ templates:
 
       The French translation is:
 
-      {% for previous in dialogue_history[-2:] %}{% if previous.utterance_meta.lang
+      {% for previous in dialogue_history[-1:] %}{% if previous.utterance_meta.lang
       == target_lang %}{{ previous.orig }}{% else %}{{ previous.mt }}{% endif %}
 
       {% endfor %} ||| {% if utterance_meta.lang =="english" %}{{ ref }}{% endif %}'

From 84914a36a1e41842a998b72888a992a9149afde0 Mon Sep 17 00:00:00 2001
From: Rachel Bawden <rachel.bawden@inria.fr@users.noreply.github.com>
Date: Thu, 12 May 2022 14:02:36 +0200
Subject: [PATCH 19/31] pulled new branch eval-hackathon & added diabla
 templates

---
 promptsource/templates.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/promptsource/templates.py b/promptsource/templates.py
index 76d82696a..3a75337f6 100644
--- a/promptsource/templates.py
+++ b/promptsource/templates.py
@@ -26,7 +26,7 @@
 
 # These are users whose datasets should be included in the results returned by
 # filter_english_datasets (regardless of their metadata)
-INCLUDED_USERS = {"Zaid", "craffel", "GEM"}
+INCLUDED_USERS = {"Zaid", "craffel", "GEM", "rbawden"}
 
 
 def highlight(input):

From f2400206b1ae514fb81f02f3bf6953f4c748c3de Mon Sep 17 00:00:00 2001
From: Rachel Bawden <rachel.bawden@inria.fr@users.noreply.github.com>
Date: Fri, 13 May 2022 18:22:51 +0200
Subject: [PATCH 20/31] merged with eval-hackathon updates

---
 promptsource/templates.py | 1 -
 1 file changed, 1 deletion(-)

diff --git a/promptsource/templates.py b/promptsource/templates.py
index 8a54a089a..a4bb46a58 100644
--- a/promptsource/templates.py
+++ b/promptsource/templates.py
@@ -30,7 +30,6 @@
 INCLUDED_USERS = {"Zaid", "craffel", "GEM", "aps", "rbawden"}
 
 
-
 def highlight(input):
     return "<span style='color: #F08080'>" + input + "</span>"
 

From 26419f9aa0f9f588693b8e09a0428b5b193f6c7a Mon Sep 17 00:00:00 2001
From: Rachel Bawden <rachel.bawden@inria.fr@users.noreply.github.com>
Date: Mon, 16 May 2022 10:47:23 +0200
Subject: [PATCH 21/31] corrected discriminate mt ref

---
 .../templates/rbawden/DiaBLa/templates.yaml   | 20 ++++++++-----------
 1 file changed, 8 insertions(+), 12 deletions(-)

diff --git a/promptsource/templates/rbawden/DiaBLa/templates.yaml b/promptsource/templates/rbawden/DiaBLa/templates.yaml
index 2a34458bc..41d19c846 100644
--- a/promptsource/templates/rbawden/DiaBLa/templates.yaml
+++ b/promptsource/templates/rbawden/DiaBLa/templates.yaml
@@ -524,15 +524,13 @@ templates:
   ac4c63da-32d2-40ac-aa7a-632e8ba42b4a: !Template
     answer_choices: A ||| B
     id: ac4c63da-32d2-40ac-aa7a-632e8ba42b4a
-    jinja: '{% set label = 0 %}
+    jinja: 'Which of the following translations of "{{ orig }}" is produced automatically?
 
-      Which of the following translations of "{{ orig }}" is produced automatically?
+      {{ "A" }}) {{ mt }}
 
-      {{ "A" }}) {% if label == 0 %}{{ ref }}{% else %}{{ mt }}{% endif %}
+      {{ "B" }}) {{ ref }}
 
-      {{ "B" }}) {% if label == 0 %}{{ mt }}{% else %}{{ ref }}{% endif %}
-
-      ||| {% if ref != mt %}{{ ["A", "B"][label] }}{% endif %}'
+      |||{{ ["A", "B"][0] }}'
     metadata: !TemplateMetadata
       choices_in_prompt: true
       metrics:
@@ -599,15 +597,13 @@ templates:
   cfed1937-b4a5-4100-b489-3d8d9cd84423: !Template
     answer_choices: A ||| B
     id: cfed1937-b4a5-4100-b489-3d8d9cd84423
-    jinja: '{% set label = 1 %}
-
-      Which of the following translations of "{{ orig }}" is produced automatically?
+    jinja: 'Which of the following translations of "{{ orig }}" is produced automatically?
 
-      {{ "A" }}) {% if label == 0 %}{{ ref }}{% else %}{{ mt }}{% endif %}
+      {{ "A" }}) {{ ref }}
 
-      {{ "B" }}) {% if label == 0 %}{{ mt }}{% else %}{{ ref }}{% endif %}
+      {{ "B" }}) {{ mt }}
 
-      ||| {% if ref != mt %}{{ ["A", "B"][label] }}{% endif %}'
+      |||{{ ["A", "B"][1] }}'
     metadata: !TemplateMetadata
       choices_in_prompt: true
       metrics:

From 013bb630490bb8a6a72e14711be7432cc5eb55f8 Mon Sep 17 00:00:00 2001
From: Rachel Bawden <rachel.bawden@inria.fr@users.noreply.github.com>
Date: Tue, 17 May 2022 17:30:23 +0200
Subject: [PATCH 22/31] removed directional templates and only keep both
 directions (analysis to be done separately later. Also some slight modifs
 such as removing excess words and quotes

---
 .../templates/rbawden/DiaBLa/templates.yaml   | 494 +-----------------
 1 file changed, 4 insertions(+), 490 deletions(-)

diff --git a/promptsource/templates/rbawden/DiaBLa/templates.yaml b/promptsource/templates/rbawden/DiaBLa/templates.yaml
index 41d19c846..34c3c3792 100644
--- a/promptsource/templates/rbawden/DiaBLa/templates.yaml
+++ b/promptsource/templates/rbawden/DiaBLa/templates.yaml
@@ -1,129 +1,5 @@
 dataset: rbawden/DiaBLa
 templates:
-  0e55b858-92b0-4e5b-923b-0d23518035e3: !Template
-    answer_choices: null
-    id: 0e55b858-92b0-4e5b-923b-0d23518035e3
-    jinja: '{% set previous_ref = "" %}
-
-      {% if dialogue_history|length > 0 %}
-
-      "{% if utterance_meta.lang == dialogue_history[-1].utterance_meta.lang %}{{
-      dialogue_history[-1].orig }}{% set previous_ref = dialogue_history[-1].ref %}{%
-      else %}{{ dialogue_history[-1].ref }}{% set previous_ref = dialogue_history[-1].orig
-      %}{% endif %}" translates into French as: {{ previous_ref }}{% endif %}
-
-
-      "{{ orig }}" translates into English as: ||| {% if utterance_meta.lang == "french"
-      %}{{ ref }}{% endif %}'
-    metadata: !TemplateMetadata
-      choices_in_prompt: false
-      metrics:
-      - BLEU
-      original_task: true
-    name: MT_1-context-analogy_lang-given_fr2en
-    reference: 1 previous context (same language) used for analogy, lang given, French-to-English
-  0e841022-eb3c-4f5a-b57a-0cbd3d628b68: !Template
-    answer_choices: null
-    id: 0e841022-eb3c-4f5a-b57a-0cbd3d628b68
-    jinja: '{% set first_lang="" %}
-
-      {% if dialogue_history|length > 0 %}
-
-      Given the following dialogue between person A and person B:
-
-
-      {% set first_lang=dialogue_history[-5:][0].utterance_meta.lang %}{% for previous
-      in dialogue_history[-5:] %}{% if previous.utterance_meta.lang == first_lang
-      %}A{% else %}B{% endif %}: {{ previous.orig }}
-
-      {% endfor %}{% endif %}
-
-      Translate {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}''s
-      next utterance into French: {{ orig }}
-
-
-      ||| {% if utterance_meta.lang == "english" %}{{ ref }}{% endif %}'
-    metadata: !TemplateMetadata
-      choices_in_prompt: false
-      metrics:
-      - BLEU
-      original_task: true
-    name: MT_5-context_orig-lang_en2fr
-    reference: Up to 5 previous sentences (original language), English-to-French
-  123f36ee-c808-4cf0-aa5c-ed1f03ac3b69: !Template
-    answer_choices: yes ||| no
-    id: 123f36ee-c808-4cf0-aa5c-ed1f03ac3b69
-    jinja: '{% set options = ["word choice", "grammar", "style", "coherence", "meaning"]
-      %}
-
-      {% set label = range(0,5)|random %}
-
-      {% set reply=0 %}
-
-      {% set first_lang="" %}
-
-
-      {% if options[label] in utterance_meta.eval_problems %}{% set reply=0 %}{% else
-      %}{% set reply=1 %}{% endif %}
-
-
-      Given the following dialogue between person A and person B:
-
-      {% if dialogue_history|length > 0 %}{% set first_lang=dialogue_history[-5:][0].utterance_meta.lang
-      %}{% for previous in dialogue_history[-5:] %}
-
-      {% if previous.utterance_meta.lang == first_lang %}A{% else %}B{% endif %}:
-      {% if previous.utterance_meta.lang != utterance_meta.lang %}{{ previous.orig
-      }}{% else %}{{ previous.mt }}{% endif %}{% endfor %}{% endif %}
-
-      {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}: {{ mt }}
-
-
-      Does the last utterance contain a {{ options[label] }} problem, {{ "yes" }}
-      or {{ "no" }}?
-
-
-      ||| {% if utterance_meta.lang == "english" %}{{ ["yes", "no" ][reply] }}{% endif
-      %}'
-    metadata: !TemplateMetadata
-      choices_in_prompt: true
-      metrics:
-      - Accuracy
-      original_task: false
-    name: classify-errors_same-lang_fr
-    reference: Identify presence of notable errors, same language context (5), French
-      translation
-  1798dee9-8a9c-45ed-87d8-237ec7dbf5ca: !Template
-    answer_choices: null
-    id: 1798dee9-8a9c-45ed-87d8-237ec7dbf5ca
-    jinja: '{% set first_lang="" %}
-
-      {% if dialogue_history|length > 0 %}
-
-      Given the following dialogue between person A and person B:
-
-
-      {% set first_lang=dialogue_history[-5:][0].utterance_meta.lang %}{% for previous
-      in dialogue_history[-5:] %}{% if previous.utterance_meta.lang == first_lang
-      %}A{% else %}B{% endif %}: {% if previous.utterance_meta.lang == utterance_meta.lang
-      %}{{ previous.orig }}{% else %}{{ previous.ref }}{% endif %}
-
-      {% endfor %}{% endif %}
-
-      Translate {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}''s
-      next utterance into French: {{ orig }}
-
-
-      ||| {% if utterance_meta.lang == "english" %} {{ ref }}{% endif %}
-
-      '
-    metadata: !TemplateMetadata
-      choices_in_prompt: false
-      metrics:
-      - BLEU
-      original_task: true
-    name: MT_5-context_same-lang-ref_en2fr
-    reference: Up to 5 previous sentences (same language, ref), English-to-French
   2731216a-b994-48f9-aaf6-00c7038bbed5: !Template
     answer_choices: null
     id: 2731216a-b994-48f9-aaf6-00c7038bbed5
@@ -133,9 +9,9 @@ templates:
       \ == first_lang %}A{% else %}B{% endif %}: {% if previous.utterance_meta.lang\
       \ == utterance_meta.lang %}{{ previous.orig }}{% else %}{{ previous.ref }}{%\
       \ endif %}\n{% endfor %}{% endif %} \nTranslate {% if utterance_meta.lang ==\
-      \ first_lang %}A{% else %}B{% endif %}'s next utterance in the dialogue into\
-      \ {% if utterance_meta.lang == \"english\" %}French{% else %}English{% endif\
-      \ %}: {{ orig }}\n\n||| {{ ref }}"
+      \ first_lang %}A{% else %}B{% endif %}'s next utterance into {% if utterance_meta.lang\
+      \ == \"english\" %}French{% else %}English{% endif %}: {{ orig }}\n\n||| {{\
+      \ ref }}"
     metadata: !TemplateMetadata
       choices_in_prompt: false
       metrics:
@@ -165,102 +41,6 @@ templates:
       original_task: false
     name: classify-errors_same-lang_both-directions
     reference: Identify presence of notable errors
-  2abc728f-e7fc-44fc-ba2a-ad78ae2469a9: !Template
-    answer_choices: null
-    id: 2abc728f-e7fc-44fc-ba2a-ad78ae2469a9
-    jinja: '{% set previous_ref = "" %}
-
-      {% if dialogue_history|length > 0 %}
-
-      "{% if utterance_meta.lang == dialogue_history[-1].utterance_meta.lang %}{{
-      dialogue_history[-1].orig }}{% set previous_ref = dialogue_history[-1].ref %}{%
-      else %}{{ dialogue_history[-1].ref }}{% set previous_ref = dialogue_history[-1].orig
-      %}{% endif %}" translates as: {{ previous_ref }}{% endif %}
-
-
-      "{{ orig }}" translates as: ||| {% if dialogue_history|length > 0 %}{% if utterance_meta.lang
-      == "english" %}{{ ref }}{% endif %}{% endif %}'
-    metadata: !TemplateMetadata
-      choices_in_prompt: false
-      metrics:
-      - BLEU
-      original_task: true
-    name: MT_1-context-analogy_infer-lang_en2fr
-    reference: 1 previous context (same language) used for analogy, English-to-French
-  35822dda-6f09-418a-a2a3-2178d94203de: !Template
-    answer_choices: null
-    id: 35822dda-6f09-418a-a2a3-2178d94203de
-    jinja: '{% set target_lang = "english" %}{% if utterance_meta.lang == "english"
-      %}{% set target_lang = "french" %}{% endif %}
-
-      {% for previous in dialogue_history[-2:] %}
-
-      {{ previous.orig }}{% endfor %}
-
-      {{ orig }}
-
-
-      The English translation is:
-
-      {% for previous in dialogue_history[-2:] %}{% if previous.utterance_meta.lang
-      == target_lang %}{{ previous.orig }}{% else %}{{ previous.mt }}{% endif %}
-
-      {% endfor %} ||| {% if utterance_meta.lang =="french" %}{{ ref }}{% endif %}'
-    metadata: !TemplateMetadata
-      choices_in_prompt: false
-      metrics:
-      - BLEU
-      original_task: true
-    name: MT-2-context-complete-translation-orig-fr2en
-    reference: 2 previous contexts (orig language) complete translation, French-to-English
-  35aba14e-1b84-41a2-8150-e0adfd1684a2: !Template
-    answer_choices: null
-    id: 35aba14e-1b84-41a2-8150-e0adfd1684a2
-    jinja: '{% set target_lang = "english" %}{% if utterance_meta.lang == "english"
-      %}{% set target_lang = "french" %}{% endif %}
-
-      {% for previous in dialogue_history[-1:] %}
-
-      {{ previous.orig }}{% endfor %}
-
-      {{ orig }}
-
-
-      The English translation is:
-
-      {% for previous in dialogue_history[-1:] %}{% if previous.utterance_meta.lang
-      == target_lang %}{{ previous.orig }}{% else %}{{ previous.mt }}{% endif %}
-
-      {% endfor %} ||| {% if utterance_meta.lang =="french" %}{{ ref }}{% endif %}'
-    metadata: !TemplateMetadata
-      choices_in_prompt: false
-      metrics:
-      - BLEU
-      original_task: true
-    name: MT-1-context-complete-translation-orig-fr2en
-    reference: 1 previous context (orig language) complete translation, French-to-English
-  40c1ee21-3cf4-4efc-b902-d3aab0a79c40: !Template
-    answer_choices: null
-    id: 40c1ee21-3cf4-4efc-b902-d3aab0a79c40
-    jinja: '{% set previous_ref = "" %}
-
-      {% if dialogue_history|length > 0 %}
-
-      "{% if utterance_meta.lang == dialogue_history[-1].utterance_meta.lang %}{{
-      dialogue_history[-1].orig }}{% set previous_ref = dialogue_history[-1].ref %}{%
-      else %}{{ dialogue_history[-1].ref }}{% set previous_ref = dialogue_history[-1].orig
-      %}{% endif %}" translates as: {{ previous_ref }}{% endif %}
-
-
-      "{{ orig }}" translates as: ||| {% if utterance_meta.lang == "french" %}{{ ref
-      }}{% endif %}'
-    metadata: !TemplateMetadata
-      choices_in_prompt: false
-      metrics:
-      - BLEU
-      original_task: true
-    name: MT_1-context-analogy_infer-lang_fr2en
-    reference: 1 previous context (same language) used for analogy, French-to-English
   6a01fbe6-d5ec-4ad9-a2ee-3c48ed095885: !Template
     answer_choices: null
     id: 6a01fbe6-d5ec-4ad9-a2ee-3c48ed095885
@@ -289,141 +69,11 @@ templates:
     name: MT_1-context-analogy_lang-given_both-directions
     reference: 1 previous context (same language) used for analogy, language given,
       both directions
-  702f1f50-d6b0-4e65-a8e6-b449257f1e35: !Template
-    answer_choices: null
-    id: 702f1f50-d6b0-4e65-a8e6-b449257f1e35
-    jinja: '{% set first_lang="" %}
-
-      {% if dialogue_history|length > 0 %}
-
-      Given the following dialogue between person A and person B:
-
-
-      {% set first_lang=dialogue_history[-5:][0].utterance_meta.lang %}{% for previous
-      in dialogue_history[-5:] %}{% if previous.utterance_meta.lang == first_lang
-      %}A{% else %}B{% endif %}: {% if previous.utterance_meta.lang == utterance_meta.lang
-      %}{{ previous.orig }}{% else %}{{ previous.ref }}{% endif %}
-
-      {% endfor %}{% endif %}
-
-      Translate {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}''s
-      next utterance into English: {{ orig }}
-
-
-      ||| {% if utterance_meta.lang == "french" %} {{ ref }}{% endif %}
-
-      '
-    metadata: !TemplateMetadata
-      choices_in_prompt: false
-      metrics:
-      - BLEU
-      original_task: true
-    name: MT_5-context_same-lang-ref_fr2en
-    reference: Up to 5 previous sentences (same language, ref), French-to-English
-  72759632-7764-4493-9a6e-8f1c8b337bde: !Template
-    answer_choices: null
-    id: 72759632-7764-4493-9a6e-8f1c8b337bde
-    jinja: '{% set first_lang="" %}
-
-
-      {% if dialogue_history|length > 0 %}
-
-      Given the following dialogue between person A and person B:
-
-
-      {% set first_lang=dialogue_history[-5:][0].utterance_meta.lang %}{% for previous
-      in dialogue_history[-5:] %}{% if previous.utterance_meta.lang == first_lang
-      %}A{% else %}B{% endif %}: {% if previous.utterance_meta.lang == utterance_meta.lang
-      %}{{ previous.orig }}{% else %}{{ previous.mt }}{% endif %}
-
-      {% endfor %}{% endif %}
-
-      Translate {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}''s
-      next utterance into English: {{ orig }}
-
-
-      ||| {% if utterance_meta.lang == "french" %}{{ ref }}{% endif %}
-
-      '
-    metadata: !TemplateMetadata
-      choices_in_prompt: false
-      metrics:
-      - BLEU
-      original_task: true
-    name: MT_5-context_same-lang-mt_fr2en
-    reference: Up to 5 previous sentences (same language, MT), French-to-English
-  72c1cbbd-956f-4721-9cee-fd50148cf77d: !Template
-    answer_choices: null
-    id: 72c1cbbd-956f-4721-9cee-fd50148cf77d
-    jinja: 'Translate this into English: {{ orig }} ||| {% if utterance_meta.lang
-      == "french"  %}{{ ref }}{% endif %}'
-    metadata: !TemplateMetadata
-      choices_in_prompt: false
-      metrics:
-      - BLEU
-      original_task: true
-    name: MT_sent_fr2en
-    reference: Sentence-level, French-to-English
-  7c67ca68-f4bc-428e-a708-487809492fcc: !Template
-    answer_choices: null
-    id: 7c67ca68-f4bc-428e-a708-487809492fcc
-    jinja: '{% set target_lang = "english" %}{% if utterance_meta.lang == "english"
-      %}{% set target_lang = "french" %}{% endif %}
-
-      {% for previous in dialogue_history[-2:] %}
-
-      {{ previous.orig }}{% endfor %}
-
-      {{ orig }}
-
-
-      The French translation is:
-
-      {% for previous in dialogue_history[-2:] %}{% if previous.utterance_meta.lang
-      == target_lang %}{{ previous.orig }}{% else %}{{ previous.mt }}{% endif %}
-
-      {% endfor %} ||| {% if utterance_meta.lang =="english" %}{{ ref }}{% endif %}'
-    metadata: !TemplateMetadata
-      choices_in_prompt: false
-      metrics:
-      - BLEU
-      original_task: true
-    name: MT-2-context-complete-translation-orig-en2fr
-    reference: 2 previous contexts (orig language) complete translation, English-to-French
-  836c5096-2fd6-478c-89e8-39a050347d28: !Template
-    answer_choices: null
-    id: 836c5096-2fd6-478c-89e8-39a050347d28
-    jinja: '{% set first_lang="" %}
-
-
-      {% if dialogue_history|length > 0 %}
-
-      Given the following dialogue between person A and person B:
-
-
-      {% set first_lang=dialogue_history[-5:][0].utterance_meta.lang %}{% for previous
-      in dialogue_history[-5:] %}{% if previous.utterance_meta.lang == first_lang
-      %}A{% else %}B{% endif %}: {{ previous.orig }}
-
-      {% endfor %}{% endif %}
-
-      Translate {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}''s
-      next utterance in the dialogue into English: {{ orig }}
-
-
-      ||| {% if utterance_meta.lang == "french" %}{{ ref }}{% endif %}'
-    metadata: !TemplateMetadata
-      choices_in_prompt: false
-      metrics:
-      - BLEU
-      original_task: false
-    name: MT_5-context_orig-lang_fr2en
-    reference: Up to 5 previous sentences (original language), French-to-English
   842dc41a-8af0-4dca-8b55-a87026bfac31: !Template
     answer_choices: null
     id: 842dc41a-8af0-4dca-8b55-a87026bfac31
     jinja: 'Translate this into {% if utterance_meta.lang == "english"  %}French{%
-      else %}English{% endif %}: "{{ orig }}"? ||| {{ ref }}'
+      else %}English{% endif %}: {{ orig }} ||| {{ ref }}'
     metadata: !TemplateMetadata
       choices_in_prompt: false
       metrics:
@@ -460,40 +110,6 @@ templates:
       original_task: true
     name: MT_5-context_orig-lang_both-directions
     reference: Up to 5 previous sentences (original language), both language directions
-  96da9c0e-e606-4283-8494-7129c75b4d02: !Template
-    answer_choices: null
-    id: 96da9c0e-e606-4283-8494-7129c75b4d02
-    jinja: 'Translate this into French: {{ orig }} ||| {% if utterance_meta.lang ==
-      "english"  %}{{ ref }}{% endif %}'
-    metadata: !TemplateMetadata
-      choices_in_prompt: false
-      metrics:
-      - BLEU
-      original_task: true
-    name: MT_sent_en2fr
-    reference: Sentence-level, English-to-French
-  97d56019-a7df-4733-aed0-332c222e9079: !Template
-    answer_choices: null
-    id: 97d56019-a7df-4733-aed0-332c222e9079
-    jinja: '{% set previous_ref = "" %}
-
-      {% if dialogue_history|length > 0 %}
-
-      "{% if utterance_meta.lang == dialogue_history[-1].utterance_meta.lang %}{{
-      dialogue_history[-1].orig }}{% set previous_ref = dialogue_history[-1].ref %}{%
-      else %}{{ dialogue_history[-1].ref }}{% set previous_ref = dialogue_history[-1].orig
-      %}{% endif %}" translates into French as: {{ previous_ref }}{% endif %}
-
-
-      "{{ orig }}" translates into French as: ||| {% if utterance_meta.lang == "english"
-      %}{{ ref }}{% endif %}'
-    metadata: !TemplateMetadata
-      choices_in_prompt: false
-      metrics:
-      - BLEU
-      original_task: true
-    name: MT_1-context-analogy_lang-given_en2fr
-    reference: 1 previous context (same language) used for analogy, lang given, English-to-French
   a7511f73-dd28-449f-bc6c-9609b736bb40: !Template
     answer_choices: null
     id: a7511f73-dd28-449f-bc6c-9609b736bb40
@@ -568,32 +184,6 @@ templates:
       original_task: true
     name: MT_5-context_same-lang-mt_both-directions
     reference: Up to 5 previous sentences (same language, MT), both language directions
-  ca6d7d89-e32d-4993-a73d-ba7b09f1597f: !Template
-    answer_choices: null
-    id: ca6d7d89-e32d-4993-a73d-ba7b09f1597f
-    jinja: '{% set target_lang = "english" %}{% if utterance_meta.lang == "english"
-      %}{% set target_lang = "french" %}{% endif %}
-
-      {% for previous in dialogue_history[-1:] %}
-
-      {{ previous.orig }}{% endfor %}
-
-      {{ orig }}
-
-
-      The French translation is:
-
-      {% for previous in dialogue_history[-1:] %}{% if previous.utterance_meta.lang
-      == target_lang %}{{ previous.orig }}{% else %}{{ previous.mt }}{% endif %}
-
-      {% endfor %} ||| {% if utterance_meta.lang =="english" %}{{ ref }}{% endif %}'
-    metadata: !TemplateMetadata
-      choices_in_prompt: false
-      metrics:
-      - BLEU
-      original_task: true
-    name: MT-1-context-complete-translation-orig-en2fr
-    reference: 1 previous context (orig language) complete translation, English-to-French
   cfed1937-b4a5-4100-b489-3d8d9cd84423: !Template
     answer_choices: A ||| B
     id: cfed1937-b4a5-4100-b489-3d8d9cd84423
@@ -611,82 +201,6 @@ templates:
       original_task: false
     name: discriminate-mt-ref-B
     reference: Identify-MT-output, answer=B
-  d068ba77-ce75-4de3-a170-ca0a7cd3f8d1: !Template
-    answer_choices: null
-    id: d068ba77-ce75-4de3-a170-ca0a7cd3f8d1
-    jinja: '{% set first_lang="" %}
-
-      {% if dialogue_history|length > 0 %}
-
-      Given the following dialogue between person A and person B:
-
-
-      {% set first_lang=dialogue_history[-5:][0].utterance_meta.lang %}{% for previous
-      in dialogue_history[-5:] %}{% if previous.utterance_meta.lang == first_lang
-      %}A{% else %}B{% endif %}: {% if previous.utterance_meta.lang == utterance_meta.lang
-      %}{{ previous.orig }}{% else %}{{ previous.mt }}{% endif %}
-
-      {% endfor %}{% endif %}
-
-      Translate {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}''s
-      next utterance into French: {{ orig }}
-
-
-      ||| {% if utterance_meta.lang == "english" %}{{ ref }}{% endif %}
-
-      '
-    metadata: !TemplateMetadata
-      choices_in_prompt: false
-      metrics:
-      - BLEU
-      original_task: true
-    name: MT_5-context_same-lang-mt_en2fr
-    reference: Up to 5 previous sentences (same language, MT), English-to-French
-  dddd6f35-5a01-431b-b59b-e9a8e76377aa: !Template
-    answer_choices: yes ||| no
-    id: dddd6f35-5a01-431b-b59b-e9a8e76377aa
-    jinja: '{% set options = ["word choice", "grammar", "style", "coherence", "meaning"]
-      %}
-
-      {% set label = range(0,5)|random %}
-
-      {% set reply=0 %}
-
-      {% set first_lang="" %}
-
-
-      {% if options[label] in utterance_meta.eval_problems %}{% set reply=0 %}{% else
-      %}{% set reply=1 %}{% endif %}
-
-
-      Given the following dialogue between person A and person B:
-
-      {% if dialogue_history|length > 0 %}{% set first_lang=dialogue_history[-5:][0].utterance_meta.lang
-      %}{% for previous in dialogue_history[-5:] %}
-
-      {% if previous.utterance_meta.lang == first_lang %}A{% else %}B{% endif %}:
-      {% if previous.utterance_meta.lang != utterance_meta.lang %}{{ previous.orig
-      }}{% else %}{{ previous.mt }}{% endif %}{% endfor %}{% endif %}
-
-      {% if utterance_meta.lang == first_lang %}A{% else %}B{% endif %}: {{ mt }}
-
-
-      Does the last utterance contain a {{ options[label] }} problem, {{ "yes" }}
-      or {{ "no" }}?
-
-
-      ||| {% if utterance_meta.lang == "french" %}{{ ["yes", "no" ][reply] }}{% endif
-      %}
-
-      '
-    metadata: !TemplateMetadata
-      choices_in_prompt: true
-      metrics:
-      - Accuracy
-      original_task: false
-    name: classify-errors_same-lang_en
-    reference: Identify presence of notable errors, same language context (5), English
-      translation
   e9f5dfda-42b5-4698-8e8d-9fc9924e2e29: !Template
     answer_choices: null
     id: e9f5dfda-42b5-4698-8e8d-9fc9924e2e29

From 7b73d78d98fc90dc5dcfdcfe9901ee1a7b245bf8 Mon Sep 17 00:00:00 2001
From: Rachel Bawden <rachel.bawden@inria.fr@users.noreply.github.com>
Date: Tue, 17 May 2022 22:57:17 +0200
Subject: [PATCH 23/31] simplified names, changed random to choice

---
 .../templates/rbawden/DiaBLa/templates.yaml   | 77 ++++++++-----------
 1 file changed, 33 insertions(+), 44 deletions(-)

diff --git a/promptsource/templates/rbawden/DiaBLa/templates.yaml b/promptsource/templates/rbawden/DiaBLa/templates.yaml
index 34c3c3792..98834e54c 100644
--- a/promptsource/templates/rbawden/DiaBLa/templates.yaml
+++ b/promptsource/templates/rbawden/DiaBLa/templates.yaml
@@ -17,13 +17,14 @@ templates:
       metrics:
       - BLEU
       original_task: true
-    name: MT_5-context_same-lang-ref_both-directions
-    reference: Up to 5 previous sentences (same language, ref), both language directions
+    name: MT with dialogue context (5 same context ref)
+    reference: MT with dialogue context (up to 5 previous sentences, same language
+      ref)
   28ea04f4-338e-40cf-8730-4a794b5b64b2: !Template
     answer_choices: yes ||| no
     id: 28ea04f4-338e-40cf-8730-4a794b5b64b2
     jinja: "{% set options = [\"word choice\", \"grammar\", \"style\", \"coherence\"\
-      , \"meaning\"] %}\n{% set label = range(0,5)|random %}\n{% set reply=0 %}\n\
+      , \"meaning\"] %}\n{% set label = range(0,5)|choice %}\n{% set reply=0 %}\n\
       {% set first_lang=\"\" %}\n{% if options[label] in utterance_meta.eval_problems\
       \ %}{% set reply=0 %}{% else %}{% set reply=1 %}{% endif %}\n{% if dialogue_history|length\
       \ > 0 %}\nGiven the following dialogue between person A and person B:\n\n{%\
@@ -39,8 +40,9 @@ templates:
       metrics:
       - Accuracy
       original_task: false
-    name: classify-errors_same-lang_both-directions
-    reference: Identify presence of notable errors
+    name: Is the error present? (same lang)
+    reference: Identify presence of notable errors given 5 context sentences (same
+      lang mt)
   6a01fbe6-d5ec-4ad9-a2ee-3c48ed095885: !Template
     answer_choices: null
     id: 6a01fbe6-d5ec-4ad9-a2ee-3c48ed095885
@@ -66,9 +68,8 @@ templates:
       metrics:
       - BLEU
       original_task: true
-    name: MT_1-context-analogy_lang-given_both-directions
-    reference: 1 previous context (same language) used for analogy, language given,
-      both directions
+    name: MT analogy, lang given (1 same context)
+    reference: MT task, translation by analogy (same language), target language provided
   842dc41a-8af0-4dca-8b55-a87026bfac31: !Template
     answer_choices: null
     id: 842dc41a-8af0-4dca-8b55-a87026bfac31
@@ -79,8 +80,8 @@ templates:
       metrics:
       - BLEU
       original_task: true
-    name: MT_sent_both-directions
-    reference: Sentence-level, both directions
+    name: MT sentence-level
+    reference: Sentence-level
   93f5256d-bd93-4056-b466-152b55860d02: !Template
     answer_choices: null
     id: 93f5256d-bd93-4056-b466-152b55860d02
@@ -108,8 +109,8 @@ templates:
       metrics:
       - BLEU
       original_task: true
-    name: MT_5-context_orig-lang_both-directions
-    reference: Up to 5 previous sentences (original language), both language directions
+    name: MT with dialogue context (5 orig context)
+    reference: MT with dialogue context (up to 5 previous sentences, original language)
   a7511f73-dd28-449f-bc6c-9609b736bb40: !Template
     answer_choices: null
     id: a7511f73-dd28-449f-bc6c-9609b736bb40
@@ -131,29 +132,32 @@ templates:
 
       {% endfor %} ||| {{ ref }}'
     metadata: !TemplateMetadata
-      choices_in_prompt: true
+      choices_in_prompt: false
       metrics:
       - BLEU
       original_task: true
-    name: MT-2-context-complete-translation-orig-both-directions
-    reference: 2 previous contexts (orig language) complete translation, both directions
+    name: MT complete translation (2 orig context)
+    reference: MT task, complete the translation, 2 sentences of previous context
+      (orig language)
   ac4c63da-32d2-40ac-aa7a-632e8ba42b4a: !Template
     answer_choices: A ||| B
     id: ac4c63da-32d2-40ac-aa7a-632e8ba42b4a
-    jinja: 'Which of the following translations of "{{ orig }}" is produced automatically?
+    jinja: '{% set label = [''A'',''B'']|choice %}
+
+      Which of the following translations of "{{ orig }}" is produced automatically?
 
-      {{ "A" }}) {{ mt }}
+      {{ "A" }}) {% if label==''A'' %}{{ mt }}{% else %}{{ ref }}{% endif %}
 
-      {{ "B" }}) {{ ref }}
+      {{ "B" }}) {% if label==''A'' %}{{ ref }}{% else %}{{ mt }}{% endif %}
 
-      |||{{ ["A", "B"][0] }}'
+      |||{{ label }}'
     metadata: !TemplateMetadata
       choices_in_prompt: true
       metrics:
       - Accuracy
       original_task: false
-    name: discriminate-mt-ref-A
-    reference: Identify-MT-output, answer=A
+    name: Which is automatic?
+    reference: Identify MT output between MT and ref
   b61c81ec-29eb-47f8-a1c6-561264ac04f3: !Template
     answer_choices: null
     id: b61c81ec-29eb-47f8-a1c6-561264ac04f3
@@ -182,25 +186,9 @@ templates:
       metrics:
       - BLEU
       original_task: true
-    name: MT_5-context_same-lang-mt_both-directions
-    reference: Up to 5 previous sentences (same language, MT), both language directions
-  cfed1937-b4a5-4100-b489-3d8d9cd84423: !Template
-    answer_choices: A ||| B
-    id: cfed1937-b4a5-4100-b489-3d8d9cd84423
-    jinja: 'Which of the following translations of "{{ orig }}" is produced automatically?
-
-      {{ "A" }}) {{ ref }}
-
-      {{ "B" }}) {{ mt }}
-
-      |||{{ ["A", "B"][1] }}'
-    metadata: !TemplateMetadata
-      choices_in_prompt: true
-      metrics:
-      - Accuracy
-      original_task: false
-    name: discriminate-mt-ref-B
-    reference: Identify-MT-output, answer=B
+    name: MT with dialogue context (5 same context mt)
+    reference: MT with dialogue context (up to 5 previous sentences, same language
+      MT)
   e9f5dfda-42b5-4698-8e8d-9fc9924e2e29: !Template
     answer_choices: null
     id: e9f5dfda-42b5-4698-8e8d-9fc9924e2e29
@@ -226,8 +214,9 @@ templates:
       metrics:
       - BLEU
       original_task: true
-    name: MT-1-context-complete-translation-orig-both-directions
-    reference: 1 previous context (orig language) complete translation, both directions
+    name: MT complete translation (1 orig context)
+    reference: MT task, complete the translation, 1 sentence of previous context (orig
+      language)
   eea8f47e-9bf5-4423-980b-58a9635c1f49: !Template
     answer_choices: null
     id: eea8f47e-9bf5-4423-980b-58a9635c1f49
@@ -253,5 +242,5 @@ templates:
       metrics:
       - BLEU
       original_task: true
-    name: MT_1-context-analogy_infer-lang_both-directions
-    reference: MT task, 1 previous context (orig language)
+    name: MT analogy, infer lang (1 same context)
+    reference: MT task, translation by analogy (same language), infer target language

From ce61f76c65bea198190a001dcba544d62fd19e53 Mon Sep 17 00:00:00 2001
From: Rachel Bawden <rachel.bawden@inria.fr@users.noreply.github.com>
Date: Sun, 22 May 2022 18:37:22 +0200
Subject: [PATCH 24/31] added automatically generated prompts for flores-101
 (all subset) - all possible BS language directions

---
 promptsource/templates.py                     |    2 +-
 .../gsarti/flores_101/all/templates.yaml      | 7454 +++++++++++++++++
 2 files changed, 7455 insertions(+), 1 deletion(-)
 create mode 100644 promptsource/templates/gsarti/flores_101/all/templates.yaml

diff --git a/promptsource/templates.py b/promptsource/templates.py
index 4a9f9a3d1..37ea52671 100644
--- a/promptsource/templates.py
+++ b/promptsource/templates.py
@@ -26,7 +26,7 @@
 
 # These are users whose datasets should be included in the results returned by
 # filter_english_datasets (regardless of their metadata)
-INCLUDED_USERS = {"Zaid", "craffel", "GEM", "aps", "khalidalt"}
+INCLUDED_USERS = {"Zaid", "craffel", "GEM", "aps", "khalidalt", "shanya", "rbawden", "gsarti"}
 
 
 def highlight(input):
diff --git a/promptsource/templates/gsarti/flores_101/all/templates.yaml b/promptsource/templates/gsarti/flores_101/all/templates.yaml
new file mode 100644
index 000000000..1a573270a
--- /dev/null
+++ b/promptsource/templates/gsarti/flores_101/all/templates.yaml
@@ -0,0 +1,7454 @@
+dataset: gsarti/flores_101/all
+templates:
+  00843456-ace2-4495-8087-d6053dac228d: !Template
+    answer_choices: null
+    id: 00843456-ace2-4495-8087-d6053dac228d
+    jinja: 'Translate this from Brazilian Portuguese into Gujarati: {{ sentence_por
+      }} ||| {{ sentence_guj }}'
+    metadata: &id001 !TemplateMetadata
+      choices_in_prompt: false
+      metrics:
+      - BLEU
+      original_task: true
+    name: translate-this-por-guj
+    reference: Basic translation (Brazilian Portuguese into Gujarati)
+  008ff51b-8164-4830-8029-88fd78fce87a: !Template
+    answer_choices: null
+    id: 008ff51b-8164-4830-8029-88fd78fce87a
+    jinja: 'Translate this from Yoruba into Vietnamese: {{ sentence_yor }} ||| {{
+      sentence_vie }}'
+    metadata: *id001
+    name: translate-this-yor-vie
+    reference: Basic translation (Yoruba into Vietnamese)
+  00ae8bd0-881c-45d1-a32e-e24effdd0cc5: !Template
+    answer_choices: null
+    id: 00ae8bd0-881c-45d1-a32e-e24effdd0cc5
+    jinja: 'Translate this from Tamil into traditional Chinese: {{ sentence_tam }}
+      ||| {{ sentence_zho_trad }}'
+    metadata: *id001
+    name: translate-this-tam-zho_trad
+    reference: Basic translation (Tamil into traditional Chinese)
+  0164b6c2-c61b-41ac-b837-90225ecf7ac6: !Template
+    answer_choices: null
+    id: 0164b6c2-c61b-41ac-b837-90225ecf7ac6
+    jinja: 'Translate this from simplified Chinese into French: {{ sentence_zho_simpl
+      }} ||| {{ sentence_fra }}'
+    metadata: *id001
+    name: translate-this-zho_simpl-fra
+    reference: Basic translation (simplified Chinese into French)
+  0168da7d-5841-4060-974b-9837abd54103: !Template
+    answer_choices: null
+    id: 0168da7d-5841-4060-974b-9837abd54103
+    jinja: 'Translate this from French into Zulu: {{ sentence_fra }} ||| {{ sentence_zul
+      }}'
+    metadata: *id001
+    name: translate-this-fra-zul
+    reference: Basic translation (French into Zulu)
+  01d3b714-2901-4e17-9759-f7b2eaa9dd0a: !Template
+    answer_choices: null
+    id: 01d3b714-2901-4e17-9759-f7b2eaa9dd0a
+    jinja: 'Translate this from Marathi into Catalan: {{ sentence_mar }} ||| {{ sentence_cat
+      }}'
+    metadata: *id001
+    name: translate-this-mar-cat
+    reference: Basic translation (Marathi into Catalan)
+  0208212d-ea09-436c-8998-90f31c0ec598: !Template
+    answer_choices: null
+    id: 0208212d-ea09-436c-8998-90f31c0ec598
+    jinja: 'Translate this from Brazilian Portuguese into Tamil: {{ sentence_por }}
+      ||| {{ sentence_tam }}'
+    metadata: *id001
+    name: translate-this-por-tam
+    reference: Basic translation (Brazilian Portuguese into Tamil)
+  020c4ead-1180-4ac8-801e-88a8a5a44c62: !Template
+    answer_choices: null
+    id: 020c4ead-1180-4ac8-801e-88a8a5a44c62
+    jinja: 'Translate this from Hindi into Assamese: {{ sentence_hin }} ||| {{ sentence_asm
+      }}'
+    metadata: *id001
+    name: translate-this-hin-asm
+    reference: Basic translation (Hindi into Assamese)
+  02568642-dc88-4a8c-8edb-02c67b2c57ef: !Template
+    answer_choices: null
+    id: 02568642-dc88-4a8c-8edb-02c67b2c57ef
+    jinja: 'Translate this from Brazilian Portuguese into Nepali: {{ sentence_por
+      }} ||| {{ sentence_npi }}'
+    metadata: *id001
+    name: translate-this-por-npi
+    reference: Basic translation (Brazilian Portuguese into Nepali)
+  028cdbe6-41dd-4f5f-bca8-f5ee3290ab52: !Template
+    answer_choices: null
+    id: 028cdbe6-41dd-4f5f-bca8-f5ee3290ab52
+    jinja: 'Translate this from Punjabi into Nepali: {{ sentence_pan }} ||| {{ sentence_npi
+      }}'
+    metadata: *id001
+    name: translate-this-pan-npi
+    reference: Basic translation (Punjabi into Nepali)
+  03439914-f9ed-4cef-a11d-8f2fd038218f: !Template
+    answer_choices: null
+    id: 03439914-f9ed-4cef-a11d-8f2fd038218f
+    jinja: 'Translate this from Latin American Spanish into Punjabi: {{ sentence_spa
+      }} ||| {{ sentence_pan }}'
+    metadata: *id001
+    name: translate-this-spa-pan
+    reference: Basic translation (Latin American Spanish into Punjabi)
+  0376170b-d17d-468d-bfc3-2bff40e49350: !Template
+    answer_choices: null
+    id: 0376170b-d17d-468d-bfc3-2bff40e49350
+    jinja: 'Translate this from Hindi into Indonesian: {{ sentence_hin }} ||| {{ sentence_ind
+      }}'
+    metadata: *id001
+    name: translate-this-hin-ind
+    reference: Basic translation (Hindi into Indonesian)
+  038cc032-782d-4293-8347-a44f6d3050c6: !Template
+    answer_choices: null
+    id: 038cc032-782d-4293-8347-a44f6d3050c6
+    jinja: 'Translate this from Vietnamese into Northern Sotho: {{ sentence_vie }}
+      ||| {{ sentence_nso }}'
+    metadata: *id001
+    name: translate-this-vie-nso
+    reference: Basic translation (Vietnamese into Northern Sotho)
+  03d15ae1-5f68-4d07-b099-e912ed77c9d6: !Template
+    answer_choices: null
+    id: 03d15ae1-5f68-4d07-b099-e912ed77c9d6
+    jinja: 'Translate this from Swahili into English: {{ sentence_swh }} ||| {{ sentence_eng
+      }}'
+    metadata: *id001
+    name: translate-this-swh-eng
+    reference: Basic translation (Swahili into English)
+  042a2466-f3d1-4410-8266-66e2aad3bcf6: !Template
+    answer_choices: null
+    id: 042a2466-f3d1-4410-8266-66e2aad3bcf6
+    jinja: 'Translate this from Hindi into Gujarati: {{ sentence_hin }} ||| {{ sentence_guj
+      }}'
+    metadata: *id001
+    name: translate-this-hin-guj
+    reference: Basic translation (Hindi into Gujarati)
+  047f2361-d08e-4090-a1d0-8991dcacc932: !Template
+    answer_choices: null
+    id: 047f2361-d08e-4090-a1d0-8991dcacc932
+    jinja: 'Translate this from Telugu into French: {{ sentence_tel }} ||| {{ sentence_fra
+      }}'
+    metadata: *id001
+    name: translate-this-tel-fra
+    reference: Basic translation (Telugu into French)
+  048ef9f7-e1ed-48ad-9485-4e489118feb6: !Template
+    answer_choices: null
+    id: 048ef9f7-e1ed-48ad-9485-4e489118feb6
+    jinja: 'Translate this from Lingala into Oriya: {{ sentence_lin }} ||| {{ sentence_ory
+      }}'
+    metadata: *id001
+    name: translate-this-lin-ory
+    reference: Basic translation (Lingala into Oriya)
+  04982d6c-b9a1-4c02-8b6b-f04ce0944d84: !Template
+    answer_choices: null
+    id: 04982d6c-b9a1-4c02-8b6b-f04ce0944d84
+    jinja: 'Translate this from Bengali into Urdu: {{ sentence_ben }} ||| {{ sentence_urd
+      }}'
+    metadata: *id001
+    name: translate-this-ben-urd
+    reference: Basic translation (Bengali into Urdu)
+  04d0f263-ef07-4582-af4d-636b86fe642c: !Template
+    answer_choices: null
+    id: 04d0f263-ef07-4582-af4d-636b86fe642c
+    jinja: 'Translate this from Oriya into Telugu: {{ sentence_ory }} ||| {{ sentence_tel
+      }}'
+    metadata: *id001
+    name: translate-this-ory-tel
+    reference: Basic translation (Oriya into Telugu)
+  04e4e539-9171-4284-a90f-31103996a86f: !Template
+    answer_choices: null
+    id: 04e4e539-9171-4284-a90f-31103996a86f
+    jinja: 'Translate this from Oriya into Latin American Spanish: {{ sentence_ory
+      }} ||| {{ sentence_spa }}'
+    metadata: *id001
+    name: translate-this-ory-spa
+    reference: Basic translation (Oriya into Latin American Spanish)
+  051714d6-e109-480d-b26a-3dd1cee2cc74: !Template
+    answer_choices: null
+    id: 051714d6-e109-480d-b26a-3dd1cee2cc74
+    jinja: 'Translate this from Telugu into Brazilian Portuguese: {{ sentence_tel
+      }} ||| {{ sentence_por }}'
+    metadata: *id001
+    name: translate-this-tel-por
+    reference: Basic translation (Telugu into Brazilian Portuguese)
+  0583b146-5e07-4d43-a793-38fe9123ebe8: !Template
+    answer_choices: null
+    id: 0583b146-5e07-4d43-a793-38fe9123ebe8
+    jinja: 'Translate this from traditional Chinese into Nepali: {{ sentence_zho_trad
+      }} ||| {{ sentence_npi }}'
+    metadata: *id001
+    name: translate-this-zho_trad-npi
+    reference: Basic translation (traditional Chinese into Nepali)
+  058fc587-3cca-4807-ab07-c64c95cf33c0: !Template
+    answer_choices: null
+    id: 058fc587-3cca-4807-ab07-c64c95cf33c0
+    jinja: 'Translate this from French into Punjabi: {{ sentence_fra }} ||| {{ sentence_pan
+      }}'
+    metadata: *id001
+    name: translate-this-fra-pan
+    reference: Basic translation (French into Punjabi)
+  05f78da6-9494-462c-9c1e-bd76a17404b6: !Template
+    answer_choices: null
+    id: 05f78da6-9494-462c-9c1e-bd76a17404b6
+    jinja: 'Translate this from simplified Chinese into Catalan: {{ sentence_zho_simpl
+      }} ||| {{ sentence_cat }}'
+    metadata: *id001
+    name: translate-this-zho_simpl-cat
+    reference: Basic translation (simplified Chinese into Catalan)
+  06add134-ed1b-4cb3-a98d-c360c3244a61: !Template
+    answer_choices: null
+    id: 06add134-ed1b-4cb3-a98d-c360c3244a61
+    jinja: 'Translate this from Assamese into Indonesian: {{ sentence_asm }} ||| {{
+      sentence_ind }}'
+    metadata: *id001
+    name: translate-this-asm-ind
+    reference: Basic translation (Assamese into Indonesian)
+  06d4045b-49b6-4301-9983-1a92991432ab: !Template
+    answer_choices: null
+    id: 06d4045b-49b6-4301-9983-1a92991432ab
+    jinja: 'Translate this from Marathi into traditional Chinese: {{ sentence_mar
+      }} ||| {{ sentence_zho_trad }}'
+    metadata: *id001
+    name: translate-this-mar-zho_trad
+    reference: Basic translation (Marathi into traditional Chinese)
+  07c43fb6-b9d2-4edd-85ae-999e2eac0448: !Template
+    answer_choices: null
+    id: 07c43fb6-b9d2-4edd-85ae-999e2eac0448
+    jinja: 'Translate this from French into Northern Sotho: {{ sentence_fra }} |||
+      {{ sentence_nso }}'
+    metadata: *id001
+    name: translate-this-fra-nso
+    reference: Basic translation (French into Northern Sotho)
+  07d5ce7d-8437-4dce-bd5f-e272a3f637ed: !Template
+    answer_choices: null
+    id: 07d5ce7d-8437-4dce-bd5f-e272a3f637ed
+    jinja: 'Translate this from Telugu into Arabic: {{ sentence_tel }} ||| {{ sentence_ara
+      }}'
+    metadata: *id001
+    name: translate-this-tel-ara
+    reference: Basic translation (Telugu into Arabic)
+  07e4dc9a-bef2-4cf0-9e2b-6d9dd92dc37f: !Template
+    answer_choices: null
+    id: 07e4dc9a-bef2-4cf0-9e2b-6d9dd92dc37f
+    jinja: 'Translate this from Oriya into Igbo: {{ sentence_ory }} ||| {{ sentence_ibo
+      }}'
+    metadata: *id001
+    name: translate-this-ory-ibo
+    reference: Basic translation (Oriya into Igbo)
+  080da2dd-4496-407f-aa93-35f97ebb858c: !Template
+    answer_choices: null
+    id: 080da2dd-4496-407f-aa93-35f97ebb858c
+    jinja: 'Translate this from English into Hindi: {{ sentence_eng }} ||| {{ sentence_hin
+      }}'
+    metadata: *id001
+    name: translate-this-eng-hin
+    reference: Basic translation (English into Hindi)
+  083f8bf5-3932-416d-86de-73dbe14bbf3f: !Template
+    answer_choices: null
+    id: 083f8bf5-3932-416d-86de-73dbe14bbf3f
+    jinja: 'Translate this from Telugu into Assamese: {{ sentence_tel }} ||| {{ sentence_asm
+      }}'
+    metadata: *id001
+    name: translate-this-tel-asm
+    reference: Basic translation (Telugu into Assamese)
+  084747c4-55c1-453c-8b1b-e7f10cb8a81b: !Template
+    answer_choices: null
+    id: 084747c4-55c1-453c-8b1b-e7f10cb8a81b
+    jinja: 'Translate this from Lingala into French: {{ sentence_lin }} ||| {{ sentence_fra
+      }}'
+    metadata: *id001
+    name: translate-this-lin-fra
+    reference: Basic translation (Lingala into French)
+  08e674c2-22a0-45ae-a1ad-b7bd61e69fad: !Template
+    answer_choices: null
+    id: 08e674c2-22a0-45ae-a1ad-b7bd61e69fad
+    jinja: 'Translate this from Igbo into Malayalam: {{ sentence_ibo }} ||| {{ sentence_mal
+      }}'
+    metadata: *id001
+    name: translate-this-ibo-mal
+    reference: Basic translation (Igbo into Malayalam)
+  08eefae2-ae18-4d05-9287-1863427f0742: !Template
+    answer_choices: null
+    id: 08eefae2-ae18-4d05-9287-1863427f0742
+    jinja: 'Translate this from Indonesian into Vietnamese: {{ sentence_ind }} |||
+      {{ sentence_vie }}'
+    metadata: *id001
+    name: translate-this-ind-vie
+    reference: Basic translation (Indonesian into Vietnamese)
+  08fa7abf-4bad-46c8-ac56-347f90cf86c8: !Template
+    answer_choices: null
+    id: 08fa7abf-4bad-46c8-ac56-347f90cf86c8
+    jinja: 'Translate this from Hindi into Swahili: {{ sentence_hin }} ||| {{ sentence_swh
+      }}'
+    metadata: *id001
+    name: translate-this-hin-swh
+    reference: Basic translation (Hindi into Swahili)
+  09843dbc-adf4-4153-977f-2c1ed056dbbd: !Template
+    answer_choices: null
+    id: 09843dbc-adf4-4153-977f-2c1ed056dbbd
+    jinja: 'Translate this from Latin American Spanish into Xhosa: {{ sentence_spa
+      }} ||| {{ sentence_xho }}'
+    metadata: *id001
+    name: translate-this-spa-xho
+    reference: Basic translation (Latin American Spanish into Xhosa)
+  099b540f-2f62-4120-980c-8c70cc73d7eb: !Template
+    answer_choices: null
+    id: 099b540f-2f62-4120-980c-8c70cc73d7eb
+    jinja: 'Translate this from Nepali into Brazilian Portuguese: {{ sentence_npi
+      }} ||| {{ sentence_por }}'
+    metadata: *id001
+    name: translate-this-npi-por
+    reference: Basic translation (Nepali into Brazilian Portuguese)
+  09d4ec1c-03c7-42b9-a98e-bf8200429c1f: !Template
+    answer_choices: null
+    id: 09d4ec1c-03c7-42b9-a98e-bf8200429c1f
+    jinja: 'Translate this from Vietnamese into French: {{ sentence_vie }} ||| {{
+      sentence_fra }}'
+    metadata: *id001
+    name: translate-this-vie-fra
+    reference: Basic translation (Vietnamese into French)
+  09d929af-9e19-43b9-919f-bad59adc2b21: !Template
+    answer_choices: null
+    id: 09d929af-9e19-43b9-919f-bad59adc2b21
+    jinja: 'Translate this from Gujarati into Nepali: {{ sentence_guj }} ||| {{ sentence_npi
+      }}'
+    metadata: *id001
+    name: translate-this-guj-npi
+    reference: Basic translation (Gujarati into Nepali)
+  0a202dbe-7842-4131-9e36-6ccef199caf1: !Template
+    answer_choices: null
+    id: 0a202dbe-7842-4131-9e36-6ccef199caf1
+    jinja: 'Translate this from Oriya into Tamil: {{ sentence_ory }} ||| {{ sentence_tam
+      }}'
+    metadata: *id001
+    name: translate-this-ory-tam
+    reference: Basic translation (Oriya into Tamil)
+  0a5be11c-1bdf-4b07-a99e-ae3a17449785: !Template
+    answer_choices: null
+    id: 0a5be11c-1bdf-4b07-a99e-ae3a17449785
+    jinja: 'Translate this from Gujarati into Latin American Spanish: {{ sentence_guj
+      }} ||| {{ sentence_spa }}'
+    metadata: *id001
+    name: translate-this-guj-spa
+    reference: Basic translation (Gujarati into Latin American Spanish)
+  0ac3f502-6048-4854-bdc7-4657bacad839: !Template
+    answer_choices: null
+    id: 0ac3f502-6048-4854-bdc7-4657bacad839
+    jinja: 'Translate this from Xhosa into Marathi: {{ sentence_xho }} ||| {{ sentence_mar
+      }}'
+    metadata: *id001
+    name: translate-this-xho-mar
+    reference: Basic translation (Xhosa into Marathi)
+  0ac721b6-eaa8-4b18-92f1-9ee495856c97: !Template
+    answer_choices: null
+    id: 0ac721b6-eaa8-4b18-92f1-9ee495856c97
+    jinja: 'Translate this from Yoruba into Gujarati: {{ sentence_yor }} ||| {{ sentence_guj
+      }}'
+    metadata: *id001
+    name: translate-this-yor-guj
+    reference: Basic translation (Yoruba into Gujarati)
+  0ac9f731-f4ee-4215-898a-a70ee46fd842: !Template
+    answer_choices: null
+    id: 0ac9f731-f4ee-4215-898a-a70ee46fd842
+    jinja: 'Translate this from Urdu into Arabic: {{ sentence_urd }} ||| {{ sentence_ara
+      }}'
+    metadata: *id001
+    name: translate-this-urd-ara
+    reference: Basic translation (Urdu into Arabic)
+  0ada5fdb-7b4a-47b5-b50e-e7f5a5319d03: !Template
+    answer_choices: null
+    id: 0ada5fdb-7b4a-47b5-b50e-e7f5a5319d03
+    jinja: 'Translate this from Assamese into Swahili: {{ sentence_asm }} ||| {{ sentence_swh
+      }}'
+    metadata: *id001
+    name: translate-this-asm-swh
+    reference: Basic translation (Assamese into Swahili)
+  0b1d6288-81d2-47d4-88e3-b1d5cbe88621: !Template
+    answer_choices: null
+    id: 0b1d6288-81d2-47d4-88e3-b1d5cbe88621
+    jinja: 'Translate this from Swahili into Wolof: {{ sentence_swh }} ||| {{ sentence_wol
+      }}'
+    metadata: *id001
+    name: translate-this-swh-wol
+    reference: Basic translation (Swahili into Wolof)
+  0b726767-7e23-4bd9-963a-f027b3af7e56: !Template
+    answer_choices: null
+    id: 0b726767-7e23-4bd9-963a-f027b3af7e56
+    jinja: 'Translate this from Telugu into Xhosa: {{ sentence_tel }} ||| {{ sentence_xho
+      }}'
+    metadata: *id001
+    name: translate-this-tel-xho
+    reference: Basic translation (Telugu into Xhosa)
+  0be31549-dc5b-4536-9028-39692c63c852: !Template
+    answer_choices: null
+    id: 0be31549-dc5b-4536-9028-39692c63c852
+    jinja: 'Translate this from traditional Chinese into Telugu: {{ sentence_zho_trad
+      }} ||| {{ sentence_tel }}'
+    metadata: *id001
+    name: translate-this-zho_trad-tel
+    reference: Basic translation (traditional Chinese into Telugu)
+  0bf36af1-cac0-4059-8e2d-f6acaf385696: !Template
+    answer_choices: null
+    id: 0bf36af1-cac0-4059-8e2d-f6acaf385696
+    jinja: 'Translate this from Swahili into Assamese: {{ sentence_swh }} ||| {{ sentence_asm
+      }}'
+    metadata: *id001
+    name: translate-this-swh-asm
+    reference: Basic translation (Swahili into Assamese)
+  0c59f564-67d6-42e9-a157-9216c0250604: !Template
+    answer_choices: null
+    id: 0c59f564-67d6-42e9-a157-9216c0250604
+    jinja: 'Translate this from Gujarati into Yoruba: {{ sentence_guj }} ||| {{ sentence_yor
+      }}'
+    metadata: *id001
+    name: translate-this-guj-yor
+    reference: Basic translation (Gujarati into Yoruba)
+  0d02294e-2056-4da2-b202-ac50259d6fe9: !Template
+    answer_choices: null
+    id: 0d02294e-2056-4da2-b202-ac50259d6fe9
+    jinja: 'Translate this from Latin American Spanish into Northern Sotho: {{ sentence_spa
+      }} ||| {{ sentence_nso }}'
+    metadata: *id001
+    name: translate-this-spa-nso
+    reference: Basic translation (Latin American Spanish into Northern Sotho)
+  0d314c36-fc27-4adc-bf3f-923fc180dad5: !Template
+    answer_choices: null
+    id: 0d314c36-fc27-4adc-bf3f-923fc180dad5
+    jinja: 'Translate this from Arabic into Oriya: {{ sentence_ara }} ||| {{ sentence_ory
+      }}'
+    metadata: *id001
+    name: translate-this-ara-ory
+    reference: Basic translation (Arabic into Oriya)
+  0dbdd651-7676-4bfa-ac0a-746d2ef9c439: !Template
+    answer_choices: null
+    id: 0dbdd651-7676-4bfa-ac0a-746d2ef9c439
+    jinja: 'Translate this from Tamil into Latin American Spanish: {{ sentence_tam
+      }} ||| {{ sentence_spa }}'
+    metadata: *id001
+    name: translate-this-tam-spa
+    reference: Basic translation (Tamil into Latin American Spanish)
+  0ddbd769-d0a8-457d-8625-ed22c58a451b: !Template
+    answer_choices: null
+    id: 0ddbd769-d0a8-457d-8625-ed22c58a451b
+    jinja: 'Translate this from Punjabi into Latin American Spanish: {{ sentence_pan
+      }} ||| {{ sentence_spa }}'
+    metadata: *id001
+    name: translate-this-pan-spa
+    reference: Basic translation (Punjabi into Latin American Spanish)
+  0df052d9-6f7f-4b3f-8dc7-891c051db273: !Template
+    answer_choices: null
+    id: 0df052d9-6f7f-4b3f-8dc7-891c051db273
+    jinja: 'Translate this from Marathi into Indonesian: {{ sentence_mar }} ||| {{
+      sentence_ind }}'
+    metadata: *id001
+    name: translate-this-mar-ind
+    reference: Basic translation (Marathi into Indonesian)
+  0e66479d-24bb-4d2d-8cd1-7738a32ad135: !Template
+    answer_choices: null
+    id: 0e66479d-24bb-4d2d-8cd1-7738a32ad135
+    jinja: 'Translate this from Catalan into Kannada: {{ sentence_cat }} ||| {{ sentence_kan
+      }}'
+    metadata: *id001
+    name: translate-this-cat-kan
+    reference: Basic translation (Catalan into Kannada)
+  0e736d10-7674-4d69-8de6-0eed5953ff1a: !Template
+    answer_choices: null
+    id: 0e736d10-7674-4d69-8de6-0eed5953ff1a
+    jinja: 'Translate this from Punjabi into simplified Chinese: {{ sentence_pan }}
+      ||| {{ sentence_zho_simpl }}'
+    metadata: *id001
+    name: translate-this-pan-zho_simpl
+    reference: Basic translation (Punjabi into simplified Chinese)
+  0ef0f447-fd18-4ad5-9785-a78a54ad1fec: !Template
+    answer_choices: null
+    id: 0ef0f447-fd18-4ad5-9785-a78a54ad1fec
+    jinja: 'Translate this from Tamil into Hindi: {{ sentence_tam }} ||| {{ sentence_hin
+      }}'
+    metadata: *id001
+    name: translate-this-tam-hin
+    reference: Basic translation (Tamil into Hindi)
+  0f0abd0e-37e7-4b0f-ac80-a6f6d1053d69: !Template
+    answer_choices: null
+    id: 0f0abd0e-37e7-4b0f-ac80-a6f6d1053d69
+    jinja: 'Translate this from Kannada into Telugu: {{ sentence_kan }} ||| {{ sentence_tel
+      }}'
+    metadata: *id001
+    name: translate-this-kan-tel
+    reference: Basic translation (Kannada into Telugu)
+  0f327c1e-99ea-4680-89a0-8d665f5b44b0: !Template
+    answer_choices: null
+    id: 0f327c1e-99ea-4680-89a0-8d665f5b44b0
+    jinja: 'Translate this from Yoruba into Wolof: {{ sentence_yor }} ||| {{ sentence_wol
+      }}'
+    metadata: *id001
+    name: translate-this-yor-wol
+    reference: Basic translation (Yoruba into Wolof)
+  0f3b82fc-b0b9-4bb7-a159-d427fbbe04ae: !Template
+    answer_choices: null
+    id: 0f3b82fc-b0b9-4bb7-a159-d427fbbe04ae
+    jinja: 'Translate this from French into Urdu: {{ sentence_fra }} ||| {{ sentence_urd
+      }}'
+    metadata: *id001
+    name: translate-this-fra-urd
+    reference: Basic translation (French into Urdu)
+  0f5eb955-80a6-4de6-84d9-6215742628fa: !Template
+    answer_choices: null
+    id: 0f5eb955-80a6-4de6-84d9-6215742628fa
+    jinja: 'Translate this from Urdu into Tamil: {{ sentence_urd }} ||| {{ sentence_tam
+      }}'
+    metadata: *id001
+    name: translate-this-urd-tam
+    reference: Basic translation (Urdu into Tamil)
+  0f6dc539-ea73-48ca-9547-c27848486acf: !Template
+    answer_choices: null
+    id: 0f6dc539-ea73-48ca-9547-c27848486acf
+    jinja: 'Translate this from Igbo into Kannada: {{ sentence_ibo }} ||| {{ sentence_kan
+      }}'
+    metadata: *id001
+    name: translate-this-ibo-kan
+    reference: Basic translation (Igbo into Kannada)
+  0f951540-adf6-4614-9627-6d326fe2ea7e: !Template
+    answer_choices: null
+    id: 0f951540-adf6-4614-9627-6d326fe2ea7e
+    jinja: 'Translate this from Marathi into French: {{ sentence_mar }} ||| {{ sentence_fra
+      }}'
+    metadata: *id001
+    name: translate-this-mar-fra
+    reference: Basic translation (Marathi into French)
+  1014dca4-4c85-4a24-b5ae-6e70be26d1d5: !Template
+    answer_choices: null
+    id: 1014dca4-4c85-4a24-b5ae-6e70be26d1d5
+    jinja: 'Translate this from simplified Chinese into Vietnamese: {{ sentence_zho_simpl
+      }} ||| {{ sentence_vie }}'
+    metadata: *id001
+    name: translate-this-zho_simpl-vie
+    reference: Basic translation (simplified Chinese into Vietnamese)
+  1029f8f6-de25-409e-b820-a662ce33c716: !Template
+    answer_choices: null
+    id: 1029f8f6-de25-409e-b820-a662ce33c716
+    jinja: 'Translate this from Oriya into Nepali: {{ sentence_ory }} ||| {{ sentence_npi
+      }}'
+    metadata: *id001
+    name: translate-this-ory-npi
+    reference: Basic translation (Oriya into Nepali)
+  1055df16-ac72-4ca0-a8ee-26a8353fee43: !Template
+    answer_choices: null
+    id: 1055df16-ac72-4ca0-a8ee-26a8353fee43
+    jinja: 'Translate this from Indonesian into Wolof: {{ sentence_ind }} ||| {{ sentence_wol
+      }}'
+    metadata: *id001
+    name: translate-this-ind-wol
+    reference: Basic translation (Indonesian into Wolof)
+  10aed2f0-13c9-4d2d-8572-a28b16aba51b: !Template
+    answer_choices: null
+    id: 10aed2f0-13c9-4d2d-8572-a28b16aba51b
+    jinja: 'Translate this from Latin American Spanish into Nepali: {{ sentence_spa
+      }} ||| {{ sentence_npi }}'
+    metadata: *id001
+    name: translate-this-spa-npi
+    reference: Basic translation (Latin American Spanish into Nepali)
+  10c9d1ac-701b-404d-938d-2ece89adc898: !Template
+    answer_choices: null
+    id: 10c9d1ac-701b-404d-938d-2ece89adc898
+    jinja: 'Translate this from Bengali into Gujarati: {{ sentence_ben }} ||| {{ sentence_guj
+      }}'
+    metadata: *id001
+    name: translate-this-ben-guj
+    reference: Basic translation (Bengali into Gujarati)
+  110ffac0-f57c-434b-89d4-82c487378cdc: !Template
+    answer_choices: null
+    id: 110ffac0-f57c-434b-89d4-82c487378cdc
+    jinja: 'Translate this from Tamil into Bengali: {{ sentence_tam }} ||| {{ sentence_ben
+      }}'
+    metadata: *id001
+    name: translate-this-tam-ben
+    reference: Basic translation (Tamil into Bengali)
+  111c8caf-f3be-45cc-951f-d68f674d40b8: !Template
+    answer_choices: null
+    id: 111c8caf-f3be-45cc-951f-d68f674d40b8
+    jinja: 'Translate this from Gujarati into Northern Sotho: {{ sentence_guj }} |||
+      {{ sentence_nso }}'
+    metadata: *id001
+    name: translate-this-guj-nso
+    reference: Basic translation (Gujarati into Northern Sotho)
+  112a0dd4-8ff5-4f0e-82d7-5816c6713eb1: !Template
+    answer_choices: null
+    id: 112a0dd4-8ff5-4f0e-82d7-5816c6713eb1
+    jinja: 'Translate this from Vietnamese into Punjabi: {{ sentence_vie }} ||| {{
+      sentence_pan }}'
+    metadata: *id001
+    name: translate-this-vie-pan
+    reference: Basic translation (Vietnamese into Punjabi)
+  11444472-dc13-48af-b45f-a00c2b91fd2c: !Template
+    answer_choices: null
+    id: 11444472-dc13-48af-b45f-a00c2b91fd2c
+    jinja: 'Translate this from Xhosa into Tamil: {{ sentence_xho }} ||| {{ sentence_tam
+      }}'
+    metadata: *id001
+    name: translate-this-xho-tam
+    reference: Basic translation (Xhosa into Tamil)
+  11620de4-3383-4d9d-bb66-4a20e0023e0d: !Template
+    answer_choices: null
+    id: 11620de4-3383-4d9d-bb66-4a20e0023e0d
+    jinja: 'Translate this from Lingala into Zulu: {{ sentence_lin }} ||| {{ sentence_zul
+      }}'
+    metadata: *id001
+    name: translate-this-lin-zul
+    reference: Basic translation (Lingala into Zulu)
+  11aeafbf-1e33-4c6e-ae5e-2059526b7e6c: !Template
+    answer_choices: null
+    id: 11aeafbf-1e33-4c6e-ae5e-2059526b7e6c
+    jinja: 'Translate this from Vietnamese into traditional Chinese: {{ sentence_vie
+      }} ||| {{ sentence_zho_trad }}'
+    metadata: *id001
+    name: translate-this-vie-zho_trad
+    reference: Basic translation (Vietnamese into traditional Chinese)
+  11cc3d49-d821-4d22-bde0-a03da8d517c3: !Template
+    answer_choices: null
+    id: 11cc3d49-d821-4d22-bde0-a03da8d517c3
+    jinja: 'Translate this from Punjabi into Tamil: {{ sentence_pan }} ||| {{ sentence_tam
+      }}'
+    metadata: *id001
+    name: translate-this-pan-tam
+    reference: Basic translation (Punjabi into Tamil)
+  122a72f5-fec0-43f6-9aba-0e34a1a54496: !Template
+    answer_choices: null
+    id: 122a72f5-fec0-43f6-9aba-0e34a1a54496
+    jinja: 'Translate this from Hindi into Tamil: {{ sentence_hin }} ||| {{ sentence_tam
+      }}'
+    metadata: *id001
+    name: translate-this-hin-tam
+    reference: Basic translation (Hindi into Tamil)
+  124927cd-0f68-401b-8722-c7551f97a32d: !Template
+    answer_choices: null
+    id: 124927cd-0f68-401b-8722-c7551f97a32d
+    jinja: 'Translate this from Punjabi into Bengali: {{ sentence_pan }} ||| {{ sentence_ben
+      }}'
+    metadata: *id001
+    name: translate-this-pan-ben
+    reference: Basic translation (Punjabi into Bengali)
+  1271ef5a-95b0-4556-9ee0-faeeec61001b: !Template
+    answer_choices: null
+    id: 1271ef5a-95b0-4556-9ee0-faeeec61001b
+    jinja: 'Translate this from Assamese into Brazilian Portuguese: {{ sentence_asm
+      }} ||| {{ sentence_por }}'
+    metadata: *id001
+    name: translate-this-asm-por
+    reference: Basic translation (Assamese into Brazilian Portuguese)
+  12d3ea21-5d68-4a87-925f-b7f1bc6b7edf: !Template
+    answer_choices: null
+    id: 12d3ea21-5d68-4a87-925f-b7f1bc6b7edf
+    jinja: 'Translate this from Gujarati into Lingala: {{ sentence_guj }} ||| {{ sentence_lin
+      }}'
+    metadata: *id001
+    name: translate-this-guj-lin
+    reference: Basic translation (Gujarati into Lingala)
+  1329649a-786f-42a1-9149-971fc4eb4679: !Template
+    answer_choices: null
+    id: 1329649a-786f-42a1-9149-971fc4eb4679
+    jinja: 'Translate this from Malayalam into Kannada: {{ sentence_mal }} ||| {{
+      sentence_kan }}'
+    metadata: *id001
+    name: translate-this-mal-kan
+    reference: Basic translation (Malayalam into Kannada)
+  133d3e4b-91a8-4f68-a43b-5f4ef20e797a: !Template
+    answer_choices: null
+    id: 133d3e4b-91a8-4f68-a43b-5f4ef20e797a
+    jinja: 'Translate this from English into Nepali: {{ sentence_eng }} ||| {{ sentence_npi
+      }}'
+    metadata: *id001
+    name: translate-this-eng-npi
+    reference: Basic translation (English into Nepali)
+  1340a7e7-fd22-41be-9dae-3834d5a10baf: !Template
+    answer_choices: null
+    id: 1340a7e7-fd22-41be-9dae-3834d5a10baf
+    jinja: 'Translate this from Xhosa into Wolof: {{ sentence_xho }} ||| {{ sentence_wol
+      }}'
+    metadata: *id001
+    name: translate-this-xho-wol
+    reference: Basic translation (Xhosa into Wolof)
+  13ae41df-d53b-4e5c-ab13-977203d265ac: !Template
+    answer_choices: null
+    id: 13ae41df-d53b-4e5c-ab13-977203d265ac
+    jinja: 'Translate this from Punjabi into Oriya: {{ sentence_pan }} ||| {{ sentence_ory
+      }}'
+    metadata: *id001
+    name: translate-this-pan-ory
+    reference: Basic translation (Punjabi into Oriya)
+  13c83f6d-f0cb-410e-a617-d0fa724af468: !Template
+    answer_choices: null
+    id: 13c83f6d-f0cb-410e-a617-d0fa724af468
+    jinja: 'Translate this from Brazilian Portuguese into Bengali: {{ sentence_por
+      }} ||| {{ sentence_ben }}'
+    metadata: *id001
+    name: translate-this-por-ben
+    reference: Basic translation (Brazilian Portuguese into Bengali)
+  13fb274d-bd4d-4ef7-a3de-2a78b01231c6: !Template
+    answer_choices: null
+    id: 13fb274d-bd4d-4ef7-a3de-2a78b01231c6
+    jinja: 'Translate this from Indonesian into Swahili: {{ sentence_ind }} ||| {{
+      sentence_swh }}'
+    metadata: *id001
+    name: translate-this-ind-swh
+    reference: Basic translation (Indonesian into Swahili)
+  146eb530-fe0b-46d8-86c7-e4c939eae384: !Template
+    answer_choices: null
+    id: 146eb530-fe0b-46d8-86c7-e4c939eae384
+    jinja: 'Translate this from Malayalam into Brazilian Portuguese: {{ sentence_mal
+      }} ||| {{ sentence_por }}'
+    metadata: *id001
+    name: translate-this-mal-por
+    reference: Basic translation (Malayalam into Brazilian Portuguese)
+  149ab94b-8734-42ed-9098-1b655ff55b33: !Template
+    answer_choices: null
+    id: 149ab94b-8734-42ed-9098-1b655ff55b33
+    jinja: 'Translate this from Marathi into Oriya: {{ sentence_mar }} ||| {{ sentence_ory
+      }}'
+    metadata: *id001
+    name: translate-this-mar-ory
+    reference: Basic translation (Marathi into Oriya)
+  14b9b477-28aa-46f6-9973-5fb582b74bf2: !Template
+    answer_choices: null
+    id: 14b9b477-28aa-46f6-9973-5fb582b74bf2
+    jinja: 'Translate this from English into Malayalam: {{ sentence_eng }} ||| {{
+      sentence_mal }}'
+    metadata: *id001
+    name: translate-this-eng-mal
+    reference: Basic translation (English into Malayalam)
+  14d7207e-6b69-4b36-88f5-c41ec98af8a2: !Template
+    answer_choices: null
+    id: 14d7207e-6b69-4b36-88f5-c41ec98af8a2
+    jinja: 'Translate this from Indonesian into Nepali: {{ sentence_ind }} ||| {{
+      sentence_npi }}'
+    metadata: *id001
+    name: translate-this-ind-npi
+    reference: Basic translation (Indonesian into Nepali)
+  14e261a4-eefe-4a35-94ed-60685da1a736: !Template
+    answer_choices: null
+    id: 14e261a4-eefe-4a35-94ed-60685da1a736
+    jinja: 'Translate this from Latin American Spanish into Vietnamese: {{ sentence_spa
+      }} ||| {{ sentence_vie }}'
+    metadata: *id001
+    name: translate-this-spa-vie
+    reference: Basic translation (Latin American Spanish into Vietnamese)
+  15547e23-feb3-4a68-883c-43b912d11c04: !Template
+    answer_choices: null
+    id: 15547e23-feb3-4a68-883c-43b912d11c04
+    jinja: 'Translate this from Northern Sotho into Urdu: {{ sentence_nso }} ||| {{
+      sentence_urd }}'
+    metadata: *id001
+    name: translate-this-nso-urd
+    reference: Basic translation (Northern Sotho into Urdu)
+  159efd39-a7d2-4f1c-b24f-c4a4af35d5db: !Template
+    answer_choices: null
+    id: 159efd39-a7d2-4f1c-b24f-c4a4af35d5db
+    jinja: 'Translate this from simplified Chinese into Wolof: {{ sentence_zho_simpl
+      }} ||| {{ sentence_wol }}'
+    metadata: *id001
+    name: translate-this-zho_simpl-wol
+    reference: Basic translation (simplified Chinese into Wolof)
+  1624dc73-b42f-4b73-90f6-d5f742a8164a: !Template
+    answer_choices: null
+    id: 1624dc73-b42f-4b73-90f6-d5f742a8164a
+    jinja: 'Translate this from Marathi into Northern Sotho: {{ sentence_mar }} |||
+      {{ sentence_nso }}'
+    metadata: *id001
+    name: translate-this-mar-nso
+    reference: Basic translation (Marathi into Northern Sotho)
+  1634ffc4-b4c3-4996-ab0d-9e3b794ec284: !Template
+    answer_choices: null
+    id: 1634ffc4-b4c3-4996-ab0d-9e3b794ec284
+    jinja: 'Translate this from Arabic into English: {{ sentence_ara }} ||| {{ sentence_eng
+      }}'
+    metadata: *id001
+    name: translate-this-ara-eng
+    reference: Basic translation (Arabic into English)
+  163ed42c-88ee-40de-ac99-baac5f89a6f5: !Template
+    answer_choices: null
+    id: 163ed42c-88ee-40de-ac99-baac5f89a6f5
+    jinja: 'Translate this from Wolof into Vietnamese: {{ sentence_wol }} ||| {{ sentence_vie
+      }}'
+    metadata: *id001
+    name: translate-this-wol-vie
+    reference: Basic translation (Wolof into Vietnamese)
+  1646bcab-211d-40f5-a2ed-4d6913152237: !Template
+    answer_choices: null
+    id: 1646bcab-211d-40f5-a2ed-4d6913152237
+    jinja: 'Translate this from Malayalam into Assamese: {{ sentence_mal }} ||| {{
+      sentence_asm }}'
+    metadata: *id001
+    name: translate-this-mal-asm
+    reference: Basic translation (Malayalam into Assamese)
+  1655126a-2630-48ae-bb2c-43f315658aaf: !Template
+    answer_choices: null
+    id: 1655126a-2630-48ae-bb2c-43f315658aaf
+    jinja: 'Translate this from Kannada into Yoruba: {{ sentence_kan }} ||| {{ sentence_yor
+      }}'
+    metadata: *id001
+    name: translate-this-kan-yor
+    reference: Basic translation (Kannada into Yoruba)
+  167b8496-e7f4-4567-836b-8bd11c8e7931: !Template
+    answer_choices: null
+    id: 167b8496-e7f4-4567-836b-8bd11c8e7931
+    jinja: 'Translate this from Kannada into Indonesian: {{ sentence_kan }} ||| {{
+      sentence_ind }}'
+    metadata: *id001
+    name: translate-this-kan-ind
+    reference: Basic translation (Kannada into Indonesian)
+  168d3555-9dd2-4f55-a27a-496b24695098: !Template
+    answer_choices: null
+    id: 168d3555-9dd2-4f55-a27a-496b24695098
+    jinja: 'Translate this from simplified Chinese into Marathi: {{ sentence_zho_simpl
+      }} ||| {{ sentence_mar }}'
+    metadata: *id001
+    name: translate-this-zho_simpl-mar
+    reference: Basic translation (simplified Chinese into Marathi)
+  16d4234b-6d73-476a-bd2f-da379c979540: !Template
+    answer_choices: null
+    id: 16d4234b-6d73-476a-bd2f-da379c979540
+    jinja: 'Translate this from Oriya into Arabic: {{ sentence_ory }} ||| {{ sentence_ara
+      }}'
+    metadata: *id001
+    name: translate-this-ory-ara
+    reference: Basic translation (Oriya into Arabic)
+  16fdf82e-c36e-42a9-b79e-eea5658183b4: !Template
+    answer_choices: null
+    id: 16fdf82e-c36e-42a9-b79e-eea5658183b4
+    jinja: 'Translate this from Lingala into Kannada: {{ sentence_lin }} ||| {{ sentence_kan
+      }}'
+    metadata: *id001
+    name: translate-this-lin-kan
+    reference: Basic translation (Lingala into Kannada)
+  17581b58-6965-4c86-b0e4-5ec20ed6dc9a: !Template
+    answer_choices: null
+    id: 17581b58-6965-4c86-b0e4-5ec20ed6dc9a
+    jinja: 'Translate this from Lingala into Assamese: {{ sentence_lin }} ||| {{ sentence_asm
+      }}'
+    metadata: *id001
+    name: translate-this-lin-asm
+    reference: Basic translation (Lingala into Assamese)
+  18acbf94-b289-4b99-9d44-86291f490e1d: !Template
+    answer_choices: null
+    id: 18acbf94-b289-4b99-9d44-86291f490e1d
+    jinja: 'Translate this from Yoruba into Tamil: {{ sentence_yor }} ||| {{ sentence_tam
+      }}'
+    metadata: *id001
+    name: translate-this-yor-tam
+    reference: Basic translation (Yoruba into Tamil)
+  18ce3ea3-469c-4a69-ba39-6725969e45c1: !Template
+    answer_choices: null
+    id: 18ce3ea3-469c-4a69-ba39-6725969e45c1
+    jinja: 'Translate this from Brazilian Portuguese into Northern Sotho: {{ sentence_por
+      }} ||| {{ sentence_nso }}'
+    metadata: *id001
+    name: translate-this-por-nso
+    reference: Basic translation (Brazilian Portuguese into Northern Sotho)
+  19885ca0-d220-4601-aeae-dfabc18472bd: !Template
+    answer_choices: null
+    id: 19885ca0-d220-4601-aeae-dfabc18472bd
+    jinja: 'Translate this from Latin American Spanish into Assamese: {{ sentence_spa
+      }} ||| {{ sentence_asm }}'
+    metadata: *id001
+    name: translate-this-spa-asm
+    reference: Basic translation (Latin American Spanish into Assamese)
+  19e5a6a6-1597-4a36-b67e-60533ce83be8: !Template
+    answer_choices: null
+    id: 19e5a6a6-1597-4a36-b67e-60533ce83be8
+    jinja: 'Translate this from Telugu into Catalan: {{ sentence_tel }} ||| {{ sentence_cat
+      }}'
+    metadata: *id001
+    name: translate-this-tel-cat
+    reference: Basic translation (Telugu into Catalan)
+  19fb2bd9-3ac3-4630-a59b-bc07ec92e012: !Template
+    answer_choices: null
+    id: 19fb2bd9-3ac3-4630-a59b-bc07ec92e012
+    jinja: 'Translate this from Wolof into Arabic: {{ sentence_wol }} ||| {{ sentence_ara
+      }}'
+    metadata: *id001
+    name: translate-this-wol-ara
+    reference: Basic translation (Wolof into Arabic)
+  1ac66201-f83c-43af-8d9a-48f6ccfa0854: !Template
+    answer_choices: null
+    id: 1ac66201-f83c-43af-8d9a-48f6ccfa0854
+    jinja: 'Translate this from Punjabi into Catalan: {{ sentence_pan }} ||| {{ sentence_cat
+      }}'
+    metadata: *id001
+    name: translate-this-pan-cat
+    reference: Basic translation (Punjabi into Catalan)
+  1b48c88d-0f2f-4cff-900d-68c48742c822: !Template
+    answer_choices: null
+    id: 1b48c88d-0f2f-4cff-900d-68c48742c822
+    jinja: 'Translate this from Hindi into Kannada: {{ sentence_hin }} ||| {{ sentence_kan
+      }}'
+    metadata: *id001
+    name: translate-this-hin-kan
+    reference: Basic translation (Hindi into Kannada)
+  1bd3f9d6-a52b-49d6-885e-c59273331e50: !Template
+    answer_choices: null
+    id: 1bd3f9d6-a52b-49d6-885e-c59273331e50
+    jinja: 'Translate this from Telugu into Zulu: {{ sentence_tel }} ||| {{ sentence_zul
+      }}'
+    metadata: *id001
+    name: translate-this-tel-zul
+    reference: Basic translation (Telugu into Zulu)
+  1be26707-e89a-442d-9b58-7a3a44807239: !Template
+    answer_choices: null
+    id: 1be26707-e89a-442d-9b58-7a3a44807239
+    jinja: 'Translate this from Swahili into English: {{ sentence_swh }} ||| {{ sentence_eng
+      }}'
+    metadata: *id001
+    name: translate-this-swh-eng
+    reference: Basic translate (Swahili into English)
+  1c268aee-e1ea-4417-8977-c5f8ad4431ab: !Template
+    answer_choices: null
+    id: 1c268aee-e1ea-4417-8977-c5f8ad4431ab
+    jinja: 'Translate this from Swahili into Nepali: {{ sentence_swh }} ||| {{ sentence_npi
+      }}'
+    metadata: *id001
+    name: translate-this-swh-npi
+    reference: Basic translation (Swahili into Nepali)
+  1c7ab1d4-6517-4097-9810-daf40ba1ce02: !Template
+    answer_choices: null
+    id: 1c7ab1d4-6517-4097-9810-daf40ba1ce02
+    jinja: 'Translate this from Xhosa into Brazilian Portuguese: {{ sentence_xho }}
+      ||| {{ sentence_por }}'
+    metadata: *id001
+    name: translate-this-xho-por
+    reference: Basic translation (Xhosa into Brazilian Portuguese)
+  1cee0e3b-bd5b-45ff-820f-0899b601d018: !Template
+    answer_choices: null
+    id: 1cee0e3b-bd5b-45ff-820f-0899b601d018
+    jinja: 'Translate this from Brazilian Portuguese into Zulu: {{ sentence_por }}
+      ||| {{ sentence_zul }}'
+    metadata: *id001
+    name: translate-this-por-zul
+    reference: Basic translation (Brazilian Portuguese into Zulu)
+  1e185bf0-34cc-4e7d-90d1-814f4504ec99: !Template
+    answer_choices: null
+    id: 1e185bf0-34cc-4e7d-90d1-814f4504ec99
+    jinja: 'Translate this from Punjabi into Yoruba: {{ sentence_pan }} ||| {{ sentence_yor
+      }}'
+    metadata: *id001
+    name: translate-this-pan-yor
+    reference: Basic translation (Punjabi into Yoruba)
+  1eaf660a-95b1-4501-bbf9-ed3cd665b7ba: !Template
+    answer_choices: null
+    id: 1eaf660a-95b1-4501-bbf9-ed3cd665b7ba
+    jinja: 'Translate this from Brazilian Portuguese into Marathi: {{ sentence_por
+      }} ||| {{ sentence_mar }}'
+    metadata: *id001
+    name: translate-this-por-mar
+    reference: Basic translation (Brazilian Portuguese into Marathi)
+  1ee76de4-9317-4595-96bc-d82604a9fe97: !Template
+    answer_choices: null
+    id: 1ee76de4-9317-4595-96bc-d82604a9fe97
+    jinja: 'Translate this from Telugu into Swahili: {{ sentence_tel }} ||| {{ sentence_swh
+      }}'
+    metadata: *id001
+    name: translate-this-tel-swh
+    reference: Basic translation (Telugu into Swahili)
+  1ef0c291-ecf9-46fc-b3e0-6948e9c28f10: !Template
+    answer_choices: null
+    id: 1ef0c291-ecf9-46fc-b3e0-6948e9c28f10
+    jinja: 'Translate this from Northern Sotho into Malayalam: {{ sentence_nso }}
+      ||| {{ sentence_mal }}'
+    metadata: *id001
+    name: translate-this-nso-mal
+    reference: Basic translation (Northern Sotho into Malayalam)
+  1f9613d2-bcd5-4003-90a5-74a45d4325ca: !Template
+    answer_choices: null
+    id: 1f9613d2-bcd5-4003-90a5-74a45d4325ca
+    jinja: 'Translate this from Punjabi into Urdu: {{ sentence_pan }} ||| {{ sentence_urd
+      }}'
+    metadata: *id001
+    name: translate-this-pan-urd
+    reference: Basic translation (Punjabi into Urdu)
+  1fa0b153-1a42-4152-84ea-8bd0873035d6: !Template
+    answer_choices: null
+    id: 1fa0b153-1a42-4152-84ea-8bd0873035d6
+    jinja: 'Translate this from Oriya into Malayalam: {{ sentence_ory }} ||| {{ sentence_mal
+      }}'
+    metadata: *id001
+    name: translate-this-ory-mal
+    reference: Basic translation (Oriya into Malayalam)
+  1ff4ec5c-1a3e-4d71-a67a-50f8d1de876a: !Template
+    answer_choices: null
+    id: 1ff4ec5c-1a3e-4d71-a67a-50f8d1de876a
+    jinja: 'Translate this from Gujarati into Malayalam: {{ sentence_guj }} ||| {{
+      sentence_mal }}'
+    metadata: *id001
+    name: translate-this-guj-mal
+    reference: Basic translation (Gujarati into Malayalam)
+  200fe528-890c-4f31-bde3-ef3a2cbed0d7: !Template
+    answer_choices: null
+    id: 200fe528-890c-4f31-bde3-ef3a2cbed0d7
+    jinja: 'Translate this from Swahili into Indonesian: {{ sentence_swh }} ||| {{
+      sentence_ind }}'
+    metadata: *id001
+    name: translate-this-swh-ind
+    reference: Basic translation (Swahili into Indonesian)
+  20363d95-0942-4857-949e-323383c6ff2e: !Template
+    answer_choices: null
+    id: 20363d95-0942-4857-949e-323383c6ff2e
+    jinja: 'Translate this from French into Arabic: {{ sentence_fra }} ||| {{ sentence_ara
+      }}'
+    metadata: *id001
+    name: translate-this-fra-ara
+    reference: Basic translation (French into Arabic)
+  20d26f96-0e98-48f6-ad62-5c6aa9432348: !Template
+    answer_choices: null
+    id: 20d26f96-0e98-48f6-ad62-5c6aa9432348
+    jinja: 'Translate this from Catalan into Indonesian: {{ sentence_cat }} ||| {{
+      sentence_ind }}'
+    metadata: *id001
+    name: translate-this-cat-ind
+    reference: Basic translation (Catalan into Indonesian)
+  213e849f-8d86-42b7-b8bb-21f736711a84: !Template
+    answer_choices: null
+    id: 213e849f-8d86-42b7-b8bb-21f736711a84
+    jinja: 'Translate this from Arabic into Malayalam: {{ sentence_ara }} ||| {{ sentence_mal
+      }}'
+    metadata: *id001
+    name: translate-this-ara-mal
+    reference: Basic translation (Arabic into Malayalam)
+  218b703c-ca65-4c57-b68b-c5b0f2310e3e: !Template
+    answer_choices: null
+    id: 218b703c-ca65-4c57-b68b-c5b0f2310e3e
+    jinja: 'Translate this from traditional Chinese into Gujarati: {{ sentence_zho_trad
+      }} ||| {{ sentence_guj }}'
+    metadata: *id001
+    name: translate-this-zho_trad-guj
+    reference: Basic translation (traditional Chinese into Gujarati)
+  21ac6ece-fe10-4d50-b774-07d6b4dd40bb: !Template
+    answer_choices: null
+    id: 21ac6ece-fe10-4d50-b774-07d6b4dd40bb
+    jinja: 'Translate this from Telugu into Yoruba: {{ sentence_tel }} ||| {{ sentence_yor
+      }}'
+    metadata: *id001
+    name: translate-this-tel-yor
+    reference: Basic translation (Telugu into Yoruba)
+  220764a9-8073-44a9-aec0-320015488296: !Template
+    answer_choices: null
+    id: 220764a9-8073-44a9-aec0-320015488296
+    jinja: 'Translate this from Xhosa into Lingala: {{ sentence_xho }} ||| {{ sentence_lin
+      }}'
+    metadata: *id001
+    name: translate-this-xho-lin
+    reference: Basic translation (Xhosa into Lingala)
+  222b3f4b-a107-420d-9b9f-9c68e4b1f6d6: !Template
+    answer_choices: null
+    id: 222b3f4b-a107-420d-9b9f-9c68e4b1f6d6
+    jinja: 'Translate this from Hindi into Urdu: {{ sentence_hin }} ||| {{ sentence_urd
+      }}'
+    metadata: *id001
+    name: translate-this-hin-urd
+    reference: Basic translation (Hindi into Urdu)
+  22311738-fd0a-428c-a6ca-8bb272e991c3: !Template
+    answer_choices: null
+    id: 22311738-fd0a-428c-a6ca-8bb272e991c3
+    jinja: 'Translate this from Catalan into Punjabi: {{ sentence_cat }} ||| {{ sentence_pan
+      }}'
+    metadata: *id001
+    name: translate-this-cat-pan
+    reference: Basic translation (Catalan into Punjabi)
+  224abcfc-1d38-43c1-837e-282b0a30c6f1: !Template
+    answer_choices: null
+    id: 224abcfc-1d38-43c1-837e-282b0a30c6f1
+    jinja: 'Translate this from Zulu into Xhosa: {{ sentence_zul }} ||| {{ sentence_xho
+      }}'
+    metadata: *id001
+    name: translate-this-zul-xho
+    reference: Basic translation (Zulu into Xhosa)
+  225ddfe4-c00c-411f-9456-93ec5fecd542: !Template
+    answer_choices: null
+    id: 225ddfe4-c00c-411f-9456-93ec5fecd542
+    jinja: 'Translate this from Latin American Spanish into Arabic: {{ sentence_spa
+      }} ||| {{ sentence_ara }}'
+    metadata: *id001
+    name: translate-this-spa-ara
+    reference: Basic translation (Latin American Spanish into Arabic)
+  228029ff-b67d-4ea5-9b65-7ea2c75a115e: !Template
+    answer_choices: null
+    id: 228029ff-b67d-4ea5-9b65-7ea2c75a115e
+    jinja: 'Translate this from Brazilian Portuguese into simplified Chinese: {{ sentence_por
+      }} ||| {{ sentence_zho_simpl }}'
+    metadata: *id001
+    name: translate-this-por-zho_simpl
+    reference: Basic translation (Brazilian Portuguese into simplified Chinese)
+  22bb9d48-7aaf-452f-b40e-3ee3e1b51f9d: !Template
+    answer_choices: null
+    id: 22bb9d48-7aaf-452f-b40e-3ee3e1b51f9d
+    jinja: 'Translate this from Northern Sotho into Bengali: {{ sentence_nso }} |||
+      {{ sentence_ben }}'
+    metadata: *id001
+    name: translate-this-nso-ben
+    reference: Basic translation (Northern Sotho into Bengali)
+  22bba639-13da-430a-a38a-ad50381fe88a: !Template
+    answer_choices: null
+    id: 22bba639-13da-430a-a38a-ad50381fe88a
+    jinja: 'Translate this from Gujarati into Wolof: {{ sentence_guj }} ||| {{ sentence_wol
+      }}'
+    metadata: *id001
+    name: translate-this-guj-wol
+    reference: Basic translation (Gujarati into Wolof)
+  2301be9a-a46b-4bab-96b4-b8ea4b5294f5: !Template
+    answer_choices: null
+    id: 2301be9a-a46b-4bab-96b4-b8ea4b5294f5
+    jinja: 'Translate this from Oriya into Swahili: {{ sentence_ory }} ||| {{ sentence_swh
+      }}'
+    metadata: *id001
+    name: translate-this-ory-swh
+    reference: Basic translation (Oriya into Swahili)
+  23e3f997-b90d-4486-89d5-185d4fe0c1df: !Template
+    answer_choices: null
+    id: 23e3f997-b90d-4486-89d5-185d4fe0c1df
+    jinja: 'Translate this from Catalan into Telugu: {{ sentence_cat }} ||| {{ sentence_tel
+      }}'
+    metadata: *id001
+    name: translate-this-cat-tel
+    reference: Basic translation (Catalan into Telugu)
+  2420a79b-a953-441e-91b9-60045c382ae9: !Template
+    answer_choices: null
+    id: 2420a79b-a953-441e-91b9-60045c382ae9
+    jinja: 'Translate this from Malayalam into Nepali: {{ sentence_mal }} ||| {{ sentence_npi
+      }}'
+    metadata: *id001
+    name: translate-this-mal-npi
+    reference: Basic translation (Malayalam into Nepali)
+  255c0025-dde1-402e-aa08-c3ee2c4eefcd: !Template
+    answer_choices: null
+    id: 255c0025-dde1-402e-aa08-c3ee2c4eefcd
+    jinja: 'Translate this from Yoruba into Lingala: {{ sentence_yor }} ||| {{ sentence_lin
+      }}'
+    metadata: *id001
+    name: translate-this-yor-lin
+    reference: Basic translation (Yoruba into Lingala)
+  25ba759d-96ae-4f98-8fa8-ad7e9ed6375a: !Template
+    answer_choices: null
+    id: 25ba759d-96ae-4f98-8fa8-ad7e9ed6375a
+    jinja: 'Translate this from Indonesian into simplified Chinese: {{ sentence_ind
+      }} ||| {{ sentence_zho_simpl }}'
+    metadata: *id001
+    name: translate-this-ind-zho_simpl
+    reference: Basic translation (Indonesian into simplified Chinese)
+  26a8db82-2542-48da-adaa-57627d4c5405: !Template
+    answer_choices: null
+    id: 26a8db82-2542-48da-adaa-57627d4c5405
+    jinja: 'Translate this from Igbo into Gujarati: {{ sentence_ibo }} ||| {{ sentence_guj
+      }}'
+    metadata: *id001
+    name: translate-this-ibo-guj
+    reference: Basic translation (Igbo into Gujarati)
+  26c7a2f8-385f-4a77-bfbd-25d92f87cd91: !Template
+    answer_choices: null
+    id: 26c7a2f8-385f-4a77-bfbd-25d92f87cd91
+    jinja: 'Translate this from simplified Chinese into Punjabi: {{ sentence_zho_simpl
+      }} ||| {{ sentence_pan }}'
+    metadata: *id001
+    name: translate-this-zho_simpl-pan
+    reference: Basic translation (simplified Chinese into Punjabi)
+  26dcccf0-831d-450d-9448-f03f94bcd906: !Template
+    answer_choices: null
+    id: 26dcccf0-831d-450d-9448-f03f94bcd906
+    jinja: 'Translate this from Vietnamese into Kannada: {{ sentence_vie }} ||| {{
+      sentence_kan }}'
+    metadata: *id001
+    name: translate-this-vie-kan
+    reference: Basic translation (Vietnamese into Kannada)
+  26e84960-c1bb-4896-8aba-d9fea9e212ed: !Template
+    answer_choices: null
+    id: 26e84960-c1bb-4896-8aba-d9fea9e212ed
+    jinja: 'Translate this from Gujarati into Punjabi: {{ sentence_guj }} ||| {{ sentence_pan
+      }}'
+    metadata: *id001
+    name: translate-this-guj-pan
+    reference: Basic translation (Gujarati into Punjabi)
+  274f7377-fc47-4157-abe6-fb9a24362446: !Template
+    answer_choices: null
+    id: 274f7377-fc47-4157-abe6-fb9a24362446
+    jinja: 'Translate this from Yoruba into Xhosa: {{ sentence_yor }} ||| {{ sentence_xho
+      }}'
+    metadata: *id001
+    name: translate-this-yor-xho
+    reference: Basic translation (Yoruba into Xhosa)
+  2769801e-050c-48f3-a9ab-a9a78722c3a4: !Template
+    answer_choices: null
+    id: 2769801e-050c-48f3-a9ab-a9a78722c3a4
+    jinja: 'Translate this from Lingala into Northern Sotho: {{ sentence_lin }} |||
+      {{ sentence_nso }}'
+    metadata: *id001
+    name: translate-this-lin-nso
+    reference: Basic translation (Lingala into Northern Sotho)
+  27c4784b-0f2b-4819-b293-33c6879eb26a: !Template
+    answer_choices: null
+    id: 27c4784b-0f2b-4819-b293-33c6879eb26a
+    jinja: 'Translate this from Brazilian Portuguese into English: {{ sentence_por
+      }} ||| {{ sentence_eng }}'
+    metadata: *id001
+    name: translate-this-por-eng
+    reference: Basic translation (Brazilian Portuguese into English)
+  27ea08c0-27b6-4dd2-81e2-82f77972ac8b: !Template
+    answer_choices: null
+    id: 27ea08c0-27b6-4dd2-81e2-82f77972ac8b
+    jinja: 'Translate this from Lingala into Vietnamese: {{ sentence_lin }} ||| {{
+      sentence_vie }}'
+    metadata: *id001
+    name: translate-this-lin-vie
+    reference: Basic translation (Lingala into Vietnamese)
+  2806b4cd-8d55-4acb-bfdd-7bba786820c8: !Template
+    answer_choices: null
+    id: 2806b4cd-8d55-4acb-bfdd-7bba786820c8
+    jinja: 'Translate this from Oriya into Punjabi: {{ sentence_ory }} ||| {{ sentence_pan
+      }}'
+    metadata: *id001
+    name: translate-this-ory-pan
+    reference: Basic translation (Oriya into Punjabi)
+  280e39ac-57d4-4c94-8e11-b0fe4895d591: !Template
+    answer_choices: null
+    id: 280e39ac-57d4-4c94-8e11-b0fe4895d591
+    jinja: 'Translate this from Latin American Spanish into Hindi: {{ sentence_spa
+      }} ||| {{ sentence_hin }}'
+    metadata: *id001
+    name: translate-this-spa-hin
+    reference: Basic translation (Latin American Spanish into Hindi)
+  2834aeab-f340-40bb-9d2e-59a7afeb1929: !Template
+    answer_choices: null
+    id: 2834aeab-f340-40bb-9d2e-59a7afeb1929
+    jinja: 'Translate this from Marathi into Lingala: {{ sentence_mar }} ||| {{ sentence_lin
+      }}'
+    metadata: *id001
+    name: translate-this-mar-lin
+    reference: Basic translation (Marathi into Lingala)
+  285671f4-0d0c-4744-8d50-a5b1ac074ae8: !Template
+    answer_choices: null
+    id: 285671f4-0d0c-4744-8d50-a5b1ac074ae8
+    jinja: 'Translate this from Vietnamese into English: {{ sentence_vie }} ||| {{
+      sentence_eng }}'
+    metadata: *id001
+    name: translate-this-vie-eng
+    reference: Basic translation (Vietnamese into English)
+  28841972-605b-4ca2-9e6a-9a7d878c67cc: !Template
+    answer_choices: null
+    id: 28841972-605b-4ca2-9e6a-9a7d878c67cc
+    jinja: 'Translate this from Swahili into Punjabi: {{ sentence_swh }} ||| {{ sentence_pan
+      }}'
+    metadata: *id001
+    name: translate-this-swh-pan
+    reference: Basic translation (Swahili into Punjabi)
+  288aadfc-8b9c-4d11-9f97-01f9837466f3: !Template
+    answer_choices: null
+    id: 288aadfc-8b9c-4d11-9f97-01f9837466f3
+    jinja: 'Translate this from Nepali into Bengali: {{ sentence_npi }} ||| {{ sentence_ben
+      }}'
+    metadata: *id001
+    name: translate-this-npi-ben
+    reference: Basic translation (Nepali into Bengali)
+  28b549c6-c29c-459c-a7e3-f70b5759e26c: !Template
+    answer_choices: null
+    id: 28b549c6-c29c-459c-a7e3-f70b5759e26c
+    jinja: 'Translate this from Bengali into Xhosa: {{ sentence_ben }} ||| {{ sentence_xho
+      }}'
+    metadata: *id001
+    name: translate-this-ben-xho
+    reference: Basic translation (Bengali into Xhosa)
+  29c3e353-1a3c-4e91-b5d7-f4b6f53100ec: !Template
+    answer_choices: null
+    id: 29c3e353-1a3c-4e91-b5d7-f4b6f53100ec
+    jinja: 'Translate this from Tamil into Kannada: {{ sentence_tam }} ||| {{ sentence_kan
+      }}'
+    metadata: *id001
+    name: translate-this-tam-kan
+    reference: Basic translation (Tamil into Kannada)
+  29c82651-6797-4a33-9fbe-9a77939dbd81: !Template
+    answer_choices: null
+    id: 29c82651-6797-4a33-9fbe-9a77939dbd81
+    jinja: 'Translate this from Yoruba into Indonesian: {{ sentence_yor }} ||| {{
+      sentence_ind }}'
+    metadata: *id001
+    name: translate-this-yor-ind
+    reference: Basic translation (Yoruba into Indonesian)
+  29e197fb-960c-4fd6-953d-b616136f5901: !Template
+    answer_choices: null
+    id: 29e197fb-960c-4fd6-953d-b616136f5901
+    jinja: 'Translate this from traditional Chinese into Yoruba: {{ sentence_zho_trad
+      }} ||| {{ sentence_yor }}'
+    metadata: *id001
+    name: translate-this-zho_trad-yor
+    reference: Basic translation (traditional Chinese into Yoruba)
+  29ea4aba-9146-4810-9dd9-eb2af6a5165c: !Template
+    answer_choices: null
+    id: 29ea4aba-9146-4810-9dd9-eb2af6a5165c
+    jinja: 'Translate this from Assamese into Zulu: {{ sentence_asm }} ||| {{ sentence_zul
+      }}'
+    metadata: *id001
+    name: translate-this-asm-zul
+    reference: Basic translation (Assamese into Zulu)
+  2a1676a9-a842-45ec-82c1-2e0b3b7a4c30: !Template
+    answer_choices: null
+    id: 2a1676a9-a842-45ec-82c1-2e0b3b7a4c30
+    jinja: 'Translate this from Northern Sotho into Gujarati: {{ sentence_nso }} |||
+      {{ sentence_guj }}'
+    metadata: *id001
+    name: translate-this-nso-guj
+    reference: Basic translation (Northern Sotho into Gujarati)
+  2a833057-c672-4c30-8fef-f61fbc6be4f0: !Template
+    answer_choices: null
+    id: 2a833057-c672-4c30-8fef-f61fbc6be4f0
+    jinja: 'Translate this from Nepali into Assamese: {{ sentence_npi }} ||| {{ sentence_asm
+      }}'
+    metadata: *id001
+    name: translate-this-npi-asm
+    reference: Basic translation (Nepali into Assamese)
+  2b00be44-bcf4-4b05-a829-aaa7337a1a13: !Template
+    answer_choices: null
+    id: 2b00be44-bcf4-4b05-a829-aaa7337a1a13
+    jinja: 'Translate this from Telugu into Punjabi: {{ sentence_tel }} ||| {{ sentence_pan
+      }}'
+    metadata: *id001
+    name: translate-this-tel-pan
+    reference: Basic translation (Telugu into Punjabi)
+  2b0d0694-2a7d-44bf-9860-b119f1b34d97: !Template
+    answer_choices: null
+    id: 2b0d0694-2a7d-44bf-9860-b119f1b34d97
+    jinja: 'Translate this from Brazilian Portuguese into Oriya: {{ sentence_por }}
+      ||| {{ sentence_ory }}'
+    metadata: *id001
+    name: translate-this-por-ory
+    reference: Basic translation (Brazilian Portuguese into Oriya)
+  2b3ee88c-800e-4837-ac82-6369d0754d71: !Template
+    answer_choices: null
+    id: 2b3ee88c-800e-4837-ac82-6369d0754d71
+    jinja: 'Translate this from Catalan into simplified Chinese: {{ sentence_cat }}
+      ||| {{ sentence_zho_simpl }}'
+    metadata: *id001
+    name: translate-this-cat-zho_simpl
+    reference: Basic translation (Catalan into simplified Chinese)
+  2b9397ce-fd0e-45ae-abd1-59c7f85f5193: !Template
+    answer_choices: null
+    id: 2b9397ce-fd0e-45ae-abd1-59c7f85f5193
+    jinja: 'Translate this from Tamil into Marathi: {{ sentence_tam }} ||| {{ sentence_mar
+      }}'
+    metadata: *id001
+    name: translate-this-tam-mar
+    reference: Basic translation (Tamil into Marathi)
+  2bc0fe10-ea8f-439f-a978-7fcd6a1fd1b5: !Template
+    answer_choices: null
+    id: 2bc0fe10-ea8f-439f-a978-7fcd6a1fd1b5
+    jinja: 'Translate this from Yoruba into Latin American Spanish: {{ sentence_yor
+      }} ||| {{ sentence_spa }}'
+    metadata: *id001
+    name: translate-this-yor-spa
+    reference: Basic translation (Yoruba into Latin American Spanish)
+  2bcb072d-6e11-4283-a68e-ab4950d25b1d: !Template
+    answer_choices: null
+    id: 2bcb072d-6e11-4283-a68e-ab4950d25b1d
+    jinja: 'Translate this from Malayalam into English: {{ sentence_mal }} ||| {{
+      sentence_eng }}'
+    metadata: *id001
+    name: translate-this-mal-eng
+    reference: Basic translation (Malayalam into English)
+  2c9e7e80-56f3-4864-a4ab-3c38d8844de6: !Template
+    answer_choices: null
+    id: 2c9e7e80-56f3-4864-a4ab-3c38d8844de6
+    jinja: 'Translate this from simplified Chinese into Zulu: {{ sentence_zho_simpl
+      }} ||| {{ sentence_zul }}'
+    metadata: *id001
+    name: translate-this-zho_simpl-zul
+    reference: Basic translation (simplified Chinese into Zulu)
+  2d44ba30-56b3-42e6-90b7-18148b115e92: !Template
+    answer_choices: null
+    id: 2d44ba30-56b3-42e6-90b7-18148b115e92
+    jinja: 'Translate this from Hindi into traditional Chinese: {{ sentence_hin }}
+      ||| {{ sentence_zho_trad }}'
+    metadata: *id001
+    name: translate-this-hin-zho_trad
+    reference: Basic translation (Hindi into traditional Chinese)
+  2dce3330-97fe-4e80-9610-fd9197c159cb: !Template
+    answer_choices: null
+    id: 2dce3330-97fe-4e80-9610-fd9197c159cb
+    jinja: 'Translate this from Latin American Spanish into Yoruba: {{ sentence_spa
+      }} ||| {{ sentence_yor }}'
+    metadata: *id001
+    name: translate-this-spa-yor
+    reference: Basic translation (Latin American Spanish into Yoruba)
+  2dfff2a5-d0f0-4021-b938-a17b393a7b7a: !Template
+    answer_choices: null
+    id: 2dfff2a5-d0f0-4021-b938-a17b393a7b7a
+    jinja: 'Translate this from Zulu into Arabic: {{ sentence_zul }} ||| {{ sentence_ara
+      }}'
+    metadata: *id001
+    name: translate-this-zul-ara
+    reference: Basic translation (Zulu into Arabic)
+  2e0ba1bf-75e2-4623-80bd-fad6eb234269: !Template
+    answer_choices: null
+    id: 2e0ba1bf-75e2-4623-80bd-fad6eb234269
+    jinja: 'Translate this from Kannada into Wolof: {{ sentence_kan }} ||| {{ sentence_wol
+      }}'
+    metadata: *id001
+    name: translate-this-kan-wol
+    reference: Basic translation (Kannada into Wolof)
+  2e1042ea-c470-4fb6-8708-89b9af3f8445: !Template
+    answer_choices: null
+    id: 2e1042ea-c470-4fb6-8708-89b9af3f8445
+    jinja: 'Translate this from Yoruba into simplified Chinese: {{ sentence_yor }}
+      ||| {{ sentence_zho_simpl }}'
+    metadata: *id001
+    name: translate-this-yor-zho_simpl
+    reference: Basic translation (Yoruba into simplified Chinese)
+  2ea20010-b115-4cac-b738-511b9b265528: !Template
+    answer_choices: null
+    id: 2ea20010-b115-4cac-b738-511b9b265528
+    jinja: 'Translate this from Assamese into French: {{ sentence_asm }} ||| {{ sentence_fra
+      }}'
+    metadata: *id001
+    name: translate-this-asm-fra
+    reference: Basic translation (Assamese into French)
+  2ea531d8-2e97-48a9-905b-e80bd04d71c6: !Template
+    answer_choices: null
+    id: 2ea531d8-2e97-48a9-905b-e80bd04d71c6
+    jinja: 'Translate this from Lingala into Telugu: {{ sentence_lin }} ||| {{ sentence_tel
+      }}'
+    metadata: *id001
+    name: translate-this-lin-tel
+    reference: Basic translation (Lingala into Telugu)
+  2eb3a6d2-ee6a-4ab1-a095-2a2e00405fc8: !Template
+    answer_choices: null
+    id: 2eb3a6d2-ee6a-4ab1-a095-2a2e00405fc8
+    jinja: 'Translate this from English into Zulu: {{ sentence_eng }} ||| {{ sentence_zul
+      }}'
+    metadata: *id001
+    name: translate-this-eng-zul
+    reference: Basic translation (English into Zulu)
+  2ec4eda5-0431-4d0c-98b9-0a05456918c5: !Template
+    answer_choices: null
+    id: 2ec4eda5-0431-4d0c-98b9-0a05456918c5
+    jinja: 'Translate this from Oriya into Brazilian Portuguese: {{ sentence_ory }}
+      ||| {{ sentence_por }}'
+    metadata: *id001
+    name: translate-this-ory-por
+    reference: Basic translation (Oriya into Brazilian Portuguese)
+  2ef28f4a-d7f9-4733-9f08-9ccf12b649ef: !Template
+    answer_choices: null
+    id: 2ef28f4a-d7f9-4733-9f08-9ccf12b649ef
+    jinja: 'Translate this from Tamil into Malayalam: {{ sentence_tam }} ||| {{ sentence_mal
+      }}'
+    metadata: *id001
+    name: translate-this-tam-mal
+    reference: Basic translation (Tamil into Malayalam)
+  2ef2a0d9-d4b7-4a51-8a0b-45389e86c6aa: !Template
+    answer_choices: null
+    id: 2ef2a0d9-d4b7-4a51-8a0b-45389e86c6aa
+    jinja: 'Translate this from Zulu into Tamil: {{ sentence_zul }} ||| {{ sentence_tam
+      }}'
+    metadata: *id001
+    name: translate-this-zul-tam
+    reference: Basic translation (Zulu into Tamil)
+  2f8e9937-c364-4c8d-abe6-65789bad709c: !Template
+    answer_choices: null
+    id: 2f8e9937-c364-4c8d-abe6-65789bad709c
+    jinja: 'Translate this from Catalan into Brazilian Portuguese: {{ sentence_cat
+      }} ||| {{ sentence_por }}'
+    metadata: *id001
+    name: translate-this-cat-por
+    reference: Basic translation (Catalan into Brazilian Portuguese)
+  2fe6f09f-036d-4300-b982-dfaf2649bbfe: !Template
+    answer_choices: null
+    id: 2fe6f09f-036d-4300-b982-dfaf2649bbfe
+    jinja: 'Translate this from Urdu into Telugu: {{ sentence_urd }} ||| {{ sentence_tel
+      }}'
+    metadata: *id001
+    name: translate-this-urd-tel
+    reference: Basic translation (Urdu into Telugu)
+  301af909-03e6-4981-8748-b3be3032472b: !Template
+    answer_choices: null
+    id: 301af909-03e6-4981-8748-b3be3032472b
+    jinja: 'Translate this from Oriya into Xhosa: {{ sentence_ory }} ||| {{ sentence_xho
+      }}'
+    metadata: *id001
+    name: translate-this-ory-xho
+    reference: Basic translation (Oriya into Xhosa)
+  301ef396-2498-480e-9b25-547651080398: !Template
+    answer_choices: null
+    id: 301ef396-2498-480e-9b25-547651080398
+    jinja: 'Translate this from Vietnamese into Oriya: {{ sentence_vie }} ||| {{ sentence_ory
+      }}'
+    metadata: *id001
+    name: translate-this-vie-ory
+    reference: Basic translation (Vietnamese into Oriya)
+  302b2e93-1b5a-4c27-8087-c1a227c747f8: !Template
+    answer_choices: null
+    id: 302b2e93-1b5a-4c27-8087-c1a227c747f8
+    jinja: 'Translate this from Kannada into Punjabi: {{ sentence_kan }} ||| {{ sentence_pan
+      }}'
+    metadata: *id001
+    name: translate-this-kan-pan
+    reference: Basic translation (Kannada into Punjabi)
+  3049882a-819c-4bab-aebd-47ed4e56589b: !Template
+    answer_choices: null
+    id: 3049882a-819c-4bab-aebd-47ed4e56589b
+    jinja: 'Translate this from Lingala into Igbo: {{ sentence_lin }} ||| {{ sentence_ibo
+      }}'
+    metadata: *id001
+    name: translate-this-lin-ibo
+    reference: Basic translation (Lingala into Igbo)
+  305a370b-4998-476b-b06c-59d67bdbfa13: !Template
+    answer_choices: null
+    id: 305a370b-4998-476b-b06c-59d67bdbfa13
+    jinja: 'Translate this from Wolof into Zulu: {{ sentence_wol }} ||| {{ sentence_zul
+      }}'
+    metadata: *id001
+    name: translate-this-wol-zul
+    reference: Basic translation (Wolof into Zulu)
+  30b69489-e330-4b4f-9e5d-e1b7b5b63f39: !Template
+    answer_choices: null
+    id: 30b69489-e330-4b4f-9e5d-e1b7b5b63f39
+    jinja: 'Translate this from Xhosa into Malayalam: {{ sentence_xho }} ||| {{ sentence_mal
+      }}'
+    metadata: *id001
+    name: translate-this-xho-mal
+    reference: Basic translation (Xhosa into Malayalam)
+  30c50a98-1429-42ec-a141-5043cd6cca6d: !Template
+    answer_choices: null
+    id: 30c50a98-1429-42ec-a141-5043cd6cca6d
+    jinja: 'Translate this from Indonesian into Urdu: {{ sentence_ind }} ||| {{ sentence_urd
+      }}'
+    metadata: *id001
+    name: translate-this-ind-urd
+    reference: Basic translation (Indonesian into Urdu)
+  30deb3a3-607b-4d3f-ab33-abef13632b24: !Template
+    answer_choices: null
+    id: 30deb3a3-607b-4d3f-ab33-abef13632b24
+    jinja: 'Translate this from Urdu into Punjabi: {{ sentence_urd }} ||| {{ sentence_pan
+      }}'
+    metadata: *id001
+    name: translate-this-urd-pan
+    reference: Basic translation (Urdu into Punjabi)
+  30e8e453-2d3c-4d67-a3ed-bbba1c8f6dc2: !Template
+    answer_choices: null
+    id: 30e8e453-2d3c-4d67-a3ed-bbba1c8f6dc2
+    jinja: 'Translate this from Igbo into Catalan: {{ sentence_ibo }} ||| {{ sentence_cat
+      }}'
+    metadata: *id001
+    name: translate-this-ibo-cat
+    reference: Basic translation (Igbo into Catalan)
+  30ed79f8-ee17-4da2-9f75-d6a50817c891: !Template
+    answer_choices: null
+    id: 30ed79f8-ee17-4da2-9f75-d6a50817c891
+    jinja: 'Translate this from Malayalam into Oriya: {{ sentence_mal }} ||| {{ sentence_ory
+      }}'
+    metadata: *id001
+    name: translate-this-mal-ory
+    reference: Basic translation (Malayalam into Oriya)
+  31256e73-48f4-4514-8610-b608f8bcac9d: !Template
+    answer_choices: null
+    id: 31256e73-48f4-4514-8610-b608f8bcac9d
+    jinja: 'Translate this from Oriya into Yoruba: {{ sentence_ory }} ||| {{ sentence_yor
+      }}'
+    metadata: *id001
+    name: translate-this-ory-yor
+    reference: Basic translation (Oriya into Yoruba)
+  31db01e3-b12b-47c9-b9f1-9a1a563c82f2: !Template
+    answer_choices: null
+    id: 31db01e3-b12b-47c9-b9f1-9a1a563c82f2
+    jinja: 'Translate this from Catalan into Gujarati: {{ sentence_cat }} ||| {{ sentence_guj
+      }}'
+    metadata: *id001
+    name: translate-this-cat-guj
+    reference: Basic translation (Catalan into Gujarati)
+  320173f1-3f8a-4ce2-b485-2c651701c7dd: !Template
+    answer_choices: null
+    id: 320173f1-3f8a-4ce2-b485-2c651701c7dd
+    jinja: 'Translate this from Marathi into Latin American Spanish: {{ sentence_mar
+      }} ||| {{ sentence_spa }}'
+    metadata: *id001
+    name: translate-this-mar-spa
+    reference: Basic translation (Marathi into Latin American Spanish)
+  32597949-f679-475e-8693-487dcd1b015d: !Template
+    answer_choices: null
+    id: 32597949-f679-475e-8693-487dcd1b015d
+    jinja: 'Translate this from Swahili into Urdu: {{ sentence_swh }} ||| {{ sentence_urd
+      }}'
+    metadata: *id001
+    name: translate-this-swh-urd
+    reference: Basic translation (Swahili into Urdu)
+  32931b3d-b215-448c-96fc-5b671e53632c: !Template
+    answer_choices: null
+    id: 32931b3d-b215-448c-96fc-5b671e53632c
+    jinja: 'Translate this from traditional Chinese into Urdu: {{ sentence_zho_trad
+      }} ||| {{ sentence_urd }}'
+    metadata: *id001
+    name: translate-this-zho_trad-urd
+    reference: Basic translation (traditional Chinese into Urdu)
+  3359aecb-b509-4ac1-9186-2e3c0fc7d04a: !Template
+    answer_choices: null
+    id: 3359aecb-b509-4ac1-9186-2e3c0fc7d04a
+    jinja: 'Translate this from Hindi into Malayalam: {{ sentence_hin }} ||| {{ sentence_mal
+      }}'
+    metadata: *id001
+    name: translate-this-hin-mal
+    reference: Basic translation (Hindi into Malayalam)
+  338bcd33-bf61-4146-82f0-7d84cbc0df55: !Template
+    answer_choices: null
+    id: 338bcd33-bf61-4146-82f0-7d84cbc0df55
+    jinja: 'Translate this from Kannada into Zulu: {{ sentence_kan }} ||| {{ sentence_zul
+      }}'
+    metadata: *id001
+    name: translate-this-kan-zul
+    reference: Basic translation (Kannada into Zulu)
+  3432055c-58b8-4663-bc49-4c1f07a897a3: !Template
+    answer_choices: null
+    id: 3432055c-58b8-4663-bc49-4c1f07a897a3
+    jinja: 'Translate this from Northern Sotho into Brazilian Portuguese: {{ sentence_nso
+      }} ||| {{ sentence_por }}'
+    metadata: *id001
+    name: translate-this-nso-por
+    reference: Basic translation (Northern Sotho into Brazilian Portuguese)
+  349eba5c-2633-4f0c-8385-d6d35f0f0eae: !Template
+    answer_choices: null
+    id: 349eba5c-2633-4f0c-8385-d6d35f0f0eae
+    jinja: 'Translate this from Wolof into Lingala: {{ sentence_wol }} ||| {{ sentence_lin
+      }}'
+    metadata: *id001
+    name: translate-this-wol-lin
+    reference: Basic translation (Wolof into Lingala)
+  358009d4-1ca6-4601-93a8-feef2b5fc7fd: !Template
+    answer_choices: null
+    id: 358009d4-1ca6-4601-93a8-feef2b5fc7fd
+    jinja: 'Translate this from Bengali into Latin American Spanish: {{ sentence_ben
+      }} ||| {{ sentence_spa }}'
+    metadata: *id001
+    name: translate-this-ben-spa
+    reference: Basic translation (Bengali into Latin American Spanish)
+  3640b22e-d677-4e77-8746-27d15986406d: !Template
+    answer_choices: null
+    id: 3640b22e-d677-4e77-8746-27d15986406d
+    jinja: 'Translate this from Swahili into simplified Chinese: {{ sentence_swh }}
+      ||| {{ sentence_zho_simpl }}'
+    metadata: *id001
+    name: translate-this-swh-zho_simpl
+    reference: Basic translation (Swahili into simplified Chinese)
+  367000a2-021d-4be2-a227-de25957ab931: !Template
+    answer_choices: null
+    id: 367000a2-021d-4be2-a227-de25957ab931
+    jinja: 'Translate this from Xhosa into Telugu: {{ sentence_xho }} ||| {{ sentence_tel
+      }}'
+    metadata: *id001
+    name: translate-this-xho-tel
+    reference: Basic translation (Xhosa into Telugu)
+  36a53209-9c52-47de-9ddb-f0166154626e: !Template
+    answer_choices: null
+    id: 36a53209-9c52-47de-9ddb-f0166154626e
+    jinja: 'Translate this from Indonesian into Malayalam: {{ sentence_ind }} |||
+      {{ sentence_mal }}'
+    metadata: *id001
+    name: translate-this-ind-mal
+    reference: Basic translation (Indonesian into Malayalam)
+  36d051b9-1ebb-4d03-a5f1-c7eb7f67a4d9: !Template
+    answer_choices: null
+    id: 36d051b9-1ebb-4d03-a5f1-c7eb7f67a4d9
+    jinja: 'Translate this from Northern Sotho into Lingala: {{ sentence_nso }} |||
+      {{ sentence_lin }}'
+    metadata: *id001
+    name: translate-this-nso-lin
+    reference: Basic translation (Northern Sotho into Lingala)
+  374165d8-5a07-46f1-a8e5-490caae7178a: !Template
+    answer_choices: null
+    id: 374165d8-5a07-46f1-a8e5-490caae7178a
+    jinja: 'Translate this from Punjabi into Xhosa: {{ sentence_pan }} ||| {{ sentence_xho
+      }}'
+    metadata: *id001
+    name: translate-this-pan-xho
+    reference: Basic translation (Punjabi into Xhosa)
+  379cabbd-1350-48e3-9179-6ed9067f3cd8: !Template
+    answer_choices: null
+    id: 379cabbd-1350-48e3-9179-6ed9067f3cd8
+    jinja: 'Translate this from Igbo into Oriya: {{ sentence_ibo }} ||| {{ sentence_ory
+      }}'
+    metadata: *id001
+    name: translate-this-ibo-ory
+    reference: Basic translation (Igbo into Oriya)
+  37a1e2fb-865a-44e5-894a-da6dc75467b5: !Template
+    answer_choices: null
+    id: 37a1e2fb-865a-44e5-894a-da6dc75467b5
+    jinja: 'Translate this from Zulu into Marathi: {{ sentence_zul }} ||| {{ sentence_mar
+      }}'
+    metadata: *id001
+    name: translate-this-zul-mar
+    reference: Basic translation (Zulu into Marathi)
+  37c611a2-cd70-4460-bda5-5dd0432fcd86: !Template
+    answer_choices: null
+    id: 37c611a2-cd70-4460-bda5-5dd0432fcd86
+    jinja: 'Translate this from English into Assamese: {{ sentence_eng }} ||| {{ sentence_asm
+      }}'
+    metadata: *id001
+    name: translate-this-eng-asm
+    reference: Basic translation (English into Assamese)
+  37e0767c-eec5-41de-8f72-84f3f9a067ac: !Template
+    answer_choices: null
+    id: 37e0767c-eec5-41de-8f72-84f3f9a067ac
+    jinja: 'Translate this from Latin American Spanish into Malayalam: {{ sentence_spa
+      }} ||| {{ sentence_mal }}'
+    metadata: *id001
+    name: translate-this-spa-mal
+    reference: Basic translation (Latin American Spanish into Malayalam)
+  38983ff5-2f36-4762-97e1-ec14daf3d8a6: !Template
+    answer_choices: null
+    id: 38983ff5-2f36-4762-97e1-ec14daf3d8a6
+    jinja: 'Translate this from Bengali into Hindi: {{ sentence_ben }} ||| {{ sentence_hin
+      }}'
+    metadata: *id001
+    name: translate-this-ben-hin
+    reference: Basic translation (Bengali into Hindi)
+  38a7c7b4-11db-45b1-b305-71c003bd2d5e: !Template
+    answer_choices: null
+    id: 38a7c7b4-11db-45b1-b305-71c003bd2d5e
+    jinja: 'Translate this from Zulu into English: {{ sentence_zul }} ||| {{ sentence_eng
+      }}'
+    metadata: *id001
+    name: translate-this-zul-eng
+    reference: Basic translation (Zulu into English)
+  38fcbc85-7267-4aa9-bf2c-c3a93ba927d4: !Template
+    answer_choices: null
+    id: 38fcbc85-7267-4aa9-bf2c-c3a93ba927d4
+    jinja: 'Translate this from Yoruba into Bengali: {{ sentence_yor }} ||| {{ sentence_ben
+      }}'
+    metadata: *id001
+    name: translate-this-yor-ben
+    reference: Basic translation (Yoruba into Bengali)
+  390b3817-bd6c-4f46-a4ec-e561bbb1f21a: !Template
+    answer_choices: null
+    id: 390b3817-bd6c-4f46-a4ec-e561bbb1f21a
+    jinja: 'Translate this from Wolof into Northern Sotho: {{ sentence_wol }} |||
+      {{ sentence_nso }}'
+    metadata: *id001
+    name: translate-this-wol-nso
+    reference: Basic translation (Wolof into Northern Sotho)
+  39410be1-21e7-4445-9807-b8e47f9f7e4c: !Template
+    answer_choices: null
+    id: 39410be1-21e7-4445-9807-b8e47f9f7e4c
+    jinja: 'Translate this from Kannada into Hindi: {{ sentence_kan }} ||| {{ sentence_hin
+      }}'
+    metadata: *id001
+    name: translate-this-kan-hin
+    reference: Basic translation (Kannada into Hindi)
+  39867095-dad6-4501-93fb-d242dca9f930: !Template
+    answer_choices: null
+    id: 39867095-dad6-4501-93fb-d242dca9f930
+    jinja: 'Translate this from Catalan into Oriya: {{ sentence_cat }} ||| {{ sentence_ory
+      }}'
+    metadata: *id001
+    name: translate-this-cat-ory
+    reference: Basic translation (Catalan into Oriya)
+  399eb5b5-bf8a-45a6-95af-b16dde99e56e: !Template
+    answer_choices: null
+    id: 399eb5b5-bf8a-45a6-95af-b16dde99e56e
+    jinja: 'Translate this from Marathi into Arabic: {{ sentence_mar }} ||| {{ sentence_ara
+      }}'
+    metadata: *id001
+    name: translate-this-mar-ara
+    reference: Basic translation (Marathi into Arabic)
+  39c015d7-de1f-411e-8fc8-158f8ea9d082: !Template
+    answer_choices: null
+    id: 39c015d7-de1f-411e-8fc8-158f8ea9d082
+    jinja: 'Translate this from Malayalam into traditional Chinese: {{ sentence_mal
+      }} ||| {{ sentence_zho_trad }}'
+    metadata: *id001
+    name: translate-this-mal-zho_trad
+    reference: Basic translation (Malayalam into traditional Chinese)
+  3a03c964-3ec1-49af-ad14-9d4602ee7677: !Template
+    answer_choices: null
+    id: 3a03c964-3ec1-49af-ad14-9d4602ee7677
+    jinja: 'Translate this from Catalan into Hindi: {{ sentence_cat }} ||| {{ sentence_hin
+      }}'
+    metadata: *id001
+    name: translate-this-cat-hin
+    reference: Basic translation (Catalan into Hindi)
+  3a2e789f-f7d6-497c-843c-2c0ec2b398f3: !Template
+    answer_choices: null
+    id: 3a2e789f-f7d6-497c-843c-2c0ec2b398f3
+    jinja: 'Translate this from traditional Chinese into Marathi: {{ sentence_zho_trad
+      }} ||| {{ sentence_mar }}'
+    metadata: *id001
+    name: translate-this-zho_trad-mar
+    reference: Basic translation (traditional Chinese into Marathi)
+  3a5b8886-78e0-42fc-bbe0-210d9f6226e6: !Template
+    answer_choices: null
+    id: 3a5b8886-78e0-42fc-bbe0-210d9f6226e6
+    jinja: 'Translate this from Igbo into Marathi: {{ sentence_ibo }} ||| {{ sentence_mar
+      }}'
+    metadata: *id001
+    name: translate-this-ibo-mar
+    reference: Basic translation (Igbo into Marathi)
+  3a78a3ad-2c9d-4499-80bc-e12494c060ca: !Template
+    answer_choices: null
+    id: 3a78a3ad-2c9d-4499-80bc-e12494c060ca
+    jinja: 'Translate this from French into Tamil: {{ sentence_fra }} ||| {{ sentence_tam
+      }}'
+    metadata: *id001
+    name: translate-this-fra-tam
+    reference: Basic translation (French into Tamil)
+  3a8bf195-a984-46b4-9b3d-aa1f12809428: !Template
+    answer_choices: null
+    id: 3a8bf195-a984-46b4-9b3d-aa1f12809428
+    jinja: 'Translate this from Arabic into Bengali: {{ sentence_ara }} ||| {{ sentence_ben
+      }}'
+    metadata: *id001
+    name: translate-this-ara-ben
+    reference: Basic translation (Arabic into Bengali)
+  3ad31d6e-219b-42cb-ac8b-a8629f5d6f42: !Template
+    answer_choices: null
+    id: 3ad31d6e-219b-42cb-ac8b-a8629f5d6f42
+    jinja: 'Translate this from Nepali into Yoruba: {{ sentence_npi }} ||| {{ sentence_yor
+      }}'
+    metadata: *id001
+    name: translate-this-npi-yor
+    reference: Basic translation (Nepali into Yoruba)
+  3afedbc2-9f83-4619-bd23-221ef1c1ba49: !Template
+    answer_choices: null
+    id: 3afedbc2-9f83-4619-bd23-221ef1c1ba49
+    jinja: 'Translate this from Catalan into Wolof: {{ sentence_cat }} ||| {{ sentence_wol
+      }}'
+    metadata: *id001
+    name: translate-this-cat-wol
+    reference: Basic translation (Catalan into Wolof)
+  3b1c955a-a9d3-4887-a7f0-d748b807cc41: !Template
+    answer_choices: null
+    id: 3b1c955a-a9d3-4887-a7f0-d748b807cc41
+    jinja: 'Translate this from Oriya into traditional Chinese: {{ sentence_ory }}
+      ||| {{ sentence_zho_trad }}'
+    metadata: *id001
+    name: translate-this-ory-zho_trad
+    reference: Basic translation (Oriya into traditional Chinese)
+  3b2d859d-8461-4e30-aa09-20b29c02b573: !Template
+    answer_choices: null
+    id: 3b2d859d-8461-4e30-aa09-20b29c02b573
+    jinja: 'Translate this from Punjabi into Malayalam: {{ sentence_pan }} ||| {{
+      sentence_mal }}'
+    metadata: *id001
+    name: translate-this-pan-mal
+    reference: Basic translation (Punjabi into Malayalam)
+  3b8030e2-2e51-40d7-b260-38093df4e062: !Template
+    answer_choices: null
+    id: 3b8030e2-2e51-40d7-b260-38093df4e062
+    jinja: 'Translate this from Arabic into Swahili: {{ sentence_ara }} ||| {{ sentence_swh
+      }}'
+    metadata: *id001
+    name: translate-this-ara-swh
+    reference: Basic translation (Arabic into Swahili)
+  3c09660e-a76a-45c3-a299-0b32d4fa6ea2: !Template
+    answer_choices: null
+    id: 3c09660e-a76a-45c3-a299-0b32d4fa6ea2
+    jinja: 'Translate this from Northern Sotho into Hindi: {{ sentence_nso }} |||
+      {{ sentence_hin }}'
+    metadata: *id001
+    name: translate-this-nso-hin
+    reference: Basic translation (Northern Sotho into Hindi)
+  3cafe21f-3163-4081-b785-dba79628534a: !Template
+    answer_choices: null
+    id: 3cafe21f-3163-4081-b785-dba79628534a
+    jinja: 'Translate this from Bengali into Indonesian: {{ sentence_ben }} ||| {{
+      sentence_ind }}'
+    metadata: *id001
+    name: translate-this-ben-ind
+    reference: Basic translation (Bengali into Indonesian)
+  3d0a39dd-a404-46e1-a189-996ea5c2800e: !Template
+    answer_choices: null
+    id: 3d0a39dd-a404-46e1-a189-996ea5c2800e
+    jinja: 'Translate this from simplified Chinese into English: {{ sentence_zho_simpl
+      }} ||| {{ sentence_eng }}'
+    metadata: *id001
+    name: translate-this-zho_simpl-eng
+    reference: Basic translation (simplified Chinese into English)
+  3d48dbba-02ba-44fa-a811-f67ce4d5de18: !Template
+    answer_choices: null
+    id: 3d48dbba-02ba-44fa-a811-f67ce4d5de18
+    jinja: 'Translate this from Arabic into Catalan: {{ sentence_ara }} ||| {{ sentence_cat
+      }}'
+    metadata: *id001
+    name: translate-this-ara-cat
+    reference: Basic translation (Arabic into Catalan)
+  3d738407-e64f-4984-a284-0d3cf0c9f6fe: !Template
+    answer_choices: null
+    id: 3d738407-e64f-4984-a284-0d3cf0c9f6fe
+    jinja: 'Translate this from Urdu into Yoruba: {{ sentence_urd }} ||| {{ sentence_yor
+      }}'
+    metadata: *id001
+    name: translate-this-urd-yor
+    reference: Basic translation (Urdu into Yoruba)
+  3d7cfcff-49f9-441c-8feb-48e281db9a35: !Template
+    answer_choices: null
+    id: 3d7cfcff-49f9-441c-8feb-48e281db9a35
+    jinja: 'Translate this from Indonesian into Brazilian Portuguese: {{ sentence_ind
+      }} ||| {{ sentence_por }}'
+    metadata: *id001
+    name: translate-this-ind-por
+    reference: Basic translation (Indonesian into Brazilian Portuguese)
+  3df591e6-c9bd-4436-b9ea-2de3a490af46: !Template
+    answer_choices: null
+    id: 3df591e6-c9bd-4436-b9ea-2de3a490af46
+    jinja: 'Translate this from Zulu into Telugu: {{ sentence_zul }} ||| {{ sentence_tel
+      }}'
+    metadata: *id001
+    name: translate-this-zul-tel
+    reference: Basic translation (Zulu into Telugu)
+  3e64a223-6fa6-4ed8-915e-8ff1c4229868: !Template
+    answer_choices: null
+    id: 3e64a223-6fa6-4ed8-915e-8ff1c4229868
+    jinja: 'Translate this from Wolof into Kannada: {{ sentence_wol }} ||| {{ sentence_kan
+      }}'
+    metadata: *id001
+    name: translate-this-wol-kan
+    reference: Basic translation (Wolof into Kannada)
+  3f2aff6c-d22c-4755-b7c9-f0fe3f562485: !Template
+    answer_choices: null
+    id: 3f2aff6c-d22c-4755-b7c9-f0fe3f562485
+    jinja: 'Translate this from Punjabi into Telugu: {{ sentence_pan }} ||| {{ sentence_tel
+      }}'
+    metadata: *id001
+    name: translate-this-pan-tel
+    reference: Basic translation (Punjabi into Telugu)
+  3f8b57a2-295b-4d83-adad-b8c04157f2d0: !Template
+    answer_choices: null
+    id: 3f8b57a2-295b-4d83-adad-b8c04157f2d0
+    jinja: 'Translate this from French into Yoruba: {{ sentence_fra }} ||| {{ sentence_yor
+      }}'
+    metadata: *id001
+    name: translate-this-fra-yor
+    reference: Basic translation (French into Yoruba)
+  3fca2ecf-789b-4441-9c4e-1175da2ba4c8: !Template
+    answer_choices: null
+    id: 3fca2ecf-789b-4441-9c4e-1175da2ba4c8
+    jinja: 'Translate this from Nepali into Urdu: {{ sentence_npi }} ||| {{ sentence_urd
+      }}'
+    metadata: *id001
+    name: translate-this-npi-urd
+    reference: Basic translation (Nepali into Urdu)
+  4007a2ab-90d1-4577-aee9-6e6659c6bd20: !Template
+    answer_choices: null
+    id: 4007a2ab-90d1-4577-aee9-6e6659c6bd20
+    jinja: 'Translate this from Arabic into Lingala: {{ sentence_ara }} ||| {{ sentence_lin
+      }}'
+    metadata: *id001
+    name: translate-this-ara-lin
+    reference: Basic translation (Arabic into Lingala)
+  40d12e13-0793-4a00-b341-9f5516c33063: !Template
+    answer_choices: null
+    id: 40d12e13-0793-4a00-b341-9f5516c33063
+    jinja: 'Translate this from Igbo into Northern Sotho: {{ sentence_ibo }} ||| {{
+      sentence_nso }}'
+    metadata: *id001
+    name: translate-this-ibo-nso
+    reference: Basic translation (Igbo into Northern Sotho)
+  40de80f1-8089-48d1-8a91-cd27f22be785: !Template
+    answer_choices: null
+    id: 40de80f1-8089-48d1-8a91-cd27f22be785
+    jinja: 'Translate this from Assamese into Urdu: {{ sentence_asm }} ||| {{ sentence_urd
+      }}'
+    metadata: *id001
+    name: translate-this-asm-urd
+    reference: Basic translation (Assamese into Urdu)
+  41856d6b-70e6-4160-a0a1-2ca2c0118fbf: !Template
+    answer_choices: null
+    id: 41856d6b-70e6-4160-a0a1-2ca2c0118fbf
+    jinja: 'Translate this from Gujarati into Telugu: {{ sentence_guj }} ||| {{ sentence_tel
+      }}'
+    metadata: *id001
+    name: translate-this-guj-tel
+    reference: Basic translation (Gujarati into Telugu)
+  41e9029c-8d79-4273-ae84-43ef342d6708: !Template
+    answer_choices: null
+    id: 41e9029c-8d79-4273-ae84-43ef342d6708
+    jinja: 'Translate this from traditional Chinese into English: {{ sentence_zho_trad
+      }} ||| {{ sentence_eng }}'
+    metadata: *id001
+    name: translate-this-zho_trad-eng
+    reference: Basic translation (traditional Chinese into English)
+  4203ff3b-5157-4f36-bd84-023d1a007fd9: !Template
+    answer_choices: null
+    id: 4203ff3b-5157-4f36-bd84-023d1a007fd9
+    jinja: 'Translate this from Xhosa into Arabic: {{ sentence_xho }} ||| {{ sentence_ara
+      }}'
+    metadata: *id001
+    name: translate-this-xho-ara
+    reference: Basic translation (Xhosa into Arabic)
+  42c0777d-1bbd-4691-b217-2ae3fd118844: !Template
+    answer_choices: null
+    id: 42c0777d-1bbd-4691-b217-2ae3fd118844
+    jinja: 'Translate this from Igbo into Brazilian Portuguese: {{ sentence_ibo }}
+      ||| {{ sentence_por }}'
+    metadata: *id001
+    name: translate-this-ibo-por
+    reference: Basic translation (Igbo into Brazilian Portuguese)
+  4372addb-fa0b-4e06-afb9-1f86068fc2e1: !Template
+    answer_choices: null
+    id: 4372addb-fa0b-4e06-afb9-1f86068fc2e1
+    jinja: 'Translate this from Marathi into Kannada: {{ sentence_mar }} ||| {{ sentence_kan
+      }}'
+    metadata: *id001
+    name: translate-this-mar-kan
+    reference: Basic translation (Marathi into Kannada)
+  43866147-76d5-4caa-95c3-36cecf5749e1: !Template
+    answer_choices: null
+    id: 43866147-76d5-4caa-95c3-36cecf5749e1
+    jinja: 'Translate this from English into Kannada: {{ sentence_eng }} ||| {{ sentence_kan
+      }}'
+    metadata: *id001
+    name: translate-this-eng-kan
+    reference: Basic translation (English into Kannada)
+  439c10a8-353d-4406-a90d-00602a9dc7e3: !Template
+    answer_choices: null
+    id: 439c10a8-353d-4406-a90d-00602a9dc7e3
+    jinja: 'Translate this from Indonesian into Telugu: {{ sentence_ind }} ||| {{
+      sentence_tel }}'
+    metadata: *id001
+    name: translate-this-ind-tel
+    reference: Basic translation (Indonesian into Telugu)
+  43a6a9b5-cb2f-449e-8152-84da12e27d39: !Template
+    answer_choices: null
+    id: 43a6a9b5-cb2f-449e-8152-84da12e27d39
+    jinja: 'Translate this from Bengali into Punjabi: {{ sentence_ben }} ||| {{ sentence_pan
+      }}'
+    metadata: *id001
+    name: translate-this-ben-pan
+    reference: Basic translation (Bengali into Punjabi)
+  43b1a9d1-c130-4517-b583-458c1855083a: !Template
+    answer_choices: null
+    id: 43b1a9d1-c130-4517-b583-458c1855083a
+    jinja: 'Translate this from Vietnamese into Igbo: {{ sentence_vie }} ||| {{ sentence_ibo
+      }}'
+    metadata: *id001
+    name: translate-this-vie-ibo
+    reference: Basic translation (Vietnamese into Igbo)
+  43ba42ef-8c2d-4f0b-8b61-44ec9f1d08bd: !Template
+    answer_choices: null
+    id: 43ba42ef-8c2d-4f0b-8b61-44ec9f1d08bd
+    jinja: 'Translate this from Xhosa into Bengali: {{ sentence_xho }} ||| {{ sentence_ben
+      }}'
+    metadata: *id001
+    name: translate-this-xho-ben
+    reference: Basic translation (Xhosa into Bengali)
+  43f3fc86-ad1c-4f43-8df7-982cb6401c9d: !Template
+    answer_choices: null
+    id: 43f3fc86-ad1c-4f43-8df7-982cb6401c9d
+    jinja: 'Translate this from Kannada into Xhosa: {{ sentence_kan }} ||| {{ sentence_xho
+      }}'
+    metadata: *id001
+    name: translate-this-kan-xho
+    reference: Basic translation (Kannada into Xhosa)
+  445ba5a6-17ba-4cc6-8bd9-d272b1075eb0: !Template
+    answer_choices: null
+    id: 445ba5a6-17ba-4cc6-8bd9-d272b1075eb0
+    jinja: 'Translate this from Yoruba into Igbo: {{ sentence_yor }} ||| {{ sentence_ibo
+      }}'
+    metadata: *id001
+    name: translate-this-yor-ibo
+    reference: Basic translation (Yoruba into Igbo)
+  45271a5b-802e-4c43-810b-cd8aade5bf3c: !Template
+    answer_choices: null
+    id: 45271a5b-802e-4c43-810b-cd8aade5bf3c
+    jinja: 'Translate this from Arabic into simplified Chinese: {{ sentence_ara }}
+      ||| {{ sentence_zho_simpl }}'
+    metadata: *id001
+    name: translate-this-ara-zho_simpl
+    reference: Basic translation (Arabic into simplified Chinese)
+  455a9a85-c122-4a13-b13b-e70a225b5719: !Template
+    answer_choices: null
+    id: 455a9a85-c122-4a13-b13b-e70a225b5719
+    jinja: 'Translate this from simplified Chinese into Lingala: {{ sentence_zho_simpl
+      }} ||| {{ sentence_lin }}'
+    metadata: *id001
+    name: translate-this-zho_simpl-lin
+    reference: Basic translation (simplified Chinese into Lingala)
+  4568c720-e59c-45c2-80d8-3528be8aa53a: !Template
+    answer_choices: null
+    id: 4568c720-e59c-45c2-80d8-3528be8aa53a
+    jinja: 'Translate this from Gujarati into French: {{ sentence_guj }} ||| {{ sentence_fra
+      }}'
+    metadata: *id001
+    name: translate-this-guj-fra
+    reference: Basic translation (Gujarati into French)
+  456a8d05-a4b1-4065-bd54-3b0e19c88328: !Template
+    answer_choices: null
+    id: 456a8d05-a4b1-4065-bd54-3b0e19c88328
+    jinja: 'Translate this from Zulu into Punjabi: {{ sentence_zul }} ||| {{ sentence_pan
+      }}'
+    metadata: *id001
+    name: translate-this-zul-pan
+    reference: Basic translation (Zulu into Punjabi)
+  46188006-f3cb-4b29-aac5-0835c480c2c0: !Template
+    answer_choices: null
+    id: 46188006-f3cb-4b29-aac5-0835c480c2c0
+    jinja: 'Translate this from Assamese into Vietnamese: {{ sentence_asm }} ||| {{
+      sentence_vie }}'
+    metadata: *id001
+    name: translate-this-asm-vie
+    reference: Basic translation (Assamese into Vietnamese)
+  462008e0-a767-43a6-abae-d06b7af4cc66: !Template
+    answer_choices: null
+    id: 462008e0-a767-43a6-abae-d06b7af4cc66
+    jinja: 'Translate this from Yoruba into French: {{ sentence_yor }} ||| {{ sentence_fra
+      }}'
+    metadata: *id001
+    name: translate-this-yor-fra
+    reference: Basic translation (Yoruba into French)
+  46866d6b-f58f-4cc2-860d-cd9a494ee581: !Template
+    answer_choices: null
+    id: 46866d6b-f58f-4cc2-860d-cd9a494ee581
+    jinja: 'Translate this from Punjabi into Arabic: {{ sentence_pan }} ||| {{ sentence_ara
+      }}'
+    metadata: *id001
+    name: translate-this-pan-ara
+    reference: Basic translation (Punjabi into Arabic)
+  46eb3c55-4b9c-4484-aa2b-d6671e901c47: !Template
+    answer_choices: null
+    id: 46eb3c55-4b9c-4484-aa2b-d6671e901c47
+    jinja: 'Translate this from Hindi into Xhosa: {{ sentence_hin }} ||| {{ sentence_xho
+      }}'
+    metadata: *id001
+    name: translate-this-hin-xho
+    reference: Basic translation (Hindi into Xhosa)
+  47296a0d-7048-45c8-a1e9-b01e2849d201: !Template
+    answer_choices: null
+    id: 47296a0d-7048-45c8-a1e9-b01e2849d201
+    jinja: 'Translate this from Nepali into Gujarati: {{ sentence_npi }} ||| {{ sentence_guj
+      }}'
+    metadata: *id001
+    name: translate-this-npi-guj
+    reference: Basic translation (Nepali into Gujarati)
+  474b4f3b-08df-4a73-a2f3-f6a6de6c06ef: !Template
+    answer_choices: null
+    id: 474b4f3b-08df-4a73-a2f3-f6a6de6c06ef
+    jinja: 'Translate this from English into Yoruba: {{ sentence_eng }} ||| {{ sentence_yor
+      }}'
+    metadata: *id001
+    name: translate-this-eng-yor
+    reference: Basic translation (English into Yoruba)
+  477cbaf3-891b-4387-9e60-c4bbf71d2674: !Template
+    answer_choices: null
+    id: 477cbaf3-891b-4387-9e60-c4bbf71d2674
+    jinja: 'Translate this from Indonesian into French: {{ sentence_ind }} ||| {{
+      sentence_fra }}'
+    metadata: *id001
+    name: translate-this-ind-fra
+    reference: Basic translation (Indonesian into French)
+  47ba7cfb-3e80-4dba-b00a-072a1e227774: !Template
+    answer_choices: null
+    id: 47ba7cfb-3e80-4dba-b00a-072a1e227774
+    jinja: 'Translate this from Xhosa into Urdu: {{ sentence_xho }} ||| {{ sentence_urd
+      }}'
+    metadata: *id001
+    name: translate-this-xho-urd
+    reference: Basic translation (Xhosa into Urdu)
+  48c5a765-3fde-48f0-87ef-b3201022ef90: !Template
+    answer_choices: null
+    id: 48c5a765-3fde-48f0-87ef-b3201022ef90
+    jinja: 'Translate this from Assamese into Wolof: {{ sentence_asm }} ||| {{ sentence_wol
+      }}'
+    metadata: *id001
+    name: translate-this-asm-wol
+    reference: Basic translation (Assamese into Wolof)
+  49178cbc-2bd3-4993-8a6f-2e5c88bb2252: !Template
+    answer_choices: null
+    id: 49178cbc-2bd3-4993-8a6f-2e5c88bb2252
+    jinja: 'Translate this from Northern Sotho into Telugu: {{ sentence_nso }} |||
+      {{ sentence_tel }}'
+    metadata: *id001
+    name: translate-this-nso-tel
+    reference: Basic translation (Northern Sotho into Telugu)
+  49237bdb-000d-4841-8880-bc6fd2dcba06: !Template
+    answer_choices: null
+    id: 49237bdb-000d-4841-8880-bc6fd2dcba06
+    jinja: 'Translate this from simplified Chinese into traditional Chinese: {{ sentence_zho_simpl
+      }} ||| {{ sentence_zho_trad }}'
+    metadata: *id001
+    name: translate-this-zho_simpl-zho_trad
+    reference: Basic translation (simplified Chinese into traditional Chinese)
+  49945144-f4e6-4abe-9a10-b4699509bc75: !Template
+    answer_choices: null
+    id: 49945144-f4e6-4abe-9a10-b4699509bc75
+    jinja: 'Translate this from Malayalam into French: {{ sentence_mal }} ||| {{ sentence_fra
+      }}'
+    metadata: *id001
+    name: translate-this-mal-fra
+    reference: Basic translation (Malayalam into French)
+  49ba6cb4-2c7e-4044-a711-007511dbcfe9: !Template
+    answer_choices: null
+    id: 49ba6cb4-2c7e-4044-a711-007511dbcfe9
+    jinja: 'Translate this from Malayalam into Indonesian: {{ sentence_mal }} |||
+      {{ sentence_ind }}'
+    metadata: *id001
+    name: translate-this-mal-ind
+    reference: Basic translation (Malayalam into Indonesian)
+  4a05fc16-4a95-42bb-8b33-2221d873a663: !Template
+    answer_choices: null
+    id: 4a05fc16-4a95-42bb-8b33-2221d873a663
+    jinja: 'Translate this from Urdu into Malayalam: {{ sentence_urd }} ||| {{ sentence_mal
+      }}'
+    metadata: *id001
+    name: translate-this-urd-mal
+    reference: Basic translation (Urdu into Malayalam)
+  4a0704aa-c3d3-4c24-ac1b-8d645f4f0bbc: !Template
+    answer_choices: null
+    id: 4a0704aa-c3d3-4c24-ac1b-8d645f4f0bbc
+    jinja: 'Translate this from Vietnamese into Latin American Spanish: {{ sentence_vie
+      }} ||| {{ sentence_spa }}'
+    metadata: *id001
+    name: translate-this-vie-spa
+    reference: Basic translation (Vietnamese into Latin American Spanish)
+  4a0a25a7-016f-4430-bed5-84b94c42155e: !Template
+    answer_choices: null
+    id: 4a0a25a7-016f-4430-bed5-84b94c42155e
+    jinja: 'Translate this from Hindi into Vietnamese: {{ sentence_hin }} ||| {{ sentence_vie
+      }}'
+    metadata: *id001
+    name: translate-this-hin-vie
+    reference: Basic translation (Hindi into Vietnamese)
+  4a1f9868-c4ab-4d4c-b074-f668e1bef980: !Template
+    answer_choices: null
+    id: 4a1f9868-c4ab-4d4c-b074-f668e1bef980
+    jinja: 'Translate this from Bengali into Lingala: {{ sentence_ben }} ||| {{ sentence_lin
+      }}'
+    metadata: *id001
+    name: translate-this-ben-lin
+    reference: Basic translation (Bengali into Lingala)
+  4a27a602-cc65-4c2b-ba14-edecd086de41: !Template
+    answer_choices: null
+    id: 4a27a602-cc65-4c2b-ba14-edecd086de41
+    jinja: 'Translate this from Northern Sotho into Vietnamese: {{ sentence_nso }}
+      ||| {{ sentence_vie }}'
+    metadata: *id001
+    name: translate-this-nso-vie
+    reference: Basic translation (Northern Sotho into Vietnamese)
+  4ac9f1ec-28c8-43ab-9222-393cc94544f6: !Template
+    answer_choices: null
+    id: 4ac9f1ec-28c8-43ab-9222-393cc94544f6
+    jinja: 'Translate this from Wolof into Urdu: {{ sentence_wol }} ||| {{ sentence_urd
+      }}'
+    metadata: *id001
+    name: translate-this-wol-urd
+    reference: Basic translation (Wolof into Urdu)
+  4b3246f9-5577-4aee-8e9f-0fcf9e60e2f2: !Template
+    answer_choices: null
+    id: 4b3246f9-5577-4aee-8e9f-0fcf9e60e2f2
+    jinja: 'Translate this from Igbo into Zulu: {{ sentence_ibo }} ||| {{ sentence_zul
+      }}'
+    metadata: *id001
+    name: translate-this-ibo-zul
+    reference: Basic translation (Igbo into Zulu)
+  4b370afb-96df-4f11-af1a-ac8c4e6a208c: !Template
+    answer_choices: null
+    id: 4b370afb-96df-4f11-af1a-ac8c4e6a208c
+    jinja: 'Translate this from Gujarati into Tamil: {{ sentence_guj }} ||| {{ sentence_tam
+      }}'
+    metadata: *id001
+    name: translate-this-guj-tam
+    reference: Basic translation (Gujarati into Tamil)
+  4bb57bcd-c05c-454a-b10f-c4bde42973c2: !Template
+    answer_choices: null
+    id: 4bb57bcd-c05c-454a-b10f-c4bde42973c2
+    jinja: 'Translate this from Marathi into Xhosa: {{ sentence_mar }} ||| {{ sentence_xho
+      }}'
+    metadata: *id001
+    name: translate-this-mar-xho
+    reference: Basic translation (Marathi into Xhosa)
+  4bdc2f65-920f-431b-8cf9-0e3a02d2b5f3: !Template
+    answer_choices: null
+    id: 4bdc2f65-920f-431b-8cf9-0e3a02d2b5f3
+    jinja: 'Translate this from Punjabi into Gujarati: {{ sentence_pan }} ||| {{ sentence_guj
+      }}'
+    metadata: *id001
+    name: translate-this-pan-guj
+    reference: Basic translation (Punjabi into Gujarati)
+  4be088e5-a8f1-47aa-b86a-64f04c8c2ed6: !Template
+    answer_choices: null
+    id: 4be088e5-a8f1-47aa-b86a-64f04c8c2ed6
+    jinja: 'Translate this from Kannada into traditional Chinese: {{ sentence_kan
+      }} ||| {{ sentence_zho_trad }}'
+    metadata: *id001
+    name: translate-this-kan-zho_trad
+    reference: Basic translation (Kannada into traditional Chinese)
+  4be9404c-30a9-41b7-9fdd-1ebf956656e2: !Template
+    answer_choices: null
+    id: 4be9404c-30a9-41b7-9fdd-1ebf956656e2
+    jinja: 'Translate this from Catalan into Marathi: {{ sentence_cat }} ||| {{ sentence_mar
+      }}'
+    metadata: *id001
+    name: translate-this-cat-mar
+    reference: Basic translation (Catalan into Marathi)
+  4c74b777-9f74-4343-a748-d2d316e54e63: !Template
+    answer_choices: null
+    id: 4c74b777-9f74-4343-a748-d2d316e54e63
+    jinja: 'Translate this from traditional Chinese into Northern Sotho: {{ sentence_zho_trad
+      }} ||| {{ sentence_nso }}'
+    metadata: *id001
+    name: translate-this-zho_trad-nso
+    reference: Basic translation (traditional Chinese into Northern Sotho)
+  4cb385bc-c29c-498f-b484-d7ee2c7b72bb: !Template
+    answer_choices: null
+    id: 4cb385bc-c29c-498f-b484-d7ee2c7b72bb
+    jinja: 'Translate this from Wolof into Xhosa: {{ sentence_wol }} ||| {{ sentence_xho
+      }}'
+    metadata: *id001
+    name: translate-this-wol-xho
+    reference: Basic translation (Wolof into Xhosa)
+  4dacc871-5315-4052-a80c-b34f3d456a61: !Template
+    answer_choices: null
+    id: 4dacc871-5315-4052-a80c-b34f3d456a61
+    jinja: 'Translate this from French into Vietnamese: {{ sentence_fra }} ||| {{
+      sentence_vie }}'
+    metadata: *id001
+    name: translate-this-fra-vie
+    reference: Basic translation (French into Vietnamese)
+  4e184aec-82cd-4f57-9650-274c2d27dbf3: !Template
+    answer_choices: null
+    id: 4e184aec-82cd-4f57-9650-274c2d27dbf3
+    jinja: 'Translate this from Xhosa into Assamese: {{ sentence_xho }} ||| {{ sentence_asm
+      }}'
+    metadata: *id001
+    name: translate-this-xho-asm
+    reference: Basic translation (Xhosa into Assamese)
+  4e1bc3f2-9067-460a-847c-2dc0610492ca: !Template
+    answer_choices: null
+    id: 4e1bc3f2-9067-460a-847c-2dc0610492ca
+    jinja: 'Translate this from Vietnamese into Wolof: {{ sentence_vie }} ||| {{ sentence_wol
+      }}'
+    metadata: *id001
+    name: translate-this-vie-wol
+    reference: Basic translation (Vietnamese into Wolof)
+  4e5d3ffa-64b2-4135-a86f-806bd3bf2c85: !Template
+    answer_choices: null
+    id: 4e5d3ffa-64b2-4135-a86f-806bd3bf2c85
+    jinja: 'Translate this from Gujarati into Kannada: {{ sentence_guj }} ||| {{ sentence_kan
+      }}'
+    metadata: *id001
+    name: translate-this-guj-kan
+    reference: Basic translation (Gujarati into Kannada)
+  4ec94806-e6be-4c5c-8b07-ca023976a031: !Template
+    answer_choices: null
+    id: 4ec94806-e6be-4c5c-8b07-ca023976a031
+    jinja: 'Translate this from Swahili into Igbo: {{ sentence_swh }} ||| {{ sentence_ibo
+      }}'
+    metadata: *id001
+    name: translate-this-swh-ibo
+    reference: Basic translation (Swahili into Igbo)
+  4f552f8d-5b6a-4723-a9b4-09c79e58365e: !Template
+    answer_choices: null
+    id: 4f552f8d-5b6a-4723-a9b4-09c79e58365e
+    jinja: 'Translate this from Malayalam into Wolof: {{ sentence_mal }} ||| {{ sentence_wol
+      }}'
+    metadata: *id001
+    name: translate-this-mal-wol
+    reference: Basic translation (Malayalam into Wolof)
+  4f6585ac-83cd-4a93-b3c5-e1c781361b2f: !Template
+    answer_choices: null
+    id: 4f6585ac-83cd-4a93-b3c5-e1c781361b2f
+    jinja: 'Translate this from Marathi into Tamil: {{ sentence_mar }} ||| {{ sentence_tam
+      }}'
+    metadata: *id001
+    name: translate-this-mar-tam
+    reference: Basic translation (Marathi into Tamil)
+  4fea9482-67fd-4cb7-8458-d1821f0788f4: !Template
+    answer_choices: null
+    id: 4fea9482-67fd-4cb7-8458-d1821f0788f4
+    jinja: 'Translate this from Kannada into Marathi: {{ sentence_kan }} ||| {{ sentence_mar
+      }}'
+    metadata: *id001
+    name: translate-this-kan-mar
+    reference: Basic translation (Kannada into Marathi)
+  502d9f84-2b39-4ba1-8af9-cba86c269aaf: !Template
+    answer_choices: null
+    id: 502d9f84-2b39-4ba1-8af9-cba86c269aaf
+    jinja: 'Translate this from Indonesian into English: {{ sentence_ind }} ||| {{
+      sentence_eng }}'
+    metadata: *id001
+    name: translate-this-ind-eng
+    reference: Basic translation (Indonesian into English)
+  504013e3-2279-426d-bc7d-368901734580: !Template
+    answer_choices: null
+    id: 504013e3-2279-426d-bc7d-368901734580
+    jinja: 'Translate this from Gujarati into Brazilian Portuguese: {{ sentence_guj
+      }} ||| {{ sentence_por }}'
+    metadata: *id001
+    name: translate-this-guj-por
+    reference: Basic translation (Gujarati into Brazilian Portuguese)
+  51129ea2-b4c6-4b90-b1f3-13542a39035e: !Template
+    answer_choices: null
+    id: 51129ea2-b4c6-4b90-b1f3-13542a39035e
+    jinja: 'Translate this from Assamese into Yoruba: {{ sentence_asm }} ||| {{ sentence_yor
+      }}'
+    metadata: *id001
+    name: translate-this-asm-yor
+    reference: Basic translation (Assamese into Yoruba)
+  5134e501-e41d-4870-840a-ce341ef0db11: !Template
+    answer_choices: null
+    id: 5134e501-e41d-4870-840a-ce341ef0db11
+    jinja: 'Translate this from Assamese into English: {{ sentence_asm }} ||| {{ sentence_eng
+      }}'
+    metadata: *id001
+    name: translate-this-asm-eng
+    reference: Basic translation (Assamese into English)
+  51378dca-7f4d-4a6b-ad9b-9e68e5b901da: !Template
+    answer_choices: null
+    id: 51378dca-7f4d-4a6b-ad9b-9e68e5b901da
+    jinja: 'Translate this from Northern Sotho into Xhosa: {{ sentence_nso }} |||
+      {{ sentence_xho }}'
+    metadata: *id001
+    name: translate-this-nso-xho
+    reference: Basic translation (Northern Sotho into Xhosa)
+  5159b407-d28d-4057-855d-1a9ae8cf0e6e: !Template
+    answer_choices: null
+    id: 5159b407-d28d-4057-855d-1a9ae8cf0e6e
+    jinja: 'Translate this from French into Malayalam: {{ sentence_fra }} ||| {{ sentence_mal
+      }}'
+    metadata: *id001
+    name: translate-this-fra-mal
+    reference: Basic translation (French into Malayalam)
+  5176a0a2-72fd-4c9c-ac32-69fde80e2716: !Template
+    answer_choices: null
+    id: 5176a0a2-72fd-4c9c-ac32-69fde80e2716
+    jinja: 'Translate this from Marathi into Yoruba: {{ sentence_mar }} ||| {{ sentence_yor
+      }}'
+    metadata: *id001
+    name: translate-this-mar-yor
+    reference: Basic translation (Marathi into Yoruba)
+  5357acdf-a3fa-4199-b96a-7c0ba5eb778b: !Template
+    answer_choices: null
+    id: 5357acdf-a3fa-4199-b96a-7c0ba5eb778b
+    jinja: 'Translate this from Malayalam into Latin American Spanish: {{ sentence_mal
+      }} ||| {{ sentence_spa }}'
+    metadata: *id001
+    name: translate-this-mal-spa
+    reference: Basic translation (Malayalam into Latin American Spanish)
+  5376a9ff-2a88-432a-ac94-96bf7e5372b0: !Template
+    answer_choices: null
+    id: 5376a9ff-2a88-432a-ac94-96bf7e5372b0
+    jinja: 'Translate this from Brazilian Portuguese into Punjabi: {{ sentence_por
+      }} ||| {{ sentence_pan }}'
+    metadata: *id001
+    name: translate-this-por-pan
+    reference: Basic translation (Brazilian Portuguese into Punjabi)
+  538b7c6e-cef7-4267-9e7a-291004d65fb1: !Template
+    answer_choices: null
+    id: 538b7c6e-cef7-4267-9e7a-291004d65fb1
+    jinja: 'Translate this from Igbo into Yoruba: {{ sentence_ibo }} ||| {{ sentence_yor
+      }}'
+    metadata: *id001
+    name: translate-this-ibo-yor
+    reference: Basic translation (Igbo into Yoruba)
+  538fe143-5032-41c8-9379-83baefb117f8: !Template
+    answer_choices: null
+    id: 538fe143-5032-41c8-9379-83baefb117f8
+    jinja: 'Translate this from Wolof into simplified Chinese: {{ sentence_wol }}
+      ||| {{ sentence_zho_simpl }}'
+    metadata: *id001
+    name: translate-this-wol-zho_simpl
+    reference: Basic translation (Wolof into simplified Chinese)
+  545f2bf0-fec7-4e02-a9bd-9e0fb63dad70: !Template
+    answer_choices: null
+    id: 545f2bf0-fec7-4e02-a9bd-9e0fb63dad70
+    jinja: 'Translate this from French into Hindi: {{ sentence_fra }} ||| {{ sentence_hin
+      }}'
+    metadata: *id001
+    name: translate-this-fra-hin
+    reference: Basic translation (French into Hindi)
+  5493ac19-883d-4846-951d-2b058d432e04: !Template
+    answer_choices: null
+    id: 5493ac19-883d-4846-951d-2b058d432e04
+    jinja: 'Translate this from Swahili into Telugu: {{ sentence_swh }} ||| {{ sentence_tel
+      }}'
+    metadata: *id001
+    name: translate-this-swh-tel
+    reference: Basic translation (Swahili into Telugu)
+  549ba76b-9ac9-4f51-80ec-d184280505f2: !Template
+    answer_choices: null
+    id: 549ba76b-9ac9-4f51-80ec-d184280505f2
+    jinja: 'Translate this from Arabic into Punjabi: {{ sentence_ara }} ||| {{ sentence_pan
+      }}'
+    metadata: *id001
+    name: translate-this-ara-pan
+    reference: Basic translation (Arabic into Punjabi)
+  54f176a3-fc4a-4f9c-9d52-2c0d858620eb: !Template
+    answer_choices: null
+    id: 54f176a3-fc4a-4f9c-9d52-2c0d858620eb
+    jinja: 'Translate this from Swahili into Gujarati: {{ sentence_swh }} ||| {{ sentence_guj
+      }}'
+    metadata: *id001
+    name: translate-this-swh-guj
+    reference: Basic translation (Swahili into Gujarati)
+  558b7fb0-3075-4d55-869c-c6202b03b2a9: !Template
+    answer_choices: null
+    id: 558b7fb0-3075-4d55-869c-c6202b03b2a9
+    jinja: 'Translate this from English into Tamil: {{ sentence_eng }} ||| {{ sentence_tam
+      }}'
+    metadata: *id001
+    name: translate-this-eng-tam
+    reference: Basic translation (English into Tamil)
+  5591026f-7bc6-4f68-a931-9dbf7567682f: !Template
+    answer_choices: null
+    id: 5591026f-7bc6-4f68-a931-9dbf7567682f
+    jinja: 'Translate this from Marathi into Vietnamese: {{ sentence_mar }} ||| {{
+      sentence_vie }}'
+    metadata: *id001
+    name: translate-this-mar-vie
+    reference: Basic translation (Marathi into Vietnamese)
+  55d2e995-ec75-474b-a58d-73bdac751e74: !Template
+    answer_choices: null
+    id: 55d2e995-ec75-474b-a58d-73bdac751e74
+    jinja: 'Translate this from simplified Chinese into Latin American Spanish: {{
+      sentence_zho_simpl }} ||| {{ sentence_spa }}'
+    metadata: *id001
+    name: translate-this-zho_simpl-spa
+    reference: Basic translation (simplified Chinese into Latin American Spanish)
+  560983c7-f8e6-4195-8409-bae62a4c3296: !Template
+    answer_choices: null
+    id: 560983c7-f8e6-4195-8409-bae62a4c3296
+    jinja: 'Translate this from Catalan into English: {{ sentence_cat }} ||| {{ sentence_eng
+      }}'
+    metadata: *id001
+    name: translate-this-cat-eng
+    reference: Basic translation (Catalan into English)
+  56992398-52b5-4c3b-a84c-e289dd8f7895: !Template
+    answer_choices: null
+    id: 56992398-52b5-4c3b-a84c-e289dd8f7895
+    jinja: 'Translate this from Telugu into Malayalam: {{ sentence_tel }} ||| {{ sentence_mal
+      }}'
+    metadata: *id001
+    name: translate-this-tel-mal
+    reference: Basic translation (Telugu into Malayalam)
+  5733db56-fc9e-40d6-bb90-2faf00819c28: !Template
+    answer_choices: null
+    id: 5733db56-fc9e-40d6-bb90-2faf00819c28
+    jinja: 'Translate this from Catalan into Vietnamese: {{ sentence_cat }} ||| {{
+      sentence_vie }}'
+    metadata: *id001
+    name: translate-this-cat-vie
+    reference: Basic translation (Catalan into Vietnamese)
+  575a602d-7896-4104-b7f0-c7fb02794009: !Template
+    answer_choices: null
+    id: 575a602d-7896-4104-b7f0-c7fb02794009
+    jinja: 'Translate this from Oriya into English: {{ sentence_ory }} ||| {{ sentence_eng
+      }}'
+    metadata: *id001
+    name: translate-this-ory-eng
+    reference: Basic translation (Oriya into English)
+  575b5dd6-a42d-4e7c-999e-17eff0e108f7: !Template
+    answer_choices: null
+    id: 575b5dd6-a42d-4e7c-999e-17eff0e108f7
+    jinja: 'Translate this from Oriya into Northern Sotho: {{ sentence_ory }} |||
+      {{ sentence_nso }}'
+    metadata: *id001
+    name: translate-this-ory-nso
+    reference: Basic translation (Oriya into Northern Sotho)
+  578d0d5d-5782-41d8-9678-61f30cceffdc: !Template
+    answer_choices: null
+    id: 578d0d5d-5782-41d8-9678-61f30cceffdc
+    jinja: 'Translate this from Vietnamese into simplified Chinese: {{ sentence_vie
+      }} ||| {{ sentence_zho_simpl }}'
+    metadata: *id001
+    name: translate-this-vie-zho_simpl
+    reference: Basic translation (Vietnamese into simplified Chinese)
+  57ae240b-b539-4a67-a08b-a3514bff21c1: !Template
+    answer_choices: null
+    id: 57ae240b-b539-4a67-a08b-a3514bff21c1
+    jinja: 'Translate this from Tamil into Urdu: {{ sentence_tam }} ||| {{ sentence_urd
+      }}'
+    metadata: *id001
+    name: translate-this-tam-urd
+    reference: Basic translation (Tamil into Urdu)
+  57f0c4b2-5ed9-4d2f-9704-d4c4d929bcb9: !Template
+    answer_choices: null
+    id: 57f0c4b2-5ed9-4d2f-9704-d4c4d929bcb9
+    jinja: 'Translate this from Bengali into simplified Chinese: {{ sentence_ben }}
+      ||| {{ sentence_zho_simpl }}'
+    metadata: *id001
+    name: translate-this-ben-zho_simpl
+    reference: Basic translation (Bengali into simplified Chinese)
+  5879b273-5e02-4444-ba98-6a05d3d8b50e: !Template
+    answer_choices: null
+    id: 5879b273-5e02-4444-ba98-6a05d3d8b50e
+    jinja: 'Translate this from Marathi into Telugu: {{ sentence_mar }} ||| {{ sentence_tel
+      }}'
+    metadata: *id001
+    name: translate-this-mar-tel
+    reference: Basic translation (Marathi into Telugu)
+  58a307fc-50ef-4c21-96ff-1e265e3f0ec2: !Template
+    answer_choices: null
+    id: 58a307fc-50ef-4c21-96ff-1e265e3f0ec2
+    jinja: 'Translate this from Nepali into Marathi: {{ sentence_npi }} ||| {{ sentence_mar
+      }}'
+    metadata: *id001
+    name: translate-this-npi-mar
+    reference: Basic translation (Nepali into Marathi)
+  58ce9a3e-7393-4e58-a7c5-bfce48294201: !Template
+    answer_choices: null
+    id: 58ce9a3e-7393-4e58-a7c5-bfce48294201
+    jinja: 'Translate this from Hindi into Oriya: {{ sentence_hin }} ||| {{ sentence_ory
+      }}'
+    metadata: *id001
+    name: translate-this-hin-ory
+    reference: Basic translation (Hindi into Oriya)
+  58f0f8db-8416-41d6-9079-ab5f349242ff: !Template
+    answer_choices: null
+    id: 58f0f8db-8416-41d6-9079-ab5f349242ff
+    jinja: 'Translate this from Telugu into Igbo: {{ sentence_tel }} ||| {{ sentence_ibo
+      }}'
+    metadata: *id001
+    name: translate-this-tel-ibo
+    reference: Basic translation (Telugu into Igbo)
+  59e37da9-c9eb-4743-9d86-581fe1080efe: !Template
+    answer_choices: null
+    id: 59e37da9-c9eb-4743-9d86-581fe1080efe
+    jinja: 'Translate this from Latin American Spanish into Bengali: {{ sentence_spa
+      }} ||| {{ sentence_ben }}'
+    metadata: *id001
+    name: translate-this-spa-ben
+    reference: Basic translation (Latin American Spanish into Bengali)
+  5ad1a309-9ee0-41d4-9bee-9b0230c9bddd: !Template
+    answer_choices: null
+    id: 5ad1a309-9ee0-41d4-9bee-9b0230c9bddd
+    jinja: 'Translate this from Nepali into Vietnamese: {{ sentence_npi }} ||| {{
+      sentence_vie }}'
+    metadata: *id001
+    name: translate-this-npi-vie
+    reference: Basic translation (Nepali into Vietnamese)
+  5b1e9f83-fab4-48a3-a622-b1674b1a4ca3: !Template
+    answer_choices: null
+    id: 5b1e9f83-fab4-48a3-a622-b1674b1a4ca3
+    jinja: 'Translate this from simplified Chinese into Assamese: {{ sentence_zho_simpl
+      }} ||| {{ sentence_asm }}'
+    metadata: *id001
+    name: translate-this-zho_simpl-asm
+    reference: Basic translation (simplified Chinese into Assamese)
+  5b6ecfc5-9ef4-44ac-b5c6-0dbd9acbfb29: !Template
+    answer_choices: null
+    id: 5b6ecfc5-9ef4-44ac-b5c6-0dbd9acbfb29
+    jinja: 'Translate this from Vietnamese into Marathi: {{ sentence_vie }} ||| {{
+      sentence_mar }}'
+    metadata: *id001
+    name: translate-this-vie-mar
+    reference: Basic translation (Vietnamese into Marathi)
+  5bb82f9d-851e-4fa7-ae15-bc72139aa4a6: !Template
+    answer_choices: null
+    id: 5bb82f9d-851e-4fa7-ae15-bc72139aa4a6
+    jinja: 'Translate this from Wolof into Swahili: {{ sentence_wol }} ||| {{ sentence_swh
+      }}'
+    metadata: *id001
+    name: translate-this-wol-swh
+    reference: Basic translation (Wolof into Swahili)
+  5c604052-392d-4257-988b-f36e19e5f020: !Template
+    answer_choices: null
+    id: 5c604052-392d-4257-988b-f36e19e5f020
+    jinja: 'Translate this from Bengali into Arabic: {{ sentence_ben }} ||| {{ sentence_ara
+      }}'
+    metadata: *id001
+    name: translate-this-ben-ara
+    reference: Basic translation (Bengali into Arabic)
+  5cb543e1-a16e-496c-b6be-7f71640a1a69: !Template
+    answer_choices: null
+    id: 5cb543e1-a16e-496c-b6be-7f71640a1a69
+    jinja: 'Translate this from Arabic into traditional Chinese: {{ sentence_ara }}
+      ||| {{ sentence_zho_trad }}'
+    metadata: *id001
+    name: translate-this-ara-zho_trad
+    reference: Basic translation (Arabic into traditional Chinese)
+  5d09dc63-c5a0-4743-844b-52191762f27b: !Template
+    answer_choices: null
+    id: 5d09dc63-c5a0-4743-844b-52191762f27b
+    jinja: 'Translate this from Indonesian into Igbo: {{ sentence_ind }} ||| {{ sentence_ibo
+      }}'
+    metadata: *id001
+    name: translate-this-ind-ibo
+    reference: Basic translation (Indonesian into Igbo)
+  5d3cc5db-bf4d-4456-8c4c-faa178974777: !Template
+    answer_choices: null
+    id: 5d3cc5db-bf4d-4456-8c4c-faa178974777
+    jinja: 'Translate this from Kannada into English: {{ sentence_kan }} ||| {{ sentence_eng
+      }}'
+    metadata: *id001
+    name: translate-this-kan-eng
+    reference: Basic translation (Kannada into English)
+  5da4f0c3-8ede-4648-9c47-3011f223d21b: !Template
+    answer_choices: null
+    id: 5da4f0c3-8ede-4648-9c47-3011f223d21b
+    jinja: 'Translate this from Tamil into Northern Sotho: {{ sentence_tam }} |||
+      {{ sentence_nso }}'
+    metadata: *id001
+    name: translate-this-tam-nso
+    reference: Basic translation (Tamil into Northern Sotho)
+  5dbbd16d-e629-4304-9067-54379f2afdeb: !Template
+    answer_choices: null
+    id: 5dbbd16d-e629-4304-9067-54379f2afdeb
+    jinja: 'Translate this from Assamese into Punjabi: {{ sentence_asm }} ||| {{ sentence_pan
+      }}'
+    metadata: *id001
+    name: translate-this-asm-pan
+    reference: Basic translation (Assamese into Punjabi)
+  5dfddc9f-6393-4e3e-af16-f708b6ff0d4f: !Template
+    answer_choices: null
+    id: 5dfddc9f-6393-4e3e-af16-f708b6ff0d4f
+    jinja: 'Translate this from Catalan into Yoruba: {{ sentence_cat }} ||| {{ sentence_yor
+      }}'
+    metadata: *id001
+    name: translate-this-cat-yor
+    reference: Basic translation (Catalan into Yoruba)
+  5e4102b3-6497-4d69-8a7c-69f3885707c4: !Template
+    answer_choices: null
+    id: 5e4102b3-6497-4d69-8a7c-69f3885707c4
+    jinja: 'Translate this from Punjabi into Vietnamese: {{ sentence_pan }} ||| {{
+      sentence_vie }}'
+    metadata: *id001
+    name: translate-this-pan-vie
+    reference: Basic translation (Punjabi into Vietnamese)
+  5e82d8f6-c8d1-408d-9ac0-57e60b6f96ea: !Template
+    answer_choices: null
+    id: 5e82d8f6-c8d1-408d-9ac0-57e60b6f96ea
+    jinja: 'Translate this from Gujarati into Bengali: {{ sentence_guj }} ||| {{ sentence_ben
+      }}'
+    metadata: *id001
+    name: translate-this-guj-ben
+    reference: Basic translation (Gujarati into Bengali)
+  5ef228ee-a200-4e91-abf2-4263db358626: !Template
+    answer_choices: null
+    id: 5ef228ee-a200-4e91-abf2-4263db358626
+    jinja: 'Translate this from Nepali into Indonesian: {{ sentence_npi }} ||| {{
+      sentence_ind }}'
+    metadata: *id001
+    name: translate-this-npi-ind
+    reference: Basic translation (Nepali into Indonesian)
+  5f02d466-09b0-4796-9e22-e3c4d4aed3c0: !Template
+    answer_choices: null
+    id: 5f02d466-09b0-4796-9e22-e3c4d4aed3c0
+    jinja: 'Translate this from Northern Sotho into Latin American Spanish: {{ sentence_nso
+      }} ||| {{ sentence_spa }}'
+    metadata: *id001
+    name: translate-this-nso-spa
+    reference: Basic translation (Northern Sotho into Latin American Spanish)
+  5f7774ae-a3ff-4865-9fe6-04b0637f9488: !Template
+    answer_choices: null
+    id: 5f7774ae-a3ff-4865-9fe6-04b0637f9488
+    jinja: 'Translate this from Nepali into Kannada: {{ sentence_npi }} ||| {{ sentence_kan
+      }}'
+    metadata: *id001
+    name: translate-this-npi-kan
+    reference: Basic translation (Nepali into Kannada)
+  5fbbd7f2-5040-456b-a971-2af1601cd0df: !Template
+    answer_choices: null
+    id: 5fbbd7f2-5040-456b-a971-2af1601cd0df
+    jinja: 'Translate this from Hindi into Nepali: {{ sentence_hin }} ||| {{ sentence_npi
+      }}'
+    metadata: *id001
+    name: translate-this-hin-npi
+    reference: Basic translation (Hindi into Nepali)
+  5fd1e538-f158-4df2-9bb0-b8719579dd05: !Template
+    answer_choices: null
+    id: 5fd1e538-f158-4df2-9bb0-b8719579dd05
+    jinja: 'Translate this from Gujarati into English: {{ sentence_guj }} ||| {{ sentence_eng
+      }}'
+    metadata: *id001
+    name: translate-this-guj-eng
+    reference: Basic translation (Gujarati into English)
+  5fec3f1f-960f-43cf-be82-39df5f9c3cb5: !Template
+    answer_choices: null
+    id: 5fec3f1f-960f-43cf-be82-39df5f9c3cb5
+    jinja: 'Translate this from Igbo into Bengali: {{ sentence_ibo }} ||| {{ sentence_ben
+      }}'
+    metadata: *id001
+    name: translate-this-ibo-ben
+    reference: Basic translation (Igbo into Bengali)
+  5ff928d1-7562-4a6e-b1ed-80728ab845c8: !Template
+    answer_choices: null
+    id: 5ff928d1-7562-4a6e-b1ed-80728ab845c8
+    jinja: 'Translate this from Catalan into Zulu: {{ sentence_cat }} ||| {{ sentence_zul
+      }}'
+    metadata: *id001
+    name: translate-this-cat-zul
+    reference: Basic translation (Catalan into Zulu)
+  60538295-c19c-4b57-98fe-1532c5046dbe: !Template
+    answer_choices: null
+    id: 60538295-c19c-4b57-98fe-1532c5046dbe
+    jinja: 'Translate this from Telugu into simplified Chinese: {{ sentence_tel }}
+      ||| {{ sentence_zho_simpl }}'
+    metadata: *id001
+    name: translate-this-tel-zho_simpl
+    reference: Basic translation (Telugu into simplified Chinese)
+  60570f50-f8fd-4e9b-849c-deaf9355b70b: !Template
+    answer_choices: null
+    id: 60570f50-f8fd-4e9b-849c-deaf9355b70b
+    jinja: 'Translate this from traditional Chinese into Wolof: {{ sentence_zho_trad
+      }} ||| {{ sentence_wol }}'
+    metadata: *id001
+    name: translate-this-zho_trad-wol
+    reference: Basic translation (traditional Chinese into Wolof)
+  6086e567-48f3-42f8-b512-6f627d198a6f: !Template
+    answer_choices: null
+    id: 6086e567-48f3-42f8-b512-6f627d198a6f
+    jinja: 'Translate this from Oriya into Assamese: {{ sentence_ory }} ||| {{ sentence_asm
+      }}'
+    metadata: *id001
+    name: translate-this-ory-asm
+    reference: Basic translation (Oriya into Assamese)
+  60bcd8a0-3a4b-4653-be54-88edb318cd47: !Template
+    answer_choices: null
+    id: 60bcd8a0-3a4b-4653-be54-88edb318cd47
+    jinja: 'Translate this from Northern Sotho into English: {{ sentence_nso }} |||
+      {{ sentence_eng }}'
+    metadata: *id001
+    name: translate-this-nso-eng
+    reference: Basic translation (Northern Sotho into English)
+  60dc09fe-d4cf-401f-b6ec-916e93e4c273: !Template
+    answer_choices: null
+    id: 60dc09fe-d4cf-401f-b6ec-916e93e4c273
+    jinja: 'Translate this from Latin American Spanish into English: {{ sentence_spa
+      }} ||| {{ sentence_eng }}'
+    metadata: *id001
+    name: translate-this-spa-eng
+    reference: Basic translation (Latin American Spanish into English)
+  611dc15a-72bc-4238-a8a4-dfba491f1b2a: !Template
+    answer_choices: null
+    id: 611dc15a-72bc-4238-a8a4-dfba491f1b2a
+    jinja: 'Translate this from Nepali into Oriya: {{ sentence_npi }} ||| {{ sentence_ory
+      }}'
+    metadata: *id001
+    name: translate-this-npi-ory
+    reference: Basic translation (Nepali into Oriya)
+  614b10cf-4dcd-4067-b0d8-8bfbcdc64cfd: !Template
+    answer_choices: null
+    id: 614b10cf-4dcd-4067-b0d8-8bfbcdc64cfd
+    jinja: 'Translate this from Brazilian Portuguese into Xhosa: {{ sentence_por }}
+      ||| {{ sentence_xho }}'
+    metadata: *id001
+    name: translate-this-por-xho
+    reference: Basic translation (Brazilian Portuguese into Xhosa)
+  617567f5-ea18-4e61-bffd-d7175ad20fef: !Template
+    answer_choices: null
+    id: 617567f5-ea18-4e61-bffd-d7175ad20fef
+    jinja: 'Translate this from simplified Chinese into Malayalam: {{ sentence_zho_simpl
+      }} ||| {{ sentence_mal }}'
+    metadata: *id001
+    name: translate-this-zho_simpl-mal
+    reference: Basic translation (simplified Chinese into Malayalam)
+  619d96d0-23c9-4c1b-a335-d1064f9e049e: !Template
+    answer_choices: null
+    id: 619d96d0-23c9-4c1b-a335-d1064f9e049e
+    jinja: 'Translate this from Indonesian into Hindi: {{ sentence_ind }} ||| {{ sentence_hin
+      }}'
+    metadata: *id001
+    name: translate-this-ind-hin
+    reference: Basic translation (Indonesian into Hindi)
+  61e5e970-bc10-47ed-b09b-dde5e08ff171: !Template
+    answer_choices: null
+    id: 61e5e970-bc10-47ed-b09b-dde5e08ff171
+    jinja: 'Translate this from Zulu into Gujarati: {{ sentence_zul }} ||| {{ sentence_guj
+      }}'
+    metadata: *id001
+    name: translate-this-zul-guj
+    reference: Basic translation (Zulu into Gujarati)
+  621203fb-d88d-4b1b-913c-b34f14a9ba94: !Template
+    answer_choices: null
+    id: 621203fb-d88d-4b1b-913c-b34f14a9ba94
+    jinja: 'Translate this from Urdu into French: {{ sentence_urd }} ||| {{ sentence_fra
+      }}'
+    metadata: *id001
+    name: translate-this-urd-fra
+    reference: Basic translation (Urdu into French)
+  6261b055-c007-408a-9177-329c6ef7817a: !Template
+    answer_choices: null
+    id: 6261b055-c007-408a-9177-329c6ef7817a
+    jinja: 'Translate this from Northern Sotho into simplified Chinese: {{ sentence_nso
+      }} ||| {{ sentence_zho_simpl }}'
+    metadata: *id001
+    name: translate-this-nso-zho_simpl
+    reference: Basic translation (Northern Sotho into simplified Chinese)
+  627235f6-c70d-4a08-a163-5b82b9388b41: !Template
+    answer_choices: null
+    id: 627235f6-c70d-4a08-a163-5b82b9388b41
+    jinja: 'Translate this from Telugu into traditional Chinese: {{ sentence_tel }}
+      ||| {{ sentence_zho_trad }}'
+    metadata: *id001
+    name: translate-this-tel-zho_trad
+    reference: Basic translation (Telugu into traditional Chinese)
+  6335f534-0c40-4325-bc5f-0e2af3ecc02f: !Template
+    answer_choices: null
+    id: 6335f534-0c40-4325-bc5f-0e2af3ecc02f
+    jinja: 'Translate this from Tamil into Yoruba: {{ sentence_tam }} ||| {{ sentence_yor
+      }}'
+    metadata: *id001
+    name: translate-this-tam-yor
+    reference: Basic translation (Tamil into Yoruba)
+  6341b31f-f6b8-4892-90e0-a530cc18302c: !Template
+    answer_choices: null
+    id: 6341b31f-f6b8-4892-90e0-a530cc18302c
+    jinja: 'Translate this from Tamil into Indonesian: {{ sentence_tam }} ||| {{ sentence_ind
+      }}'
+    metadata: *id001
+    name: translate-this-tam-ind
+    reference: Basic translation (Tamil into Indonesian)
+  638add6f-e503-495d-9cf2-04222bfd7f13: !Template
+    answer_choices: null
+    id: 638add6f-e503-495d-9cf2-04222bfd7f13
+    jinja: 'Translate this from Bengali into Catalan: {{ sentence_ben }} ||| {{ sentence_cat
+      }}'
+    metadata: *id001
+    name: translate-this-ben-cat
+    reference: Basic translation (Bengali into Catalan)
+  63c6e33e-ff7a-417c-9e75-71fd98e36b4c: !Template
+    answer_choices: null
+    id: 63c6e33e-ff7a-417c-9e75-71fd98e36b4c
+    jinja: 'Translate this from Nepali into Catalan: {{ sentence_npi }} ||| {{ sentence_cat
+      }}'
+    metadata: *id001
+    name: translate-this-npi-cat
+    reference: Basic translation (Nepali into Catalan)
+  63f5adf5-fae1-44c4-8e1d-d0b70c87733d: !Template
+    answer_choices: null
+    id: 63f5adf5-fae1-44c4-8e1d-d0b70c87733d
+    jinja: 'Translate this from English into Brazilian Portuguese: {{ sentence_eng
+      }} ||| {{ sentence_por }}'
+    metadata: *id001
+    name: translate-this-eng-por
+    reference: Basic translation (English into Brazilian Portuguese)
+  646962f5-0f24-44a1-a0cd-33b946002c2f: !Template
+    answer_choices: null
+    id: 646962f5-0f24-44a1-a0cd-33b946002c2f
+    jinja: 'Translate this from Kannada into Bengali: {{ sentence_kan }} ||| {{ sentence_ben
+      }}'
+    metadata: *id001
+    name: translate-this-kan-ben
+    reference: Basic translation (Kannada into Bengali)
+  646b6821-a0e2-4335-b919-1d952aebc780: !Template
+    answer_choices: null
+    id: 646b6821-a0e2-4335-b919-1d952aebc780
+    jinja: 'Translate this from Telugu into Latin American Spanish: {{ sentence_tel
+      }} ||| {{ sentence_spa }}'
+    metadata: *id001
+    name: translate-this-tel-spa
+    reference: Basic translation (Telugu into Latin American Spanish)
+  646d980f-50d0-4ec5-bcfa-65b1a3a5115f: !Template
+    answer_choices: null
+    id: 646d980f-50d0-4ec5-bcfa-65b1a3a5115f
+    jinja: 'Translate this from simplified Chinese into Kannada: {{ sentence_zho_simpl
+      }} ||| {{ sentence_kan }}'
+    metadata: *id001
+    name: translate-this-zho_simpl-kan
+    reference: Basic translation (simplified Chinese into Kannada)
+  64ab3d50-6d2d-40dd-a914-6525e3584697: !Template
+    answer_choices: null
+    id: 64ab3d50-6d2d-40dd-a914-6525e3584697
+    jinja: 'Translate this from Assamese into Kannada: {{ sentence_asm }} ||| {{ sentence_kan
+      }}'
+    metadata: *id001
+    name: translate-this-asm-kan
+    reference: Basic translation (Assamese into Kannada)
+  65c31c7f-a56f-46b6-93a1-5d512cc16a2d: !Template
+    answer_choices: null
+    id: 65c31c7f-a56f-46b6-93a1-5d512cc16a2d
+    jinja: 'Translate this from Xhosa into Punjabi: {{ sentence_xho }} ||| {{ sentence_pan
+      }}'
+    metadata: *id001
+    name: translate-this-xho-pan
+    reference: Basic translation (Xhosa into Punjabi)
+  65e82110-1777-401b-982f-9e7e97e33b43: !Template
+    answer_choices: null
+    id: 65e82110-1777-401b-982f-9e7e97e33b43
+    jinja: 'Translate this from Urdu into Swahili: {{ sentence_urd }} ||| {{ sentence_swh
+      }}'
+    metadata: *id001
+    name: translate-this-urd-swh
+    reference: Basic translation (Urdu into Swahili)
+  66004ea0-912d-4cc4-9317-94d1905022d1: !Template
+    answer_choices: null
+    id: 66004ea0-912d-4cc4-9317-94d1905022d1
+    jinja: 'Translate this from Tamil into Swahili: {{ sentence_tam }} ||| {{ sentence_swh
+      }}'
+    metadata: *id001
+    name: translate-this-tam-swh
+    reference: Basic translation (Tamil into Swahili)
+  6601e544-7788-41a4-9a1a-2fbe7dba38c0: !Template
+    answer_choices: null
+    id: 6601e544-7788-41a4-9a1a-2fbe7dba38c0
+    jinja: 'Translate this from Bengali into Marathi: {{ sentence_ben }} ||| {{ sentence_mar
+      }}'
+    metadata: *id001
+    name: translate-this-ben-mar
+    reference: Basic translation (Bengali into Marathi)
+  66211962-79d5-4aea-acc2-e43f011e7c9c: !Template
+    answer_choices: null
+    id: 66211962-79d5-4aea-acc2-e43f011e7c9c
+    jinja: 'Translate this from Tamil into Telugu: {{ sentence_tam }} ||| {{ sentence_tel
+      }}'
+    metadata: *id001
+    name: translate-this-tam-tel
+    reference: Basic translation (Tamil into Telugu)
+  66508288-3442-4295-b7fa-9b3823ba37a5: !Template
+    answer_choices: null
+    id: 66508288-3442-4295-b7fa-9b3823ba37a5
+    jinja: 'Translate this from Urdu into Gujarati: {{ sentence_urd }} ||| {{ sentence_guj
+      }}'
+    metadata: *id001
+    name: translate-this-urd-guj
+    reference: Basic translation (Urdu into Gujarati)
+  66903aa2-ef76-4f15-b525-4d4a587a9b5d: !Template
+    answer_choices: null
+    id: 66903aa2-ef76-4f15-b525-4d4a587a9b5d
+    jinja: 'Translate this from French into traditional Chinese: {{ sentence_fra }}
+      ||| {{ sentence_zho_trad }}'
+    metadata: *id001
+    name: translate-this-fra-zho_trad
+    reference: Basic translation (French into traditional Chinese)
+  6722c49e-ef17-4f13-b1f6-14689328a0e2: !Template
+    answer_choices: null
+    id: 6722c49e-ef17-4f13-b1f6-14689328a0e2
+    jinja: 'Translate this from Hindi into French: {{ sentence_hin }} ||| {{ sentence_fra
+      }}'
+    metadata: *id001
+    name: translate-this-hin-fra
+    reference: Basic translation (Hindi into French)
+  673b81a1-2b3c-4092-b1c2-3847f00b42a0: !Template
+    answer_choices: null
+    id: 673b81a1-2b3c-4092-b1c2-3847f00b42a0
+    jinja: 'Translate this from Tamil into Vietnamese: {{ sentence_tam }} ||| {{ sentence_vie
+      }}'
+    metadata: *id001
+    name: translate-this-tam-vie
+    reference: Basic translation (Tamil into Vietnamese)
+  67929673-832f-4103-a600-bd8c6f58e3a4: !Template
+    answer_choices: null
+    id: 67929673-832f-4103-a600-bd8c6f58e3a4
+    jinja: 'Translate this from Northern Sotho into Swahili: {{ sentence_nso }} |||
+      {{ sentence_swh }}'
+    metadata: *id001
+    name: translate-this-nso-swh
+    reference: Basic translation (Northern Sotho into Swahili)
+  67c76c63-beb0-4e1e-9805-b6275e7b3d80: !Template
+    answer_choices: null
+    id: 67c76c63-beb0-4e1e-9805-b6275e7b3d80
+    jinja: 'Translate this from Hindi into Bengali: {{ sentence_hin }} ||| {{ sentence_ben
+      }}'
+    metadata: *id001
+    name: translate-this-hin-ben
+    reference: Basic translation (Hindi into Bengali)
+  6824eb84-3703-46dd-979c-fad42b7eb568: !Template
+    answer_choices: null
+    id: 6824eb84-3703-46dd-979c-fad42b7eb568
+    jinja: 'Translate this from Bengali into Malayalam: {{ sentence_ben }} ||| {{
+      sentence_mal }}'
+    metadata: *id001
+    name: translate-this-ben-mal
+    reference: Basic translation (Bengali into Malayalam)
+  68384d24-028d-4796-a5ad-f97acb09cf4b: !Template
+    answer_choices: null
+    id: 68384d24-028d-4796-a5ad-f97acb09cf4b
+    jinja: 'Translate this from Latin American Spanish into Brazilian Portuguese:
+      {{ sentence_spa }} ||| {{ sentence_por }}'
+    metadata: *id001
+    name: translate-this-spa-por
+    reference: Basic translation (Latin American Spanish into Brazilian Portuguese)
+  68bc1d02-e8d0-44a7-9663-e038443efd12: !Template
+    answer_choices: null
+    id: 68bc1d02-e8d0-44a7-9663-e038443efd12
+    jinja: 'Translate this from Latin American Spanish into Indonesian: {{ sentence_spa
+      }} ||| {{ sentence_ind }}'
+    metadata: *id001
+    name: translate-this-spa-ind
+    reference: Basic translation (Latin American Spanish into Indonesian)
+  693f0ece-92f9-44ce-b90e-42a6ff4e7b5c: !Template
+    answer_choices: null
+    id: 693f0ece-92f9-44ce-b90e-42a6ff4e7b5c
+    jinja: 'Translate this from Marathi into Punjabi: {{ sentence_mar }} ||| {{ sentence_pan
+      }}'
+    metadata: *id001
+    name: translate-this-mar-pan
+    reference: Basic translation (Marathi into Punjabi)
+  6967d56e-fb37-4395-aff1-acbd1e18c447: !Template
+    answer_choices: null
+    id: 6967d56e-fb37-4395-aff1-acbd1e18c447
+    jinja: 'Translate this from Urdu into Marathi: {{ sentence_urd }} ||| {{ sentence_mar
+      }}'
+    metadata: *id001
+    name: translate-this-urd-mar
+    reference: Basic translation (Urdu into Marathi)
+  699c6d13-86ba-40dc-a0ea-3086535d51e6: !Template
+    answer_choices: null
+    id: 699c6d13-86ba-40dc-a0ea-3086535d51e6
+    jinja: 'Translate this from English into Urdu: {{ sentence_eng }} ||| {{ sentence_urd
+      }}'
+    metadata: *id001
+    name: translate-this-eng-urd
+    reference: Basic translation (English into Urdu)
+  69f88ce0-7bab-4eb0-8687-17555d05dadd: !Template
+    answer_choices: null
+    id: 69f88ce0-7bab-4eb0-8687-17555d05dadd
+    jinja: 'Translate this from French into Latin American Spanish: {{ sentence_fra
+      }} ||| {{ sentence_spa }}'
+    metadata: *id001
+    name: translate-this-fra-spa
+    reference: Basic translation (French into Latin American Spanish)
+  69fd88d4-7755-44fa-b989-dce430cce51b: !Template
+    answer_choices: null
+    id: 69fd88d4-7755-44fa-b989-dce430cce51b
+    jinja: 'Translate this from Latin American Spanish into Swahili: {{ sentence_spa
+      }} ||| {{ sentence_swh }}'
+    metadata: *id001
+    name: translate-this-spa-swh
+    reference: Basic translation (Latin American Spanish into Swahili)
+  6a58ce16-0885-423f-9c3b-569c4a30c0ad: !Template
+    answer_choices: null
+    id: 6a58ce16-0885-423f-9c3b-569c4a30c0ad
+    jinja: 'Translate this from Zulu into Swahili: {{ sentence_zul }} ||| {{ sentence_swh
+      }}'
+    metadata: *id001
+    name: translate-this-zul-swh
+    reference: Basic translation (Zulu into Swahili)
+  6aa22e2c-541d-40aa-b447-69d7e55e069d: !Template
+    answer_choices: null
+    id: 6aa22e2c-541d-40aa-b447-69d7e55e069d
+    jinja: 'Translate this from Catalan into Northern Sotho: {{ sentence_cat }} |||
+      {{ sentence_nso }}'
+    metadata: *id001
+    name: translate-this-cat-nso
+    reference: Basic translation (Catalan into Northern Sotho)
+  6ad879cc-7ea6-4788-96a6-0d2f273fd5ae: !Template
+    answer_choices: null
+    id: 6ad879cc-7ea6-4788-96a6-0d2f273fd5ae
+    jinja: 'Translate this from Xhosa into Kannada: {{ sentence_xho }} ||| {{ sentence_kan
+      }}'
+    metadata: *id001
+    name: translate-this-xho-kan
+    reference: Basic translation (Xhosa into Kannada)
+  6ae2713b-8bc9-48f3-bb2d-023c8cbe49f1: !Template
+    answer_choices: null
+    id: 6ae2713b-8bc9-48f3-bb2d-023c8cbe49f1
+    jinja: 'Translate this from Malayalam into Zulu: {{ sentence_mal }} ||| {{ sentence_zul
+      }}'
+    metadata: *id001
+    name: translate-this-mal-zul
+    reference: Basic translation (Malayalam into Zulu)
+  6aed07c5-b49e-4137-82f3-7f4eca999f88: !Template
+    answer_choices: null
+    id: 6aed07c5-b49e-4137-82f3-7f4eca999f88
+    jinja: 'Translate this from traditional Chinese into Latin American Spanish: {{
+      sentence_zho_trad }} ||| {{ sentence_spa }}'
+    metadata: *id001
+    name: translate-this-zho_trad-spa
+    reference: Basic translation (traditional Chinese into Latin American Spanish)
+  6b560efb-d5c7-44bc-ad32-0e0ed805ac96: !Template
+    answer_choices: null
+    id: 6b560efb-d5c7-44bc-ad32-0e0ed805ac96
+    jinja: 'Translate this from Assamese into Catalan: {{ sentence_asm }} ||| {{ sentence_cat
+      }}'
+    metadata: *id001
+    name: translate-this-asm-cat
+    reference: Basic translation (Assamese into Catalan)
+  6b5e2b52-189a-4a7c-b7d4-498ab29ddb9e: !Template
+    answer_choices: null
+    id: 6b5e2b52-189a-4a7c-b7d4-498ab29ddb9e
+    jinja: 'Translate this from Assamese into Gujarati: {{ sentence_asm }} ||| {{
+      sentence_guj }}'
+    metadata: *id001
+    name: translate-this-asm-guj
+    reference: Basic translation (Assamese into Gujarati)
+  6bcca77e-4f20-4588-b5e3-1206ed83e235: !Template
+    answer_choices: null
+    id: 6bcca77e-4f20-4588-b5e3-1206ed83e235
+    jinja: 'Translate this from Arabic into Wolof: {{ sentence_ara }} ||| {{ sentence_wol
+      }}'
+    metadata: *id001
+    name: translate-this-ara-wol
+    reference: Basic translation (Arabic into Wolof)
+  6bea0c2c-4bc4-4382-b9f5-ae2060d02756: !Template
+    answer_choices: null
+    id: 6bea0c2c-4bc4-4382-b9f5-ae2060d02756
+    jinja: 'Translate this from Arabic into French: {{ sentence_ara }} ||| {{ sentence_fra
+      }}'
+    metadata: *id001
+    name: translate-this-ara-fra
+    reference: Basic translation (Arabic into French)
+  6c0f13ec-3f42-47f2-9b41-b87dd200f69b: !Template
+    answer_choices: null
+    id: 6c0f13ec-3f42-47f2-9b41-b87dd200f69b
+    jinja: 'Translate this from Brazilian Portuguese into Swahili: {{ sentence_por
+      }} ||| {{ sentence_swh }}'
+    metadata: *id001
+    name: translate-this-por-swh
+    reference: Basic translation (Brazilian Portuguese into Swahili)
+  6c1edf3c-18c2-421f-8e0d-090ae3aa6b67: !Template
+    answer_choices: null
+    id: 6c1edf3c-18c2-421f-8e0d-090ae3aa6b67
+    jinja: 'Translate this from simplified Chinese into Xhosa: {{ sentence_zho_simpl
+      }} ||| {{ sentence_xho }}'
+    metadata: *id001
+    name: translate-this-zho_simpl-xho
+    reference: Basic translation (simplified Chinese into Xhosa)
+  6cc5f25b-a135-4dd3-961e-bd8b74825891: !Template
+    answer_choices: null
+    id: 6cc5f25b-a135-4dd3-961e-bd8b74825891
+    jinja: 'Translate this from French into Indonesian: {{ sentence_fra }} ||| {{
+      sentence_ind }}'
+    metadata: *id001
+    name: translate-this-fra-ind
+    reference: Basic translation (French into Indonesian)
+  6ce6ebf6-7a5b-4d2b-8fcb-8e11b1b8f7de: !Template
+    answer_choices: null
+    id: 6ce6ebf6-7a5b-4d2b-8fcb-8e11b1b8f7de
+    jinja: 'Translate this from Catalan into Nepali: {{ sentence_cat }} ||| {{ sentence_npi
+      }}'
+    metadata: *id001
+    name: translate-this-cat-npi
+    reference: Basic translation (Catalan into Nepali)
+  6d0593a3-301a-44be-97f1-078d646c7e17: !Template
+    answer_choices: null
+    id: 6d0593a3-301a-44be-97f1-078d646c7e17
+    jinja: 'Translate this from Gujarati into Igbo: {{ sentence_guj }} ||| {{ sentence_ibo
+      }}'
+    metadata: *id001
+    name: translate-this-guj-ibo
+    reference: Basic translation (Gujarati into Igbo)
+  6d69c278-0722-47c0-9d9a-fc1dce1340a9: !Template
+    answer_choices: null
+    id: 6d69c278-0722-47c0-9d9a-fc1dce1340a9
+    jinja: 'Translate this from French into Wolof: {{ sentence_fra }} ||| {{ sentence_wol
+      }}'
+    metadata: *id001
+    name: translate-this-fra-wol
+    reference: Basic translation (French into Wolof)
+  6d707068-10a3-4121-af1a-b8ad193da0b9: !Template
+    answer_choices: null
+    id: 6d707068-10a3-4121-af1a-b8ad193da0b9
+    jinja: 'Translate this from Zulu into Igbo: {{ sentence_zul }} ||| {{ sentence_ibo
+      }}'
+    metadata: *id001
+    name: translate-this-zul-ibo
+    reference: Basic translation (Zulu into Igbo)
+  6d715a12-b4b5-49f8-bbff-9e6e3ab6ff76: !Template
+    answer_choices: null
+    id: 6d715a12-b4b5-49f8-bbff-9e6e3ab6ff76
+    jinja: 'Translate this from Vietnamese into Gujarati: {{ sentence_vie }} ||| {{
+      sentence_guj }}'
+    metadata: *id001
+    name: translate-this-vie-guj
+    reference: Basic translation (Vietnamese into Gujarati)
+  6daeee3b-1ece-49de-b99a-f73766bb149f: !Template
+    answer_choices: null
+    id: 6daeee3b-1ece-49de-b99a-f73766bb149f
+    jinja: 'Translate this from Kannada into Malayalam: {{ sentence_kan }} ||| {{
+      sentence_mal }}'
+    metadata: *id001
+    name: translate-this-kan-mal
+    reference: Basic translation (Kannada into Malayalam)
+  6dba5631-1d00-4098-bcb4-670ef50c9083: !Template
+    answer_choices: null
+    id: 6dba5631-1d00-4098-bcb4-670ef50c9083
+    jinja: 'Translate this from English into Gujarati: {{ sentence_eng }} ||| {{ sentence_guj
+      }}'
+    metadata: *id001
+    name: translate-this-eng-guj
+    reference: Basic translation (English into Gujarati)
+  6de1fc89-4775-4be7-9e1d-1b210f8a1172: !Template
+    answer_choices: null
+    id: 6de1fc89-4775-4be7-9e1d-1b210f8a1172
+    jinja: 'Translate this from Kannada into Gujarati: {{ sentence_kan }} ||| {{ sentence_guj
+      }}'
+    metadata: *id001
+    name: translate-this-kan-guj
+    reference: Basic translation (Kannada into Gujarati)
+  6e157378-b473-4da1-b810-9b23b4b64c05: !Template
+    answer_choices: null
+    id: 6e157378-b473-4da1-b810-9b23b4b64c05
+    jinja: 'Translate this from Wolof into Nepali: {{ sentence_wol }} ||| {{ sentence_npi
+      }}'
+    metadata: *id001
+    name: translate-this-wol-npi
+    reference: Basic translation (Wolof into Nepali)
+  6e18720d-da82-4359-94dc-c15b183593c8: !Template
+    answer_choices: null
+    id: 6e18720d-da82-4359-94dc-c15b183593c8
+    jinja: 'Translate this from Telugu into Kannada: {{ sentence_tel }} ||| {{ sentence_kan
+      }}'
+    metadata: *id001
+    name: translate-this-tel-kan
+    reference: Basic translation (Telugu into Kannada)
+  6efa77b5-f0ba-429f-aecd-d4a664856b3b: !Template
+    answer_choices: null
+    id: 6efa77b5-f0ba-429f-aecd-d4a664856b3b
+    jinja: 'Translate this from Hindi into Telugu: {{ sentence_hin }} ||| {{ sentence_tel
+      }}'
+    metadata: *id001
+    name: translate-this-hin-tel
+    reference: Basic translation (Hindi into Telugu)
+  6f400afa-a00c-4d88-b51f-c5b0fdd663e5: !Template
+    answer_choices: null
+    id: 6f400afa-a00c-4d88-b51f-c5b0fdd663e5
+    jinja: 'Translate this from Indonesian into Northern Sotho: {{ sentence_ind }}
+      ||| {{ sentence_nso }}'
+    metadata: *id001
+    name: translate-this-ind-nso
+    reference: Basic translation (Indonesian into Northern Sotho)
+  6f488769-a846-4853-815a-9908bc4b17a2: !Template
+    answer_choices: null
+    id: 6f488769-a846-4853-815a-9908bc4b17a2
+    jinja: 'Translate this from Northern Sotho into traditional Chinese: {{ sentence_nso
+      }} ||| {{ sentence_zho_trad }}'
+    metadata: *id001
+    name: translate-this-nso-zho_trad
+    reference: Basic translation (Northern Sotho into traditional Chinese)
+  70314e10-16f0-47e6-9a9c-85c262c63e22: !Template
+    answer_choices: null
+    id: 70314e10-16f0-47e6-9a9c-85c262c63e22
+    jinja: 'Translate this from Wolof into Brazilian Portuguese: {{ sentence_wol }}
+      ||| {{ sentence_por }}'
+    metadata: *id001
+    name: translate-this-wol-por
+    reference: Basic translation (Wolof into Brazilian Portuguese)
+  705d498a-f573-4c61-be2f-4f297d6f6784: !Template
+    answer_choices: null
+    id: 705d498a-f573-4c61-be2f-4f297d6f6784
+    jinja: 'Translate this from Assamese into Latin American Spanish: {{ sentence_asm
+      }} ||| {{ sentence_spa }}'
+    metadata: *id001
+    name: translate-this-asm-spa
+    reference: Basic translation (Assamese into Latin American Spanish)
+  710ab478-10f8-4bb1-8af5-026471b69fc8: !Template
+    answer_choices: null
+    id: 710ab478-10f8-4bb1-8af5-026471b69fc8
+    jinja: 'Translate this from Hindi into Arabic: {{ sentence_hin }} ||| {{ sentence_ara
+      }}'
+    metadata: *id001
+    name: translate-this-hin-ara
+    reference: Basic translation (Hindi into Arabic)
+  711eb115-03d6-45f9-ab01-f163fb2530ea: !Template
+    answer_choices: null
+    id: 711eb115-03d6-45f9-ab01-f163fb2530ea
+    jinja: 'Translate this from Swahili into Vietnamese: {{ sentence_swh }} ||| {{
+      sentence_vie }}'
+    metadata: *id001
+    name: translate-this-swh-vie
+    reference: Basic translation (Swahili into Vietnamese)
+  7143975d-b0d0-4c49-aecf-7f6a65e7197a: !Template
+    answer_choices: null
+    id: 7143975d-b0d0-4c49-aecf-7f6a65e7197a
+    jinja: 'Translate this from Vietnamese into Hindi: {{ sentence_vie }} ||| {{ sentence_hin
+      }}'
+    metadata: *id001
+    name: translate-this-vie-hin
+    reference: Basic translation (Vietnamese into Hindi)
+  714804ad-86c0-4a0f-9e79-1f629e561764: !Template
+    answer_choices: null
+    id: 714804ad-86c0-4a0f-9e79-1f629e561764
+    jinja: 'Translate this from Gujarati into Xhosa: {{ sentence_guj }} ||| {{ sentence_xho
+      }}'
+    metadata: *id001
+    name: translate-this-guj-xho
+    reference: Basic translation (Gujarati into Xhosa)
+  715255a0-7d04-4a38-9014-a316cf8df17b: !Template
+    answer_choices: null
+    id: 715255a0-7d04-4a38-9014-a316cf8df17b
+    jinja: 'Translate this from Oriya into Urdu: {{ sentence_ory }} ||| {{ sentence_urd
+      }}'
+    metadata: *id001
+    name: translate-this-ory-urd
+    reference: Basic translation (Oriya into Urdu)
+  71a86ca1-67a0-4012-9b3f-20b4de33e6ab: !Template
+    answer_choices: null
+    id: 71a86ca1-67a0-4012-9b3f-20b4de33e6ab
+    jinja: 'Translate this from Gujarati into Hindi: {{ sentence_guj }} ||| {{ sentence_hin
+      }}'
+    metadata: *id001
+    name: translate-this-guj-hin
+    reference: Basic translation (Gujarati into Hindi)
+  71b141d6-0933-4c02-a75b-3c88c0179408: !Template
+    answer_choices: null
+    id: 71b141d6-0933-4c02-a75b-3c88c0179408
+    jinja: 'Translate this from Assamese into Nepali: {{ sentence_asm }} ||| {{ sentence_npi
+      }}'
+    metadata: *id001
+    name: translate-this-asm-npi
+    reference: Basic translation (Assamese into Nepali)
+  71fe6b79-07b8-4495-9591-1a38ff77f0f9: !Template
+    answer_choices: null
+    id: 71fe6b79-07b8-4495-9591-1a38ff77f0f9
+    jinja: 'Translate this from Northern Sotho into Oriya: {{ sentence_nso }} |||
+      {{ sentence_ory }}'
+    metadata: *id001
+    name: translate-this-nso-ory
+    reference: Basic translation (Northern Sotho into Oriya)
+  7207c93a-a6eb-409a-95d4-1e79d27e7036: !Template
+    answer_choices: null
+    id: 7207c93a-a6eb-409a-95d4-1e79d27e7036
+    jinja: 'Translate this from Latin American Spanish into Zulu: {{ sentence_spa
+      }} ||| {{ sentence_zul }}'
+    metadata: *id001
+    name: translate-this-spa-zul
+    reference: Basic translation (Latin American Spanish into Zulu)
+  7238f01b-9b0e-444e-916c-26fc1df3a9f3: !Template
+    answer_choices: null
+    id: 7238f01b-9b0e-444e-916c-26fc1df3a9f3
+    jinja: 'Translate this from Punjabi into Northern Sotho: {{ sentence_pan }} |||
+      {{ sentence_nso }}'
+    metadata: *id001
+    name: translate-this-pan-nso
+    reference: Basic translation (Punjabi into Northern Sotho)
+  72ac3544-6fd1-4dd1-8097-fa279451a44f: !Template
+    answer_choices: null
+    id: 72ac3544-6fd1-4dd1-8097-fa279451a44f
+    jinja: 'Translate this from Lingala into Catalan: {{ sentence_lin }} ||| {{ sentence_cat
+      }}'
+    metadata: *id001
+    name: translate-this-lin-cat
+    reference: Basic translation (Lingala into Catalan)
+  72c388f3-b76f-4498-9b68-2cda9c0a0d28: !Template
+    answer_choices: null
+    id: 72c388f3-b76f-4498-9b68-2cda9c0a0d28
+    jinja: 'Translate this from Indonesian into Oriya: {{ sentence_ind }} ||| {{ sentence_ory
+      }}'
+    metadata: *id001
+    name: translate-this-ind-ory
+    reference: Basic translation (Indonesian into Oriya)
+  7335be74-60ff-437d-af7a-35452e858545: !Template
+    answer_choices: null
+    id: 7335be74-60ff-437d-af7a-35452e858545
+    jinja: 'Translate this from Marathi into Urdu: {{ sentence_mar }} ||| {{ sentence_urd
+      }}'
+    metadata: *id001
+    name: translate-this-mar-urd
+    reference: Basic translation (Marathi into Urdu)
+  73532de4-3e9f-42d6-bb19-600dd1d6d0ac: !Template
+    answer_choices: null
+    id: 73532de4-3e9f-42d6-bb19-600dd1d6d0ac
+    jinja: 'Translate this from Marathi into Brazilian Portuguese: {{ sentence_mar
+      }} ||| {{ sentence_por }}'
+    metadata: *id001
+    name: translate-this-mar-por
+    reference: Basic translation (Marathi into Brazilian Portuguese)
+  73a7aba3-33b7-4706-a77b-2921ab1c3032: !Template
+    answer_choices: null
+    id: 73a7aba3-33b7-4706-a77b-2921ab1c3032
+    jinja: 'Translate this from English into Latin American Spanish: {{ sentence_eng
+      }} ||| {{ sentence_spa }}'
+    metadata: *id001
+    name: translate-this-eng-spa
+    reference: Basic translation (English into Latin American Spanish)
+  73c3dd35-7c15-4bc6-92f7-a4def56ce851: !Template
+    answer_choices: null
+    id: 73c3dd35-7c15-4bc6-92f7-a4def56ce851
+    jinja: 'Translate this from Hindi into Wolof: {{ sentence_hin }} ||| {{ sentence_wol
+      }}'
+    metadata: *id001
+    name: translate-this-hin-wol
+    reference: Basic translation (Hindi into Wolof)
+  73e0241d-5815-44ac-ad2c-7f65fc292f8a: !Template
+    answer_choices: null
+    id: 73e0241d-5815-44ac-ad2c-7f65fc292f8a
+    jinja: 'Translate this from Igbo into traditional Chinese: {{ sentence_ibo }}
+      ||| {{ sentence_zho_trad }}'
+    metadata: *id001
+    name: translate-this-ibo-zho_trad
+    reference: Basic translation (Igbo into traditional Chinese)
+  7428a0ce-06c7-49fd-9964-13f072a5056f: !Template
+    answer_choices: null
+    id: 7428a0ce-06c7-49fd-9964-13f072a5056f
+    jinja: 'Translate this from Latin American Spanish into Marathi: {{ sentence_spa
+      }} ||| {{ sentence_mar }}'
+    metadata: *id001
+    name: translate-this-spa-mar
+    reference: Basic translation (Latin American Spanish into Marathi)
+  742c1296-aa17-4331-80dc-9ea830bacb17: !Template
+    answer_choices: null
+    id: 742c1296-aa17-4331-80dc-9ea830bacb17
+    jinja: 'Translate this from Hindi into English: {{ sentence_hin }} ||| {{ sentence_eng
+      }}'
+    metadata: *id001
+    name: translate-this-hin-eng
+    reference: Basic translation (Hindi into English)
+  7434b236-487a-4f85-a4bd-ec3e8449b7f2: !Template
+    answer_choices: null
+    id: 7434b236-487a-4f85-a4bd-ec3e8449b7f2
+    jinja: 'Translate this from English into Telugu: {{ sentence_eng }} ||| {{ sentence_tel
+      }}'
+    metadata: *id001
+    name: translate-this-eng-tel
+    reference: Basic translation (English into Telugu)
+  7472cd1a-eae7-48f4-a870-522f016edc3d: !Template
+    answer_choices: null
+    id: 7472cd1a-eae7-48f4-a870-522f016edc3d
+    jinja: 'Translate this from Hindi into Northern Sotho: {{ sentence_hin }} |||
+      {{ sentence_nso }}'
+    metadata: *id001
+    name: translate-this-hin-nso
+    reference: Basic translation (Hindi into Northern Sotho)
+  749f40fb-e057-4a03-b8b0-92b5c91cadbd: !Template
+    answer_choices: null
+    id: 749f40fb-e057-4a03-b8b0-92b5c91cadbd
+    jinja: 'Translate this from Igbo into Wolof: {{ sentence_ibo }} ||| {{ sentence_wol
+      }}'
+    metadata: *id001
+    name: translate-this-ibo-wol
+    reference: Basic translation (Igbo into Wolof)
+  74ba3f34-cc61-4051-874f-e8b271dbd5fc: !Template
+    answer_choices: null
+    id: 74ba3f34-cc61-4051-874f-e8b271dbd5fc
+    jinja: 'Translate this from Latin American Spanish into Telugu: {{ sentence_spa
+      }} ||| {{ sentence_tel }}'
+    metadata: *id001
+    name: translate-this-spa-tel
+    reference: Basic translation (Latin American Spanish into Telugu)
+  74d2069c-bcd3-4575-b983-bac9a181a411: !Template
+    answer_choices: null
+    id: 74d2069c-bcd3-4575-b983-bac9a181a411
+    jinja: 'Translate this from Yoruba into Arabic: {{ sentence_yor }} ||| {{ sentence_ara
+      }}'
+    metadata: *id001
+    name: translate-this-yor-ara
+    reference: Basic translation (Yoruba into Arabic)
+  74efbfaa-a2f2-408f-b64d-e9e84dea232f: !Template
+    answer_choices: null
+    id: 74efbfaa-a2f2-408f-b64d-e9e84dea232f
+    jinja: 'Translate this from Igbo into Nepali: {{ sentence_ibo }} ||| {{ sentence_npi
+      }}'
+    metadata: *id001
+    name: translate-this-ibo-npi
+    reference: Basic translation (Igbo into Nepali)
+  75063724-8043-47b8-9cba-8d3efa76adbe: !Template
+    answer_choices: null
+    id: 75063724-8043-47b8-9cba-8d3efa76adbe
+    jinja: 'Translate this from Yoruba into Northern Sotho: {{ sentence_yor }} |||
+      {{ sentence_nso }}'
+    metadata: *id001
+    name: translate-this-yor-nso
+    reference: Basic translation (Yoruba into Northern Sotho)
+  75298d16-11dd-4247-ac4e-37d25b868c4d: !Template
+    answer_choices: null
+    id: 75298d16-11dd-4247-ac4e-37d25b868c4d
+    jinja: 'Translate this from traditional Chinese into Tamil: {{ sentence_zho_trad
+      }} ||| {{ sentence_tam }}'
+    metadata: *id001
+    name: translate-this-zho_trad-tam
+    reference: Basic translation (traditional Chinese into Tamil)
+  7571897b-9461-40bc-95e0-2a3ca5c1a5ad: !Template
+    answer_choices: null
+    id: 7571897b-9461-40bc-95e0-2a3ca5c1a5ad
+    jinja: 'Translate this from Oriya into Catalan: {{ sentence_ory }} ||| {{ sentence_cat
+      }}'
+    metadata: *id001
+    name: translate-this-ory-cat
+    reference: Basic translation (Oriya into Catalan)
+  75739fe9-3749-4425-822d-002a5580aeed: !Template
+    answer_choices: null
+    id: 75739fe9-3749-4425-822d-002a5580aeed
+    jinja: 'Translate this from Hindi into Zulu: {{ sentence_hin }} ||| {{ sentence_zul
+      }}'
+    metadata: *id001
+    name: translate-this-hin-zul
+    reference: Basic translation (Hindi into Zulu)
+  75b014de-fcbe-4792-a7ab-eb50b0aace17: !Template
+    answer_choices: null
+    id: 75b014de-fcbe-4792-a7ab-eb50b0aace17
+    jinja: 'Translate this from Brazilian Portuguese into Kannada: {{ sentence_por
+      }} ||| {{ sentence_kan }}'
+    metadata: *id001
+    name: translate-this-por-kan
+    reference: Basic translation (Brazilian Portuguese into Kannada)
+  75f7e0e3-b86c-487a-97a8-3e27d3f0c53e: !Template
+    answer_choices: null
+    id: 75f7e0e3-b86c-487a-97a8-3e27d3f0c53e
+    jinja: 'Translate this from Igbo into Tamil: {{ sentence_ibo }} ||| {{ sentence_tam
+      }}'
+    metadata: *id001
+    name: translate-this-ibo-tam
+    reference: Basic translation (Igbo into Tamil)
+  76cafdad-e80f-4acf-b9e5-95e80bd7b23d: !Template
+    answer_choices: null
+    id: 76cafdad-e80f-4acf-b9e5-95e80bd7b23d
+    jinja: 'Translate this from Northern Sotho into Wolof: {{ sentence_nso }} |||
+      {{ sentence_wol }}'
+    metadata: *id001
+    name: translate-this-nso-wol
+    reference: Basic translation (Northern Sotho into Wolof)
+  76e4973d-d4c6-4996-8b82-c972c70eed23: !Template
+    answer_choices: null
+    id: 76e4973d-d4c6-4996-8b82-c972c70eed23
+    jinja: 'Translate this from Zulu into Oriya: {{ sentence_zul }} ||| {{ sentence_ory
+      }}'
+    metadata: *id001
+    name: translate-this-zul-ory
+    reference: Basic translation (Zulu into Oriya)
+  770be7d7-333a-45dc-8248-6d97b736b370: !Template
+    answer_choices: null
+    id: 770be7d7-333a-45dc-8248-6d97b736b370
+    jinja: 'Translate this from Arabic into Northern Sotho: {{ sentence_ara }} |||
+      {{ sentence_nso }}'
+    metadata: *id001
+    name: translate-this-ara-nso
+    reference: Basic translation (Arabic into Northern Sotho)
+  772854fc-4a61-4880-b5a8-ba0292ad07a9: !Template
+    answer_choices: null
+    id: 772854fc-4a61-4880-b5a8-ba0292ad07a9
+    jinja: 'Translate this from Brazilian Portuguese into French: {{ sentence_por
+      }} ||| {{ sentence_fra }}'
+    metadata: *id001
+    name: translate-this-por-fra
+    reference: Basic translation (Brazilian Portuguese into French)
+  776cd869-df36-4c13-85b8-4acb33cf09cc: !Template
+    answer_choices: null
+    id: 776cd869-df36-4c13-85b8-4acb33cf09cc
+    jinja: 'Translate this from Tamil into Lingala: {{ sentence_tam }} ||| {{ sentence_lin
+      }}'
+    metadata: *id001
+    name: translate-this-tam-lin
+    reference: Basic translation (Tamil into Lingala)
+  77aaef18-ad87-48fd-827c-40bcc89b5e51: !Template
+    answer_choices: null
+    id: 77aaef18-ad87-48fd-827c-40bcc89b5e51
+    jinja: 'Translate this from English into Vietnamese: {{ sentence_eng }} ||| {{
+      sentence_vie }}'
+    metadata: *id001
+    name: translate-this-eng-vie
+    reference: Basic translation (English into Vietnamese)
+  77c69924-1204-48dd-9f24-9216ef89d47e: !Template
+    answer_choices: null
+    id: 77c69924-1204-48dd-9f24-9216ef89d47e
+    jinja: 'Translate this from Bengali into Swahili: {{ sentence_ben }} ||| {{ sentence_swh
+      }}'
+    metadata: *id001
+    name: translate-this-ben-swh
+    reference: Basic translation (Bengali into Swahili)
+  77d9f90e-d0f8-42de-9d4e-adb1d68760af: !Template
+    answer_choices: null
+    id: 77d9f90e-d0f8-42de-9d4e-adb1d68760af
+    jinja: 'Translate this from Bengali into Wolof: {{ sentence_ben }} ||| {{ sentence_wol
+      }}'
+    metadata: *id001
+    name: translate-this-ben-wol
+    reference: Basic translation (Bengali into Wolof)
+  77e6101f-71f9-4edf-b1af-741c1b24df89: !Template
+    answer_choices: null
+    id: 77e6101f-71f9-4edf-b1af-741c1b24df89
+    jinja: 'Translate this from Arabic into Yoruba: {{ sentence_ara }} ||| {{ sentence_yor
+      }}'
+    metadata: *id001
+    name: translate-this-ara-yor
+    reference: Basic translation (Arabic into Yoruba)
+  77f0995e-ebe5-4def-87de-0714fef4a9db: !Template
+    answer_choices: null
+    id: 77f0995e-ebe5-4def-87de-0714fef4a9db
+    jinja: 'Translate this from Bengali into Telugu: {{ sentence_ben }} ||| {{ sentence_tel
+      }}'
+    metadata: *id001
+    name: translate-this-ben-tel
+    reference: Basic translation (Bengali into Telugu)
+  77f3aa8e-928e-49af-ad05-e5cfb550cbfd: !Template
+    answer_choices: null
+    id: 77f3aa8e-928e-49af-ad05-e5cfb550cbfd
+    jinja: 'Translate this from Hindi into Igbo: {{ sentence_hin }} ||| {{ sentence_ibo
+      }}'
+    metadata: *id001
+    name: translate-this-hin-ibo
+    reference: Basic translation (Hindi into Igbo)
+  78a1fbce-1192-43cf-8a8c-96febd4dfc1a: !Template
+    answer_choices: null
+    id: 78a1fbce-1192-43cf-8a8c-96febd4dfc1a
+    jinja: 'Translate this from Catalan into Latin American Spanish: {{ sentence_cat
+      }} ||| {{ sentence_spa }}'
+    metadata: *id001
+    name: translate-this-cat-spa
+    reference: Basic translation (Catalan into Latin American Spanish)
+  7915332d-a376-4453-8484-b976d378b1c4: !Template
+    answer_choices: null
+    id: 7915332d-a376-4453-8484-b976d378b1c4
+    jinja: 'Translate this from Yoruba into Urdu: {{ sentence_yor }} ||| {{ sentence_urd
+      }}'
+    metadata: *id001
+    name: translate-this-yor-urd
+    reference: Basic translation (Yoruba into Urdu)
+  7976b09a-82ea-4bc9-a646-ab1f959c1813: !Template
+    answer_choices: null
+    id: 7976b09a-82ea-4bc9-a646-ab1f959c1813
+    jinja: 'Translate this from Zulu into Lingala: {{ sentence_zul }} ||| {{ sentence_lin
+      }}'
+    metadata: *id001
+    name: translate-this-zul-lin
+    reference: Basic translation (Zulu into Lingala)
+  7a58a245-36b4-4aee-9da2-edb2d5b3922b: !Template
+    answer_choices: null
+    id: 7a58a245-36b4-4aee-9da2-edb2d5b3922b
+    jinja: 'Translate this from Assamese into Igbo: {{ sentence_asm }} ||| {{ sentence_ibo
+      }}'
+    metadata: *id001
+    name: translate-this-asm-ibo
+    reference: Basic translation (Assamese into Igbo)
+  7a801e2e-697a-47cd-b2a0-254c19922606: !Template
+    answer_choices: null
+    id: 7a801e2e-697a-47cd-b2a0-254c19922606
+    jinja: 'Translate this from Yoruba into Malayalam: {{ sentence_yor }} ||| {{ sentence_mal
+      }}'
+    metadata: *id001
+    name: translate-this-yor-mal
+    reference: Basic translation (Yoruba into Malayalam)
+  7aa02e88-d301-474d-b4fe-c84a28135331: !Template
+    answer_choices: null
+    id: 7aa02e88-d301-474d-b4fe-c84a28135331
+    jinja: 'Translate this from Swahili into Oriya: {{ sentence_swh }} ||| {{ sentence_ory
+      }}'
+    metadata: *id001
+    name: translate-this-swh-ory
+    reference: Basic translation (Swahili into Oriya)
+  7abac42d-08bd-4d36-bf1c-b2d873a9050f: !Template
+    answer_choices: null
+    id: 7abac42d-08bd-4d36-bf1c-b2d873a9050f
+    jinja: 'Translate this from traditional Chinese into Assamese: {{ sentence_zho_trad
+      }} ||| {{ sentence_asm }}'
+    metadata: *id001
+    name: translate-this-zho_trad-asm
+    reference: Basic translation (traditional Chinese into Assamese)
+  7ae9d466-4770-481f-8ffb-cce6364f75ac: !Template
+    answer_choices: null
+    id: 7ae9d466-4770-481f-8ffb-cce6364f75ac
+    jinja: 'Translate this from simplified Chinese into Northern Sotho: {{ sentence_zho_simpl
+      }} ||| {{ sentence_nso }}'
+    metadata: *id001
+    name: translate-this-zho_simpl-nso
+    reference: Basic translation (simplified Chinese into Northern Sotho)
+  7ae9d50d-92a2-49d0-8aed-d462776ee444: !Template
+    answer_choices: null
+    id: 7ae9d50d-92a2-49d0-8aed-d462776ee444
+    jinja: 'Translate this from Punjabi into Swahili: {{ sentence_pan }} ||| {{ sentence_swh
+      }}'
+    metadata: *id001
+    name: translate-this-pan-swh
+    reference: Basic translation (Punjabi into Swahili)
+  7b0b3d31-3c92-414c-9279-c775542b45dc: !Template
+    answer_choices: null
+    id: 7b0b3d31-3c92-414c-9279-c775542b45dc
+    jinja: 'Translate this from Yoruba into Assamese: {{ sentence_yor }} ||| {{ sentence_asm
+      }}'
+    metadata: *id001
+    name: translate-this-yor-asm
+    reference: Basic translation (Yoruba into Assamese)
+  7c4d0d55-5bdb-4424-a38c-4462c1cfe38f: !Template
+    answer_choices: null
+    id: 7c4d0d55-5bdb-4424-a38c-4462c1cfe38f
+    jinja: 'Translate this from traditional Chinese into Indonesian: {{ sentence_zho_trad
+      }} ||| {{ sentence_ind }}'
+    metadata: *id001
+    name: translate-this-zho_trad-ind
+    reference: Basic translation (traditional Chinese into Indonesian)
+  7c78a406-bd72-47bc-a09d-c06cf90edf90: !Template
+    answer_choices: null
+    id: 7c78a406-bd72-47bc-a09d-c06cf90edf90
+    jinja: 'Translate this from Telugu into Gujarati: {{ sentence_tel }} ||| {{ sentence_guj
+      }}'
+    metadata: *id001
+    name: translate-this-tel-guj
+    reference: Basic translation (Telugu into Gujarati)
+  7d529228-b7b0-4d44-a521-42bb9ca6ace5: !Template
+    answer_choices: null
+    id: 7d529228-b7b0-4d44-a521-42bb9ca6ace5
+    jinja: 'Translate this from Northern Sotho into Assamese: {{ sentence_nso }} |||
+      {{ sentence_asm }}'
+    metadata: *id001
+    name: translate-this-nso-asm
+    reference: Basic translation (Northern Sotho into Assamese)
+  7dc3dd96-825e-45ce-9ffa-9eb95f29e57c: !Template
+    answer_choices: null
+    id: 7dc3dd96-825e-45ce-9ffa-9eb95f29e57c
+    jinja: 'Translate this from Igbo into Vietnamese: {{ sentence_ibo }} ||| {{ sentence_vie
+      }}'
+    metadata: *id001
+    name: translate-this-ibo-vie
+    reference: Basic translation (Igbo into Vietnamese)
+  7e5796e5-040f-41a3-a3a7-e61fd0a70bbb: !Template
+    answer_choices: null
+    id: 7e5796e5-040f-41a3-a3a7-e61fd0a70bbb
+    jinja: 'Translate this from Tamil into Gujarati: {{ sentence_tam }} ||| {{ sentence_guj
+      }}'
+    metadata: *id001
+    name: translate-this-tam-guj
+    reference: Basic translation (Tamil into Gujarati)
+  7e8350f4-7818-4efb-a9bc-ed27ece00656: !Template
+    answer_choices: null
+    id: 7e8350f4-7818-4efb-a9bc-ed27ece00656
+    jinja: 'Translate this from English into Swahili: {{ sentence_eng }} ||| {{ sentence_swh
+      }}'
+    metadata: *id001
+    name: translate-this-eng-swh
+    reference: Basic translation (English into Swahili)
+  7eff6838-b175-46a3-b5c4-95a456914397: !Template
+    answer_choices: null
+    id: 7eff6838-b175-46a3-b5c4-95a456914397
+    jinja: 'Translate this from Tamil into Oriya: {{ sentence_tam }} ||| {{ sentence_ory
+      }}'
+    metadata: *id001
+    name: translate-this-tam-ory
+    reference: Basic translation (Tamil into Oriya)
+  7f201a54-4594-4751-8133-1ae860bab18f: !Template
+    answer_choices: null
+    id: 7f201a54-4594-4751-8133-1ae860bab18f
+    jinja: 'Translate this from Marathi into Assamese: {{ sentence_mar }} ||| {{ sentence_asm
+      }}'
+    metadata: *id001
+    name: translate-this-mar-asm
+    reference: Basic translation (Marathi into Assamese)
+  7f33e652-9574-4bf1-b4fd-286af9af0734: !Template
+    answer_choices: null
+    id: 7f33e652-9574-4bf1-b4fd-286af9af0734
+    jinja: 'Translate this from Malayalam into Lingala: {{ sentence_mal }} ||| {{
+      sentence_lin }}'
+    metadata: *id001
+    name: translate-this-mal-lin
+    reference: Basic translation (Malayalam into Lingala)
+  7fa79031-3475-4d7c-9ae5-9364e44a663d: !Template
+    answer_choices: null
+    id: 7fa79031-3475-4d7c-9ae5-9364e44a663d
+    jinja: 'Translate this from Tamil into Brazilian Portuguese: {{ sentence_tam }}
+      ||| {{ sentence_por }}'
+    metadata: *id001
+    name: translate-this-tam-por
+    reference: Basic translation (Tamil into Brazilian Portuguese)
+  7fdb18e3-5cce-4e72-8052-945030950a82: !Template
+    answer_choices: null
+    id: 7fdb18e3-5cce-4e72-8052-945030950a82
+    jinja: 'Translate this from Assamese into Xhosa: {{ sentence_asm }} ||| {{ sentence_xho
+      }}'
+    metadata: *id001
+    name: translate-this-asm-xho
+    reference: Basic translation (Assamese into Xhosa)
+  7ff58b1c-b979-4f35-b64f-d6070676af96: !Template
+    answer_choices: null
+    id: 7ff58b1c-b979-4f35-b64f-d6070676af96
+    jinja: 'Translate this from Indonesian into Zulu: {{ sentence_ind }} ||| {{ sentence_zul
+      }}'
+    metadata: *id001
+    name: translate-this-ind-zul
+    reference: Basic translation (Indonesian into Zulu)
+  80174b8e-a446-44e8-957a-03ef562d03b8: !Template
+    answer_choices: null
+    id: 80174b8e-a446-44e8-957a-03ef562d03b8
+    jinja: 'Translate this from Lingala into Latin American Spanish: {{ sentence_lin
+      }} ||| {{ sentence_spa }}'
+    metadata: *id001
+    name: translate-this-lin-spa
+    reference: Basic translation (Lingala into Latin American Spanish)
+  8025d701-ea5d-4b00-9ece-c3f5d48e1e64: !Template
+    answer_choices: null
+    id: 8025d701-ea5d-4b00-9ece-c3f5d48e1e64
+    jinja: 'Translate this from Yoruba into Marathi: {{ sentence_yor }} ||| {{ sentence_mar
+      }}'
+    metadata: *id001
+    name: translate-this-yor-mar
+    reference: Basic translation (Yoruba into Marathi)
+  804e09e3-e6d2-407d-9261-6963d9710769: !Template
+    answer_choices: null
+    id: 804e09e3-e6d2-407d-9261-6963d9710769
+    jinja: 'Translate this from Punjabi into Kannada: {{ sentence_pan }} ||| {{ sentence_kan
+      }}'
+    metadata: *id001
+    name: translate-this-pan-kan
+    reference: Basic translation (Punjabi into Kannada)
+  8050875a-9cec-4dd3-92aa-5555b5226c29: !Template
+    answer_choices: null
+    id: 8050875a-9cec-4dd3-92aa-5555b5226c29
+    jinja: 'Translate this from Marathi into Igbo: {{ sentence_mar }} ||| {{ sentence_ibo
+      }}'
+    metadata: *id001
+    name: translate-this-mar-ibo
+    reference: Basic translation (Marathi into Igbo)
+  80a9e2ca-1d81-4169-88a2-9c3819a53157: !Template
+    answer_choices: null
+    id: 80a9e2ca-1d81-4169-88a2-9c3819a53157
+    jinja: 'Translate this from Xhosa into Yoruba: {{ sentence_xho }} ||| {{ sentence_yor
+      }}'
+    metadata: *id001
+    name: translate-this-xho-yor
+    reference: Basic translation (Xhosa into Yoruba)
+  8108031c-adf6-4dfa-a982-253424945b33: !Template
+    answer_choices: null
+    id: 8108031c-adf6-4dfa-a982-253424945b33
+    jinja: 'Translate this from Malayalam into Tamil: {{ sentence_mal }} ||| {{ sentence_tam
+      }}'
+    metadata: *id001
+    name: translate-this-mal-tam
+    reference: Basic translation (Malayalam into Tamil)
+  816b2d97-9646-4657-9d57-532b46c9b697: !Template
+    answer_choices: null
+    id: 816b2d97-9646-4657-9d57-532b46c9b697
+    jinja: 'Translate this from Gujarati into Vietnamese: {{ sentence_guj }} ||| {{
+      sentence_vie }}'
+    metadata: *id001
+    name: translate-this-guj-vie
+    reference: Basic translation (Gujarati into Vietnamese)
+  81d656b6-87d9-4fc4-8f37-0bb4f5a36bae: !Template
+    answer_choices: null
+    id: 81d656b6-87d9-4fc4-8f37-0bb4f5a36bae
+    jinja: 'Translate this from Lingala into Hindi: {{ sentence_lin }} ||| {{ sentence_hin
+      }}'
+    metadata: *id001
+    name: translate-this-lin-hin
+    reference: Basic translation (Lingala into Hindi)
+  8212ec6c-e4cc-4f96-9b9c-d35896c713c8: !Template
+    answer_choices: null
+    id: 8212ec6c-e4cc-4f96-9b9c-d35896c713c8
+    jinja: 'Translate this from French into Oriya: {{ sentence_fra }} ||| {{ sentence_ory
+      }}'
+    metadata: *id001
+    name: translate-this-fra-ory
+    reference: Basic translation (French into Oriya)
+  82206e44-78f6-4017-acd0-a3bbae1f4d46: !Template
+    answer_choices: null
+    id: 82206e44-78f6-4017-acd0-a3bbae1f4d46
+    jinja: 'Translate this from Swahili into traditional Chinese: {{ sentence_swh
+      }} ||| {{ sentence_zho_trad }}'
+    metadata: *id001
+    name: translate-this-swh-zho_trad
+    reference: Basic translation (Swahili into traditional Chinese)
+  822ce9fd-c356-4360-91ee-20c7c75cc2eb: !Template
+    answer_choices: null
+    id: 822ce9fd-c356-4360-91ee-20c7c75cc2eb
+    jinja: 'Translate this from Yoruba into Catalan: {{ sentence_yor }} ||| {{ sentence_cat
+      }}'
+    metadata: *id001
+    name: translate-this-yor-cat
+    reference: Basic translation (Yoruba into Catalan)
+  82f37e4d-0f27-4c31-97b7-776357d95ba0: !Template
+    answer_choices: null
+    id: 82f37e4d-0f27-4c31-97b7-776357d95ba0
+    jinja: 'Translate this from Nepali into Hindi: {{ sentence_npi }} ||| {{ sentence_hin
+      }}'
+    metadata: *id001
+    name: translate-this-npi-hin
+    reference: Basic translation (Nepali into Hindi)
+  82f939db-49ad-4939-a780-0660745ae154: !Template
+    answer_choices: null
+    id: 82f939db-49ad-4939-a780-0660745ae154
+    jinja: 'Translate this from French into English: {{ sentence_fra }} ||| {{ sentence_eng
+      }}'
+    metadata: *id001
+    name: translate-this-fra-eng
+    reference: Basic translation (French into English)
+  836a19b0-c0dc-4685-83f1-3be8db866f0a: !Template
+    answer_choices: null
+    id: 836a19b0-c0dc-4685-83f1-3be8db866f0a
+    jinja: 'Translate this from Gujarati into Oriya: {{ sentence_guj }} ||| {{ sentence_ory
+      }}'
+    metadata: *id001
+    name: translate-this-guj-ory
+    reference: Basic translation (Gujarati into Oriya)
+  83710aff-8907-4112-b259-edf1977b6c09: !Template
+    answer_choices: null
+    id: 83710aff-8907-4112-b259-edf1977b6c09
+    jinja: 'Translate this from simplified Chinese into Yoruba: {{ sentence_zho_simpl
+      }} ||| {{ sentence_yor }}'
+    metadata: *id001
+    name: translate-this-zho_simpl-yor
+    reference: Basic translation (simplified Chinese into Yoruba)
+  83830905-e680-426e-b89a-93fb46b79e44: !Template
+    answer_choices: null
+    id: 83830905-e680-426e-b89a-93fb46b79e44
+    jinja: 'Translate this from Lingala into Gujarati: {{ sentence_lin }} ||| {{ sentence_guj
+      }}'
+    metadata: *id001
+    name: translate-this-lin-guj
+    reference: Basic translation (Lingala into Gujarati)
+  83becdf6-1604-4aad-8914-b5564af5c7e7: !Template
+    answer_choices: null
+    id: 83becdf6-1604-4aad-8914-b5564af5c7e7
+    jinja: 'Translate this from Xhosa into Nepali: {{ sentence_xho }} ||| {{ sentence_npi
+      }}'
+    metadata: *id001
+    name: translate-this-xho-npi
+    reference: Basic translation (Xhosa into Nepali)
+  83ecaea7-8972-4f8e-a500-22a7da5688d8: !Template
+    answer_choices: null
+    id: 83ecaea7-8972-4f8e-a500-22a7da5688d8
+    jinja: 'Translate this from Arabic into Marathi: {{ sentence_ara }} ||| {{ sentence_mar
+      }}'
+    metadata: *id001
+    name: translate-this-ara-mar
+    reference: Basic translation (Arabic into Marathi)
+  83f52a9a-f74a-40e5-abf1-ac76ef85b220: !Template
+    answer_choices: null
+    id: 83f52a9a-f74a-40e5-abf1-ac76ef85b220
+    jinja: 'Translate this from Telugu into Nepali: {{ sentence_tel }} ||| {{ sentence_npi
+      }}'
+    metadata: *id001
+    name: translate-this-tel-npi
+    reference: Basic translation (Telugu into Nepali)
+  84078401-95c3-48e6-aba5-a1e5fd58c948: !Template
+    answer_choices: null
+    id: 84078401-95c3-48e6-aba5-a1e5fd58c948
+    jinja: 'Translate this from English into Arabic: {{ sentence_eng }} ||| {{ sentence_ara
+      }}'
+    metadata: *id001
+    name: translate-this-eng-ara
+    reference: Basic translation (English into Arabic)
+  8444637a-054a-4656-8b9b-dab19739290d: !Template
+    answer_choices: null
+    id: 8444637a-054a-4656-8b9b-dab19739290d
+    jinja: 'Translate this from Kannada into Swahili: {{ sentence_kan }} ||| {{ sentence_swh
+      }}'
+    metadata: *id001
+    name: translate-this-kan-swh
+    reference: Basic translation (Kannada into Swahili)
+  849f125d-8209-4c4a-9890-436b87a03b25: !Template
+    answer_choices: null
+    id: 849f125d-8209-4c4a-9890-436b87a03b25
+    jinja: 'Translate this from Arabic into Latin American Spanish: {{ sentence_ara
+      }} ||| {{ sentence_spa }}'
+    metadata: *id001
+    name: translate-this-ara-spa
+    reference: Basic translation (Arabic into Latin American Spanish)
+  84db8bd4-5ad2-47eb-b132-d2ce1b8c95a4: !Template
+    answer_choices: null
+    id: 84db8bd4-5ad2-47eb-b132-d2ce1b8c95a4
+    jinja: 'Translate this from Malayalam into Bengali: {{ sentence_mal }} ||| {{
+      sentence_ben }}'
+    metadata: *id001
+    name: translate-this-mal-ben
+    reference: Basic translation (Malayalam into Bengali)
+  8557ff70-a661-4c89-b811-53c2f41f9b4c: !Template
+    answer_choices: null
+    id: 8557ff70-a661-4c89-b811-53c2f41f9b4c
+    jinja: 'Translate this from Arabic into Telugu: {{ sentence_ara }} ||| {{ sentence_tel
+      }}'
+    metadata: *id001
+    name: translate-this-ara-tel
+    reference: Basic translation (Arabic into Telugu)
+  855b24a1-4240-4b90-bc22-cee71f2f352b: !Template
+    answer_choices: null
+    id: 855b24a1-4240-4b90-bc22-cee71f2f352b
+    jinja: 'Translate this from Assamese into Lingala: {{ sentence_asm }} ||| {{ sentence_lin
+      }}'
+    metadata: *id001
+    name: translate-this-asm-lin
+    reference: Basic translation (Assamese into Lingala)
+  85be2e05-6666-4749-a668-5d053605fc6a: !Template
+    answer_choices: null
+    id: 85be2e05-6666-4749-a668-5d053605fc6a
+    jinja: 'Translate this from Punjabi into Brazilian Portuguese: {{ sentence_pan
+      }} ||| {{ sentence_por }}'
+    metadata: *id001
+    name: translate-this-pan-por
+    reference: Basic translation (Punjabi into Brazilian Portuguese)
+  85efc53f-b611-493a-adcb-5c4fa1189831: !Template
+    answer_choices: null
+    id: 85efc53f-b611-493a-adcb-5c4fa1189831
+    jinja: 'Translate this from Malayalam into Vietnamese: {{ sentence_mal }} |||
+      {{ sentence_vie }}'
+    metadata: *id001
+    name: translate-this-mal-vie
+    reference: Basic translation (Malayalam into Vietnamese)
+  85fa3914-0077-4c69-b573-ca9a8567974a: !Template
+    answer_choices: null
+    id: 85fa3914-0077-4c69-b573-ca9a8567974a
+    jinja: 'Translate this from Swahili into Brazilian Portuguese: {{ sentence_swh
+      }} ||| {{ sentence_por }}'
+    metadata: *id001
+    name: translate-this-swh-por
+    reference: Basic translation (Swahili into Brazilian Portuguese)
+  86153197-b33d-4d74-94c9-c53bb00d36fb: !Template
+    answer_choices: null
+    id: 86153197-b33d-4d74-94c9-c53bb00d36fb
+    jinja: 'Translate this from Urdu into Assamese: {{ sentence_urd }} ||| {{ sentence_asm
+      }}'
+    metadata: *id001
+    name: translate-this-urd-asm
+    reference: Basic translation (Urdu into Assamese)
+  86418db9-0571-4afe-8b7e-3fe89aa5a153: !Template
+    answer_choices: null
+    id: 86418db9-0571-4afe-8b7e-3fe89aa5a153
+    jinja: 'Translate this from Assamese into simplified Chinese: {{ sentence_asm
+      }} ||| {{ sentence_zho_simpl }}'
+    metadata: *id001
+    name: translate-this-asm-zho_simpl
+    reference: Basic translation (Assamese into simplified Chinese)
+  86c01cff-b4fe-474b-8859-dfe18ca6bf9f: !Template
+    answer_choices: null
+    id: 86c01cff-b4fe-474b-8859-dfe18ca6bf9f
+    jinja: 'Translate this from English into French: {{ sentence_eng }} ||| {{ sentence_fra
+      }}'
+    metadata: *id001
+    name: translate-this-eng-fra
+    reference: Basic translation (English into French)
+  8794391b-1a19-4a20-bff7-a0d3a62ca703: !Template
+    answer_choices: null
+    id: 8794391b-1a19-4a20-bff7-a0d3a62ca703
+    jinja: 'Translate this from Xhosa into Igbo: {{ sentence_xho }} ||| {{ sentence_ibo
+      }}'
+    metadata: *id001
+    name: translate-this-xho-ibo
+    reference: Basic translation (Xhosa into Igbo)
+  87cbcec6-7006-4803-bff7-399a15737bdd: !Template
+    answer_choices: null
+    id: 87cbcec6-7006-4803-bff7-399a15737bdd
+    jinja: 'Translate this from Nepali into Northern Sotho: {{ sentence_npi }} |||
+      {{ sentence_nso }}'
+    metadata: *id001
+    name: translate-this-npi-nso
+    reference: Basic translation (Nepali into Northern Sotho)
+  88223f06-15d9-4018-9286-c3e9c9ddeeb9: !Template
+    answer_choices: null
+    id: 88223f06-15d9-4018-9286-c3e9c9ddeeb9
+    jinja: 'Translate this from Hindi into Lingala: {{ sentence_hin }} ||| {{ sentence_lin
+      }}'
+    metadata: *id001
+    name: translate-this-hin-lin
+    reference: Basic translation (Hindi into Lingala)
+  8833e290-aeeb-44a8-96c8-fc094e2967dc: !Template
+    answer_choices: null
+    id: 8833e290-aeeb-44a8-96c8-fc094e2967dc
+    jinja: 'Translate this from Wolof into Assamese: {{ sentence_wol }} ||| {{ sentence_asm
+      }}'
+    metadata: *id001
+    name: translate-this-wol-asm
+    reference: Basic translation (Wolof into Assamese)
+  8879bfd5-29ac-4e6d-afdd-ac0c086adf04: !Template
+    answer_choices: null
+    id: 8879bfd5-29ac-4e6d-afdd-ac0c086adf04
+    jinja: 'Translate this from Malayalam into Swahili: {{ sentence_mal }} ||| {{
+      sentence_swh }}'
+    metadata: *id001
+    name: translate-this-mal-swh
+    reference: Basic translation (Malayalam into Swahili)
+  8903351b-a5fb-470a-9252-ef3d8c356216: !Template
+    answer_choices: null
+    id: 8903351b-a5fb-470a-9252-ef3d8c356216
+    jinja: 'Translate this from Urdu into Indonesian: {{ sentence_urd }} ||| {{ sentence_ind
+      }}'
+    metadata: *id001
+    name: translate-this-urd-ind
+    reference: Basic translation (Urdu into Indonesian)
+  891fb3df-076f-429c-9a6b-5e6ec2a6b63f: !Template
+    answer_choices: null
+    id: 891fb3df-076f-429c-9a6b-5e6ec2a6b63f
+    jinja: 'Translate this from Bengali into Nepali: {{ sentence_ben }} ||| {{ sentence_npi
+      }}'
+    metadata: *id001
+    name: translate-this-ben-npi
+    reference: Basic translation (Bengali into Nepali)
+  89e11065-30bd-4c98-a9bd-f195cbee9e44: !Template
+    answer_choices: null
+    id: 89e11065-30bd-4c98-a9bd-f195cbee9e44
+    jinja: 'Translate this from Latin American Spanish into traditional Chinese: {{
+      sentence_spa }} ||| {{ sentence_zho_trad }}'
+    metadata: *id001
+    name: translate-this-spa-zho_trad
+    reference: Basic translation (Latin American Spanish into traditional Chinese)
+  8a8f223a-0ec6-4a81-a2aa-ae1e60a4fc96: !Template
+    answer_choices: null
+    id: 8a8f223a-0ec6-4a81-a2aa-ae1e60a4fc96
+    jinja: 'Translate this from Zulu into simplified Chinese: {{ sentence_zul }} |||
+      {{ sentence_zho_simpl }}'
+    metadata: *id001
+    name: translate-this-zul-zho_simpl
+    reference: Basic translation (Zulu into simplified Chinese)
+  8afce2fe-47e2-4d5c-be4e-0257f68735c4: !Template
+    answer_choices: null
+    id: 8afce2fe-47e2-4d5c-be4e-0257f68735c4
+    jinja: 'Translate this from Nepali into French: {{ sentence_npi }} ||| {{ sentence_fra
+      }}'
+    metadata: *id001
+    name: translate-this-npi-fra
+    reference: Basic translation (Nepali into French)
+  8b424361-4e47-4a1b-b0ee-b392feeefaf0: !Template
+    answer_choices: null
+    id: 8b424361-4e47-4a1b-b0ee-b392feeefaf0
+    jinja: 'Translate this from Marathi into Hindi: {{ sentence_mar }} ||| {{ sentence_hin
+      }}'
+    metadata: *id001
+    name: translate-this-mar-hin
+    reference: Basic translation (Marathi into Hindi)
+  8b45f28b-1283-4b2c-b899-c3e3f6bbd718: !Template
+    answer_choices: null
+    id: 8b45f28b-1283-4b2c-b899-c3e3f6bbd718
+    jinja: 'Translate this from Oriya into Kannada: {{ sentence_ory }} ||| {{ sentence_kan
+      }}'
+    metadata: *id001
+    name: translate-this-ory-kan
+    reference: Basic translation (Oriya into Kannada)
+  8c465c4f-3583-463c-a718-b0f2afe87f70: !Template
+    answer_choices: null
+    id: 8c465c4f-3583-463c-a718-b0f2afe87f70
+    jinja: 'Translate this from Wolof into Yoruba: {{ sentence_wol }} ||| {{ sentence_yor
+      }}'
+    metadata: *id001
+    name: translate-this-wol-yor
+    reference: Basic translation (Wolof into Yoruba)
+  8c6d300b-7fc1-4dcb-b923-4281ad810a48: !Template
+    answer_choices: null
+    id: 8c6d300b-7fc1-4dcb-b923-4281ad810a48
+    jinja: 'Translate this from Malayalam into Catalan: {{ sentence_mal }} ||| {{
+      sentence_cat }}'
+    metadata: *id001
+    name: translate-this-mal-cat
+    reference: Basic translation (Malayalam into Catalan)
+  8ceaeb85-5752-434c-8562-c752fbc05563: !Template
+    answer_choices: null
+    id: 8ceaeb85-5752-434c-8562-c752fbc05563
+    jinja: 'Translate this from Kannada into Oriya: {{ sentence_kan }} ||| {{ sentence_ory
+      }}'
+    metadata: *id001
+    name: translate-this-kan-ory
+    reference: Basic translation (Kannada into Oriya)
+  8d04dd55-2081-4866-b02e-415bd5666bfc: !Template
+    answer_choices: null
+    id: 8d04dd55-2081-4866-b02e-415bd5666bfc
+    jinja: 'Translate this from Telugu into English: {{ sentence_tel }} ||| {{ sentence_eng
+      }}'
+    metadata: *id001
+    name: translate-this-tel-eng
+    reference: Basic translation (Telugu into English)
+  8d08f7de-3bb8-4e75-985e-cc8ac92de6c5: !Template
+    answer_choices: null
+    id: 8d08f7de-3bb8-4e75-985e-cc8ac92de6c5
+    jinja: 'Translate this from Yoruba into traditional Chinese: {{ sentence_yor }}
+      ||| {{ sentence_zho_trad }}'
+    metadata: *id001
+    name: translate-this-yor-zho_trad
+    reference: Basic translation (Yoruba into traditional Chinese)
+  8d6fedea-99aa-4251-b16d-580cf627da96: !Template
+    answer_choices: null
+    id: 8d6fedea-99aa-4251-b16d-580cf627da96
+    jinja: 'Translate this from traditional Chinese into Kannada: {{ sentence_zho_trad
+      }} ||| {{ sentence_kan }}'
+    metadata: *id001
+    name: translate-this-zho_trad-kan
+    reference: Basic translation (traditional Chinese into Kannada)
+  8e01dfde-b337-4a30-bfbc-d7debb29953b: !Template
+    answer_choices: null
+    id: 8e01dfde-b337-4a30-bfbc-d7debb29953b
+    jinja: 'Translate this from Gujarati into Zulu: {{ sentence_guj }} ||| {{ sentence_zul
+      }}'
+    metadata: *id001
+    name: translate-this-guj-zul
+    reference: Basic translation (Gujarati into Zulu)
+  8fabe497-fb08-4080-bfeb-95bd50ce184c: !Template
+    answer_choices: null
+    id: 8fabe497-fb08-4080-bfeb-95bd50ce184c
+    jinja: 'Translate this from Assamese into Bengali: {{ sentence_asm }} ||| {{ sentence_ben
+      }}'
+    metadata: *id001
+    name: translate-this-asm-ben
+    reference: Basic translation (Assamese into Bengali)
+  9067c367-0e43-47d4-89e6-6155263aeb48: !Template
+    answer_choices: null
+    id: 9067c367-0e43-47d4-89e6-6155263aeb48
+    jinja: 'Translate this from Wolof into Telugu: {{ sentence_wol }} ||| {{ sentence_tel
+      }}'
+    metadata: *id001
+    name: translate-this-wol-tel
+    reference: Basic translation (Wolof into Telugu)
+  90c8b92e-92cc-45f6-8066-56a9090c9b3a: !Template
+    answer_choices: null
+    id: 90c8b92e-92cc-45f6-8066-56a9090c9b3a
+    jinja: 'Translate this from simplified Chinese into Telugu: {{ sentence_zho_simpl
+      }} ||| {{ sentence_tel }}'
+    metadata: *id001
+    name: translate-this-zho_simpl-tel
+    reference: Basic translation (simplified Chinese into Telugu)
+  9141c5c1-15aa-412b-a680-66789928549c: !Template
+    answer_choices: null
+    id: 9141c5c1-15aa-412b-a680-66789928549c
+    jinja: 'Translate this from Lingala into Tamil: {{ sentence_lin }} ||| {{ sentence_tam
+      }}'
+    metadata: *id001
+    name: translate-this-lin-tam
+    reference: Basic translation (Lingala into Tamil)
+  9147ad9b-2a29-4473-b539-cd82ae5e337d: !Template
+    answer_choices: null
+    id: 9147ad9b-2a29-4473-b539-cd82ae5e337d
+    jinja: 'Translate this from Arabic into Gujarati: {{ sentence_ara }} ||| {{ sentence_guj
+      }}'
+    metadata: *id001
+    name: translate-this-ara-guj
+    reference: Basic translation (Arabic into Gujarati)
+  9181fef4-758a-471b-9030-2d18cd6efc72: !Template
+    answer_choices: null
+    id: 9181fef4-758a-471b-9030-2d18cd6efc72
+    jinja: 'Translate this from Indonesian into Marathi: {{ sentence_ind }} ||| {{
+      sentence_mar }}'
+    metadata: *id001
+    name: translate-this-ind-mar
+    reference: Basic translation (Indonesian into Marathi)
+  92017f3b-12a5-4a27-adf4-2f4e233f9244: !Template
+    answer_choices: null
+    id: 92017f3b-12a5-4a27-adf4-2f4e233f9244
+    jinja: 'Translate this from Wolof into Marathi: {{ sentence_wol }} ||| {{ sentence_mar
+      }}'
+    metadata: *id001
+    name: translate-this-wol-mar
+    reference: Basic translation (Wolof into Marathi)
+  92322085-a2d0-4744-b30a-b65b67bf0e47: !Template
+    answer_choices: null
+    id: 92322085-a2d0-4744-b30a-b65b67bf0e47
+    jinja: 'Translate this from Urdu into Brazilian Portuguese: {{ sentence_urd }}
+      ||| {{ sentence_por }}'
+    metadata: *id001
+    name: translate-this-urd-por
+    reference: Basic translation (Urdu into Brazilian Portuguese)
+  92d02847-a850-45fd-9a68-5fbd0d47f7a5: !Template
+    answer_choices: null
+    id: 92d02847-a850-45fd-9a68-5fbd0d47f7a5
+    jinja: 'Translate this from Vietnamese into Lingala: {{ sentence_vie }} ||| {{
+      sentence_lin }}'
+    metadata: *id001
+    name: translate-this-vie-lin
+    reference: Basic translation (Vietnamese into Lingala)
+  932097fa-d879-4ef2-9014-6f9b803f1d4b: !Template
+    answer_choices: null
+    id: 932097fa-d879-4ef2-9014-6f9b803f1d4b
+    jinja: 'Translate this from Northern Sotho into Zulu: {{ sentence_nso }} ||| {{
+      sentence_zul }}'
+    metadata: *id001
+    name: translate-this-nso-zul
+    reference: Basic translation (Northern Sotho into Zulu)
+  9321e88a-8367-45d4-9d62-c81596a476fb: !Template
+    answer_choices: null
+    id: 9321e88a-8367-45d4-9d62-c81596a476fb
+    jinja: 'Translate this from Catalan into Bengali: {{ sentence_cat }} ||| {{ sentence_ben
+      }}'
+    metadata: *id001
+    name: translate-this-cat-ben
+    reference: Basic translation (Catalan into Bengali)
+  934fcb7e-17ee-42a8-b158-2385c50c14e6: !Template
+    answer_choices: null
+    id: 934fcb7e-17ee-42a8-b158-2385c50c14e6
+    jinja: 'Translate this from Yoruba into Brazilian Portuguese: {{ sentence_yor
+      }} ||| {{ sentence_por }}'
+    metadata: *id001
+    name: translate-this-yor-por
+    reference: Basic translation (Yoruba into Brazilian Portuguese)
+  935f6de2-109b-47a1-ade6-bb5b04ea1abe: !Template
+    answer_choices: null
+    id: 935f6de2-109b-47a1-ade6-bb5b04ea1abe
+    jinja: 'Translate this from Brazilian Portuguese into traditional Chinese: {{
+      sentence_por }} ||| {{ sentence_zho_trad }}'
+    metadata: *id001
+    name: translate-this-por-zho_trad
+    reference: Basic translation (Brazilian Portuguese into traditional Chinese)
+  9367aed8-e89b-49d9-854a-6ae408e613c4: !Template
+    answer_choices: null
+    id: 9367aed8-e89b-49d9-854a-6ae408e613c4
+    jinja: 'Translate this from Swahili into Zulu: {{ sentence_swh }} ||| {{ sentence_zul
+      }}'
+    metadata: *id001
+    name: translate-this-swh-zul
+    reference: Basic translation (Swahili into Zulu)
+  93aa7b2c-afec-45d3-9371-918025311cd5: !Template
+    answer_choices: null
+    id: 93aa7b2c-afec-45d3-9371-918025311cd5
+    jinja: 'Translate this from Vietnamese into Indonesian: {{ sentence_vie }} |||
+      {{ sentence_ind }}'
+    metadata: *id001
+    name: translate-this-vie-ind
+    reference: Basic translation (Vietnamese into Indonesian)
+  93eb1690-258f-4bc8-8caa-f5465dcda66f: !Template
+    answer_choices: null
+    id: 93eb1690-258f-4bc8-8caa-f5465dcda66f
+    jinja: 'Translate this from Nepali into Lingala: {{ sentence_npi }} ||| {{ sentence_lin
+      }}'
+    metadata: *id001
+    name: translate-this-npi-lin
+    reference: Basic translation (Nepali into Lingala)
+  9404ecbc-8651-42cb-8e11-80b183be1ac9: !Template
+    answer_choices: null
+    id: 9404ecbc-8651-42cb-8e11-80b183be1ac9
+    jinja: 'Translate this from Tamil into Catalan: {{ sentence_tam }} ||| {{ sentence_cat
+      }}'
+    metadata: *id001
+    name: translate-this-tam-cat
+    reference: Basic translation (Tamil into Catalan)
+  94407c68-fa3c-4596-b29c-3fcda48c9f50: !Template
+    answer_choices: null
+    id: 94407c68-fa3c-4596-b29c-3fcda48c9f50
+    jinja: 'Translate this from English into traditional Chinese: {{ sentence_eng
+      }} ||| {{ sentence_zho_trad }}'
+    metadata: *id001
+    name: translate-this-eng-zho_trad
+    reference: Basic translation (English into traditional Chinese)
+  9461f1bc-18bb-4d58-a4ee-b8773911c392: !Template
+    answer_choices: null
+    id: 9461f1bc-18bb-4d58-a4ee-b8773911c392
+    jinja: 'Translate this from simplified Chinese into Nepali: {{ sentence_zho_simpl
+      }} ||| {{ sentence_npi }}'
+    metadata: *id001
+    name: translate-this-zho_simpl-npi
+    reference: Basic translation (simplified Chinese into Nepali)
+  94b1518e-8b8a-4ab2-bbb9-da6e36970345: !Template
+    answer_choices: null
+    id: 94b1518e-8b8a-4ab2-bbb9-da6e36970345
+    jinja: 'Translate this from Tamil into Xhosa: {{ sentence_tam }} ||| {{ sentence_xho
+      }}'
+    metadata: *id001
+    name: translate-this-tam-xho
+    reference: Basic translation (Tamil into Xhosa)
+  94fa1aaa-fc5d-4f98-ba94-c0321f61f805: !Template
+    answer_choices: null
+    id: 94fa1aaa-fc5d-4f98-ba94-c0321f61f805
+    jinja: 'Translate this from French into Lingala: {{ sentence_fra }} ||| {{ sentence_lin
+      }}'
+    metadata: *id001
+    name: translate-this-fra-lin
+    reference: Basic translation (French into Lingala)
+  95200ec1-e692-494c-a896-f1173f012554: !Template
+    answer_choices: null
+    id: 95200ec1-e692-494c-a896-f1173f012554
+    jinja: 'Translate this from Nepali into Arabic: {{ sentence_npi }} ||| {{ sentence_ara
+      }}'
+    metadata: *id001
+    name: translate-this-npi-ara
+    reference: Basic translation (Nepali into Arabic)
+  954f0bfe-ef88-486b-ab30-7a3aa00048c9: !Template
+    answer_choices: null
+    id: 954f0bfe-ef88-486b-ab30-7a3aa00048c9
+    jinja: 'Translate this from Kannada into Latin American Spanish: {{ sentence_kan
+      }} ||| {{ sentence_spa }}'
+    metadata: *id001
+    name: translate-this-kan-spa
+    reference: Basic translation (Kannada into Latin American Spanish)
+  959193da-5235-488c-a7ac-cd83bce7d27f: !Template
+    answer_choices: null
+    id: 959193da-5235-488c-a7ac-cd83bce7d27f
+    jinja: 'Translate this from Zulu into Vietnamese: {{ sentence_zul }} ||| {{ sentence_vie
+      }}'
+    metadata: *id001
+    name: translate-this-zul-vie
+    reference: Basic translation (Zulu into Vietnamese)
+  959293ca-d440-4125-aaa3-ba0b2ecd33b5: !Template
+    answer_choices: null
+    id: 959293ca-d440-4125-aaa3-ba0b2ecd33b5
+    jinja: 'Translate this from Tamil into Zulu: {{ sentence_tam }} ||| {{ sentence_zul
+      }}'
+    metadata: *id001
+    name: translate-this-tam-zul
+    reference: Basic translation (Tamil into Zulu)
+  95e66213-fd07-4a30-ab93-11d4f5aa2386: !Template
+    answer_choices: null
+    id: 95e66213-fd07-4a30-ab93-11d4f5aa2386
+    jinja: 'Translate this from Brazilian Portuguese into Wolof: {{ sentence_por }}
+      ||| {{ sentence_wol }}'
+    metadata: *id001
+    name: translate-this-por-wol
+    reference: Basic translation (Brazilian Portuguese into Wolof)
+  95ebd987-db46-4741-a7bd-6564e2797b3a: !Template
+    answer_choices: null
+    id: 95ebd987-db46-4741-a7bd-6564e2797b3a
+    jinja: 'Translate this from Latin American Spanish into Catalan: {{ sentence_spa
+      }} ||| {{ sentence_cat }}'
+    metadata: *id001
+    name: translate-this-spa-cat
+    reference: Basic translation (Latin American Spanish into Catalan)
+  961c99c7-498a-431e-a8db-cbd1ef01b127: !Template
+    answer_choices: null
+    id: 961c99c7-498a-431e-a8db-cbd1ef01b127
+    jinja: 'Translate this from Vietnamese into Telugu: {{ sentence_vie }} ||| {{
+      sentence_tel }}'
+    metadata: *id001
+    name: translate-this-vie-tel
+    reference: Basic translation (Vietnamese into Telugu)
+  965a7eb0-5612-48d3-aa0a-ab38f6535b28: !Template
+    answer_choices: null
+    id: 965a7eb0-5612-48d3-aa0a-ab38f6535b28
+    jinja: 'Translate this from Vietnamese into Nepali: {{ sentence_vie }} ||| {{
+      sentence_npi }}'
+    metadata: *id001
+    name: translate-this-vie-npi
+    reference: Basic translation (Vietnamese into Nepali)
+  96be4092-dad7-4185-a12a-a24e5279582c: !Template
+    answer_choices: null
+    id: 96be4092-dad7-4185-a12a-a24e5279582c
+    jinja: 'Translate this from Malayalam into Gujarati: {{ sentence_mal }} ||| {{
+      sentence_guj }}'
+    metadata: *id001
+    name: translate-this-mal-guj
+    reference: Basic translation (Malayalam into Gujarati)
+  97396f78-79d0-492d-adc1-c7f7c771a570: !Template
+    answer_choices: null
+    id: 97396f78-79d0-492d-adc1-c7f7c771a570
+    jinja: 'Translate this from Brazilian Portuguese into Indonesian: {{ sentence_por
+      }} ||| {{ sentence_ind }}'
+    metadata: *id001
+    name: translate-this-por-ind
+    reference: Basic translation (Brazilian Portuguese into Indonesian)
+  973b6567-d4ec-44b8-9c8e-d37ea9acc0c2: !Template
+    answer_choices: null
+    id: 973b6567-d4ec-44b8-9c8e-d37ea9acc0c2
+    jinja: 'Translate this from Catalan into Malayalam: {{ sentence_cat }} ||| {{
+      sentence_mal }}'
+    metadata: *id001
+    name: translate-this-cat-mal
+    reference: Basic translation (Catalan into Malayalam)
+  9774e6eb-a016-4e6e-b78d-8d298cdc9177: !Template
+    answer_choices: null
+    id: 9774e6eb-a016-4e6e-b78d-8d298cdc9177
+    jinja: 'Translate this from Nepali into Wolof: {{ sentence_npi }} ||| {{ sentence_wol
+      }}'
+    metadata: *id001
+    name: translate-this-npi-wol
+    reference: Basic translation (Nepali into Wolof)
+  9792b496-7803-4803-9b18-7e1fd0e3805c: !Template
+    answer_choices: null
+    id: 9792b496-7803-4803-9b18-7e1fd0e3805c
+    jinja: 'Translate this from Urdu into Northern Sotho: {{ sentence_urd }} ||| {{
+      sentence_nso }}'
+    metadata: *id001
+    name: translate-this-urd-nso
+    reference: Basic translation (Urdu into Northern Sotho)
+  97b24bd3-f75a-447d-a9cc-5b790aee5860: !Template
+    answer_choices: null
+    id: 97b24bd3-f75a-447d-a9cc-5b790aee5860
+    jinja: 'Translate this from Xhosa into Zulu: {{ sentence_xho }} ||| {{ sentence_zul
+      }}'
+    metadata: *id001
+    name: translate-this-xho-zul
+    reference: Basic translation (Xhosa into Zulu)
+  98674636-4842-45e1-a92f-d122a587183f: !Template
+    answer_choices: null
+    id: 98674636-4842-45e1-a92f-d122a587183f
+    jinja: 'Translate this from Brazilian Portuguese into Vietnamese: {{ sentence_por
+      }} ||| {{ sentence_vie }}'
+    metadata: *id001
+    name: translate-this-por-vie
+    reference: Basic translation (Brazilian Portuguese into Vietnamese)
+  988f32b6-4ac9-4cc2-896c-1a958f7f1442: !Template
+    answer_choices: null
+    id: 988f32b6-4ac9-4cc2-896c-1a958f7f1442
+    jinja: 'Translate this from Swahili into Lingala: {{ sentence_swh }} ||| {{ sentence_lin
+      }}'
+    metadata: *id001
+    name: translate-this-swh-lin
+    reference: Basic translation (Swahili into Lingala)
+  989432fc-0256-4eff-b195-a53f1c781574: !Template
+    answer_choices: null
+    id: 989432fc-0256-4eff-b195-a53f1c781574
+    jinja: 'Translate this from Bengali into Tamil: {{ sentence_ben }} ||| {{ sentence_tam
+      }}'
+    metadata: *id001
+    name: translate-this-ben-tam
+    reference: Basic translation (Bengali into Tamil)
+  98b95025-a9a6-423f-8f5e-99fef1ec8933: !Template
+    answer_choices: null
+    id: 98b95025-a9a6-423f-8f5e-99fef1ec8933
+    jinja: 'Translate this from Brazilian Portuguese into Arabic: {{ sentence_por
+      }} ||| {{ sentence_ara }}'
+    metadata: *id001
+    name: translate-this-por-ara
+    reference: Basic translation (Brazilian Portuguese into Arabic)
+  98baf538-169e-411e-8ea1-21106b8ddfaf: !Template
+    answer_choices: null
+    id: 98baf538-169e-411e-8ea1-21106b8ddfaf
+    jinja: 'Translate this from Indonesian into Gujarati: {{ sentence_ind }} ||| {{
+      sentence_guj }}'
+    metadata: *id001
+    name: translate-this-ind-guj
+    reference: Basic translation (Indonesian into Gujarati)
+  9913b24d-0c4b-4555-b378-440570b17451: !Template
+    answer_choices: null
+    id: 9913b24d-0c4b-4555-b378-440570b17451
+    jinja: 'Translate this from Urdu into Lingala: {{ sentence_urd }} ||| {{ sentence_lin
+      }}'
+    metadata: *id001
+    name: translate-this-urd-lin
+    reference: Basic translation (Urdu into Lingala)
+  99d1798b-17ba-424b-9bd8-56ab4140f2f6: !Template
+    answer_choices: null
+    id: 99d1798b-17ba-424b-9bd8-56ab4140f2f6
+    jinja: 'Translate this from Bengali into Yoruba: {{ sentence_ben }} ||| {{ sentence_yor
+      }}'
+    metadata: *id001
+    name: translate-this-ben-yor
+    reference: Basic translation (Bengali into Yoruba)
+  9a2be627-877e-4e04-9b81-011da2dc0f57: !Template
+    answer_choices: null
+    id: 9a2be627-877e-4e04-9b81-011da2dc0f57
+    jinja: 'Translate this from Swahili into Catalan: {{ sentence_swh }} ||| {{ sentence_cat
+      }}'
+    metadata: *id001
+    name: translate-this-swh-cat
+    reference: Basic translation (Swahili into Catalan)
+  9a72a33a-2216-44a9-aa06-c0c2584ea158: !Template
+    answer_choices: null
+    id: 9a72a33a-2216-44a9-aa06-c0c2584ea158
+    jinja: 'Translate this from Vietnamese into Assamese: {{ sentence_vie }} ||| {{
+      sentence_asm }}'
+    metadata: *id001
+    name: translate-this-vie-asm
+    reference: Basic translation (Vietnamese into Assamese)
+  9a901179-5723-4e19-ab26-b8469d50cbf8: !Template
+    answer_choices: null
+    id: 9a901179-5723-4e19-ab26-b8469d50cbf8
+    jinja: 'Translate this from French into Telugu: {{ sentence_fra }} ||| {{ sentence_tel
+      }}'
+    metadata: *id001
+    name: translate-this-fra-tel
+    reference: Basic translation (French into Telugu)
+  9acad58e-1465-43f7-b90c-1288339494d5: !Template
+    answer_choices: null
+    id: 9acad58e-1465-43f7-b90c-1288339494d5
+    jinja: 'Translate this from French into Bengali: {{ sentence_fra }} ||| {{ sentence_ben
+      }}'
+    metadata: *id001
+    name: translate-this-fra-ben
+    reference: Basic translation (French into Bengali)
+  9b02b896-a217-4731-b8ad-853c08686d79: !Template
+    answer_choices: null
+    id: 9b02b896-a217-4731-b8ad-853c08686d79
+    jinja: 'Translate this from Telugu into Vietnamese: {{ sentence_tel }} ||| {{
+      sentence_vie }}'
+    metadata: *id001
+    name: translate-this-tel-vie
+    reference: Basic translation (Telugu into Vietnamese)
+  9c0a0f4b-65ea-4e95-84c7-006e916012ad: !Template
+    answer_choices: null
+    id: 9c0a0f4b-65ea-4e95-84c7-006e916012ad
+    jinja: 'Translate this from Northern Sotho into Yoruba: {{ sentence_nso }} |||
+      {{ sentence_yor }}'
+    metadata: *id001
+    name: translate-this-nso-yor
+    reference: Basic translation (Northern Sotho into Yoruba)
+  9c62fe3e-62ea-45b6-8f95-1c2ec7561f73: !Template
+    answer_choices: null
+    id: 9c62fe3e-62ea-45b6-8f95-1c2ec7561f73
+    jinja: 'Translate this from Marathi into Malayalam: {{ sentence_mar }} ||| {{
+      sentence_mal }}'
+    metadata: *id001
+    name: translate-this-mar-mal
+    reference: Basic translation (Marathi into Malayalam)
+  9c660ad0-c874-41a8-8721-891021c11d6e: !Template
+    answer_choices: null
+    id: 9c660ad0-c874-41a8-8721-891021c11d6e
+    jinja: 'Translate this from Tamil into Arabic: {{ sentence_tam }} ||| {{ sentence_ara
+      }}'
+    metadata: *id001
+    name: translate-this-tam-ara
+    reference: Basic translation (Tamil into Arabic)
+  9c6d1f25-3864-4378-b33a-344bd8f7ac84: !Template
+    answer_choices: null
+    id: 9c6d1f25-3864-4378-b33a-344bd8f7ac84
+    jinja: 'Translate this from Vietnamese into Zulu: {{ sentence_vie }} ||| {{ sentence_zul
+      }}'
+    metadata: *id001
+    name: translate-this-vie-zul
+    reference: Basic translation (Vietnamese into Zulu)
+  9d8b53b2-6500-4420-9c17-9345d800bf88: !Template
+    answer_choices: null
+    id: 9d8b53b2-6500-4420-9c17-9345d800bf88
+    jinja: 'Translate this from Catalan into Arabic: {{ sentence_cat }} ||| {{ sentence_ara
+      }}'
+    metadata: *id001
+    name: translate-this-cat-ara
+    reference: Basic translation (Catalan into Arabic)
+  9e86735a-2ef1-4f51-997f-bd2f2e9547b1: !Template
+    answer_choices: null
+    id: 9e86735a-2ef1-4f51-997f-bd2f2e9547b1
+    jinja: 'Translate this from Zulu into Urdu: {{ sentence_zul }} ||| {{ sentence_urd
+      }}'
+    metadata: *id001
+    name: translate-this-zul-urd
+    reference: Basic translation (Zulu into Urdu)
+  9e8fd56a-911e-4b69-8602-ceb3a0de1b0c: !Template
+    answer_choices: null
+    id: 9e8fd56a-911e-4b69-8602-ceb3a0de1b0c
+    jinja: 'Translate this from Nepali into Igbo: {{ sentence_npi }} ||| {{ sentence_ibo
+      }}'
+    metadata: *id001
+    name: translate-this-npi-ibo
+    reference: Basic translation (Nepali into Igbo)
+  9ead9648-6b5d-4acb-8fee-755c1d692018: !Template
+    answer_choices: null
+    id: 9ead9648-6b5d-4acb-8fee-755c1d692018
+    jinja: 'Translate this from Arabic into Indonesian: {{ sentence_ara }} ||| {{
+      sentence_ind }}'
+    metadata: *id001
+    name: translate-this-ara-ind
+    reference: Basic translation (Arabic into Indonesian)
+  9f4536b6-30c8-47f8-b6be-2fde89ac30f6: !Template
+    answer_choices: null
+    id: 9f4536b6-30c8-47f8-b6be-2fde89ac30f6
+    jinja: 'Translate this from Assamese into Telugu: {{ sentence_asm }} ||| {{ sentence_tel
+      }}'
+    metadata: *id001
+    name: translate-this-asm-tel
+    reference: Basic translation (Assamese into Telugu)
+  a044d977-c241-4120-af85-ac2ee3cd728f: !Template
+    answer_choices: null
+    id: a044d977-c241-4120-af85-ac2ee3cd728f
+    jinja: 'Translate this from Nepali into English: {{ sentence_npi }} ||| {{ sentence_eng
+      }}'
+    metadata: *id001
+    name: translate-this-npi-eng
+    reference: Basic translation (Nepali into English)
+  a047c265-8ab4-4a35-8afb-943124b95628: !Template
+    answer_choices: null
+    id: a047c265-8ab4-4a35-8afb-943124b95628
+    jinja: 'Translate this from Arabic into Xhosa: {{ sentence_ara }} ||| {{ sentence_xho
+      }}'
+    metadata: *id001
+    name: translate-this-ara-xho
+    reference: Basic translation (Arabic into Xhosa)
+  a08f964e-8640-4dbe-bf3d-727eec5795fc: !Template
+    answer_choices: null
+    id: a08f964e-8640-4dbe-bf3d-727eec5795fc
+    jinja: 'Translate this from Swahili into Xhosa: {{ sentence_swh }} ||| {{ sentence_xho
+      }}'
+    metadata: *id001
+    name: translate-this-swh-xho
+    reference: Basic translation (Swahili into Xhosa)
+  a1418420-da8d-477a-a041-16e4794c616b: !Template
+    answer_choices: null
+    id: a1418420-da8d-477a-a041-16e4794c616b
+    jinja: 'Translate this from Telugu into Hindi: {{ sentence_tel }} ||| {{ sentence_hin
+      }}'
+    metadata: *id001
+    name: translate-this-tel-hin
+    reference: Basic translation (Telugu into Hindi)
+  a2911c7f-2f1c-43b1-b29b-693294dfc767: !Template
+    answer_choices: null
+    id: a2911c7f-2f1c-43b1-b29b-693294dfc767
+    jinja: 'Translate this from Gujarati into simplified Chinese: {{ sentence_guj
+      }} ||| {{ sentence_zho_simpl }}'
+    metadata: *id001
+    name: translate-this-guj-zho_simpl
+    reference: Basic translation (Gujarati into simplified Chinese)
+  a29285fa-e6e8-465a-84ed-815f3a528da4: !Template
+    answer_choices: null
+    id: a29285fa-e6e8-465a-84ed-815f3a528da4
+    jinja: 'Translate this from English into Igbo: {{ sentence_eng }} ||| {{ sentence_ibo
+      }}'
+    metadata: *id001
+    name: translate-this-eng-ibo
+    reference: Basic translation (English into Igbo)
+  a296cea6-93f1-4568-8ced-15883cacbf80: !Template
+    answer_choices: null
+    id: a296cea6-93f1-4568-8ced-15883cacbf80
+    jinja: 'Translate this from Wolof into French: {{ sentence_wol }} ||| {{ sentence_fra
+      }}'
+    metadata: *id001
+    name: translate-this-wol-fra
+    reference: Basic translation (Wolof into French)
+  a2b64381-acc9-414b-b618-5b4f19e158de: !Template
+    answer_choices: null
+    id: a2b64381-acc9-414b-b618-5b4f19e158de
+    jinja: 'Translate this from Oriya into Zulu: {{ sentence_ory }} ||| {{ sentence_zul
+      }}'
+    metadata: *id001
+    name: translate-this-ory-zul
+    reference: Basic translation (Oriya into Zulu)
+  a2ce0109-9a56-4344-9e77-3bfaaa4acaaf: !Template
+    answer_choices: null
+    id: a2ce0109-9a56-4344-9e77-3bfaaa4acaaf
+    jinja: 'Translate this from traditional Chinese into Hindi: {{ sentence_zho_trad
+      }} ||| {{ sentence_hin }}'
+    metadata: *id001
+    name: translate-this-zho_trad-hin
+    reference: Basic translation (traditional Chinese into Hindi)
+  a3045879-e92e-4804-8ff1-2003938e89b9: !Template
+    answer_choices: null
+    id: a3045879-e92e-4804-8ff1-2003938e89b9
+    jinja: 'Translate this from Zulu into Northern Sotho: {{ sentence_zul }} ||| {{
+      sentence_nso }}'
+    metadata: *id001
+    name: translate-this-zul-nso
+    reference: Basic translation (Zulu into Northern Sotho)
+  a316506e-8418-44e3-8c3e-75a10e528800: !Template
+    answer_choices: null
+    id: a316506e-8418-44e3-8c3e-75a10e528800
+    jinja: 'Translate this from Indonesian into traditional Chinese: {{ sentence_ind
+      }} ||| {{ sentence_zho_trad }}'
+    metadata: *id001
+    name: translate-this-ind-zho_trad
+    reference: Basic translation (Indonesian into traditional Chinese)
+  a3605953-bfb7-44e2-b296-e43881340f7c: !Template
+    answer_choices: null
+    id: a3605953-bfb7-44e2-b296-e43881340f7c
+    jinja: 'Translate this from Oriya into Vietnamese: {{ sentence_ory }} ||| {{ sentence_vie
+      }}'
+    metadata: *id001
+    name: translate-this-ory-vie
+    reference: Basic translation (Oriya into Vietnamese)
+  a36b3e95-a2f1-4b15-8007-b13c77933e8d: !Template
+    answer_choices: null
+    id: a36b3e95-a2f1-4b15-8007-b13c77933e8d
+    jinja: 'Translate this from Gujarati into Swahili: {{ sentence_guj }} ||| {{ sentence_swh
+      }}'
+    metadata: *id001
+    name: translate-this-guj-swh
+    reference: Basic translation (Gujarati into Swahili)
+  a39ac5e6-2cdd-4146-9cbe-a344cdef8b19: !Template
+    answer_choices: null
+    id: a39ac5e6-2cdd-4146-9cbe-a344cdef8b19
+    jinja: 'Translate this from Oriya into Gujarati: {{ sentence_ory }} ||| {{ sentence_guj
+      }}'
+    metadata: *id001
+    name: translate-this-ory-guj
+    reference: Basic translation (Oriya into Gujarati)
+  a3da37ff-ffeb-4e14-89bc-52c3559af59e: !Template
+    answer_choices: null
+    id: a3da37ff-ffeb-4e14-89bc-52c3559af59e
+    jinja: 'Translate this from traditional Chinese into Arabic: {{ sentence_zho_trad
+      }} ||| {{ sentence_ara }}'
+    metadata: *id001
+    name: translate-this-zho_trad-ara
+    reference: Basic translation (traditional Chinese into Arabic)
+  a40c071f-ed98-46f5-a684-6ee155deef38: !Template
+    answer_choices: null
+    id: a40c071f-ed98-46f5-a684-6ee155deef38
+    jinja: 'Translate this from Urdu into Catalan: {{ sentence_urd }} ||| {{ sentence_cat
+      }}'
+    metadata: *id001
+    name: translate-this-urd-cat
+    reference: Basic translation (Urdu into Catalan)
+  a42905f7-fb1f-4594-a986-aac568b712e0: !Template
+    answer_choices: null
+    id: a42905f7-fb1f-4594-a986-aac568b712e0
+    jinja: 'Translate this from Marathi into English: {{ sentence_mar }} ||| {{ sentence_eng
+      }}'
+    metadata: *id001
+    name: translate-this-mar-eng
+    reference: Basic translation (Marathi into English)
+  a4308d82-5851-4eea-a32f-d9aed28b54a9: !Template
+    answer_choices: null
+    id: a4308d82-5851-4eea-a32f-d9aed28b54a9
+    jinja: 'Translate this from Xhosa into Gujarati: {{ sentence_xho }} ||| {{ sentence_guj
+      }}'
+    metadata: *id001
+    name: translate-this-xho-guj
+    reference: Basic translation (Xhosa into Gujarati)
+  a439058c-8657-4160-8d4d-3a3dfc6787ee: !Template
+    answer_choices: null
+    id: a439058c-8657-4160-8d4d-3a3dfc6787ee
+    jinja: 'Translate this from Nepali into Xhosa: {{ sentence_npi }} ||| {{ sentence_xho
+      }}'
+    metadata: *id001
+    name: translate-this-npi-xho
+    reference: Basic translation (Nepali into Xhosa)
+  a450143b-dc42-42a4-954e-8a2e7d79ea80: !Template
+    answer_choices: null
+    id: a450143b-dc42-42a4-954e-8a2e7d79ea80
+    jinja: 'Translate this from English into Punjabi: {{ sentence_eng }} ||| {{ sentence_pan
+      }}'
+    metadata: *id001
+    name: translate-this-eng-pan
+    reference: Basic translation (English into Punjabi)
+  a4565e71-2199-4a1d-979f-3d93eab4470e: !Template
+    answer_choices: null
+    id: a4565e71-2199-4a1d-979f-3d93eab4470e
+    jinja: 'Translate this from Malayalam into simplified Chinese: {{ sentence_mal
+      }} ||| {{ sentence_zho_simpl }}'
+    metadata: *id001
+    name: translate-this-mal-zho_simpl
+    reference: Basic translation (Malayalam into simplified Chinese)
+  a45b102e-66d1-42f9-90fa-960e90ade1e9: !Template
+    answer_choices: null
+    id: a45b102e-66d1-42f9-90fa-960e90ade1e9
+    jinja: 'Translate this from French into Nepali: {{ sentence_fra }} ||| {{ sentence_npi
+      }}'
+    metadata: *id001
+    name: translate-this-fra-npi
+    reference: Basic translation (French into Nepali)
+  a4d65ac0-47b4-492f-817e-8e6da6f16c2f: !Template
+    answer_choices: null
+    id: a4d65ac0-47b4-492f-817e-8e6da6f16c2f
+    jinja: 'Translate this from Swahili into Northern Sotho: {{ sentence_swh }} |||
+      {{ sentence_nso }}'
+    metadata: *id001
+    name: translate-this-swh-nso
+    reference: Basic translation (Swahili into Northern Sotho)
+  a502ea5c-5008-4123-b273-79e5d5e696c0: !Template
+    answer_choices: null
+    id: a502ea5c-5008-4123-b273-79e5d5e696c0
+    jinja: 'Translate this from Marathi into Nepali: {{ sentence_mar }} ||| {{ sentence_npi
+      }}'
+    metadata: *id001
+    name: translate-this-mar-npi
+    reference: Basic translation (Marathi into Nepali)
+  a522d4e2-9603-4779-b42c-27203b426478: !Template
+    answer_choices: null
+    id: a522d4e2-9603-4779-b42c-27203b426478
+    jinja: 'Translate this from Kannada into simplified Chinese: {{ sentence_kan }}
+      ||| {{ sentence_zho_simpl }}'
+    metadata: *id001
+    name: translate-this-kan-zho_simpl
+    reference: Basic translation (Kannada into simplified Chinese)
+  a54581f3-da23-4e07-9404-a6881727812e: !Template
+    answer_choices: null
+    id: a54581f3-da23-4e07-9404-a6881727812e
+    jinja: 'Translate this from Bengali into Zulu: {{ sentence_ben }} ||| {{ sentence_zul
+      }}'
+    metadata: *id001
+    name: translate-this-ben-zul
+    reference: Basic translation (Bengali into Zulu)
+  a54da36b-fb14-4b47-901b-aea28e03be26: !Template
+    answer_choices: null
+    id: a54da36b-fb14-4b47-901b-aea28e03be26
+    jinja: 'Translate this from Northern Sotho into Igbo: {{ sentence_nso }} ||| {{
+      sentence_ibo }}'
+    metadata: *id001
+    name: translate-this-nso-ibo
+    reference: Basic translation (Northern Sotho into Igbo)
+  a5b9e54d-83f8-4015-bca6-374e84a58f7e: !Template
+    answer_choices: null
+    id: a5b9e54d-83f8-4015-bca6-374e84a58f7e
+    jinja: 'Translate this from Latin American Spanish into simplified Chinese: {{
+      sentence_spa }} ||| {{ sentence_zho_simpl }}'
+    metadata: *id001
+    name: translate-this-spa-zho_simpl
+    reference: Basic translation (Latin American Spanish into simplified Chinese)
+  a60c2b78-023a-4d06-a673-ab13b4644926: !Template
+    answer_choices: null
+    id: a60c2b78-023a-4d06-a673-ab13b4644926
+    jinja: 'Translate this from Kannada into Vietnamese: {{ sentence_kan }} ||| {{
+      sentence_vie }}'
+    metadata: *id001
+    name: translate-this-kan-vie
+    reference: Basic translation (Kannada into Vietnamese)
+  a62c24a2-138f-46d8-a034-d98e276777c9: !Template
+    answer_choices: null
+    id: a62c24a2-138f-46d8-a034-d98e276777c9
+    jinja: 'Translate this from Bengali into Northern Sotho: {{ sentence_ben }} |||
+      {{ sentence_nso }}'
+    metadata: *id001
+    name: translate-this-ben-nso
+    reference: Basic translation (Bengali into Northern Sotho)
+  a667f4bd-e14c-475b-b631-06bdd8d23b89: !Template
+    answer_choices: null
+    id: a667f4bd-e14c-475b-b631-06bdd8d23b89
+    jinja: 'Translate this from Arabic into Urdu: {{ sentence_ara }} ||| {{ sentence_urd
+      }}'
+    metadata: *id001
+    name: translate-this-ara-urd
+    reference: Basic translation (Arabic into Urdu)
+  a669c5af-08a5-4200-a9ba-e6ec3779fb59: !Template
+    answer_choices: null
+    id: a669c5af-08a5-4200-a9ba-e6ec3779fb59
+    jinja: 'Translate this from Wolof into Latin American Spanish: {{ sentence_wol
+      }} ||| {{ sentence_spa }}'
+    metadata: *id001
+    name: translate-this-wol-spa
+    reference: Basic translation (Wolof into Latin American Spanish)
+  a6b4e13b-6214-497d-9bb3-91d14997a603: !Template
+    answer_choices: null
+    id: a6b4e13b-6214-497d-9bb3-91d14997a603
+    jinja: 'Translate this from simplified Chinese into Igbo: {{ sentence_zho_simpl
+      }} ||| {{ sentence_ibo }}'
+    metadata: *id001
+    name: translate-this-zho_simpl-ibo
+    reference: Basic translation (simplified Chinese into Igbo)
+  a6e4b48b-aba6-454c-bf67-e971a4458d0b: !Template
+    answer_choices: null
+    id: a6e4b48b-aba6-454c-bf67-e971a4458d0b
+    jinja: 'Translate this from Lingala into Urdu: {{ sentence_lin }} ||| {{ sentence_urd
+      }}'
+    metadata: *id001
+    name: translate-this-lin-urd
+    reference: Basic translation (Lingala into Urdu)
+  a74bf93d-9f63-4280-8a63-bdb9a71a534d: !Template
+    answer_choices: null
+    id: a74bf93d-9f63-4280-8a63-bdb9a71a534d
+    jinja: 'Translate this from Xhosa into Hindi: {{ sentence_xho }} ||| {{ sentence_hin
+      }}'
+    metadata: *id001
+    name: translate-this-xho-hin
+    reference: Basic translation (Xhosa into Hindi)
+  a7701737-6f95-4aa5-9f69-bb703062c585: !Template
+    answer_choices: null
+    id: a7701737-6f95-4aa5-9f69-bb703062c585
+    jinja: 'Translate this from Kannada into Catalan: {{ sentence_kan }} ||| {{ sentence_cat
+      }}'
+    metadata: *id001
+    name: translate-this-kan-cat
+    reference: Basic translation (Kannada into Catalan)
+  a7c86008-3433-492e-8fa4-44810248524f: !Template
+    answer_choices: null
+    id: a7c86008-3433-492e-8fa4-44810248524f
+    jinja: 'Translate this from traditional Chinese into Lingala: {{ sentence_zho_trad
+      }} ||| {{ sentence_lin }}'
+    metadata: *id001
+    name: translate-this-zho_trad-lin
+    reference: Basic translation (traditional Chinese into Lingala)
+  a7cb9c8f-e98d-400a-95c0-5e34b7757cd1: !Template
+    answer_choices: null
+    id: a7cb9c8f-e98d-400a-95c0-5e34b7757cd1
+    jinja: 'Translate this from Swahili into Kannada: {{ sentence_swh }} ||| {{ sentence_kan
+      }}'
+    metadata: *id001
+    name: translate-this-swh-kan
+    reference: Basic translation (Swahili into Kannada)
+  a862f3db-6780-44e7-be64-e0212c74592b: !Template
+    answer_choices: null
+    id: a862f3db-6780-44e7-be64-e0212c74592b
+    jinja: 'Translate this from Telugu into Bengali: {{ sentence_tel }} ||| {{ sentence_ben
+      }}'
+    metadata: *id001
+    name: translate-this-tel-ben
+    reference: Basic translation (Telugu into Bengali)
+  a8a8683c-bdd9-459e-84f2-d316b5dd0f19: !Template
+    answer_choices: null
+    id: a8a8683c-bdd9-459e-84f2-d316b5dd0f19
+    jinja: 'Translate this from Oriya into Bengali: {{ sentence_ory }} ||| {{ sentence_ben
+      }}'
+    metadata: *id001
+    name: translate-this-ory-ben
+    reference: Basic translation (Oriya into Bengali)
+  a93e9fa9-c308-40c3-a667-29dd9ef30ed1: !Template
+    answer_choices: null
+    id: a93e9fa9-c308-40c3-a667-29dd9ef30ed1
+    jinja: 'Translate this from Yoruba into Telugu: {{ sentence_yor }} ||| {{ sentence_tel
+      }}'
+    metadata: *id001
+    name: translate-this-yor-tel
+    reference: Basic translation (Yoruba into Telugu)
+  a9966c07-3cb2-42f2-a2da-b4d98cd0bf94: !Template
+    answer_choices: null
+    id: a9966c07-3cb2-42f2-a2da-b4d98cd0bf94
+    jinja: 'Translate this from Indonesian into Tamil: {{ sentence_ind }} ||| {{ sentence_tam
+      }}'
+    metadata: *id001
+    name: translate-this-ind-tam
+    reference: Basic translation (Indonesian into Tamil)
+  a99fb361-dd5a-4215-a436-ece06cc65bba: !Template
+    answer_choices: null
+    id: a99fb361-dd5a-4215-a436-ece06cc65bba
+    jinja: 'Translate this from Latin American Spanish into Gujarati: {{ sentence_spa
+      }} ||| {{ sentence_guj }}'
+    metadata: *id001
+    name: translate-this-spa-guj
+    reference: Basic translation (Latin American Spanish into Gujarati)
+  a9de46bb-7978-4216-8c59-40610b11dd6e: !Template
+    answer_choices: null
+    id: a9de46bb-7978-4216-8c59-40610b11dd6e
+    jinja: 'Translate this from Yoruba into Hindi: {{ sentence_yor }} ||| {{ sentence_hin
+      }}'
+    metadata: *id001
+    name: translate-this-yor-hin
+    reference: Basic translation (Yoruba into Hindi)
+  aa086c90-aca8-42e4-87b2-91327d8b2889: !Template
+    answer_choices: null
+    id: aa086c90-aca8-42e4-87b2-91327d8b2889
+    jinja: 'Translate this from Igbo into Urdu: {{ sentence_ibo }} ||| {{ sentence_urd
+      }}'
+    metadata: *id001
+    name: translate-this-ibo-urd
+    reference: Basic translation (Igbo into Urdu)
+  aa142e17-b4f2-492b-93b8-252e3e5a6987: !Template
+    answer_choices: null
+    id: aa142e17-b4f2-492b-93b8-252e3e5a6987
+    jinja: 'Translate this from Swahili into French: {{ sentence_swh }} ||| {{ sentence_fra
+      }}'
+    metadata: *id001
+    name: translate-this-swh-fra
+    reference: Basic translation (Swahili into French)
+  aa1d7e93-7d09-4217-834c-5f1fe7462d69: !Template
+    answer_choices: null
+    id: aa1d7e93-7d09-4217-834c-5f1fe7462d69
+    jinja: 'Translate this from Latin American Spanish into Tamil: {{ sentence_spa
+      }} ||| {{ sentence_tam }}'
+    metadata: *id001
+    name: translate-this-spa-tam
+    reference: Basic translation (Latin American Spanish into Tamil)
+  aba3910f-6042-4ef0-aaf9-72c1d75b01af: !Template
+    answer_choices: null
+    id: aba3910f-6042-4ef0-aaf9-72c1d75b01af
+    jinja: 'Translate this from Hindi into Brazilian Portuguese: {{ sentence_hin }}
+      ||| {{ sentence_por }}'
+    metadata: *id001
+    name: translate-this-hin-por
+    reference: Basic translation (Hindi into Brazilian Portuguese)
+  abbcbf36-5438-469f-b5d4-82a2df79b1e3: !Template
+    answer_choices: null
+    id: abbcbf36-5438-469f-b5d4-82a2df79b1e3
+    jinja: 'Translate this from Kannada into Urdu: {{ sentence_kan }} ||| {{ sentence_urd
+      }}'
+    metadata: *id001
+    name: translate-this-kan-urd
+    reference: Basic translation (Kannada into Urdu)
+  ac064fd2-d230-4b38-b5b5-b4b47f513246: !Template
+    answer_choices: null
+    id: ac064fd2-d230-4b38-b5b5-b4b47f513246
+    jinja: 'Translate this from Kannada into Tamil: {{ sentence_kan }} ||| {{ sentence_tam
+      }}'
+    metadata: *id001
+    name: translate-this-kan-tam
+    reference: Basic translation (Kannada into Tamil)
+  ac082d0c-265e-4743-a800-8f015a304f16: !Template
+    answer_choices: null
+    id: ac082d0c-265e-4743-a800-8f015a304f16
+    jinja: 'Translate this from Northern Sotho into Nepali: {{ sentence_nso }} |||
+      {{ sentence_npi }}'
+    metadata: *id001
+    name: translate-this-nso-npi
+    reference: Basic translation (Northern Sotho into Nepali)
+  ac118428-4719-4db3-b934-a5ea8a355d58: !Template
+    answer_choices: null
+    id: ac118428-4719-4db3-b934-a5ea8a355d58
+    jinja: 'Translate this from Assamese into Marathi: {{ sentence_asm }} ||| {{ sentence_mar
+      }}'
+    metadata: *id001
+    name: translate-this-asm-mar
+    reference: Basic translation (Assamese into Marathi)
+  ac2aa189-e945-4ab3-b7d2-0a52fe2ab498: !Template
+    answer_choices: null
+    id: ac2aa189-e945-4ab3-b7d2-0a52fe2ab498
+    jinja: 'Translate this from traditional Chinese into Oriya: {{ sentence_zho_trad
+      }} ||| {{ sentence_ory }}'
+    metadata: *id001
+    name: translate-this-zho_trad-ory
+    reference: Basic translation (traditional Chinese into Oriya)
+  ac7fcfde-0b90-46c5-a2bc-06fc42c75389: !Template
+    answer_choices: null
+    id: ac7fcfde-0b90-46c5-a2bc-06fc42c75389
+    jinja: 'Translate this from Punjabi into Igbo: {{ sentence_pan }} ||| {{ sentence_ibo
+      }}'
+    metadata: *id001
+    name: translate-this-pan-ibo
+    reference: Basic translation (Punjabi into Igbo)
+  acaad142-638d-4ac5-b190-80a524386d34: !Template
+    answer_choices: null
+    id: acaad142-638d-4ac5-b190-80a524386d34
+    jinja: 'Translate this from Catalan into Assamese: {{ sentence_cat }} ||| {{ sentence_asm
+      }}'
+    metadata: *id001
+    name: translate-this-cat-asm
+    reference: Basic translation (Catalan into Assamese)
+  acab5335-b17c-457a-a149-d00439e36eac: !Template
+    answer_choices: null
+    id: acab5335-b17c-457a-a149-d00439e36eac
+    jinja: 'Translate this from Gujarati into Marathi: {{ sentence_guj }} ||| {{ sentence_mar
+      }}'
+    metadata: *id001
+    name: translate-this-guj-mar
+    reference: Basic translation (Gujarati into Marathi)
+  acd94e11-ba04-466c-bf53-794b5fe3e727: !Template
+    answer_choices: null
+    id: acd94e11-ba04-466c-bf53-794b5fe3e727
+    jinja: 'Translate this from Swahili into Yoruba: {{ sentence_swh }} ||| {{ sentence_yor
+      }}'
+    metadata: *id001
+    name: translate-this-swh-yor
+    reference: Basic translation (Swahili into Yoruba)
+  ace2a1f1-9faa-4e24-8278-44752c6602ab: !Template
+    answer_choices: null
+    id: ace2a1f1-9faa-4e24-8278-44752c6602ab
+    jinja: 'Translate this from French into Assamese: {{ sentence_fra }} ||| {{ sentence_asm
+      }}'
+    metadata: *id001
+    name: translate-this-fra-asm
+    reference: Basic translation (French into Assamese)
+  ace7dbb0-e458-438c-850d-f2bd76117551: !Template
+    answer_choices: null
+    id: ace7dbb0-e458-438c-850d-f2bd76117551
+    jinja: 'Translate this from Arabic into Zulu: {{ sentence_ara }} ||| {{ sentence_zul
+      }}'
+    metadata: *id001
+    name: translate-this-ara-zul
+    reference: Basic translation (Arabic into Zulu)
+  acec27e9-8d07-4124-b0e5-05faca954281: !Template
+    answer_choices: null
+    id: acec27e9-8d07-4124-b0e5-05faca954281
+    jinja: 'Translate this from Indonesian into Punjabi: {{ sentence_ind }} ||| {{
+      sentence_pan }}'
+    metadata: *id001
+    name: translate-this-ind-pan
+    reference: Basic translation (Indonesian into Punjabi)
+  acfbc840-c276-4daf-ab75-dd398c502fb2: !Template
+    answer_choices: null
+    id: acfbc840-c276-4daf-ab75-dd398c502fb2
+    jinja: 'Translate this from English into Lingala: {{ sentence_eng }} ||| {{ sentence_lin
+      }}'
+    metadata: *id001
+    name: translate-this-eng-lin
+    reference: Basic translation (English into Lingala)
+  ad547fc7-73cc-4a79-be75-dae766692484: !Template
+    answer_choices: null
+    id: ad547fc7-73cc-4a79-be75-dae766692484
+    jinja: 'Translate this from Gujarati into Arabic: {{ sentence_guj }} ||| {{ sentence_ara
+      }}'
+    metadata: *id001
+    name: translate-this-guj-ara
+    reference: Basic translation (Gujarati into Arabic)
+  adbba01e-6cbd-47b4-90af-e25a2c0cc6f9: !Template
+    answer_choices: null
+    id: adbba01e-6cbd-47b4-90af-e25a2c0cc6f9
+    jinja: 'Translate this from Lingala into Bengali: {{ sentence_lin }} ||| {{ sentence_ben
+      }}'
+    metadata: *id001
+    name: translate-this-lin-ben
+    reference: Basic translation (Lingala into Bengali)
+  addcea7a-812a-43f2-b9d3-e7124320b8b0: !Template
+    answer_choices: null
+    id: addcea7a-812a-43f2-b9d3-e7124320b8b0
+    jinja: 'Translate this from French into Xhosa: {{ sentence_fra }} ||| {{ sentence_xho
+      }}'
+    metadata: *id001
+    name: translate-this-fra-xho
+    reference: Basic translation (French into Xhosa)
+  ae1775c7-04fd-4c25-b72f-330055b28a0b: !Template
+    answer_choices: null
+    id: ae1775c7-04fd-4c25-b72f-330055b28a0b
+    jinja: 'Translate this from Wolof into Igbo: {{ sentence_wol }} ||| {{ sentence_ibo
+      }}'
+    metadata: *id001
+    name: translate-this-wol-ibo
+    reference: Basic translation (Wolof into Igbo)
+  ae2d4bd8-ac05-401b-8eca-ed69bb463346: !Template
+    answer_choices: null
+    id: ae2d4bd8-ac05-401b-8eca-ed69bb463346
+    jinja: 'Translate this from Wolof into Malayalam: {{ sentence_wol }} ||| {{ sentence_mal
+      }}'
+    metadata: *id001
+    name: translate-this-wol-mal
+    reference: Basic translation (Wolof into Malayalam)
+  ae5bd97a-0025-48d5-80db-c81f24314a16: !Template
+    answer_choices: null
+    id: ae5bd97a-0025-48d5-80db-c81f24314a16
+    jinja: 'Translate this from Latin American Spanish into Urdu: {{ sentence_spa
+      }} ||| {{ sentence_urd }}'
+    metadata: *id001
+    name: translate-this-spa-urd
+    reference: Basic translation (Latin American Spanish into Urdu)
+  aeb4995a-4ff7-4e51-842a-ab72346fd58e: !Template
+    answer_choices: null
+    id: aeb4995a-4ff7-4e51-842a-ab72346fd58e
+    jinja: 'Translate this from Catalan into French: {{ sentence_cat }} ||| {{ sentence_fra
+      }}'
+    metadata: *id001
+    name: translate-this-cat-fra
+    reference: Basic translation (Catalan into French)
+  aed210aa-c85f-441e-a52e-5a2188b1e637: !Template
+    answer_choices: null
+    id: aed210aa-c85f-441e-a52e-5a2188b1e637
+    jinja: 'Translate this from English into Indonesian: {{ sentence_eng }} ||| {{
+      sentence_ind }}'
+    metadata: *id001
+    name: translate-this-eng-ind
+    reference: Basic translation (English into Indonesian)
+  af12f772-d4de-411d-ae2e-44a71c753127: !Template
+    answer_choices: null
+    id: af12f772-d4de-411d-ae2e-44a71c753127
+    jinja: 'Translate this from Igbo into English: {{ sentence_ibo }} ||| {{ sentence_eng
+      }}'
+    metadata: *id001
+    name: translate-this-ibo-eng
+    reference: Basic translation (Igbo into English)
+  af1c9226-59be-432d-82db-ef08993bf2f7: !Template
+    answer_choices: null
+    id: af1c9226-59be-432d-82db-ef08993bf2f7
+    jinja: 'Translate this from Igbo into Xhosa: {{ sentence_ibo }} ||| {{ sentence_xho
+      }}'
+    metadata: *id001
+    name: translate-this-ibo-xho
+    reference: Basic translation (Igbo into Xhosa)
+  af97d73b-0cec-4e18-aa47-4fa47ca265c1: !Template
+    answer_choices: null
+    id: af97d73b-0cec-4e18-aa47-4fa47ca265c1
+    jinja: 'Translate this from traditional Chinese into French: {{ sentence_zho_trad
+      }} ||| {{ sentence_fra }}'
+    metadata: *id001
+    name: translate-this-zho_trad-fra
+    reference: Basic translation (traditional Chinese into French)
+  af9b3b69-8cf1-4c61-9320-f5d4519279c2: !Template
+    answer_choices: null
+    id: af9b3b69-8cf1-4c61-9320-f5d4519279c2
+    jinja: 'Translate this from Zulu into Kannada: {{ sentence_zul }} ||| {{ sentence_kan
+      }}'
+    metadata: *id001
+    name: translate-this-zul-kan
+    reference: Basic translation (Zulu into Kannada)
+  aff7d459-8b3a-4259-8581-a5fd112f3397: !Template
+    answer_choices: null
+    id: aff7d459-8b3a-4259-8581-a5fd112f3397
+    jinja: 'Translate this from Telugu into Wolof: {{ sentence_tel }} ||| {{ sentence_wol
+      }}'
+    metadata: *id001
+    name: translate-this-tel-wol
+    reference: Basic translation (Telugu into Wolof)
+  b0c50783-c1cf-45b8-8e01-8490f9890c3b: !Template
+    answer_choices: null
+    id: b0c50783-c1cf-45b8-8e01-8490f9890c3b
+    jinja: 'Translate this from Urdu into English: {{ sentence_urd }} ||| {{ sentence_eng
+      }}'
+    metadata: *id001
+    name: translate-this-urd-eng
+    reference: Basic translation (Urdu into English)
+  b0dcf3d1-0ac9-4f06-b57c-2c0d95b8f249: !Template
+    answer_choices: null
+    id: b0dcf3d1-0ac9-4f06-b57c-2c0d95b8f249
+    jinja: 'Translate this from Xhosa into Oriya: {{ sentence_xho }} ||| {{ sentence_ory
+      }}'
+    metadata: *id001
+    name: translate-this-xho-ory
+    reference: Basic translation (Xhosa into Oriya)
+  b14a160b-f54a-4d32-b6e2-425ec11cbf59: !Template
+    answer_choices: null
+    id: b14a160b-f54a-4d32-b6e2-425ec11cbf59
+    jinja: 'Translate this from Telugu into Northern Sotho: {{ sentence_tel }} |||
+      {{ sentence_nso }}'
+    metadata: *id001
+    name: translate-this-tel-nso
+    reference: Basic translation (Telugu into Northern Sotho)
+  b14e3462-3acf-409a-9dee-a647026275fb: !Template
+    answer_choices: null
+    id: b14e3462-3acf-409a-9dee-a647026275fb
+    jinja: 'Translate this from Indonesian into Bengali: {{ sentence_ind }} ||| {{
+      sentence_ben }}'
+    metadata: *id001
+    name: translate-this-ind-ben
+    reference: Basic translation (Indonesian into Bengali)
+  b19d4804-de18-4c7b-b061-ccaa76aee1ab: !Template
+    answer_choices: null
+    id: b19d4804-de18-4c7b-b061-ccaa76aee1ab
+    jinja: 'Translate this from Oriya into simplified Chinese: {{ sentence_ory }}
+      ||| {{ sentence_zho_simpl }}'
+    metadata: *id001
+    name: translate-this-ory-zho_simpl
+    reference: Basic translation (Oriya into simplified Chinese)
+  b1b5cb7f-0cbd-4e10-9261-bea267a49dc8: !Template
+    answer_choices: null
+    id: b1b5cb7f-0cbd-4e10-9261-bea267a49dc8
+    jinja: 'Translate this from Swahili into Tamil: {{ sentence_swh }} ||| {{ sentence_tam
+      }}'
+    metadata: *id001
+    name: translate-this-swh-tam
+    reference: Basic translation (Swahili into Tamil)
+  b1e40283-714b-4b87-bbed-610309917a6a: !Template
+    answer_choices: null
+    id: b1e40283-714b-4b87-bbed-610309917a6a
+    jinja: 'Translate this from Bengali into traditional Chinese: {{ sentence_ben
+      }} ||| {{ sentence_zho_trad }}'
+    metadata: *id001
+    name: translate-this-ben-zho_trad
+    reference: Basic translation (Bengali into traditional Chinese)
+  b1e9d5ec-b97b-4bbf-9969-c0cd8cb0a66a: !Template
+    answer_choices: null
+    id: b1e9d5ec-b97b-4bbf-9969-c0cd8cb0a66a
+    jinja: 'Translate this from traditional Chinese into Malayalam: {{ sentence_zho_trad
+      }} ||| {{ sentence_mal }}'
+    metadata: *id001
+    name: translate-this-zho_trad-mal
+    reference: Basic translation (traditional Chinese into Malayalam)
+  b1f48b22-19e9-4cbe-a0a5-006a28886a46: !Template
+    answer_choices: null
+    id: b1f48b22-19e9-4cbe-a0a5-006a28886a46
+    jinja: 'Translate this from Nepali into simplified Chinese: {{ sentence_npi }}
+      ||| {{ sentence_zho_simpl }}'
+    metadata: *id001
+    name: translate-this-npi-zho_simpl
+    reference: Basic translation (Nepali into simplified Chinese)
+  b2379aa6-db82-4e9c-8a8f-c5bb67e43c0f: !Template
+    answer_choices: null
+    id: b2379aa6-db82-4e9c-8a8f-c5bb67e43c0f
+    jinja: 'Translate this from Zulu into Bengali: {{ sentence_zul }} ||| {{ sentence_ben
+      }}'
+    metadata: *id001
+    name: translate-this-zul-ben
+    reference: Basic translation (Zulu into Bengali)
+  b29f742f-c0e2-4c9d-a49a-141ec9e0c79d: !Template
+    answer_choices: null
+    id: b29f742f-c0e2-4c9d-a49a-141ec9e0c79d
+    jinja: 'Translate this from Brazilian Portuguese into Hindi: {{ sentence_por }}
+      ||| {{ sentence_hin }}'
+    metadata: *id001
+    name: translate-this-por-hin
+    reference: Basic translation (Brazilian Portuguese into Hindi)
+  b367692c-088c-4f8d-8184-12f4d326d6dd: !Template
+    answer_choices: null
+    id: b367692c-088c-4f8d-8184-12f4d326d6dd
+    jinja: 'Translate this from Assamese into Hindi: {{ sentence_asm }} ||| {{ sentence_hin
+      }}'
+    metadata: *id001
+    name: translate-this-asm-hin
+    reference: Basic translation (Assamese into Hindi)
+  b41b25f5-7377-4add-a90e-ae7bae7471b6: !Template
+    answer_choices: null
+    id: b41b25f5-7377-4add-a90e-ae7bae7471b6
+    jinja: 'Translate this from Yoruba into Oriya: {{ sentence_yor }} ||| {{ sentence_ory
+      }}'
+    metadata: *id001
+    name: translate-this-yor-ory
+    reference: Basic translation (Yoruba into Oriya)
+  b4afd55a-2244-4d11-b1b5-fcb92ab3a009: !Template
+    answer_choices: null
+    id: b4afd55a-2244-4d11-b1b5-fcb92ab3a009
+    jinja: 'Translate this from English into simplified Chinese: {{ sentence_eng }}
+      ||| {{ sentence_zho_simpl }}'
+    metadata: *id001
+    name: translate-this-eng-zho_simpl
+    reference: Basic translation (English into simplified Chinese)
+  b50f7561-391e-4799-843f-5d5d936eb37f: !Template
+    answer_choices: null
+    id: b50f7561-391e-4799-843f-5d5d936eb37f
+    jinja: 'Translate this from Urdu into Latin American Spanish: {{ sentence_urd
+      }} ||| {{ sentence_spa }}'
+    metadata: *id001
+    name: translate-this-urd-spa
+    reference: Basic translation (Urdu into Latin American Spanish)
+  b54afc30-2fce-4e55-b853-b5cf0fa7d88c: !Template
+    answer_choices: null
+    id: b54afc30-2fce-4e55-b853-b5cf0fa7d88c
+    jinja: 'Translate this from Urdu into Vietnamese: {{ sentence_urd }} ||| {{ sentence_vie
+      }}'
+    metadata: *id001
+    name: translate-this-urd-vie
+    reference: Basic translation (Urdu into Vietnamese)
+  b57f9b98-8983-450e-9792-d3e28c081646: !Template
+    answer_choices: null
+    id: b57f9b98-8983-450e-9792-d3e28c081646
+    jinja: 'Translate this from Catalan into Tamil: {{ sentence_cat }} ||| {{ sentence_tam
+      }}'
+    metadata: *id001
+    name: translate-this-cat-tam
+    reference: Basic translation (Catalan into Tamil)
+  b61a6a0e-e1b9-4ec4-84ec-3e3b2632d929: !Template
+    answer_choices: null
+    id: b61a6a0e-e1b9-4ec4-84ec-3e3b2632d929
+    jinja: 'Translate this from traditional Chinese into Catalan: {{ sentence_zho_trad
+      }} ||| {{ sentence_cat }}'
+    metadata: *id001
+    name: translate-this-zho_trad-cat
+    reference: Basic translation (traditional Chinese into Catalan)
+  b635538a-46c3-408b-af73-ac2ab01ed21d: !Template
+    answer_choices: null
+    id: b635538a-46c3-408b-af73-ac2ab01ed21d
+    jinja: 'Translate this from Igbo into Hindi: {{ sentence_ibo }} ||| {{ sentence_hin
+      }}'
+    metadata: *id001
+    name: translate-this-ibo-hin
+    reference: Basic translation (Igbo into Hindi)
+  b63ffcf4-73c5-4687-8bc4-df3ee8fb4b70: !Template
+    answer_choices: null
+    id: b63ffcf4-73c5-4687-8bc4-df3ee8fb4b70
+    jinja: 'Translate this from Xhosa into simplified Chinese: {{ sentence_xho }}
+      ||| {{ sentence_zho_simpl }}'
+    metadata: *id001
+    name: translate-this-xho-zho_simpl
+    reference: Basic translation (Xhosa into simplified Chinese)
+  b69a2f39-381e-4eca-81d9-e4f0be0e18cc: !Template
+    answer_choices: null
+    id: b69a2f39-381e-4eca-81d9-e4f0be0e18cc
+    jinja: 'Translate this from Vietnamese into Catalan: {{ sentence_vie }} ||| {{
+      sentence_cat }}'
+    metadata: *id001
+    name: translate-this-vie-cat
+    reference: Basic translation (Vietnamese into Catalan)
+  b69cfbd3-1fd7-4e5e-9b1d-4bf4205d1572: !Template
+    answer_choices: null
+    id: b69cfbd3-1fd7-4e5e-9b1d-4bf4205d1572
+    jinja: 'Translate this from Telugu into Tamil: {{ sentence_tel }} ||| {{ sentence_tam
+      }}'
+    metadata: *id001
+    name: translate-this-tel-tam
+    reference: Basic translation (Telugu into Tamil)
+  b6a4b17b-2157-4a8f-a961-aa5cca1e0eaa: !Template
+    answer_choices: null
+    id: b6a4b17b-2157-4a8f-a961-aa5cca1e0eaa
+    jinja: 'Translate this from Punjabi into French: {{ sentence_pan }} ||| {{ sentence_fra
+      }}'
+    metadata: *id001
+    name: translate-this-pan-fra
+    reference: Basic translation (Punjabi into French)
+  b6abf113-965c-4765-9e10-1a37e8e63911: !Template
+    answer_choices: null
+    id: b6abf113-965c-4765-9e10-1a37e8e63911
+    jinja: 'Translate this from Punjabi into Hindi: {{ sentence_pan }} ||| {{ sentence_hin
+      }}'
+    metadata: *id001
+    name: translate-this-pan-hin
+    reference: Basic translation (Punjabi into Hindi)
+  b6fb16f5-ce48-4e0a-afbd-92794791906e: !Template
+    answer_choices: null
+    id: b6fb16f5-ce48-4e0a-afbd-92794791906e
+    jinja: 'Translate this from Lingala into traditional Chinese: {{ sentence_lin
+      }} ||| {{ sentence_zho_trad }}'
+    metadata: *id001
+    name: translate-this-lin-zho_trad
+    reference: Basic translation (Lingala into traditional Chinese)
+  b73cc7db-2724-4d1c-b8e5-11334621e392: !Template
+    answer_choices: null
+    id: b73cc7db-2724-4d1c-b8e5-11334621e392
+    jinja: 'Translate this from Latin American Spanish into Kannada: {{ sentence_spa
+      }} ||| {{ sentence_kan }}'
+    metadata: *id001
+    name: translate-this-spa-kan
+    reference: Basic translation (Latin American Spanish into Kannada)
+  b750c935-f637-4380-b5c2-3e18deee3ed2: !Template
+    answer_choices: null
+    id: b750c935-f637-4380-b5c2-3e18deee3ed2
+    jinja: 'Translate this from Swahili into Marathi: {{ sentence_swh }} ||| {{ sentence_mar
+      }}'
+    metadata: *id001
+    name: translate-this-swh-mar
+    reference: Basic translation (Swahili into Marathi)
+  b75eff24-0c87-460c-a969-11273bed8404: !Template
+    answer_choices: null
+    id: b75eff24-0c87-460c-a969-11273bed8404
+    jinja: 'Translate this from Urdu into Nepali: {{ sentence_urd }} ||| {{ sentence_npi
+      }}'
+    metadata: *id001
+    name: translate-this-urd-npi
+    reference: Basic translation (Urdu into Nepali)
+  b76daecc-0d81-4359-932e-83152fb671d7: !Template
+    answer_choices: null
+    id: b76daecc-0d81-4359-932e-83152fb671d7
+    jinja: 'Translate this from Arabic into Vietnamese: {{ sentence_ara }} ||| {{
+      sentence_vie }}'
+    metadata: *id001
+    name: translate-this-ara-vie
+    reference: Basic translation (Arabic into Vietnamese)
+  b77e6a8b-9b8d-4f04-be6b-85af9457e551: !Template
+    answer_choices: null
+    id: b77e6a8b-9b8d-4f04-be6b-85af9457e551
+    jinja: 'Translate this from English into Bengali: {{ sentence_eng }} ||| {{ sentence_ben
+      }}'
+    metadata: *id001
+    name: translate-this-eng-ben
+    reference: Basic translation (English into Bengali)
+  b7ca9ccb-2e9e-4a83-a00d-b36f3424382c: !Template
+    answer_choices: null
+    id: b7ca9ccb-2e9e-4a83-a00d-b36f3424382c
+    jinja: 'Translate this from Marathi into Gujarati: {{ sentence_mar }} ||| {{ sentence_guj
+      }}'
+    metadata: *id001
+    name: translate-this-mar-guj
+    reference: Basic translation (Marathi into Gujarati)
+  b7edc6be-2d08-4372-9472-0e54d4e98b5e: !Template
+    answer_choices: null
+    id: b7edc6be-2d08-4372-9472-0e54d4e98b5e
+    jinja: 'Translate this from Latin American Spanish into French: {{ sentence_spa
+      }} ||| {{ sentence_fra }}'
+    metadata: *id001
+    name: translate-this-spa-fra
+    reference: Basic translation (Latin American Spanish into French)
+  b814a414-7171-4d39-9385-2f7c9e021fa1: !Template
+    answer_choices: null
+    id: b814a414-7171-4d39-9385-2f7c9e021fa1
+    jinja: 'Translate this from Assamese into Northern Sotho: {{ sentence_asm }} |||
+      {{ sentence_nso }}'
+    metadata: *id001
+    name: translate-this-asm-nso
+    reference: Basic translation (Assamese into Northern Sotho)
+  b821238e-eabe-4954-829e-ac1f289fd439: !Template
+    answer_choices: null
+    id: b821238e-eabe-4954-829e-ac1f289fd439
+    jinja: 'Translate this from Lingala into Swahili: {{ sentence_lin }} ||| {{ sentence_swh
+      }}'
+    metadata: *id001
+    name: translate-this-lin-swh
+    reference: Basic translation (Lingala into Swahili)
+  b86cf77f-3b9e-4c5b-9cae-6f159341b884: !Template
+    answer_choices: null
+    id: b86cf77f-3b9e-4c5b-9cae-6f159341b884
+    jinja: 'Translate this from Indonesian into Assamese: {{ sentence_ind }} ||| {{
+      sentence_asm }}'
+    metadata: *id001
+    name: translate-this-ind-asm
+    reference: Basic translation (Indonesian into Assamese)
+  b8b3f494-48c5-4316-abc1-a86fa17f0650: !Template
+    answer_choices: null
+    id: b8b3f494-48c5-4316-abc1-a86fa17f0650
+    jinja: 'Translate this from simplified Chinese into Swahili: {{ sentence_zho_simpl
+      }} ||| {{ sentence_swh }}'
+    metadata: *id001
+    name: translate-this-zho_simpl-swh
+    reference: Basic translation (simplified Chinese into Swahili)
+  b8e88f16-0662-4108-b5e7-daee4b11b874: !Template
+    answer_choices: null
+    id: b8e88f16-0662-4108-b5e7-daee4b11b874
+    jinja: 'Translate this from Hindi into Latin American Spanish: {{ sentence_hin
+      }} ||| {{ sentence_spa }}'
+    metadata: *id001
+    name: translate-this-hin-spa
+    reference: Basic translation (Hindi into Latin American Spanish)
+  b95b17a7-df26-4b2e-9a69-8a6cc1f81b26: !Template
+    answer_choices: null
+    id: b95b17a7-df26-4b2e-9a69-8a6cc1f81b26
+    jinja: 'Translate this from Vietnamese into Brazilian Portuguese: {{ sentence_vie
+      }} ||| {{ sentence_por }}'
+    metadata: *id001
+    name: translate-this-vie-por
+    reference: Basic translation (Vietnamese into Brazilian Portuguese)
+  b9cc21b9-da94-4094-a732-fe153e2b660d: !Template
+    answer_choices: null
+    id: b9cc21b9-da94-4094-a732-fe153e2b660d
+    jinja: 'Translate this from Tamil into Assamese: {{ sentence_tam }} ||| {{ sentence_asm
+      }}'
+    metadata: *id001
+    name: translate-this-tam-asm
+    reference: Basic translation (Tamil into Assamese)
+  b9e7fbeb-6cc3-46a3-a19c-6373cfa01845: !Template
+    answer_choices: null
+    id: b9e7fbeb-6cc3-46a3-a19c-6373cfa01845
+    jinja: 'Translate this from Oriya into Lingala: {{ sentence_ory }} ||| {{ sentence_lin
+      }}'
+    metadata: *id001
+    name: translate-this-ory-lin
+    reference: Basic translation (Oriya into Lingala)
+  b9ee292d-0d16-4ccd-8e4e-2b551aba2a0d: !Template
+    answer_choices: null
+    id: b9ee292d-0d16-4ccd-8e4e-2b551aba2a0d
+    jinja: 'Translate this from Punjabi into Assamese: {{ sentence_pan }} ||| {{ sentence_asm
+      }}'
+    metadata: *id001
+    name: translate-this-pan-asm
+    reference: Basic translation (Punjabi into Assamese)
+  ba7848ec-78ff-4f73-861e-58762590c984: !Template
+    answer_choices: null
+    id: ba7848ec-78ff-4f73-861e-58762590c984
+    jinja: 'Translate this from Malayalam into Xhosa: {{ sentence_mal }} ||| {{ sentence_xho
+      }}'
+    metadata: *id001
+    name: translate-this-mal-xho
+    reference: Basic translation (Malayalam into Xhosa)
+  baabf114-b720-4b8d-9d56-d42e1441b000: !Template
+    answer_choices: null
+    id: baabf114-b720-4b8d-9d56-d42e1441b000
+    jinja: 'Translate this from Zulu into Yoruba: {{ sentence_zul }} ||| {{ sentence_yor
+      }}'
+    metadata: *id001
+    name: translate-this-zul-yor
+    reference: Basic translation (Zulu into Yoruba)
+  baba029a-af8d-4508-8610-673c91662c52: !Template
+    answer_choices: null
+    id: baba029a-af8d-4508-8610-673c91662c52
+    jinja: 'Translate this from Urdu into Xhosa: {{ sentence_urd }} ||| {{ sentence_xho
+      }}'
+    metadata: *id001
+    name: translate-this-urd-xho
+    reference: Basic translation (Urdu into Xhosa)
+  bae48dc5-0445-41de-a312-20729e91e424: !Template
+    answer_choices: null
+    id: bae48dc5-0445-41de-a312-20729e91e424
+    jinja: 'Translate this from Catalan into Xhosa: {{ sentence_cat }} ||| {{ sentence_xho
+      }}'
+    metadata: *id001
+    name: translate-this-cat-xho
+    reference: Basic translation (Catalan into Xhosa)
+  bb205d34-618b-47dc-abd7-1cc54a51c74c: !Template
+    answer_choices: null
+    id: bb205d34-618b-47dc-abd7-1cc54a51c74c
+    jinja: 'Translate this from French into Swahili: {{ sentence_fra }} ||| {{ sentence_swh
+      }}'
+    metadata: *id001
+    name: translate-this-fra-swh
+    reference: Basic translation (French into Swahili)
+  bba15902-6501-433b-a977-1d3c7bfe6900: !Template
+    answer_choices: null
+    id: bba15902-6501-433b-a977-1d3c7bfe6900
+    jinja: 'Translate this from Zulu into Nepali: {{ sentence_zul }} ||| {{ sentence_npi
+      }}'
+    metadata: *id001
+    name: translate-this-zul-npi
+    reference: Basic translation (Zulu into Nepali)
+  bbe3be52-6d83-46e5-be5d-87084400e790: !Template
+    answer_choices: null
+    id: bbe3be52-6d83-46e5-be5d-87084400e790
+    jinja: 'Translate this from Igbo into simplified Chinese: {{ sentence_ibo }} |||
+      {{ sentence_zho_simpl }}'
+    metadata: *id001
+    name: translate-this-ibo-zho_simpl
+    reference: Basic translation (Igbo into simplified Chinese)
+  bc46ab62-9a4f-44c2-b483-2da1c1113946: !Template
+    answer_choices: null
+    id: bc46ab62-9a4f-44c2-b483-2da1c1113946
+    jinja: 'Translate this from Brazilian Portuguese into Latin American Spanish:
+      {{ sentence_por }} ||| {{ sentence_spa }}'
+    metadata: *id001
+    name: translate-this-por-spa
+    reference: Basic translation (Brazilian Portuguese into Latin American Spanish)
+  bce3396c-9038-4e7f-a98c-22f83d2c09b4: !Template
+    answer_choices: null
+    id: bce3396c-9038-4e7f-a98c-22f83d2c09b4
+    jinja: 'Translate this from Bengali into English: {{ sentence_ben }} ||| {{ sentence_eng
+      }}'
+    metadata: *id001
+    name: translate-this-ben-eng
+    reference: Basic translation (Bengali into English)
+  bd7a1f62-dcf4-4551-89de-96ebcb177e7c: !Template
+    answer_choices: null
+    id: bd7a1f62-dcf4-4551-89de-96ebcb177e7c
+    jinja: 'Translate this from Northern Sotho into Tamil: {{ sentence_nso }} |||
+      {{ sentence_tam }}'
+    metadata: *id001
+    name: translate-this-nso-tam
+    reference: Basic translation (Northern Sotho into Tamil)
+  bdf4b8d3-7bc5-4b20-81dd-f1acb52dbe39: !Template
+    answer_choices: null
+    id: bdf4b8d3-7bc5-4b20-81dd-f1acb52dbe39
+    jinja: 'Translate this from Latin American Spanish into Igbo: {{ sentence_spa
+      }} ||| {{ sentence_ibo }}'
+    metadata: *id001
+    name: translate-this-spa-ibo
+    reference: Basic translation (Latin American Spanish into Igbo)
+  be036e4e-fd96-4a92-844c-2534f1d81c1d: !Template
+    answer_choices: null
+    id: be036e4e-fd96-4a92-844c-2534f1d81c1d
+    jinja: 'Translate this from Marathi into simplified Chinese: {{ sentence_mar }}
+      ||| {{ sentence_zho_simpl }}'
+    metadata: *id001
+    name: translate-this-mar-zho_simpl
+    reference: Basic translation (Marathi into simplified Chinese)
+  be65df16-a1c4-4eb2-9a14-35cfbb384b03: !Template
+    answer_choices: null
+    id: be65df16-a1c4-4eb2-9a14-35cfbb384b03
+    jinja: 'Translate this from Indonesian into Yoruba: {{ sentence_ind }} ||| {{
+      sentence_yor }}'
+    metadata: *id001
+    name: translate-this-ind-yor
+    reference: Basic translation (Indonesian into Yoruba)
+  beacede1-a9d7-4f1a-a96a-2c0f44a39fa0: !Template
+    answer_choices: null
+    id: beacede1-a9d7-4f1a-a96a-2c0f44a39fa0
+    jinja: 'Translate this from Vietnamese into Swahili: {{ sentence_vie }} ||| {{
+      sentence_swh }}'
+    metadata: *id001
+    name: translate-this-vie-swh
+    reference: Basic translation (Vietnamese into Swahili)
+  bedca7ca-3b69-4ab8-ae10-5d1c2f5b8a87: !Template
+    answer_choices: null
+    id: bedca7ca-3b69-4ab8-ae10-5d1c2f5b8a87
+    jinja: 'Translate this from Igbo into Punjabi: {{ sentence_ibo }} ||| {{ sentence_pan
+      }}'
+    metadata: *id001
+    name: translate-this-ibo-pan
+    reference: Basic translation (Igbo into Punjabi)
+  bf4280c4-4c04-4de4-abeb-6349f8209591: !Template
+    answer_choices: null
+    id: bf4280c4-4c04-4de4-abeb-6349f8209591
+    jinja: 'Translate this from Igbo into Latin American Spanish: {{ sentence_ibo
+      }} ||| {{ sentence_spa }}'
+    metadata: *id001
+    name: translate-this-ibo-spa
+    reference: Basic translation (Igbo into Latin American Spanish)
+  bfd210c7-39f5-454b-bc8e-03649a0bf737: !Template
+    answer_choices: null
+    id: bfd210c7-39f5-454b-bc8e-03649a0bf737
+    jinja: 'Translate this from Lingala into simplified Chinese: {{ sentence_lin }}
+      ||| {{ sentence_zho_simpl }}'
+    metadata: *id001
+    name: translate-this-lin-zho_simpl
+    reference: Basic translation (Lingala into simplified Chinese)
+  c0c4b5e9-3c60-4fa4-a696-27872dba0161: !Template
+    answer_choices: null
+    id: c0c4b5e9-3c60-4fa4-a696-27872dba0161
+    jinja: 'Translate this from Brazilian Portuguese into Urdu: {{ sentence_por }}
+      ||| {{ sentence_urd }}'
+    metadata: *id001
+    name: translate-this-por-urd
+    reference: Basic translation (Brazilian Portuguese into Urdu)
+  c0c78573-4524-4711-8e6b-915994dfaff8: !Template
+    answer_choices: null
+    id: c0c78573-4524-4711-8e6b-915994dfaff8
+    jinja: 'Translate this from Gujarati into traditional Chinese: {{ sentence_guj
+      }} ||| {{ sentence_zho_trad }}'
+    metadata: *id001
+    name: translate-this-guj-zho_trad
+    reference: Basic translation (Gujarati into traditional Chinese)
+  c0d4e26f-4e97-4fa7-beab-e257bec4179f: !Template
+    answer_choices: null
+    id: c0d4e26f-4e97-4fa7-beab-e257bec4179f
+    jinja: 'Translate this from Telugu into Marathi: {{ sentence_tel }} ||| {{ sentence_mar
+      }}'
+    metadata: *id001
+    name: translate-this-tel-mar
+    reference: Basic translation (Telugu into Marathi)
+  c158c963-7b17-4504-ba56-2ddec521d886: !Template
+    answer_choices: null
+    id: c158c963-7b17-4504-ba56-2ddec521d886
+    jinja: 'Translate this from Oriya into Marathi: {{ sentence_ory }} ||| {{ sentence_mar
+      }}'
+    metadata: *id001
+    name: translate-this-ory-mar
+    reference: Basic translation (Oriya into Marathi)
+  c15d63ff-9c70-49ef-a512-74e1fdd92739: !Template
+    answer_choices: null
+    id: c15d63ff-9c70-49ef-a512-74e1fdd92739
+    jinja: 'Translate this from French into Marathi: {{ sentence_fra }} ||| {{ sentence_mar
+      }}'
+    metadata: *id001
+    name: translate-this-fra-mar
+    reference: Basic translation (French into Marathi)
+  c17183e9-0d17-40f7-9b61-aeb55d2e5fbd: !Template
+    answer_choices: null
+    id: c17183e9-0d17-40f7-9b61-aeb55d2e5fbd
+    jinja: 'Translate this from Xhosa into Latin American Spanish: {{ sentence_xho
+      }} ||| {{ sentence_spa }}'
+    metadata: *id001
+    name: translate-this-xho-spa
+    reference: Basic translation (Xhosa into Latin American Spanish)
+  c1bfb0a6-1921-48bc-a80d-2c09287adfd6: !Template
+    answer_choices: null
+    id: c1bfb0a6-1921-48bc-a80d-2c09287adfd6
+    jinja: 'Translate this from traditional Chinese into Zulu: {{ sentence_zho_trad
+      }} ||| {{ sentence_zul }}'
+    metadata: *id001
+    name: translate-this-zho_trad-zul
+    reference: Basic translation (traditional Chinese into Zulu)
+  c2038cbc-10cd-40c6-bf38-d30593036785: !Template
+    answer_choices: null
+    id: c2038cbc-10cd-40c6-bf38-d30593036785
+    jinja: 'Translate this from Zulu into Hindi: {{ sentence_zul }} ||| {{ sentence_hin
+      }}'
+    metadata: *id001
+    name: translate-this-zul-hin
+    reference: Basic translation (Zulu into Hindi)
+  c29ed127-e7ae-448a-9eee-7ea5a1a979a0: !Template
+    answer_choices: null
+    id: c29ed127-e7ae-448a-9eee-7ea5a1a979a0
+    jinja: 'Translate this from Indonesian into Lingala: {{ sentence_ind }} ||| {{
+      sentence_lin }}'
+    metadata: *id001
+    name: translate-this-ind-lin
+    reference: Basic translation (Indonesian into Lingala)
+  c2bb50d0-eb90-4ec7-9790-b3924007a5c6: !Template
+    answer_choices: null
+    id: c2bb50d0-eb90-4ec7-9790-b3924007a5c6
+    jinja: 'Translate this from Zulu into Wolof: {{ sentence_zul }} ||| {{ sentence_wol
+      }}'
+    metadata: *id001
+    name: translate-this-zul-wol
+    reference: Basic translation (Zulu into Wolof)
+  c3407856-1aee-4e24-b3b3-34ad7dbaa6ba: !Template
+    answer_choices: null
+    id: c3407856-1aee-4e24-b3b3-34ad7dbaa6ba
+    jinja: 'Translate this from Kannada into Lingala: {{ sentence_kan }} ||| {{ sentence_lin
+      }}'
+    metadata: *id001
+    name: translate-this-kan-lin
+    reference: Basic translation (Kannada into Lingala)
+  c35a3467-a4a8-4d3a-997e-185e9023b16e: !Template
+    answer_choices: null
+    id: c35a3467-a4a8-4d3a-997e-185e9023b16e
+    jinja: 'Translate this from Wolof into English: {{ sentence_wol }} ||| {{ sentence_eng
+      }}'
+    metadata: *id001
+    name: translate-this-wol-eng
+    reference: Basic translation (Wolof into English)
+  c36d1b36-6906-49ff-9239-d6c5c4f70cae: !Template
+    answer_choices: null
+    id: c36d1b36-6906-49ff-9239-d6c5c4f70cae
+    jinja: 'Translate this from Urdu into Hindi: {{ sentence_urd }} ||| {{ sentence_hin
+      }}'
+    metadata: *id001
+    name: translate-this-urd-hin
+    reference: Basic translation (Urdu into Hindi)
+  c43eaca1-e7fd-4610-a197-b2244fc74841: !Template
+    answer_choices: null
+    id: c43eaca1-e7fd-4610-a197-b2244fc74841
+    jinja: 'Translate this from Wolof into traditional Chinese: {{ sentence_wol }}
+      ||| {{ sentence_zho_trad }}'
+    metadata: *id001
+    name: translate-this-wol-zho_trad
+    reference: Basic translation (Wolof into traditional Chinese)
+  c442ec8f-4565-4e71-8f1b-c47be4a7470d: !Template
+    answer_choices: null
+    id: c442ec8f-4565-4e71-8f1b-c47be4a7470d
+    jinja: 'Translate this from Punjabi into Zulu: {{ sentence_pan }} ||| {{ sentence_zul
+      }}'
+    metadata: *id001
+    name: translate-this-pan-zul
+    reference: Basic translation (Punjabi into Zulu)
+  c46b9164-a9fe-48df-a69a-fb780be56b24: !Template
+    answer_choices: null
+    id: c46b9164-a9fe-48df-a69a-fb780be56b24
+    jinja: 'Translate this from Oriya into Hindi: {{ sentence_ory }} ||| {{ sentence_hin
+      }}'
+    metadata: *id001
+    name: translate-this-ory-hin
+    reference: Basic translation (Oriya into Hindi)
+  c47cd1fe-8d77-4fb5-89e4-fe2609cf05ae: !Template
+    answer_choices: null
+    id: c47cd1fe-8d77-4fb5-89e4-fe2609cf05ae
+    jinja: 'Translate this from Lingala into Xhosa: {{ sentence_lin }} ||| {{ sentence_xho
+      }}'
+    metadata: *id001
+    name: translate-this-lin-xho
+    reference: Basic translation (Lingala into Xhosa)
+  c4c6ca8f-ba83-43cf-a981-4a4c531d903b: !Template
+    answer_choices: null
+    id: c4c6ca8f-ba83-43cf-a981-4a4c531d903b
+    jinja: 'Translate this from Vietnamese into Bengali: {{ sentence_vie }} ||| {{
+      sentence_ben }}'
+    metadata: *id001
+    name: translate-this-vie-ben
+    reference: Basic translation (Vietnamese into Bengali)
+  c51e78a5-9884-4580-9ea0-bc74cd690662: !Template
+    answer_choices: null
+    id: c51e78a5-9884-4580-9ea0-bc74cd690662
+    jinja: 'Translate this from Arabic into Kannada: {{ sentence_ara }} ||| {{ sentence_kan
+      }}'
+    metadata: *id001
+    name: translate-this-ara-kan
+    reference: Basic translation (Arabic into Kannada)
+  c568f6ec-30a1-4b62-ab3b-d070866ea042: !Template
+    answer_choices: null
+    id: c568f6ec-30a1-4b62-ab3b-d070866ea042
+    jinja: 'Translate this from Tamil into English: {{ sentence_tam }} ||| {{ sentence_eng
+      }}'
+    metadata: *id001
+    name: translate-this-tam-eng
+    reference: Basic translation (Tamil into English)
+  c5e3ecb2-17c1-4716-a583-7b11f84fd726: !Template
+    answer_choices: null
+    id: c5e3ecb2-17c1-4716-a583-7b11f84fd726
+    jinja: 'Translate this from English into Wolof: {{ sentence_eng }} ||| {{ sentence_wol
+      }}'
+    metadata: *id001
+    name: translate-this-eng-wol
+    reference: Basic translation (English into Wolof)
+  c5ee7b2c-b3fe-4d8e-9727-514bc7a4a966: !Template
+    answer_choices: null
+    id: c5ee7b2c-b3fe-4d8e-9727-514bc7a4a966
+    jinja: 'Translate this from Assamese into traditional Chinese: {{ sentence_asm
+      }} ||| {{ sentence_zho_trad }}'
+    metadata: *id001
+    name: translate-this-asm-zho_trad
+    reference: Basic translation (Assamese into traditional Chinese)
+  c5f29674-b447-420d-83a3-af5a26fc0f5b: !Template
+    answer_choices: null
+    id: c5f29674-b447-420d-83a3-af5a26fc0f5b
+    jinja: 'Translate this from Catalan into Urdu: {{ sentence_cat }} ||| {{ sentence_urd
+      }}'
+    metadata: *id001
+    name: translate-this-cat-urd
+    reference: Basic translation (Catalan into Urdu)
+  c632c8b4-70ab-45d8-9a51-10964f836ef1: !Template
+    answer_choices: null
+    id: c632c8b4-70ab-45d8-9a51-10964f836ef1
+    jinja: 'Translate this from Xhosa into Indonesian: {{ sentence_xho }} ||| {{ sentence_ind
+      }}'
+    metadata: *id001
+    name: translate-this-xho-ind
+    reference: Basic translation (Xhosa into Indonesian)
+  c6984a76-0f10-4abe-a8d9-ca64fd69eb8e: !Template
+    answer_choices: null
+    id: c6984a76-0f10-4abe-a8d9-ca64fd69eb8e
+    jinja: 'Translate this from Vietnamese into Xhosa: {{ sentence_vie }} ||| {{ sentence_xho
+      }}'
+    metadata: *id001
+    name: translate-this-vie-xho
+    reference: Basic translation (Vietnamese into Xhosa)
+  c6c8e59f-8b97-40e6-8ed3-255dc40aa5c0: !Template
+    answer_choices: null
+    id: c6c8e59f-8b97-40e6-8ed3-255dc40aa5c0
+    jinja: 'Translate this from Bengali into Assamese: {{ sentence_ben }} ||| {{ sentence_asm
+      }}'
+    metadata: *id001
+    name: translate-this-ben-asm
+    reference: Basic translation (Bengali into Assamese)
+  c74e1106-bb5b-49a2-b36e-cc190395ebf2: !Template
+    answer_choices: null
+    id: c74e1106-bb5b-49a2-b36e-cc190395ebf2
+    jinja: 'Translate this from French into Brazilian Portuguese: {{ sentence_fra
+      }} ||| {{ sentence_por }}'
+    metadata: *id001
+    name: translate-this-fra-por
+    reference: Basic translation (French into Brazilian Portuguese)
+  c7646f81-e475-4702-ac92-c549a1a43d40: !Template
+    answer_choices: null
+    id: c7646f81-e475-4702-ac92-c549a1a43d40
+    jinja: 'Translate this from English into Catalan: {{ sentence_eng }} ||| {{ sentence_cat
+      }}'
+    metadata: *id001
+    name: translate-this-eng-cat
+    reference: Basic translation (English into Catalan)
+  c7cc7b76-6fed-4cd5-b09d-7646108af5bc: !Template
+    answer_choices: null
+    id: c7cc7b76-6fed-4cd5-b09d-7646108af5bc
+    jinja: 'Translate this from Zulu into Indonesian: {{ sentence_zul }} ||| {{ sentence_ind
+      }}'
+    metadata: *id001
+    name: translate-this-zul-ind
+    reference: Basic translation (Zulu into Indonesian)
+  c7efe1d6-41b6-402d-b3bd-bf6243f76d14: !Template
+    answer_choices: null
+    id: c7efe1d6-41b6-402d-b3bd-bf6243f76d14
+    jinja: 'Translate this from Bengali into Kannada: {{ sentence_ben }} ||| {{ sentence_kan
+      }}'
+    metadata: *id001
+    name: translate-this-ben-kan
+    reference: Basic translation (Bengali into Kannada)
+  c86526b8-2822-4376-88e6-7f6f70a54d6e: !Template
+    answer_choices: null
+    id: c86526b8-2822-4376-88e6-7f6f70a54d6e
+    jinja: 'Translate this from French into Gujarati: {{ sentence_fra }} ||| {{ sentence_guj
+      }}'
+    metadata: *id001
+    name: translate-this-fra-guj
+    reference: Basic translation (French into Gujarati)
+  c88d7ee5-b89d-4aaf-b2e9-5fd8b5e42fea: !Template
+    answer_choices: null
+    id: c88d7ee5-b89d-4aaf-b2e9-5fd8b5e42fea
+    jinja: 'Translate this from Igbo into Assamese: {{ sentence_ibo }} ||| {{ sentence_asm
+      }}'
+    metadata: *id001
+    name: translate-this-ibo-asm
+    reference: Basic translation (Igbo into Assamese)
+  c896186d-4041-4445-9cac-11956b7d96f6: !Template
+    answer_choices: null
+    id: c896186d-4041-4445-9cac-11956b7d96f6
+    jinja: 'Translate this from Kannada into Nepali: {{ sentence_kan }} ||| {{ sentence_npi
+      }}'
+    metadata: *id001
+    name: translate-this-kan-npi
+    reference: Basic translation (Kannada into Nepali)
+  c9755628-2cde-4984-a570-762eb6fb3f50: !Template
+    answer_choices: null
+    id: c9755628-2cde-4984-a570-762eb6fb3f50
+    jinja: 'Translate this from Latin American Spanish into Oriya: {{ sentence_spa
+      }} ||| {{ sentence_ory }}'
+    metadata: *id001
+    name: translate-this-spa-ory
+    reference: Basic translation (Latin American Spanish into Oriya)
+  c9a9f908-3f4e-4e10-be91-51ae6a65e460: !Template
+    answer_choices: null
+    id: c9a9f908-3f4e-4e10-be91-51ae6a65e460
+    jinja: 'Translate this from Vietnamese into Yoruba: {{ sentence_vie }} ||| {{
+      sentence_yor }}'
+    metadata: *id001
+    name: translate-this-vie-yor
+    reference: Basic translation (Vietnamese into Yoruba)
+  c9b071c0-3e6f-4db2-bd12-56c5be43249d: !Template
+    answer_choices: null
+    id: c9b071c0-3e6f-4db2-bd12-56c5be43249d
+    jinja: 'Translate this from Gujarati into Assamese: {{ sentence_guj }} ||| {{
+      sentence_asm }}'
+    metadata: *id001
+    name: translate-this-guj-asm
+    reference: Basic translation (Gujarati into Assamese)
+  c9e6a767-896e-4c5f-b039-b9b087daefc4: !Template
+    answer_choices: null
+    id: c9e6a767-896e-4c5f-b039-b9b087daefc4
+    jinja: 'Translate this from Northern Sotho into Catalan: {{ sentence_nso }} |||
+      {{ sentence_cat }}'
+    metadata: *id001
+    name: translate-this-nso-cat
+    reference: Basic translation (Northern Sotho into Catalan)
+  ca93e868-3722-46af-88b4-3ca69fd36a52: !Template
+    answer_choices: null
+    id: ca93e868-3722-46af-88b4-3ca69fd36a52
+    jinja: 'Translate this from Igbo into French: {{ sentence_ibo }} ||| {{ sentence_fra
+      }}'
+    metadata: *id001
+    name: translate-this-ibo-fra
+    reference: Basic translation (Igbo into French)
+  cac9ac5c-bff2-48fc-8fbe-bb25cf940488: !Template
+    answer_choices: null
+    id: cac9ac5c-bff2-48fc-8fbe-bb25cf940488
+    jinja: 'Translate this from Northern Sotho into Marathi: {{ sentence_nso }} |||
+      {{ sentence_mar }}'
+    metadata: *id001
+    name: translate-this-nso-mar
+    reference: Basic translation (Northern Sotho into Marathi)
+  cadd6b39-2047-4f4f-82ff-e4e157784ba0: !Template
+    answer_choices: null
+    id: cadd6b39-2047-4f4f-82ff-e4e157784ba0
+    jinja: 'Translate this from Kannada into Northern Sotho: {{ sentence_kan }} |||
+      {{ sentence_nso }}'
+    metadata: *id001
+    name: translate-this-kan-nso
+    reference: Basic translation (Kannada into Northern Sotho)
+  cba625aa-c144-407c-a4ff-1abe087e9416: !Template
+    answer_choices: null
+    id: cba625aa-c144-407c-a4ff-1abe087e9416
+    jinja: 'Translate this from Nepali into Tamil: {{ sentence_npi }} ||| {{ sentence_tam
+      }}'
+    metadata: *id001
+    name: translate-this-npi-tam
+    reference: Basic translation (Nepali into Tamil)
+  cbb0f7f6-e9bf-4190-b51c-dc811bb356e6: !Template
+    answer_choices: null
+    id: cbb0f7f6-e9bf-4190-b51c-dc811bb356e6
+    jinja: 'Translate this from traditional Chinese into simplified Chinese: {{ sentence_zho_trad
+      }} ||| {{ sentence_zho_simpl }}'
+    metadata: *id001
+    name: translate-this-zho_trad-zho_simpl
+    reference: Basic translation (traditional Chinese into simplified Chinese)
+  cc2ac865-346c-4cb2-bad5-836ed9940e28: !Template
+    answer_choices: null
+    id: cc2ac865-346c-4cb2-bad5-836ed9940e28
+    jinja: 'Translate this from Xhosa into traditional Chinese: {{ sentence_xho }}
+      ||| {{ sentence_zho_trad }}'
+    metadata: *id001
+    name: translate-this-xho-zho_trad
+    reference: Basic translation (Xhosa into traditional Chinese)
+  cc7b757d-907b-400d-bfe9-45a696355279: !Template
+    answer_choices: null
+    id: cc7b757d-907b-400d-bfe9-45a696355279
+    jinja: 'Translate this from traditional Chinese into Brazilian Portuguese: {{
+      sentence_zho_trad }} ||| {{ sentence_por }}'
+    metadata: *id001
+    name: translate-this-zho_trad-por
+    reference: Basic translation (traditional Chinese into Brazilian Portuguese)
+  cc9e3e9b-5285-45b6-a96c-8262d74e249a: !Template
+    answer_choices: null
+    id: cc9e3e9b-5285-45b6-a96c-8262d74e249a
+    jinja: 'Translate this from Malayalam into Hindi: {{ sentence_mal }} ||| {{ sentence_hin
+      }}'
+    metadata: *id001
+    name: translate-this-mal-hin
+    reference: Basic translation (Malayalam into Hindi)
+  ccbcd6e7-a3fe-48be-a206-d526128336b4: !Template
+    answer_choices: null
+    id: ccbcd6e7-a3fe-48be-a206-d526128336b4
+    jinja: 'Translate this from Lingala into Nepali: {{ sentence_lin }} ||| {{ sentence_npi
+      }}'
+    metadata: *id001
+    name: translate-this-lin-npi
+    reference: Basic translation (Lingala into Nepali)
+  ccd6110b-26d5-4c7a-a406-f0315a633712: !Template
+    answer_choices: null
+    id: ccd6110b-26d5-4c7a-a406-f0315a633712
+    jinja: 'Translate this from Vietnamese into Arabic: {{ sentence_vie }} ||| {{
+      sentence_ara }}'
+    metadata: *id001
+    name: translate-this-vie-ara
+    reference: Basic translation (Vietnamese into Arabic)
+  ccf92322-0fe5-4991-a625-ed4c5e9f0e8b: !Template
+    answer_choices: null
+    id: ccf92322-0fe5-4991-a625-ed4c5e9f0e8b
+    jinja: 'Translate this from Xhosa into Swahili: {{ sentence_xho }} ||| {{ sentence_swh
+      }}'
+    metadata: *id001
+    name: translate-this-xho-swh
+    reference: Basic translation (Xhosa into Swahili)
+  ccfe64fd-1401-4463-9801-24f8fba8f125: !Template
+    answer_choices: null
+    id: ccfe64fd-1401-4463-9801-24f8fba8f125
+    jinja: 'Translate this from Xhosa into English: {{ sentence_xho }} ||| {{ sentence_eng
+      }}'
+    metadata: *id001
+    name: translate-this-xho-eng
+    reference: Basic translation (Xhosa into English)
+  cd503ac2-7bd0-4614-a4e1-cb63b5e4c6cd: !Template
+    answer_choices: null
+    id: cd503ac2-7bd0-4614-a4e1-cb63b5e4c6cd
+    jinja: 'Translate this from Hindi into simplified Chinese: {{ sentence_hin }}
+      ||| {{ sentence_zho_simpl }}'
+    metadata: *id001
+    name: translate-this-hin-zho_simpl
+    reference: Basic translation (Hindi into simplified Chinese)
+  cdda08c7-d3a6-4ea6-a7db-c8175fdcafb5: !Template
+    answer_choices: null
+    id: cdda08c7-d3a6-4ea6-a7db-c8175fdcafb5
+    jinja: 'Translate this from simplified Chinese into Hindi: {{ sentence_zho_simpl
+      }} ||| {{ sentence_hin }}'
+    metadata: *id001
+    name: translate-this-zho_simpl-hin
+    reference: Basic translation (simplified Chinese into Hindi)
+  cea0ff6e-9041-410c-9f4c-556089c4b8e2: !Template
+    answer_choices: null
+    id: cea0ff6e-9041-410c-9f4c-556089c4b8e2
+    jinja: 'Translate this from Wolof into Catalan: {{ sentence_wol }} ||| {{ sentence_cat
+      }}'
+    metadata: *id001
+    name: translate-this-wol-cat
+    reference: Basic translation (Wolof into Catalan)
+  cfb27058-d404-4c95-ba92-3163b8268ba4: !Template
+    answer_choices: null
+    id: cfb27058-d404-4c95-ba92-3163b8268ba4
+    jinja: 'Translate this from Tamil into simplified Chinese: {{ sentence_tam }}
+      ||| {{ sentence_zho_simpl }}'
+    metadata: *id001
+    name: translate-this-tam-zho_simpl
+    reference: Basic translation (Tamil into simplified Chinese)
+  d02a4449-4be5-4d8c-ab6d-631de87c688a: !Template
+    answer_choices: null
+    id: d02a4449-4be5-4d8c-ab6d-631de87c688a
+    jinja: 'Translate this from Malayalam into Marathi: {{ sentence_mal }} ||| {{
+      sentence_mar }}'
+    metadata: *id001
+    name: translate-this-mal-mar
+    reference: Basic translation (Malayalam into Marathi)
+  d060e5d5-d070-42dc-823c-75a5febd4def: !Template
+    answer_choices: null
+    id: d060e5d5-d070-42dc-823c-75a5febd4def
+    jinja: 'Translate this from English into Northern Sotho: {{ sentence_eng }} |||
+      {{ sentence_nso }}'
+    metadata: *id001
+    name: translate-this-eng-nso
+    reference: Basic translation (English into Northern Sotho)
+  d06e5c46-75c0-46df-b2b9-0c7c4c8eb687: !Template
+    answer_choices: null
+    id: d06e5c46-75c0-46df-b2b9-0c7c4c8eb687
+    jinja: 'Translate this from Yoruba into Kannada: {{ sentence_yor }} ||| {{ sentence_kan
+      }}'
+    metadata: *id001
+    name: translate-this-yor-kan
+    reference: Basic translation (Yoruba into Kannada)
+  d0820cbb-9b40-45b8-b6b6-637a1ea38eb5: !Template
+    answer_choices: null
+    id: d0820cbb-9b40-45b8-b6b6-637a1ea38eb5
+    jinja: 'Translate this from simplified Chinese into Tamil: {{ sentence_zho_simpl
+      }} ||| {{ sentence_tam }}'
+    metadata: *id001
+    name: translate-this-zho_simpl-tam
+    reference: Basic translation (simplified Chinese into Tamil)
+  d0d33eab-742a-46b5-b6de-30ea4ed2213a: !Template
+    answer_choices: null
+    id: d0d33eab-742a-46b5-b6de-30ea4ed2213a
+    jinja: 'Translate this from Punjabi into Indonesian: {{ sentence_pan }} ||| {{
+      sentence_ind }}'
+    metadata: *id001
+    name: translate-this-pan-ind
+    reference: Basic translation (Punjabi into Indonesian)
+  d0dcfe83-d422-4e5a-9c1a-41276330ff25: !Template
+    answer_choices: null
+    id: d0dcfe83-d422-4e5a-9c1a-41276330ff25
+    jinja: 'Translate this from Brazilian Portuguese into Lingala: {{ sentence_por
+      }} ||| {{ sentence_lin }}'
+    metadata: *id001
+    name: translate-this-por-lin
+    reference: Basic translation (Brazilian Portuguese into Lingala)
+  d0e46ec7-70b2-42e0-a3ee-919484461784: !Template
+    answer_choices: null
+    id: d0e46ec7-70b2-42e0-a3ee-919484461784
+    jinja: 'Translate this from Arabic into Hindi: {{ sentence_ara }} ||| {{ sentence_hin
+      }}'
+    metadata: *id001
+    name: translate-this-ara-hin
+    reference: Basic translation (Arabic into Hindi)
+  d1dcad6b-0221-4887-aa90-c6e0f7c64b25: !Template
+    answer_choices: null
+    id: d1dcad6b-0221-4887-aa90-c6e0f7c64b25
+    jinja: 'Translate this from Arabic into Assamese: {{ sentence_ara }} ||| {{ sentence_asm
+      }}'
+    metadata: *id001
+    name: translate-this-ara-asm
+    reference: Basic translation (Arabic into Assamese)
+  d29ca5b2-ee46-4cac-b047-134fbec06b43: !Template
+    answer_choices: null
+    id: d29ca5b2-ee46-4cac-b047-134fbec06b43
+    jinja: 'Translate this from Wolof into Hindi: {{ sentence_wol }} ||| {{ sentence_hin
+      }}'
+    metadata: *id001
+    name: translate-this-wol-hin
+    reference: Basic translation (Wolof into Hindi)
+  d2f3a6df-3f22-46c3-b1d5-78eff09b6a31: !Template
+    answer_choices: null
+    id: d2f3a6df-3f22-46c3-b1d5-78eff09b6a31
+    jinja: 'Translate this from Assamese into Malayalam: {{ sentence_asm }} ||| {{
+      sentence_mal }}'
+    metadata: *id001
+    name: translate-this-asm-mal
+    reference: Basic translation (Assamese into Malayalam)
+  d33eb57f-b96c-4c79-b690-559a3a8b9ade: !Template
+    answer_choices: null
+    id: d33eb57f-b96c-4c79-b690-559a3a8b9ade
+    jinja: 'Translate this from Indonesian into Catalan: {{ sentence_ind }} ||| {{
+      sentence_cat }}'
+    metadata: *id001
+    name: translate-this-ind-cat
+    reference: Basic translation (Indonesian into Catalan)
+  d3a74891-9ee9-442b-b627-0e24186cd1d4: !Template
+    answer_choices: null
+    id: d3a74891-9ee9-442b-b627-0e24186cd1d4
+    jinja: 'Translate this from Oriya into French: {{ sentence_ory }} ||| {{ sentence_fra
+      }}'
+    metadata: *id001
+    name: translate-this-ory-fra
+    reference: Basic translation (Oriya into French)
+  d3ab09dc-c803-4f4b-ba5c-8ff9f4711544: !Template
+    answer_choices: null
+    id: d3ab09dc-c803-4f4b-ba5c-8ff9f4711544
+    jinja: 'Translate this from Kannada into Igbo: {{ sentence_kan }} ||| {{ sentence_ibo
+      }}'
+    metadata: *id001
+    name: translate-this-kan-ibo
+    reference: Basic translation (Kannada into Igbo)
+  d3c9dcaf-20ea-4a92-8560-f6ab81974d79: !Template
+    answer_choices: null
+    id: d3c9dcaf-20ea-4a92-8560-f6ab81974d79
+    jinja: 'Translate this from Brazilian Portuguese into Assamese: {{ sentence_por
+      }} ||| {{ sentence_asm }}'
+    metadata: *id001
+    name: translate-this-por-asm
+    reference: Basic translation (Brazilian Portuguese into Assamese)
+  d3e5a6a0-3868-49ee-82a0-d383c69aeabb: !Template
+    answer_choices: null
+    id: d3e5a6a0-3868-49ee-82a0-d383c69aeabb
+    jinja: 'Translate this from Bengali into Oriya: {{ sentence_ben }} ||| {{ sentence_ory
+      }}'
+    metadata: *id001
+    name: translate-this-ben-ory
+    reference: Basic translation (Bengali into Oriya)
+  d41df3f0-ed04-42ff-94ca-f23f907ce640: !Template
+    answer_choices: null
+    id: d41df3f0-ed04-42ff-94ca-f23f907ce640
+    jinja: 'Translate this from Brazilian Portuguese into Igbo: {{ sentence_por }}
+      ||| {{ sentence_ibo }}'
+    metadata: *id001
+    name: translate-this-por-ibo
+    reference: Basic translation (Brazilian Portuguese into Igbo)
+  d41e6450-48bf-4f6d-859f-4a5f7e3ae450: !Template
+    answer_choices: null
+    id: d41e6450-48bf-4f6d-859f-4a5f7e3ae450
+    jinja: 'Translate this from traditional Chinese into Vietnamese: {{ sentence_zho_trad
+      }} ||| {{ sentence_vie }}'
+    metadata: *id001
+    name: translate-this-zho_trad-vie
+    reference: Basic translation (traditional Chinese into Vietnamese)
+  d477848f-3809-409a-b486-3600a8c8547a: !Template
+    answer_choices: null
+    id: d477848f-3809-409a-b486-3600a8c8547a
+    jinja: 'Translate this from Telugu into Urdu: {{ sentence_tel }} ||| {{ sentence_urd
+      }}'
+    metadata: *id001
+    name: translate-this-tel-urd
+    reference: Basic translation (Telugu into Urdu)
+  d4f12274-2e12-42b7-b336-82675eb77861: !Template
+    answer_choices: null
+    id: d4f12274-2e12-42b7-b336-82675eb77861
+    jinja: 'Translate this from Lingala into Marathi: {{ sentence_lin }} ||| {{ sentence_mar
+      }}'
+    metadata: *id001
+    name: translate-this-lin-mar
+    reference: Basic translation (Lingala into Marathi)
+  d5a9aa66-3f17-483e-977c-79bfe6941cab: !Template
+    answer_choices: null
+    id: d5a9aa66-3f17-483e-977c-79bfe6941cab
+    jinja: 'Translate this from Arabic into Nepali: {{ sentence_ara }} ||| {{ sentence_npi
+      }}'
+    metadata: *id001
+    name: translate-this-ara-npi
+    reference: Basic translation (Arabic into Nepali)
+  d67f5563-6152-4aca-95a5-35216aa7959f: !Template
+    answer_choices: null
+    id: d67f5563-6152-4aca-95a5-35216aa7959f
+    jinja: 'Translate this from Gujarati into Urdu: {{ sentence_guj }} ||| {{ sentence_urd
+      }}'
+    metadata: *id001
+    name: translate-this-guj-urd
+    reference: Basic translation (Gujarati into Urdu)
+  d68cd205-45b0-4d28-adfe-d49b783638bf: !Template
+    answer_choices: null
+    id: d68cd205-45b0-4d28-adfe-d49b783638bf
+    jinja: 'Translate this from Lingala into Punjabi: {{ sentence_lin }} ||| {{ sentence_pan
+      }}'
+    metadata: *id001
+    name: translate-this-lin-pan
+    reference: Basic translation (Lingala into Punjabi)
+  d724fd0e-fb7b-4e65-b5dd-df2987440af6: !Template
+    answer_choices: null
+    id: d724fd0e-fb7b-4e65-b5dd-df2987440af6
+    jinja: 'Translate this from Tamil into Punjabi: {{ sentence_tam }} ||| {{ sentence_pan
+      }}'
+    metadata: *id001
+    name: translate-this-tam-pan
+    reference: Basic translation (Tamil into Punjabi)
+  d7333b10-b19f-43ac-8164-40b0e709b1be: !Template
+    answer_choices: null
+    id: d7333b10-b19f-43ac-8164-40b0e709b1be
+    jinja: 'Translate this from Xhosa into Northern Sotho: {{ sentence_xho }} |||
+      {{ sentence_nso }}'
+    metadata: *id001
+    name: translate-this-xho-nso
+    reference: Basic translation (Xhosa into Northern Sotho)
+  d761d04f-704e-4b8b-a192-6bf432bedb36: !Template
+    answer_choices: null
+    id: d761d04f-704e-4b8b-a192-6bf432bedb36
+    jinja: 'Translate this from simplified Chinese into Gujarati: {{ sentence_zho_simpl
+      }} ||| {{ sentence_guj }}'
+    metadata: *id001
+    name: translate-this-zho_simpl-guj
+    reference: Basic translation (simplified Chinese into Gujarati)
+  d7635610-0dff-49d2-a087-0fe16400ee29: !Template
+    answer_choices: null
+    id: d7635610-0dff-49d2-a087-0fe16400ee29
+    jinja: 'Translate this from Oriya into Wolof: {{ sentence_ory }} ||| {{ sentence_wol
+      }}'
+    metadata: *id001
+    name: translate-this-ory-wol
+    reference: Basic translation (Oriya into Wolof)
+  d91b2e05-5271-405a-99fd-e08c8d1166ce: !Template
+    answer_choices: null
+    id: d91b2e05-5271-405a-99fd-e08c8d1166ce
+    jinja: 'Translate this from Nepali into Malayalam: {{ sentence_npi }} ||| {{ sentence_mal
+      }}'
+    metadata: *id001
+    name: translate-this-npi-mal
+    reference: Basic translation (Nepali into Malayalam)
+  d97281e8-c94b-41ed-828d-2ad32b91157a: !Template
+    answer_choices: null
+    id: d97281e8-c94b-41ed-828d-2ad32b91157a
+    jinja: 'Translate this from traditional Chinese into Bengali: {{ sentence_zho_trad
+      }} ||| {{ sentence_ben }}'
+    metadata: *id001
+    name: translate-this-zho_trad-ben
+    reference: Basic translation (traditional Chinese into Bengali)
+  d98bca9d-7aca-44b9-b5c7-8c296a9a78f5: !Template
+    answer_choices: null
+    id: d98bca9d-7aca-44b9-b5c7-8c296a9a78f5
+    jinja: 'Translate this from Igbo into Telugu: {{ sentence_ibo }} ||| {{ sentence_tel
+      }}'
+    metadata: *id001
+    name: translate-this-ibo-tel
+    reference: Basic translation (Igbo into Telugu)
+  d9965106-27d3-45f8-93f1-c3362430a089: !Template
+    answer_choices: null
+    id: d9965106-27d3-45f8-93f1-c3362430a089
+    jinja: 'Translate this from Tamil into Nepali: {{ sentence_tam }} ||| {{ sentence_npi
+      }}'
+    metadata: *id001
+    name: translate-this-tam-npi
+    reference: Basic translation (Tamil into Nepali)
+  d99ae956-ef16-4e21-9956-43e005249b86: !Template
+    answer_choices: null
+    id: d99ae956-ef16-4e21-9956-43e005249b86
+    jinja: 'Translate this from Yoruba into Nepali: {{ sentence_yor }} ||| {{ sentence_npi
+      }}'
+    metadata: *id001
+    name: translate-this-yor-npi
+    reference: Basic translation (Yoruba into Nepali)
+  d9a7a977-96ad-43c3-936e-1aad92375033: !Template
+    answer_choices: null
+    id: d9a7a977-96ad-43c3-936e-1aad92375033
+    jinja: 'Translate this from Vietnamese into Malayalam: {{ sentence_vie }} |||
+      {{ sentence_mal }}'
+    metadata: *id001
+    name: translate-this-vie-mal
+    reference: Basic translation (Vietnamese into Malayalam)
+  d9d3678c-b3af-4158-8c26-b85cdc755d8b: !Template
+    answer_choices: null
+    id: d9d3678c-b3af-4158-8c26-b85cdc755d8b
+    jinja: 'Translate this from Nepali into Latin American Spanish: {{ sentence_npi
+      }} ||| {{ sentence_spa }}'
+    metadata: *id001
+    name: translate-this-npi-spa
+    reference: Basic translation (Nepali into Latin American Spanish)
+  d9fc4986-f4b7-4727-8820-9b0b97bf44ed: !Template
+    answer_choices: null
+    id: d9fc4986-f4b7-4727-8820-9b0b97bf44ed
+    jinja: 'Translate this from Catalan into Lingala: {{ sentence_cat }} ||| {{ sentence_lin
+      }}'
+    metadata: *id001
+    name: translate-this-cat-lin
+    reference: Basic translation (Catalan into Lingala)
+  d9fd38fd-e703-4c5d-a4f3-1d155adaec5b: !Template
+    answer_choices: null
+    id: d9fd38fd-e703-4c5d-a4f3-1d155adaec5b
+    jinja: 'Translate this from Swahili into Arabic: {{ sentence_swh }} ||| {{ sentence_ara
+      }}'
+    metadata: *id001
+    name: translate-this-swh-ara
+    reference: Basic translation (Swahili into Arabic)
+  da333679-87af-4139-ad1b-1616daae2aba: !Template
+    answer_choices: null
+    id: da333679-87af-4139-ad1b-1616daae2aba
+    jinja: 'Translate this from Marathi into Zulu: {{ sentence_mar }} ||| {{ sentence_zul
+      }}'
+    metadata: *id001
+    name: translate-this-mar-zul
+    reference: Basic translation (Marathi into Zulu)
+  daa4b29d-9bf3-425a-9f79-2c7040ed90d5: !Template
+    answer_choices: null
+    id: daa4b29d-9bf3-425a-9f79-2c7040ed90d5
+    jinja: 'Translate this from Igbo into Arabic: {{ sentence_ibo }} ||| {{ sentence_ara
+      }}'
+    metadata: *id001
+    name: translate-this-ibo-ara
+    reference: Basic translation (Igbo into Arabic)
+  db042597-f21f-44b0-9b69-8e27f71a27d9: !Template
+    answer_choices: null
+    id: db042597-f21f-44b0-9b69-8e27f71a27d9
+    jinja: 'Translate this from Punjabi into Wolof: {{ sentence_pan }} ||| {{ sentence_wol
+      }}'
+    metadata: *id001
+    name: translate-this-pan-wol
+    reference: Basic translation (Punjabi into Wolof)
+  db623e67-90ba-4c54-ac3d-54d5b965d9ca: !Template
+    answer_choices: null
+    id: db623e67-90ba-4c54-ac3d-54d5b965d9ca
+    jinja: 'Translate this from simplified Chinese into Urdu: {{ sentence_zho_simpl
+      }} ||| {{ sentence_urd }}'
+    metadata: *id001
+    name: translate-this-zho_simpl-urd
+    reference: Basic translation (simplified Chinese into Urdu)
+  dbefa5f5-356c-41cd-b64d-a278a350d7b0: !Template
+    answer_choices: null
+    id: dbefa5f5-356c-41cd-b64d-a278a350d7b0
+    jinja: 'Translate this from Catalan into traditional Chinese: {{ sentence_cat
+      }} ||| {{ sentence_zho_trad }}'
+    metadata: *id001
+    name: translate-this-cat-zho_trad
+    reference: Basic translation (Catalan into traditional Chinese)
+  dbf085ef-15c8-4a75-b580-88d399333f06: !Template
+    answer_choices: null
+    id: dbf085ef-15c8-4a75-b580-88d399333f06
+    jinja: 'Translate this from Arabic into Tamil: {{ sentence_ara }} ||| {{ sentence_tam
+      }}'
+    metadata: *id001
+    name: translate-this-ara-tam
+    reference: Basic translation (Arabic into Tamil)
+  dc5c16e0-7d47-4c10-8c8a-6ccd84f63412: !Template
+    answer_choices: null
+    id: dc5c16e0-7d47-4c10-8c8a-6ccd84f63412
+    jinja: 'Translate this from Urdu into Bengali: {{ sentence_urd }} ||| {{ sentence_ben
+      }}'
+    metadata: *id001
+    name: translate-this-urd-ben
+    reference: Basic translation (Urdu into Bengali)
+  dc8df1ac-982e-43f5-8c4b-f1dda96f6b59: !Template
+    answer_choices: null
+    id: dc8df1ac-982e-43f5-8c4b-f1dda96f6b59
+    jinja: 'Translate this from traditional Chinese into Xhosa: {{ sentence_zho_trad
+      }} ||| {{ sentence_xho }}'
+    metadata: *id001
+    name: translate-this-zho_trad-xho
+    reference: Basic translation (traditional Chinese into Xhosa)
+  dd0c4557-c90a-4f07-b683-f3dcb4831778: !Template
+    answer_choices: null
+    id: dd0c4557-c90a-4f07-b683-f3dcb4831778
+    jinja: 'Translate this from Swahili into Hindi: {{ sentence_swh }} ||| {{ sentence_hin
+      }}'
+    metadata: *id001
+    name: translate-this-swh-hin
+    reference: Basic translation (Swahili into Hindi)
+  dd7a8978-15f6-42d5-bdfd-067ae1616181: !Template
+    answer_choices: null
+    id: dd7a8978-15f6-42d5-bdfd-067ae1616181
+    jinja: 'Translate this from Nepali into Zulu: {{ sentence_npi }} ||| {{ sentence_zul
+      }}'
+    metadata: *id001
+    name: translate-this-npi-zul
+    reference: Basic translation (Nepali into Zulu)
+  dde28436-87c3-40f8-955a-2afdf7bb1174: !Template
+    answer_choices: null
+    id: dde28436-87c3-40f8-955a-2afdf7bb1174
+    jinja: 'Translate this from Gujarati into Catalan: {{ sentence_guj }} ||| {{ sentence_cat
+      }}'
+    metadata: *id001
+    name: translate-this-guj-cat
+    reference: Basic translation (Gujarati into Catalan)
+  de410903-d330-4cda-b96e-7c78e7ab76d3: !Template
+    answer_choices: null
+    id: de410903-d330-4cda-b96e-7c78e7ab76d3
+    jinja: 'Translate this from Northern Sotho into Punjabi: {{ sentence_nso }} |||
+      {{ sentence_pan }}'
+    metadata: *id001
+    name: translate-this-nso-pan
+    reference: Basic translation (Northern Sotho into Punjabi)
+  de5b053c-c875-4c35-8b93-c8943d20febe: !Template
+    answer_choices: null
+    id: de5b053c-c875-4c35-8b93-c8943d20febe
+    jinja: 'Translate this from Urdu into Oriya: {{ sentence_urd }} ||| {{ sentence_ory
+      }}'
+    metadata: *id001
+    name: translate-this-urd-ory
+    reference: Basic translation (Urdu into Oriya)
+  de5deb5c-b303-4188-b2ef-d74e61552bbe: !Template
+    answer_choices: null
+    id: de5deb5c-b303-4188-b2ef-d74e61552bbe
+    jinja: 'Translate this from simplified Chinese into Bengali: {{ sentence_zho_simpl
+      }} ||| {{ sentence_ben }}'
+    metadata: *id001
+    name: translate-this-zho_simpl-ben
+    reference: Basic translation (simplified Chinese into Bengali)
+  de7e93cf-84ac-4e95-9ff7-2b1beabd7556: !Template
+    answer_choices: null
+    id: de7e93cf-84ac-4e95-9ff7-2b1beabd7556
+    jinja: 'Translate this from Malayalam into Telugu: {{ sentence_mal }} ||| {{ sentence_tel
+      }}'
+    metadata: *id001
+    name: translate-this-mal-tel
+    reference: Basic translation (Malayalam into Telugu)
+  de9f9e46-2a9c-4a82-99f9-82db9441a23a: !Template
+    answer_choices: null
+    id: de9f9e46-2a9c-4a82-99f9-82db9441a23a
+    jinja: 'Translate this from Malayalam into Urdu: {{ sentence_mal }} ||| {{ sentence_urd
+      }}'
+    metadata: *id001
+    name: translate-this-mal-urd
+    reference: Basic translation (Malayalam into Urdu)
+  dea223f2-5cbf-4823-abdb-a69616a2845d: !Template
+    answer_choices: null
+    id: dea223f2-5cbf-4823-abdb-a69616a2845d
+    jinja: 'Translate this from Punjabi into Marathi: {{ sentence_pan }} ||| {{ sentence_mar
+      }}'
+    metadata: *id001
+    name: translate-this-pan-mar
+    reference: Basic translation (Punjabi into Marathi)
+  dec7b24c-312b-4027-81a4-0a2f33b4e846: !Template
+    answer_choices: null
+    id: dec7b24c-312b-4027-81a4-0a2f33b4e846
+    jinja: 'Translate this from simplified Chinese into Brazilian Portuguese: {{ sentence_zho_simpl
+      }} ||| {{ sentence_por }}'
+    metadata: *id001
+    name: translate-this-zho_simpl-por
+    reference: Basic translation (simplified Chinese into Brazilian Portuguese)
+  decbc79b-fdf3-4c76-854e-d631240efc34: !Template
+    answer_choices: null
+    id: decbc79b-fdf3-4c76-854e-d631240efc34
+    jinja: 'Translate this from French into Igbo: {{ sentence_fra }} ||| {{ sentence_ibo
+      }}'
+    metadata: *id001
+    name: translate-this-fra-ibo
+    reference: Basic translation (French into Igbo)
+  ded7ac46-cab2-4324-9bd9-8f89a83b85f6: !Template
+    answer_choices: null
+    id: ded7ac46-cab2-4324-9bd9-8f89a83b85f6
+    jinja: 'Translate this from Igbo into Indonesian: {{ sentence_ibo }} ||| {{ sentence_ind
+      }}'
+    metadata: *id001
+    name: translate-this-ibo-ind
+    reference: Basic translation (Igbo into Indonesian)
+  df461028-7943-43f8-afdd-a4f3d13e6ef0: !Template
+    answer_choices: null
+    id: df461028-7943-43f8-afdd-a4f3d13e6ef0
+    jinja: 'Translate this from Lingala into Brazilian Portuguese: {{ sentence_lin
+      }} ||| {{ sentence_por }}'
+    metadata: *id001
+    name: translate-this-lin-por
+    reference: Basic translation (Lingala into Brazilian Portuguese)
+  df5c1371-3e8e-4169-9fdd-c0c3aa34b11b: !Template
+    answer_choices: null
+    id: df5c1371-3e8e-4169-9fdd-c0c3aa34b11b
+    jinja: 'Translate this from Brazilian Portuguese into Malayalam: {{ sentence_por
+      }} ||| {{ sentence_mal }}'
+    metadata: *id001
+    name: translate-this-por-mal
+    reference: Basic translation (Brazilian Portuguese into Malayalam)
+  df6981f0-902a-4873-a9e7-985b9db93032: !Template
+    answer_choices: null
+    id: df6981f0-902a-4873-a9e7-985b9db93032
+    jinja: 'Translate this from Wolof into Oriya: {{ sentence_wol }} ||| {{ sentence_ory
+      }}'
+    metadata: *id001
+    name: translate-this-wol-ory
+    reference: Basic translation (Wolof into Oriya)
+  dfa9df88-cbe6-4798-8679-9511f6e33e74: !Template
+    answer_choices: null
+    id: dfa9df88-cbe6-4798-8679-9511f6e33e74
+    jinja: 'Translate this from Yoruba into Punjabi: {{ sentence_yor }} ||| {{ sentence_pan
+      }}'
+    metadata: *id001
+    name: translate-this-yor-pan
+    reference: Basic translation (Yoruba into Punjabi)
+  e0706d69-fd3a-4962-8b87-4d109bf604e3: !Template
+    answer_choices: null
+    id: e0706d69-fd3a-4962-8b87-4d109bf604e3
+    jinja: 'Translate this from Xhosa into Catalan: {{ sentence_xho }} ||| {{ sentence_cat
+      }}'
+    metadata: *id001
+    name: translate-this-xho-cat
+    reference: Basic translation (Xhosa into Catalan)
+  e0a7707d-e00e-490f-99da-640b895b1279: !Template
+    answer_choices: null
+    id: e0a7707d-e00e-490f-99da-640b895b1279
+    jinja: 'Translate this from Yoruba into English: {{ sentence_yor }} ||| {{ sentence_eng
+      }}'
+    metadata: *id001
+    name: translate-this-yor-eng
+    reference: Basic translation (Yoruba into English)
+  e0c2c3b1-8bdc-4a93-8152-9667ed2c7833: !Template
+    answer_choices: null
+    id: e0c2c3b1-8bdc-4a93-8152-9667ed2c7833
+    jinja: 'Translate this from Gujarati into Indonesian: {{ sentence_guj }} ||| {{
+      sentence_ind }}'
+    metadata: *id001
+    name: translate-this-guj-ind
+    reference: Basic translation (Gujarati into Indonesian)
+  e0febda5-c769-4617-b97a-96e1a163389c: !Template
+    answer_choices: null
+    id: e0febda5-c769-4617-b97a-96e1a163389c
+    jinja: 'Translate this from Arabic into Brazilian Portuguese: {{ sentence_ara
+      }} ||| {{ sentence_por }}'
+    metadata: *id001
+    name: translate-this-ara-por
+    reference: Basic translation (Arabic into Brazilian Portuguese)
+  e147d3a2-44b4-4686-a7ba-b68296606009: !Template
+    answer_choices: null
+    id: e147d3a2-44b4-4686-a7ba-b68296606009
+    jinja: 'Translate this from Malayalam into Igbo: {{ sentence_mal }} ||| {{ sentence_ibo
+      }}'
+    metadata: *id001
+    name: translate-this-mal-ibo
+    reference: Basic translation (Malayalam into Igbo)
+  e1d6fb46-129c-41d2-9c79-887565d5ddb6: !Template
+    answer_choices: null
+    id: e1d6fb46-129c-41d2-9c79-887565d5ddb6
+    jinja: 'Translate this from Zulu into Latin American Spanish: {{ sentence_zul
+      }} ||| {{ sentence_spa }}'
+    metadata: *id001
+    name: translate-this-zul-spa
+    reference: Basic translation (Zulu into Latin American Spanish)
+  e1d75396-a96b-4258-bde7-845734092a90: !Template
+    answer_choices: null
+    id: e1d75396-a96b-4258-bde7-845734092a90
+    jinja: 'Translate this from Hindi into Catalan: {{ sentence_hin }} ||| {{ sentence_cat
+      }}'
+    metadata: *id001
+    name: translate-this-hin-cat
+    reference: Basic translation (Hindi into Catalan)
+  e21f80b3-0c40-4063-a4d7-b66892d80ee1: !Template
+    answer_choices: null
+    id: e21f80b3-0c40-4063-a4d7-b66892d80ee1
+    jinja: 'Translate this from Malayalam into Northern Sotho: {{ sentence_mal }}
+      ||| {{ sentence_nso }}'
+    metadata: *id001
+    name: translate-this-mal-nso
+    reference: Basic translation (Malayalam into Northern Sotho)
+  e2312252-0c82-4b6f-ad75-5302e6aaa2bf: !Template
+    answer_choices: null
+    id: e2312252-0c82-4b6f-ad75-5302e6aaa2bf
+    jinja: 'Translate this from Punjabi into Lingala: {{ sentence_pan }} ||| {{ sentence_lin
+      }}'
+    metadata: *id001
+    name: translate-this-pan-lin
+    reference: Basic translation (Punjabi into Lingala)
+  e23d3aec-b9c1-43d6-a80d-3c961ef6268f: !Template
+    answer_choices: null
+    id: e23d3aec-b9c1-43d6-a80d-3c961ef6268f
+    jinja: 'Translate this from Kannada into French: {{ sentence_kan }} ||| {{ sentence_fra
+      }}'
+    metadata: *id001
+    name: translate-this-kan-fra
+    reference: Basic translation (Kannada into French)
+  e23d6d7d-d1f4-4330-a61d-10f71a794044: !Template
+    answer_choices: null
+    id: e23d6d7d-d1f4-4330-a61d-10f71a794044
+    jinja: 'Translate this from Vietnamese into Urdu: {{ sentence_vie }} ||| {{ sentence_urd
+      }}'
+    metadata: *id001
+    name: translate-this-vie-urd
+    reference: Basic translation (Vietnamese into Urdu)
+  e23eb7d1-7aad-46f4-82d4-0801f4222089: !Template
+    answer_choices: null
+    id: e23eb7d1-7aad-46f4-82d4-0801f4222089
+    jinja: 'Translate this from Urdu into Igbo: {{ sentence_urd }} ||| {{ sentence_ibo
+      }}'
+    metadata: *id001
+    name: translate-this-urd-ibo
+    reference: Basic translation (Urdu into Igbo)
+  e245e844-c7cd-47ea-ac0c-9ef317fff6c0: !Template
+    answer_choices: null
+    id: e245e844-c7cd-47ea-ac0c-9ef317fff6c0
+    jinja: 'Translate this from Northern Sotho into Arabic: {{ sentence_nso }} |||
+      {{ sentence_ara }}'
+    metadata: *id001
+    name: translate-this-nso-ara
+    reference: Basic translation (Northern Sotho into Arabic)
+  e264ec02-e439-4c23-b11d-1fd46f4308a2: !Template
+    answer_choices: null
+    id: e264ec02-e439-4c23-b11d-1fd46f4308a2
+    jinja: 'Translate this from Igbo into Lingala: {{ sentence_ibo }} ||| {{ sentence_lin
+      }}'
+    metadata: *id001
+    name: translate-this-ibo-lin
+    reference: Basic translation (Igbo into Lingala)
+  e2938095-47c6-46bc-86c2-4656fc496dee: !Template
+    answer_choices: null
+    id: e2938095-47c6-46bc-86c2-4656fc496dee
+    jinja: 'Translate this from Wolof into Indonesian: {{ sentence_wol }} ||| {{ sentence_ind
+      }}'
+    metadata: *id001
+    name: translate-this-wol-ind
+    reference: Basic translation (Wolof into Indonesian)
+  e2a8aaaa-70ca-4ca7-b1d6-5b9714efdfdf: !Template
+    answer_choices: null
+    id: e2a8aaaa-70ca-4ca7-b1d6-5b9714efdfdf
+    jinja: 'Translate this from Telugu into Lingala: {{ sentence_tel }} ||| {{ sentence_lin
+      }}'
+    metadata: *id001
+    name: translate-this-tel-lin
+    reference: Basic translation (Telugu into Lingala)
+  e2aacd50-9b9b-47d2-b82f-db8a2b609930: !Template
+    answer_choices: null
+    id: e2aacd50-9b9b-47d2-b82f-db8a2b609930
+    jinja: 'Translate this from Zulu into French: {{ sentence_zul }} ||| {{ sentence_fra
+      }}'
+    metadata: *id001
+    name: translate-this-zul-fra
+    reference: Basic translation (Zulu into French)
+  e30f5c85-4b82-49f0-a716-f32d422c0709: !Template
+    answer_choices: null
+    id: e30f5c85-4b82-49f0-a716-f32d422c0709
+    jinja: 'Translate this from Malayalam into Yoruba: {{ sentence_mal }} ||| {{ sentence_yor
+      }}'
+    metadata: *id001
+    name: translate-this-mal-yor
+    reference: Basic translation (Malayalam into Yoruba)
+  e3302779-8c72-4247-b613-d97c4e455f16: !Template
+    answer_choices: null
+    id: e3302779-8c72-4247-b613-d97c4e455f16
+    jinja: 'Translate this from Tamil into Wolof: {{ sentence_tam }} ||| {{ sentence_wol
+      }}'
+    metadata: *id001
+    name: translate-this-tam-wol
+    reference: Basic translation (Tamil into Wolof)
+  e3e2fa73-a747-4667-a7bc-a886bf57f873: !Template
+    answer_choices: null
+    id: e3e2fa73-a747-4667-a7bc-a886bf57f873
+    jinja: 'Translate this from Catalan into Swahili: {{ sentence_cat }} ||| {{ sentence_swh
+      }}'
+    metadata: *id001
+    name: translate-this-cat-swh
+    reference: Basic translation (Catalan into Swahili)
+  e4097362-162c-4188-9d16-fe8df06f5bf4: !Template
+    answer_choices: null
+    id: e4097362-162c-4188-9d16-fe8df06f5bf4
+    jinja: 'Translate this from Zulu into Malayalam: {{ sentence_zul }} ||| {{ sentence_mal
+      }}'
+    metadata: *id001
+    name: translate-this-zul-mal
+    reference: Basic translation (Zulu into Malayalam)
+  e4583c88-3973-4a0e-8939-27a78c786704: !Template
+    answer_choices: null
+    id: e4583c88-3973-4a0e-8939-27a78c786704
+    jinja: 'Translate this from Zulu into traditional Chinese: {{ sentence_zul }}
+      ||| {{ sentence_zho_trad }}'
+    metadata: *id001
+    name: translate-this-zul-zho_trad
+    reference: Basic translation (Zulu into traditional Chinese)
+  e45ade2f-f009-452c-a863-25b5dad8d8ed: !Template
+    answer_choices: null
+    id: e45ade2f-f009-452c-a863-25b5dad8d8ed
+    jinja: 'Translate this from Nepali into Punjabi: {{ sentence_npi }} ||| {{ sentence_pan
+      }}'
+    metadata: *id001
+    name: translate-this-npi-pan
+    reference: Basic translation (Nepali into Punjabi)
+  e4686c7c-40a1-453c-a2b5-9dbe39c833d7: !Template
+    answer_choices: null
+    id: e4686c7c-40a1-453c-a2b5-9dbe39c833d7
+    jinja: 'Translate this from Catalan into Igbo: {{ sentence_cat }} ||| {{ sentence_ibo
+      }}'
+    metadata: *id001
+    name: translate-this-cat-ibo
+    reference: Basic translation (Catalan into Igbo)
+  e4b8f9af-a571-48fe-9f80-a4142e66f964: !Template
+    answer_choices: null
+    id: e4b8f9af-a571-48fe-9f80-a4142e66f964
+    jinja: 'Translate this from traditional Chinese into Punjabi: {{ sentence_zho_trad
+      }} ||| {{ sentence_pan }}'
+    metadata: *id001
+    name: translate-this-zho_trad-pan
+    reference: Basic translation (traditional Chinese into Punjabi)
+  e505973c-8150-4f8b-986b-45b0e481ccff: !Template
+    answer_choices: null
+    id: e505973c-8150-4f8b-986b-45b0e481ccff
+    jinja: 'Translate this from Xhosa into Vietnamese: {{ sentence_xho }} ||| {{ sentence_vie
+      }}'
+    metadata: *id001
+    name: translate-this-xho-vie
+    reference: Basic translation (Xhosa into Vietnamese)
+  e602935e-d0be-41b3-9616-05f642695d7a: !Template
+    answer_choices: null
+    id: e602935e-d0be-41b3-9616-05f642695d7a
+    jinja: 'Translate this from Telugu into Oriya: {{ sentence_tel }} ||| {{ sentence_ory
+      }}'
+    metadata: *id001
+    name: translate-this-tel-ory
+    reference: Basic translation (Telugu into Oriya)
+  e6a7e520-a3db-47fa-942c-42d6402323de: !Template
+    answer_choices: null
+    id: e6a7e520-a3db-47fa-942c-42d6402323de
+    jinja: 'Translate this from traditional Chinese into Swahili: {{ sentence_zho_trad
+      }} ||| {{ sentence_swh }}'
+    metadata: *id001
+    name: translate-this-zho_trad-swh
+    reference: Basic translation (traditional Chinese into Swahili)
+  e7069fe1-b63e-4157-a5a7-580ee24c32ac: !Template
+    answer_choices: null
+    id: e7069fe1-b63e-4157-a5a7-580ee24c32ac
+    jinja: 'Translate this from Punjabi into English: {{ sentence_pan }} ||| {{ sentence_eng
+      }}'
+    metadata: *id001
+    name: translate-this-pan-eng
+    reference: Basic translation (Punjabi into English)
+  e811d6ba-90c7-4fd8-8baa-31af9e68f3d1: !Template
+    answer_choices: null
+    id: e811d6ba-90c7-4fd8-8baa-31af9e68f3d1
+    jinja: 'Translate this from Urdu into traditional Chinese: {{ sentence_urd }}
+      ||| {{ sentence_zho_trad }}'
+    metadata: *id001
+    name: translate-this-urd-zho_trad
+    reference: Basic translation (Urdu into traditional Chinese)
+  e839d120-4eeb-482f-a6e0-18c776dcb391: !Template
+    answer_choices: null
+    id: e839d120-4eeb-482f-a6e0-18c776dcb391
+    jinja: 'Translate this from Swahili into Bengali: {{ sentence_swh }} ||| {{ sentence_ben
+      }}'
+    metadata: *id001
+    name: translate-this-swh-ben
+    reference: Basic translation (Swahili into Bengali)
+  e84bb935-af82-48a6-b6ba-86e46ddb973b: !Template
+    answer_choices: null
+    id: e84bb935-af82-48a6-b6ba-86e46ddb973b
+    jinja: 'Translate this from Yoruba into Swahili: {{ sentence_yor }} ||| {{ sentence_swh
+      }}'
+    metadata: *id001
+    name: translate-this-yor-swh
+    reference: Basic translation (Yoruba into Swahili)
+  e8b701cd-c990-4ffc-89f5-023b2ba99dad: !Template
+    answer_choices: null
+    id: e8b701cd-c990-4ffc-89f5-023b2ba99dad
+    jinja: 'Translate this from simplified Chinese into Oriya: {{ sentence_zho_simpl
+      }} ||| {{ sentence_ory }}'
+    metadata: *id001
+    name: translate-this-zho_simpl-ory
+    reference: Basic translation (simplified Chinese into Oriya)
+  e8c5b7fb-5321-4062-b8db-9c1827d5ca09: !Template
+    answer_choices: null
+    id: e8c5b7fb-5321-4062-b8db-9c1827d5ca09
+    jinja: 'Translate this from Wolof into Tamil: {{ sentence_wol }} ||| {{ sentence_tam
+      }}'
+    metadata: *id001
+    name: translate-this-wol-tam
+    reference: Basic translation (Wolof into Tamil)
+  e8cf9d0f-1a91-4664-8530-f0101a4e12fd: !Template
+    answer_choices: null
+    id: e8cf9d0f-1a91-4664-8530-f0101a4e12fd
+    jinja: 'Translate this from Brazilian Portuguese into Catalan: {{ sentence_por
+      }} ||| {{ sentence_cat }}'
+    metadata: *id001
+    name: translate-this-por-cat
+    reference: Basic translation (Brazilian Portuguese into Catalan)
+  e8d0a8ae-5c8d-4962-9471-c3b7627626ff: !Template
+    answer_choices: null
+    id: e8d0a8ae-5c8d-4962-9471-c3b7627626ff
+    jinja: 'Translate this from Bengali into French: {{ sentence_ben }} ||| {{ sentence_fra
+      }}'
+    metadata: *id001
+    name: translate-this-ben-fra
+    reference: Basic translation (Bengali into French)
+  e8e68220-88a6-4107-973a-71d415ce9dbb: !Template
+    answer_choices: null
+    id: e8e68220-88a6-4107-973a-71d415ce9dbb
+    jinja: 'Translate this from Malayalam into Arabic: {{ sentence_mal }} ||| {{ sentence_ara
+      }}'
+    metadata: *id001
+    name: translate-this-mal-ara
+    reference: Basic translation (Malayalam into Arabic)
+  e9050002-e740-4bbf-9a91-8337317a1ff7: !Template
+    answer_choices: null
+    id: e9050002-e740-4bbf-9a91-8337317a1ff7
+    jinja: 'Translate this from Vietnamese into Tamil: {{ sentence_vie }} ||| {{ sentence_tam
+      }}'
+    metadata: *id001
+    name: translate-this-vie-tam
+    reference: Basic translation (Vietnamese into Tamil)
+  e979db17-9b90-4b48-9eb8-f8eeaeec7c31: !Template
+    answer_choices: null
+    id: e979db17-9b90-4b48-9eb8-f8eeaeec7c31
+    jinja: 'Translate this from Arabic into Igbo: {{ sentence_ara }} ||| {{ sentence_ibo
+      }}'
+    metadata: *id001
+    name: translate-this-ara-ibo
+    reference: Basic translation (Arabic into Igbo)
+  ea0997d5-d539-4433-90f0-30605ebbdc64: !Template
+    answer_choices: null
+    id: ea0997d5-d539-4433-90f0-30605ebbdc64
+    jinja: 'Translate this from Hindi into Punjabi: {{ sentence_hin }} ||| {{ sentence_pan
+      }}'
+    metadata: *id001
+    name: translate-this-hin-pan
+    reference: Basic translation (Hindi into Punjabi)
+  eaa45319-ed3d-4546-abbd-a95cce60b390: !Template
+    answer_choices: null
+    id: eaa45319-ed3d-4546-abbd-a95cce60b390
+    jinja: 'Translate this from Bengali into Vietnamese: {{ sentence_ben }} ||| {{
+      sentence_vie }}'
+    metadata: *id001
+    name: translate-this-ben-vie
+    reference: Basic translation (Bengali into Vietnamese)
+  eabc6c08-9dc1-4ce6-9532-86e2ea6b2cea: !Template
+    answer_choices: null
+    id: eabc6c08-9dc1-4ce6-9532-86e2ea6b2cea
+    jinja: 'Translate this from Telugu into Indonesian: {{ sentence_tel }} ||| {{
+      sentence_ind }}'
+    metadata: *id001
+    name: translate-this-tel-ind
+    reference: Basic translation (Telugu into Indonesian)
+  eae8f9a5-02b7-42a8-81b8-1179ee449abe: !Template
+    answer_choices: null
+    id: eae8f9a5-02b7-42a8-81b8-1179ee449abe
+    jinja: 'Translate this from Brazilian Portuguese into Yoruba: {{ sentence_por
+      }} ||| {{ sentence_yor }}'
+    metadata: *id001
+    name: translate-this-por-yor
+    reference: Basic translation (Brazilian Portuguese into Yoruba)
+  eb7840c1-a94f-4a77-b0ee-78b7fde429e1: !Template
+    answer_choices: null
+    id: eb7840c1-a94f-4a77-b0ee-78b7fde429e1
+    jinja: 'Translate this from Lingala into Yoruba: {{ sentence_lin }} ||| {{ sentence_yor
+      }}'
+    metadata: *id001
+    name: translate-this-lin-yor
+    reference: Basic translation (Lingala into Yoruba)
+  ebe07f58-bb5c-4c98-ab53-691b6eb8f80f: !Template
+    answer_choices: null
+    id: ebe07f58-bb5c-4c98-ab53-691b6eb8f80f
+    jinja: 'Translate this from Lingala into Wolof: {{ sentence_lin }} ||| {{ sentence_wol
+      }}'
+    metadata: *id001
+    name: translate-this-lin-wol
+    reference: Basic translation (Lingala into Wolof)
+  ec98fa23-7e17-44cf-9b6e-ea19a16568cd: !Template
+    answer_choices: null
+    id: ec98fa23-7e17-44cf-9b6e-ea19a16568cd
+    jinja: 'Translate this from Kannada into Brazilian Portuguese: {{ sentence_kan
+      }} ||| {{ sentence_por }}'
+    metadata: *id001
+    name: translate-this-kan-por
+    reference: Basic translation (Kannada into Brazilian Portuguese)
+  ecd7bf4e-3de2-403a-a687-d5167588d252: !Template
+    answer_choices: null
+    id: ecd7bf4e-3de2-403a-a687-d5167588d252
+    jinja: 'Translate this from simplified Chinese into Arabic: {{ sentence_zho_simpl
+      }} ||| {{ sentence_ara }}'
+    metadata: *id001
+    name: translate-this-zho_simpl-ara
+    reference: Basic translation (simplified Chinese into Arabic)
+  ed1b49b0-d5e9-4b58-8f18-5e837f8f549f: !Template
+    answer_choices: null
+    id: ed1b49b0-d5e9-4b58-8f18-5e837f8f549f
+    jinja: 'Translate this from Bengali into Brazilian Portuguese: {{ sentence_ben
+      }} ||| {{ sentence_por }}'
+    metadata: *id001
+    name: translate-this-ben-por
+    reference: Basic translation (Bengali into Brazilian Portuguese)
+  ed8908cc-db66-41a6-8bc6-567f55ad0d64: !Template
+    answer_choices: null
+    id: ed8908cc-db66-41a6-8bc6-567f55ad0d64
+    jinja: 'Translate this from Marathi into Swahili: {{ sentence_mar }} ||| {{ sentence_swh
+      }}'
+    metadata: *id001
+    name: translate-this-mar-swh
+    reference: Basic translation (Marathi into Swahili)
+  edfd3a85-c602-4a02-bfe2-2b8c798b8b4e: !Template
+    answer_choices: null
+    id: edfd3a85-c602-4a02-bfe2-2b8c798b8b4e
+    jinja: 'Translate this from Urdu into Zulu: {{ sentence_urd }} ||| {{ sentence_zul
+      }}'
+    metadata: *id001
+    name: translate-this-urd-zul
+    reference: Basic translation (Urdu into Zulu)
+  ee066521-c19b-4260-b16d-58c779570027: !Template
+    answer_choices: null
+    id: ee066521-c19b-4260-b16d-58c779570027
+    jinja: 'Translate this from Xhosa into French: {{ sentence_xho }} ||| {{ sentence_fra
+      }}'
+    metadata: *id001
+    name: translate-this-xho-fra
+    reference: Basic translation (Xhosa into French)
+  ee188aac-d6be-4c45-bdcc-169dd661b282: !Template
+    answer_choices: null
+    id: ee188aac-d6be-4c45-bdcc-169dd661b282
+    jinja: 'Translate this from French into Catalan: {{ sentence_fra }} ||| {{ sentence_cat
+      }}'
+    metadata: *id001
+    name: translate-this-fra-cat
+    reference: Basic translation (French into Catalan)
+  ee1dc287-5c35-478b-8262-384096257184: !Template
+    answer_choices: null
+    id: ee1dc287-5c35-478b-8262-384096257184
+    jinja: 'Translate this from traditional Chinese into Igbo: {{ sentence_zho_trad
+      }} ||| {{ sentence_ibo }}'
+    metadata: *id001
+    name: translate-this-zho_trad-ibo
+    reference: Basic translation (traditional Chinese into Igbo)
+  ee201d32-c5dc-4e2a-995a-03465a627745: !Template
+    answer_choices: null
+    id: ee201d32-c5dc-4e2a-995a-03465a627745
+    jinja: 'Translate this from Zulu into Catalan: {{ sentence_zul }} ||| {{ sentence_cat
+      }}'
+    metadata: *id001
+    name: translate-this-zul-cat
+    reference: Basic translation (Zulu into Catalan)
+  ee35f6d1-0a8b-418b-b47c-99f1391e434a: !Template
+    answer_choices: null
+    id: ee35f6d1-0a8b-418b-b47c-99f1391e434a
+    jinja: 'Translate this from Igbo into Swahili: {{ sentence_ibo }} ||| {{ sentence_swh
+      }}'
+    metadata: *id001
+    name: translate-this-ibo-swh
+    reference: Basic translation (Igbo into Swahili)
+  ee5c9a97-0e57-4131-8776-ba0ca1419791: !Template
+    answer_choices: null
+    id: ee5c9a97-0e57-4131-8776-ba0ca1419791
+    jinja: 'Translate this from English into Marathi: {{ sentence_eng }} ||| {{ sentence_mar
+      }}'
+    metadata: *id001
+    name: translate-this-eng-mar
+    reference: Basic translation (English into Marathi)
+  ee77955e-b7e4-4cb2-86b1-8f0b13f66b04: !Template
+    answer_choices: null
+    id: ee77955e-b7e4-4cb2-86b1-8f0b13f66b04
+    jinja: 'Translate this from Indonesian into Kannada: {{ sentence_ind }} ||| {{
+      sentence_kan }}'
+    metadata: *id001
+    name: translate-this-ind-kan
+    reference: Basic translation (Indonesian into Kannada)
+  ee8e51fb-0b9b-46e3-b1cf-0ebcee688fa9: !Template
+    answer_choices: null
+    id: ee8e51fb-0b9b-46e3-b1cf-0ebcee688fa9
+    jinja: 'Translate this from Latin American Spanish into Wolof: {{ sentence_spa
+      }} ||| {{ sentence_wol }}'
+    metadata: *id001
+    name: translate-this-spa-wol
+    reference: Basic translation (Latin American Spanish into Wolof)
+  ef2f7b3e-e3e6-4146-81ca-bdcaf79b04cf: !Template
+    answer_choices: null
+    id: ef2f7b3e-e3e6-4146-81ca-bdcaf79b04cf
+    jinja: 'Translate this from Swahili into Latin American Spanish: {{ sentence_swh
+      }} ||| {{ sentence_spa }}'
+    metadata: *id001
+    name: translate-this-swh-spa
+    reference: Basic translation (Swahili into Latin American Spanish)
+  ef56588b-9d0c-42f0-8cd7-03d6c17fcd76: !Template
+    answer_choices: null
+    id: ef56588b-9d0c-42f0-8cd7-03d6c17fcd76
+    jinja: 'Translate this from Northern Sotho into French: {{ sentence_nso }} |||
+      {{ sentence_fra }}'
+    metadata: *id001
+    name: translate-this-nso-fra
+    reference: Basic translation (Northern Sotho into French)
+  ef84728b-e254-49eb-bff3-ca9820181c2a: !Template
+    answer_choices: null
+    id: ef84728b-e254-49eb-bff3-ca9820181c2a
+    jinja: 'Translate this from Tamil into French: {{ sentence_tam }} ||| {{ sentence_fra
+      }}'
+    metadata: *id001
+    name: translate-this-tam-fra
+    reference: Basic translation (Tamil into French)
+  efba6685-d032-421f-9ff6-2c93d8aba6d7: !Template
+    answer_choices: null
+    id: efba6685-d032-421f-9ff6-2c93d8aba6d7
+    jinja: 'Translate this from Punjabi into traditional Chinese: {{ sentence_pan
+      }} ||| {{ sentence_zho_trad }}'
+    metadata: *id001
+    name: translate-this-pan-zho_trad
+    reference: Basic translation (Punjabi into traditional Chinese)
+  f01e7fd2-0161-4ec9-9ad6-aac8054642c2: !Template
+    answer_choices: null
+    id: f01e7fd2-0161-4ec9-9ad6-aac8054642c2
+    jinja: 'Translate this from French into simplified Chinese: {{ sentence_fra }}
+      ||| {{ sentence_zho_simpl }}'
+    metadata: *id001
+    name: translate-this-fra-zho_simpl
+    reference: Basic translation (French into simplified Chinese)
+  f0ce751b-580a-4081-80d9-55b8cfb82abd: !Template
+    answer_choices: null
+    id: f0ce751b-580a-4081-80d9-55b8cfb82abd
+    jinja: 'Translate this from Hindi into Yoruba: {{ sentence_hin }} ||| {{ sentence_yor
+      }}'
+    metadata: *id001
+    name: translate-this-hin-yor
+    reference: Basic translation (Hindi into Yoruba)
+  f0f74a44-0396-4f09-97b7-f785c6aa7002: !Template
+    answer_choices: null
+    id: f0f74a44-0396-4f09-97b7-f785c6aa7002
+    jinja: 'Translate this from Assamese into Oriya: {{ sentence_asm }} ||| {{ sentence_ory
+      }}'
+    metadata: *id001
+    name: translate-this-asm-ory
+    reference: Basic translation (Assamese into Oriya)
+  f145e0a5-7b9e-4de5-ad3a-a95be295c2d4: !Template
+    answer_choices: null
+    id: f145e0a5-7b9e-4de5-ad3a-a95be295c2d4
+    jinja: 'Translate this from Indonesian into Arabic: {{ sentence_ind }} ||| {{
+      sentence_ara }}'
+    metadata: *id001
+    name: translate-this-ind-ara
+    reference: Basic translation (Indonesian into Arabic)
+  f1549179-7cfe-41e2-bc26-7108e79c6691: !Template
+    answer_choices: null
+    id: f1549179-7cfe-41e2-bc26-7108e79c6691
+    jinja: 'Translate this from Marathi into Bengali: {{ sentence_mar }} ||| {{ sentence_ben
+      }}'
+    metadata: *id001
+    name: translate-this-mar-ben
+    reference: Basic translation (Marathi into Bengali)
+  f15759eb-6c9f-4f43-935a-86962719db04: !Template
+    answer_choices: null
+    id: f15759eb-6c9f-4f43-935a-86962719db04
+    jinja: 'Translate this from Nepali into Telugu: {{ sentence_npi }} ||| {{ sentence_tel
+      }}'
+    metadata: *id001
+    name: translate-this-npi-tel
+    reference: Basic translation (Nepali into Telugu)
+  f17db1a9-ed89-45ff-b531-1e5030cec369: !Template
+    answer_choices: null
+    id: f17db1a9-ed89-45ff-b531-1e5030cec369
+    jinja: 'Translate this from Assamese into Arabic: {{ sentence_asm }} ||| {{ sentence_ara
+      }}'
+    metadata: *id001
+    name: translate-this-asm-ara
+    reference: Basic translation (Assamese into Arabic)
+  f1f173bb-9f76-4e70-b8e5-8bfd0df1267d: !Template
+    answer_choices: null
+    id: f1f173bb-9f76-4e70-b8e5-8bfd0df1267d
+    jinja: 'Translate this from Bengali into Igbo: {{ sentence_ben }} ||| {{ sentence_ibo
+      }}'
+    metadata: *id001
+    name: translate-this-ben-ibo
+    reference: Basic translation (Bengali into Igbo)
+  f2438150-2ab5-470a-a005-3f27bfd8dd2c: !Template
+    answer_choices: null
+    id: f2438150-2ab5-470a-a005-3f27bfd8dd2c
+    jinja: 'Translate this from Swahili into Malayalam: {{ sentence_swh }} ||| {{
+      sentence_mal }}'
+    metadata: *id001
+    name: translate-this-swh-mal
+    reference: Basic translation (Swahili into Malayalam)
+  f2723207-177f-416b-acfd-24d621a6aaad: !Template
+    answer_choices: null
+    id: f2723207-177f-416b-acfd-24d621a6aaad
+    jinja: 'Translate this from Marathi into Wolof: {{ sentence_mar }} ||| {{ sentence_wol
+      }}'
+    metadata: *id001
+    name: translate-this-mar-wol
+    reference: Basic translation (Marathi into Wolof)
+  f291cf5f-502c-456e-aa5b-dfba11859531: !Template
+    answer_choices: null
+    id: f291cf5f-502c-456e-aa5b-dfba11859531
+    jinja: 'Translate this from Tamil into Igbo: {{ sentence_tam }} ||| {{ sentence_ibo
+      }}'
+    metadata: *id001
+    name: translate-this-tam-ibo
+    reference: Basic translation (Tamil into Igbo)
+  f2bf1f79-52a1-48eb-a86c-debb4effa082: !Template
+    answer_choices: null
+    id: f2bf1f79-52a1-48eb-a86c-debb4effa082
+    jinja: 'Translate this from Wolof into Bengali: {{ sentence_wol }} ||| {{ sentence_ben
+      }}'
+    metadata: *id001
+    name: translate-this-wol-ben
+    reference: Basic translation (Wolof into Bengali)
+  f2c6ee80-16f7-45e3-a68d-1d4e11b24134: !Template
+    answer_choices: null
+    id: f2c6ee80-16f7-45e3-a68d-1d4e11b24134
+    jinja: 'Translate this from English into Xhosa: {{ sentence_eng }} ||| {{ sentence_xho
+      }}'
+    metadata: *id001
+    name: translate-this-eng-xho
+    reference: Basic translation (English into Xhosa)
+  f2f63218-01d0-4310-bb4b-be36d4890200: !Template
+    answer_choices: null
+    id: f2f63218-01d0-4310-bb4b-be36d4890200
+    jinja: 'Translate this from simplified Chinese into Indonesian: {{ sentence_zho_simpl
+      }} ||| {{ sentence_ind }}'
+    metadata: *id001
+    name: translate-this-zho_simpl-ind
+    reference: Basic translation (simplified Chinese into Indonesian)
+  f42e82d8-dea9-461f-b236-a8567d1ff256: !Template
+    answer_choices: null
+    id: f42e82d8-dea9-461f-b236-a8567d1ff256
+    jinja: 'Translate this from Kannada into Arabic: {{ sentence_kan }} ||| {{ sentence_ara
+      }}'
+    metadata: *id001
+    name: translate-this-kan-ara
+    reference: Basic translation (Kannada into Arabic)
+  f5e76f4a-1331-4e9c-95ba-1a903ab2d532: !Template
+    answer_choices: null
+    id: f5e76f4a-1331-4e9c-95ba-1a903ab2d532
+    jinja: 'Translate this from Hindi into Marathi: {{ sentence_hin }} ||| {{ sentence_mar
+      }}'
+    metadata: *id001
+    name: translate-this-hin-mar
+    reference: Basic translation (Hindi into Marathi)
+  f5eeccb4-7d79-494a-9f47-d56c74765834: !Template
+    answer_choices: null
+    id: f5eeccb4-7d79-494a-9f47-d56c74765834
+    jinja: 'Translate this from Brazilian Portuguese into Telugu: {{ sentence_por
+      }} ||| {{ sentence_tel }}'
+    metadata: *id001
+    name: translate-this-por-tel
+    reference: Basic translation (Brazilian Portuguese into Telugu)
+  f602ec66-4282-41fb-8755-102985a7a4e2: !Template
+    answer_choices: null
+    id: f602ec66-4282-41fb-8755-102985a7a4e2
+    jinja: 'Translate this from French into Kannada: {{ sentence_fra }} ||| {{ sentence_kan
+      }}'
+    metadata: *id001
+    name: translate-this-fra-kan
+    reference: Basic translation (French into Kannada)
+  f64eb6f0-e763-4a8b-8500-ce3e765c1639: !Template
+    answer_choices: null
+    id: f64eb6f0-e763-4a8b-8500-ce3e765c1639
+    jinja: 'Translate this from Indonesian into Xhosa: {{ sentence_ind }} ||| {{ sentence_xho
+      }}'
+    metadata: *id001
+    name: translate-this-ind-xho
+    reference: Basic translation (Indonesian into Xhosa)
+  f6826b9f-6350-4e07-90ad-e40880b91bbd: !Template
+    answer_choices: null
+    id: f6826b9f-6350-4e07-90ad-e40880b91bbd
+    jinja: 'Translate this from Latin American Spanish into Lingala: {{ sentence_spa
+      }} ||| {{ sentence_lin }}'
+    metadata: *id001
+    name: translate-this-spa-lin
+    reference: Basic translation (Latin American Spanish into Lingala)
+  f7126d7a-ed42-46e8-a56c-3589b0d698f9: !Template
+    answer_choices: null
+    id: f7126d7a-ed42-46e8-a56c-3589b0d698f9
+    jinja: 'Translate this from Nepali into Swahili: {{ sentence_npi }} ||| {{ sentence_swh
+      }}'
+    metadata: *id001
+    name: translate-this-npi-swh
+    reference: Basic translation (Nepali into Swahili)
+  f7226a1f-24fc-43a3-8817-d1307608cf87: !Template
+    answer_choices: null
+    id: f7226a1f-24fc-43a3-8817-d1307608cf87
+    jinja: 'Translate this from Lingala into Malayalam: {{ sentence_lin }} ||| {{
+      sentence_mal }}'
+    metadata: *id001
+    name: translate-this-lin-mal
+    reference: Basic translation (Lingala into Malayalam)
+  f7658bdd-0119-4fc0-981b-696d8ed7b7ed: !Template
+    answer_choices: null
+    id: f7658bdd-0119-4fc0-981b-696d8ed7b7ed
+    jinja: 'Translate this from Zulu into Assamese: {{ sentence_zul }} ||| {{ sentence_asm
+      }}'
+    metadata: *id001
+    name: translate-this-zul-asm
+    reference: Basic translation (Zulu into Assamese)
+  f7661d38-c4d0-4da0-b43a-edd4d210b38f: !Template
+    answer_choices: null
+    id: f7661d38-c4d0-4da0-b43a-edd4d210b38f
+    jinja: 'Translate this from Urdu into simplified Chinese: {{ sentence_urd }} |||
+      {{ sentence_zho_simpl }}'
+    metadata: *id001
+    name: translate-this-urd-zho_simpl
+    reference: Basic translation (Urdu into simplified Chinese)
+  f7ee981d-0a6e-4550-9c68-d442ab363519: !Template
+    answer_choices: null
+    id: f7ee981d-0a6e-4550-9c68-d442ab363519
+    jinja: 'Translate this from Lingala into Arabic: {{ sentence_lin }} ||| {{ sentence_ara
+      }}'
+    metadata: *id001
+    name: translate-this-lin-ara
+    reference: Basic translation (Lingala into Arabic)
+  f7fbc1bb-5029-46df-994f-276493ae5840: !Template
+    answer_choices: null
+    id: f7fbc1bb-5029-46df-994f-276493ae5840
+    jinja: 'Translate this from Urdu into Kannada: {{ sentence_urd }} ||| {{ sentence_kan
+      }}'
+    metadata: *id001
+    name: translate-this-urd-kan
+    reference: Basic translation (Urdu into Kannada)
+  f80285c0-5c5a-4c26-842f-98485fea996f: !Template
+    answer_choices: null
+    id: f80285c0-5c5a-4c26-842f-98485fea996f
+    jinja: 'Translate this from Wolof into Punjabi: {{ sentence_wol }} ||| {{ sentence_pan
+      }}'
+    metadata: *id001
+    name: translate-this-wol-pan
+    reference: Basic translation (Wolof into Punjabi)
+  f82de6d9-2d52-43bb-9e9c-9613ebf8f179: !Template
+    answer_choices: null
+    id: f82de6d9-2d52-43bb-9e9c-9613ebf8f179
+    jinja: 'Translate this from English into Oriya: {{ sentence_eng }} ||| {{ sentence_ory
+      }}'
+    metadata: *id001
+    name: translate-this-eng-ory
+    reference: Basic translation (English into Oriya)
+  f87772f2-0a05-48d2-83c7-8733f645ebf2: !Template
+    answer_choices: null
+    id: f87772f2-0a05-48d2-83c7-8733f645ebf2
+    jinja: 'Translate this from Urdu into Wolof: {{ sentence_urd }} ||| {{ sentence_wol
+      }}'
+    metadata: *id001
+    name: translate-this-urd-wol
+    reference: Basic translation (Urdu into Wolof)
+  f8a22446-1976-4149-99fd-4432e1d1247b: !Template
+    answer_choices: null
+    id: f8a22446-1976-4149-99fd-4432e1d1247b
+    jinja: 'Translate this from Wolof into Gujarati: {{ sentence_wol }} ||| {{ sentence_guj
+      }}'
+    metadata: *id001
+    name: translate-this-wol-guj
+    reference: Basic translation (Wolof into Gujarati)
+  f8b6bd68-52c9-4cf1-8f78-1ce164a32887: !Template
+    answer_choices: null
+    id: f8b6bd68-52c9-4cf1-8f78-1ce164a32887
+    jinja: 'Translate this from Nepali into traditional Chinese: {{ sentence_npi }}
+      ||| {{ sentence_zho_trad }}'
+    metadata: *id001
+    name: translate-this-npi-zho_trad
+    reference: Basic translation (Nepali into traditional Chinese)
+  f91b6339-6390-4871-8675-65ad58ba27b0: !Template
+    answer_choices: null
+    id: f91b6339-6390-4871-8675-65ad58ba27b0
+    jinja: 'Translate this from Oriya into Indonesian: {{ sentence_ory }} ||| {{ sentence_ind
+      }}'
+    metadata: *id001
+    name: translate-this-ory-ind
+    reference: Basic translation (Oriya into Indonesian)
+  f976fdf3-ec3f-4d5f-a64d-c1b2482bc54b: !Template
+    answer_choices: null
+    id: f976fdf3-ec3f-4d5f-a64d-c1b2482bc54b
+    jinja: 'Translate this from Lingala into English: {{ sentence_lin }} ||| {{ sentence_eng
+      }}'
+    metadata: *id001
+    name: translate-this-lin-eng
+    reference: Basic translation (Lingala into English)
+  f9846b99-3f83-4e11-9fc3-2870154e1c0d: !Template
+    answer_choices: null
+    id: f9846b99-3f83-4e11-9fc3-2870154e1c0d
+    jinja: 'Translate this from Malayalam into Punjabi: {{ sentence_mal }} ||| {{
+      sentence_pan }}'
+    metadata: *id001
+    name: translate-this-mal-pan
+    reference: Basic translation (Malayalam into Punjabi)
+  fa64d9a9-7dab-4a0e-9eb0-13c3d58bf356: !Template
+    answer_choices: null
+    id: fa64d9a9-7dab-4a0e-9eb0-13c3d58bf356
+    jinja: 'Translate this from Zulu into Brazilian Portuguese: {{ sentence_zul }}
+      ||| {{ sentence_por }}'
+    metadata: *id001
+    name: translate-this-zul-por
+    reference: Basic translation (Zulu into Brazilian Portuguese)
+  faf86f4b-d77f-403d-ab03-774659a36781: !Template
+    answer_choices: null
+    id: faf86f4b-d77f-403d-ab03-774659a36781
+    jinja: 'Translate this from Northern Sotho into Kannada: {{ sentence_nso }} |||
+      {{ sentence_kan }}'
+    metadata: *id001
+    name: translate-this-nso-kan
+    reference: Basic translation (Northern Sotho into Kannada)
+  fceee8bf-33f8-4098-91c3-a69444ed9697: !Template
+    answer_choices: null
+    id: fceee8bf-33f8-4098-91c3-a69444ed9697
+    jinja: 'Translate this from Assamese into Tamil: {{ sentence_asm }} ||| {{ sentence_tam
+      }}'
+    metadata: *id001
+    name: translate-this-asm-tam
+    reference: Basic translation (Assamese into Tamil)
+  fe2624bb-342f-4997-af6a-3b943628883d: !Template
+    answer_choices: null
+    id: fe2624bb-342f-4997-af6a-3b943628883d
+    jinja: 'Translate this from Northern Sotho into Indonesian: {{ sentence_nso }}
+      ||| {{ sentence_ind }}'
+    metadata: *id001
+    name: translate-this-nso-ind
+    reference: Basic translation (Northern Sotho into Indonesian)
+  fe370421-c1f2-4759-82f7-6bd488427d3f: !Template
+    answer_choices: null
+    id: fe370421-c1f2-4759-82f7-6bd488427d3f
+    jinja: 'Translate this from Lingala into Indonesian: {{ sentence_lin }} ||| {{
+      sentence_ind }}'
+    metadata: *id001
+    name: translate-this-lin-ind
+    reference: Basic translation (Lingala into Indonesian)
+  fed34e44-76c0-45a5-b49d-7b8ca6cdcb38: !Template
+    answer_choices: null
+    id: fed34e44-76c0-45a5-b49d-7b8ca6cdcb38
+    jinja: 'Translate this from Indonesian into Latin American Spanish: {{ sentence_ind
+      }} ||| {{ sentence_spa }}'
+    metadata: *id001
+    name: translate-this-ind-spa
+    reference: Basic translation (Indonesian into Latin American Spanish)
+  fef417de-47a9-4913-b5d0-b61bff7655fd: !Template
+    answer_choices: null
+    id: fef417de-47a9-4913-b5d0-b61bff7655fd
+    jinja: 'Translate this from Kannada into Assamese: {{ sentence_kan }} ||| {{ sentence_asm
+      }}'
+    metadata: *id001
+    name: translate-this-kan-asm
+    reference: Basic translation (Kannada into Assamese)
+  fefce4a4-8882-4b40-89f2-444be618eb53: !Template
+    answer_choices: null
+    id: fefce4a4-8882-4b40-89f2-444be618eb53
+    jinja: 'Translate this from Yoruba into Zulu: {{ sentence_yor }} ||| {{ sentence_zul
+      }}'
+    metadata: *id001
+    name: translate-this-yor-zul
+    reference: Basic translation (Yoruba into Zulu)

From b6fa2e72a5137f2a3ea5734a91a721ce13cc2559 Mon Sep 17 00:00:00 2001
From: Rachel Bawden <rachel.bawden@inria.fr@users.noreply.github.com>
Date: Thu, 16 Jun 2022 13:46:19 +0200
Subject: [PATCH 25/31] changed choice of template to one of the form: SRC:
 src_text = TRG: ||| trg_text

---
 .../gsarti/flores_101/all/templates.yaml      | 10154 +++++++---------
 1 file changed, 4723 insertions(+), 5431 deletions(-)

diff --git a/promptsource/templates/gsarti/flores_101/all/templates.yaml b/promptsource/templates/gsarti/flores_101/all/templates.yaml
index 1a573270a..0929a39fd 100644
--- a/promptsource/templates/gsarti/flores_101/all/templates.yaml
+++ b/promptsource/templates/gsarti/flores_101/all/templates.yaml
@@ -1,7454 +1,6746 @@
 dataset: gsarti/flores_101/all
 templates:
-  00843456-ace2-4495-8087-d6053dac228d: !Template
+  00ebe80a-69a5-4330-aeb5-5b6c53acb923: !Template
     answer_choices: null
-    id: 00843456-ace2-4495-8087-d6053dac228d
-    jinja: 'Translate this from Brazilian Portuguese into Gujarati: {{ sentence_por
-      }} ||| {{ sentence_guj }}'
+    id: 00ebe80a-69a5-4330-aeb5-5b6c53acb923
+    jinja: 'Catalan: {{ sentence_cat }} = English: ||| {{ sentence_eng }}'
     metadata: &id001 !TemplateMetadata
       choices_in_prompt: false
       metrics:
       - BLEU
       original_task: true
-    name: translate-this-por-guj
-    reference: Basic translation (Brazilian Portuguese into Gujarati)
-  008ff51b-8164-4830-8029-88fd78fce87a: !Template
+    name: equals-translation-cat-eng
+    reference: Equals translation (Catalan into English)
+  01495c35-ccf9-4f16-9c47-a096c6d42d4e: !Template
     answer_choices: null
-    id: 008ff51b-8164-4830-8029-88fd78fce87a
-    jinja: 'Translate this from Yoruba into Vietnamese: {{ sentence_yor }} ||| {{
-      sentence_vie }}'
+    id: 01495c35-ccf9-4f16-9c47-a096c6d42d4e
+    jinja: 'Punjabi: {{ sentence_pan }} = simplified Chinese: ||| {{ sentence_zho_simpl
+      }}'
     metadata: *id001
-    name: translate-this-yor-vie
-    reference: Basic translation (Yoruba into Vietnamese)
-  00ae8bd0-881c-45d1-a32e-e24effdd0cc5: !Template
+    name: equals-translation-pan-zho_simpl
+    reference: Equals translation (Punjabi into simplified Chinese)
+  01a2e45b-7099-4475-9aae-118d96caa5bc: !Template
     answer_choices: null
-    id: 00ae8bd0-881c-45d1-a32e-e24effdd0cc5
-    jinja: 'Translate this from Tamil into traditional Chinese: {{ sentence_tam }}
-      ||| {{ sentence_zho_trad }}'
+    id: 01a2e45b-7099-4475-9aae-118d96caa5bc
+    jinja: 'Telugu: {{ sentence_tel }} = Yoruba: ||| {{ sentence_yor }}'
     metadata: *id001
-    name: translate-this-tam-zho_trad
-    reference: Basic translation (Tamil into traditional Chinese)
-  0164b6c2-c61b-41ac-b837-90225ecf7ac6: !Template
+    name: equals-translation-tel-yor
+    reference: Equals translation (Telugu into Yoruba)
+  02753690-66ce-48f2-8283-4741fc111397: !Template
     answer_choices: null
-    id: 0164b6c2-c61b-41ac-b837-90225ecf7ac6
-    jinja: 'Translate this from simplified Chinese into French: {{ sentence_zho_simpl
-      }} ||| {{ sentence_fra }}'
+    id: 02753690-66ce-48f2-8283-4741fc111397
+    jinja: 'Kannada: {{ sentence_kan }} = French: ||| {{ sentence_fra }}'
     metadata: *id001
-    name: translate-this-zho_simpl-fra
-    reference: Basic translation (simplified Chinese into French)
-  0168da7d-5841-4060-974b-9837abd54103: !Template
+    name: equals-translation-kan-fra
+    reference: Equals translation (Kannada into French)
+  02f89823-e75e-4a8c-878a-498b2493c862: !Template
     answer_choices: null
-    id: 0168da7d-5841-4060-974b-9837abd54103
-    jinja: 'Translate this from French into Zulu: {{ sentence_fra }} ||| {{ sentence_zul
+    id: 02f89823-e75e-4a8c-878a-498b2493c862
+    jinja: 'Northern Sotho: {{ sentence_nso }} = Brazilian Portuguese: ||| {{ sentence_por
       }}'
     metadata: *id001
-    name: translate-this-fra-zul
-    reference: Basic translation (French into Zulu)
-  01d3b714-2901-4e17-9759-f7b2eaa9dd0a: !Template
+    name: equals-translation-nso-por
+    reference: Equals translation (Northern Sotho into Brazilian Portuguese)
+  038d1610-f288-4cdb-b12d-0daac917e004: !Template
     answer_choices: null
-    id: 01d3b714-2901-4e17-9759-f7b2eaa9dd0a
-    jinja: 'Translate this from Marathi into Catalan: {{ sentence_mar }} ||| {{ sentence_cat
-      }}'
+    id: 038d1610-f288-4cdb-b12d-0daac917e004
+    jinja: 'Indonesian: {{ sentence_ind }} = Malayalam: ||| {{ sentence_mal }}'
     metadata: *id001
-    name: translate-this-mar-cat
-    reference: Basic translation (Marathi into Catalan)
-  0208212d-ea09-436c-8998-90f31c0ec598: !Template
+    name: equals-translation-ind-mal
+    reference: Equals translation (Indonesian into Malayalam)
+  03de5f59-31c6-4cc0-82ee-42916a2b3a6d: !Template
     answer_choices: null
-    id: 0208212d-ea09-436c-8998-90f31c0ec598
-    jinja: 'Translate this from Brazilian Portuguese into Tamil: {{ sentence_por }}
-      ||| {{ sentence_tam }}'
+    id: 03de5f59-31c6-4cc0-82ee-42916a2b3a6d
+    jinja: 'Wolof: {{ sentence_wol }} = Xhosa: ||| {{ sentence_xho }}'
     metadata: *id001
-    name: translate-this-por-tam
-    reference: Basic translation (Brazilian Portuguese into Tamil)
-  020c4ead-1180-4ac8-801e-88a8a5a44c62: !Template
+    name: equals-translation-wol-xho
+    reference: Equals translation (Wolof into Xhosa)
+  0429410b-a5de-4009-8fc1-b5eeebffa2b5: !Template
     answer_choices: null
-    id: 020c4ead-1180-4ac8-801e-88a8a5a44c62
-    jinja: 'Translate this from Hindi into Assamese: {{ sentence_hin }} ||| {{ sentence_asm
+    id: 0429410b-a5de-4009-8fc1-b5eeebffa2b5
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Kannada: ||| {{ sentence_kan
       }}'
     metadata: *id001
-    name: translate-this-hin-asm
-    reference: Basic translation (Hindi into Assamese)
-  02568642-dc88-4a8c-8edb-02c67b2c57ef: !Template
+    name: equals-translation-zho_trad-kan
+    reference: Equals translation (traditional Chinese into Kannada)
+  045e0065-344f-4d06-abe2-9f94ab99c9c7: !Template
     answer_choices: null
-    id: 02568642-dc88-4a8c-8edb-02c67b2c57ef
-    jinja: 'Translate this from Brazilian Portuguese into Nepali: {{ sentence_por
-      }} ||| {{ sentence_npi }}'
+    id: 045e0065-344f-4d06-abe2-9f94ab99c9c7
+    jinja: 'French: {{ sentence_fra }} = Hindi: ||| {{ sentence_hin }}'
     metadata: *id001
-    name: translate-this-por-npi
-    reference: Basic translation (Brazilian Portuguese into Nepali)
-  028cdbe6-41dd-4f5f-bca8-f5ee3290ab52: !Template
+    name: equals-translation-fra-hin
+    reference: Equals translation (French into Hindi)
+  04c9483c-5823-4e35-a846-e06dc45101d0: !Template
     answer_choices: null
-    id: 028cdbe6-41dd-4f5f-bca8-f5ee3290ab52
-    jinja: 'Translate this from Punjabi into Nepali: {{ sentence_pan }} ||| {{ sentence_npi
+    id: 04c9483c-5823-4e35-a846-e06dc45101d0
+    jinja: 'Catalan: {{ sentence_cat }} = simplified Chinese: ||| {{ sentence_zho_simpl
       }}'
     metadata: *id001
-    name: translate-this-pan-npi
-    reference: Basic translation (Punjabi into Nepali)
-  03439914-f9ed-4cef-a11d-8f2fd038218f: !Template
-    answer_choices: null
-    id: 03439914-f9ed-4cef-a11d-8f2fd038218f
-    jinja: 'Translate this from Latin American Spanish into Punjabi: {{ sentence_spa
-      }} ||| {{ sentence_pan }}'
-    metadata: *id001
-    name: translate-this-spa-pan
-    reference: Basic translation (Latin American Spanish into Punjabi)
-  0376170b-d17d-468d-bfc3-2bff40e49350: !Template
+    name: equals-translation-cat-zho_simpl
+    reference: Equals translation (Catalan into simplified Chinese)
+  050fba5c-fdd4-4ee8-89b6-b2ba1f016a1e: !Template
     answer_choices: null
-    id: 0376170b-d17d-468d-bfc3-2bff40e49350
-    jinja: 'Translate this from Hindi into Indonesian: {{ sentence_hin }} ||| {{ sentence_ind
+    id: 050fba5c-fdd4-4ee8-89b6-b2ba1f016a1e
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Wolof: ||| {{ sentence_wol
       }}'
     metadata: *id001
-    name: translate-this-hin-ind
-    reference: Basic translation (Hindi into Indonesian)
-  038cc032-782d-4293-8347-a44f6d3050c6: !Template
+    name: equals-translation-zho_trad-wol
+    reference: Equals translation (traditional Chinese into Wolof)
+  051fb4a8-9a11-410b-bd08-934b1b0bf011: !Template
     answer_choices: null
-    id: 038cc032-782d-4293-8347-a44f6d3050c6
-    jinja: 'Translate this from Vietnamese into Northern Sotho: {{ sentence_vie }}
-      ||| {{ sentence_nso }}'
-    metadata: *id001
-    name: translate-this-vie-nso
-    reference: Basic translation (Vietnamese into Northern Sotho)
-  03d15ae1-5f68-4d07-b099-e912ed77c9d6: !Template
-    answer_choices: null
-    id: 03d15ae1-5f68-4d07-b099-e912ed77c9d6
-    jinja: 'Translate this from Swahili into English: {{ sentence_swh }} ||| {{ sentence_eng
-      }}'
+    id: 051fb4a8-9a11-410b-bd08-934b1b0bf011
+    jinja: 'Catalan: {{ sentence_cat }} = Telugu: ||| {{ sentence_tel }}'
     metadata: *id001
-    name: translate-this-swh-eng
-    reference: Basic translation (Swahili into English)
-  042a2466-f3d1-4410-8266-66e2aad3bcf6: !Template
+    name: equals-translation-cat-tel
+    reference: Equals translation (Catalan into Telugu)
+  0538ec42-1e9d-4fe0-9cea-f30859fa38f6: !Template
     answer_choices: null
-    id: 042a2466-f3d1-4410-8266-66e2aad3bcf6
-    jinja: 'Translate this from Hindi into Gujarati: {{ sentence_hin }} ||| {{ sentence_guj
+    id: 0538ec42-1e9d-4fe0-9cea-f30859fa38f6
+    jinja: 'Igbo: {{ sentence_ibo }} = traditional Chinese: ||| {{ sentence_zho_trad
       }}'
     metadata: *id001
-    name: translate-this-hin-guj
-    reference: Basic translation (Hindi into Gujarati)
-  047f2361-d08e-4090-a1d0-8991dcacc932: !Template
+    name: equals-translation-ibo-zho_trad
+    reference: Equals translation (Igbo into traditional Chinese)
+  0563ecc8-59e3-4e2f-bec1-17c3b590b981: !Template
     answer_choices: null
-    id: 047f2361-d08e-4090-a1d0-8991dcacc932
-    jinja: 'Translate this from Telugu into French: {{ sentence_tel }} ||| {{ sentence_fra
-      }}'
+    id: 0563ecc8-59e3-4e2f-bec1-17c3b590b981
+    jinja: 'Lingala: {{ sentence_lin }} = Gujarati: ||| {{ sentence_guj }}'
     metadata: *id001
-    name: translate-this-tel-fra
-    reference: Basic translation (Telugu into French)
-  048ef9f7-e1ed-48ad-9485-4e489118feb6: !Template
+    name: equals-translation-lin-guj
+    reference: Equals translation (Lingala into Gujarati)
+  05c132e8-d0bb-43f9-89ef-fe18a1afc633: !Template
     answer_choices: null
-    id: 048ef9f7-e1ed-48ad-9485-4e489118feb6
-    jinja: 'Translate this from Lingala into Oriya: {{ sentence_lin }} ||| {{ sentence_ory
+    id: 05c132e8-d0bb-43f9-89ef-fe18a1afc633
+    jinja: 'Oriya: {{ sentence_ory }} = traditional Chinese: ||| {{ sentence_zho_trad
       }}'
     metadata: *id001
-    name: translate-this-lin-ory
-    reference: Basic translation (Lingala into Oriya)
-  04982d6c-b9a1-4c02-8b6b-f04ce0944d84: !Template
+    name: equals-translation-ory-zho_trad
+    reference: Equals translation (Oriya into traditional Chinese)
+  05f87742-c6ef-4bca-9dcd-b1cb1dc05ecd: !Template
     answer_choices: null
-    id: 04982d6c-b9a1-4c02-8b6b-f04ce0944d84
-    jinja: 'Translate this from Bengali into Urdu: {{ sentence_ben }} ||| {{ sentence_urd
-      }}'
+    id: 05f87742-c6ef-4bca-9dcd-b1cb1dc05ecd
+    jinja: 'Gujarati: {{ sentence_guj }} = Assamese: ||| {{ sentence_asm }}'
     metadata: *id001
-    name: translate-this-ben-urd
-    reference: Basic translation (Bengali into Urdu)
-  04d0f263-ef07-4582-af4d-636b86fe642c: !Template
+    name: equals-translation-guj-asm
+    reference: Equals translation (Gujarati into Assamese)
+  0698793e-5e79-4789-8fb7-74d0e3880dc4: !Template
     answer_choices: null
-    id: 04d0f263-ef07-4582-af4d-636b86fe642c
-    jinja: 'Translate this from Oriya into Telugu: {{ sentence_ory }} ||| {{ sentence_tel
-      }}'
+    id: 0698793e-5e79-4789-8fb7-74d0e3880dc4
+    jinja: 'Marathi: {{ sentence_mar }} = Yoruba: ||| {{ sentence_yor }}'
     metadata: *id001
-    name: translate-this-ory-tel
-    reference: Basic translation (Oriya into Telugu)
-  04e4e539-9171-4284-a90f-31103996a86f: !Template
+    name: equals-translation-mar-yor
+    reference: Equals translation (Marathi into Yoruba)
+  06cb92f2-7f48-405d-917c-d79d2a2544b6: !Template
     answer_choices: null
-    id: 04e4e539-9171-4284-a90f-31103996a86f
-    jinja: 'Translate this from Oriya into Latin American Spanish: {{ sentence_ory
-      }} ||| {{ sentence_spa }}'
+    id: 06cb92f2-7f48-405d-917c-d79d2a2544b6
+    jinja: 'Vietnamese: {{ sentence_vie }} = Northern Sotho: ||| {{ sentence_nso }}'
     metadata: *id001
-    name: translate-this-ory-spa
-    reference: Basic translation (Oriya into Latin American Spanish)
-  051714d6-e109-480d-b26a-3dd1cee2cc74: !Template
+    name: equals-translation-vie-nso
+    reference: Equals translation (Vietnamese into Northern Sotho)
+  0705ac65-6dab-4e37-9738-bb5b5a2a54b2: !Template
     answer_choices: null
-    id: 051714d6-e109-480d-b26a-3dd1cee2cc74
-    jinja: 'Translate this from Telugu into Brazilian Portuguese: {{ sentence_tel
-      }} ||| {{ sentence_por }}'
+    id: 0705ac65-6dab-4e37-9738-bb5b5a2a54b2
+    jinja: 'Assamese: {{ sentence_asm }} = traditional Chinese: ||| {{ sentence_zho_trad
+      }}'
     metadata: *id001
-    name: translate-this-tel-por
-    reference: Basic translation (Telugu into Brazilian Portuguese)
-  0583b146-5e07-4d43-a793-38fe9123ebe8: !Template
+    name: equals-translation-asm-zho_trad
+    reference: Equals translation (Assamese into traditional Chinese)
+  076fc402-5c90-4f2e-895d-c734147f7896: !Template
     answer_choices: null
-    id: 0583b146-5e07-4d43-a793-38fe9123ebe8
-    jinja: 'Translate this from traditional Chinese into Nepali: {{ sentence_zho_trad
-      }} ||| {{ sentence_npi }}'
+    id: 076fc402-5c90-4f2e-895d-c734147f7896
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Tamil: ||| {{ sentence_tam
+      }}'
     metadata: *id001
-    name: translate-this-zho_trad-npi
-    reference: Basic translation (traditional Chinese into Nepali)
-  058fc587-3cca-4807-ab07-c64c95cf33c0: !Template
+    name: equals-translation-por-tam
+    reference: Equals translation (Brazilian Portuguese into Tamil)
+  07b886bd-9f31-4619-a777-c0a9b9f5d736: !Template
     answer_choices: null
-    id: 058fc587-3cca-4807-ab07-c64c95cf33c0
-    jinja: 'Translate this from French into Punjabi: {{ sentence_fra }} ||| {{ sentence_pan
+    id: 07b886bd-9f31-4619-a777-c0a9b9f5d736
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Wolof: ||| {{ sentence_wol
       }}'
     metadata: *id001
-    name: translate-this-fra-pan
-    reference: Basic translation (French into Punjabi)
-  05f78da6-9494-462c-9c1e-bd76a17404b6: !Template
+    name: equals-translation-por-wol
+    reference: Equals translation (Brazilian Portuguese into Wolof)
+  07fc0ee4-6b52-4148-babd-3e1c24266a5e: !Template
     answer_choices: null
-    id: 05f78da6-9494-462c-9c1e-bd76a17404b6
-    jinja: 'Translate this from simplified Chinese into Catalan: {{ sentence_zho_simpl
-      }} ||| {{ sentence_cat }}'
+    id: 07fc0ee4-6b52-4148-babd-3e1c24266a5e
+    jinja: 'Catalan: {{ sentence_cat }} = Lingala: ||| {{ sentence_lin }}'
     metadata: *id001
-    name: translate-this-zho_simpl-cat
-    reference: Basic translation (simplified Chinese into Catalan)
-  06add134-ed1b-4cb3-a98d-c360c3244a61: !Template
+    name: equals-translation-cat-lin
+    reference: Equals translation (Catalan into Lingala)
+  080b5ec0-7ecc-462a-b40d-bab3994e3225: !Template
     answer_choices: null
-    id: 06add134-ed1b-4cb3-a98d-c360c3244a61
-    jinja: 'Translate this from Assamese into Indonesian: {{ sentence_asm }} ||| {{
-      sentence_ind }}'
+    id: 080b5ec0-7ecc-462a-b40d-bab3994e3225
+    jinja: 'Bengali: {{ sentence_ben }} = Telugu: ||| {{ sentence_tel }}'
     metadata: *id001
-    name: translate-this-asm-ind
-    reference: Basic translation (Assamese into Indonesian)
-  06d4045b-49b6-4301-9983-1a92991432ab: !Template
+    name: equals-translation-ben-tel
+    reference: Equals translation (Bengali into Telugu)
+  08149cf8-0dd1-4240-9c6f-008bb4cb9a5f: !Template
     answer_choices: null
-    id: 06d4045b-49b6-4301-9983-1a92991432ab
-    jinja: 'Translate this from Marathi into traditional Chinese: {{ sentence_mar
-      }} ||| {{ sentence_zho_trad }}'
+    id: 08149cf8-0dd1-4240-9c6f-008bb4cb9a5f
+    jinja: 'Catalan: {{ sentence_cat }} = Oriya: ||| {{ sentence_ory }}'
     metadata: *id001
-    name: translate-this-mar-zho_trad
-    reference: Basic translation (Marathi into traditional Chinese)
-  07c43fb6-b9d2-4edd-85ae-999e2eac0448: !Template
+    name: equals-translation-cat-ory
+    reference: Equals translation (Catalan into Oriya)
+  0890c6a1-f479-4130-a638-e6ab60a93bce: !Template
     answer_choices: null
-    id: 07c43fb6-b9d2-4edd-85ae-999e2eac0448
-    jinja: 'Translate this from French into Northern Sotho: {{ sentence_fra }} |||
-      {{ sentence_nso }}'
+    id: 0890c6a1-f479-4130-a638-e6ab60a93bce
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = Assamese: ||| {{ sentence_asm
+      }}'
     metadata: *id001
-    name: translate-this-fra-nso
-    reference: Basic translation (French into Northern Sotho)
-  07d5ce7d-8437-4dce-bd5f-e272a3f637ed: !Template
+    name: equals-translation-spa-asm
+    reference: Equals translation (Latin American Spanish into Assamese)
+  08d917d8-4287-4b55-82af-7fba1b2c2290: !Template
     answer_choices: null
-    id: 07d5ce7d-8437-4dce-bd5f-e272a3f637ed
-    jinja: 'Translate this from Telugu into Arabic: {{ sentence_tel }} ||| {{ sentence_ara
+    id: 08d917d8-4287-4b55-82af-7fba1b2c2290
+    jinja: 'Kannada: {{ sentence_kan }} = Brazilian Portuguese: ||| {{ sentence_por
       }}'
     metadata: *id001
-    name: translate-this-tel-ara
-    reference: Basic translation (Telugu into Arabic)
-  07e4dc9a-bef2-4cf0-9e2b-6d9dd92dc37f: !Template
+    name: equals-translation-kan-por
+    reference: Equals translation (Kannada into Brazilian Portuguese)
+  08e37dff-3540-4bc8-9288-b6bfb4df32c2: !Template
     answer_choices: null
-    id: 07e4dc9a-bef2-4cf0-9e2b-6d9dd92dc37f
-    jinja: 'Translate this from Oriya into Igbo: {{ sentence_ory }} ||| {{ sentence_ibo
-      }}'
+    id: 08e37dff-3540-4bc8-9288-b6bfb4df32c2
+    jinja: 'Malayalam: {{ sentence_mal }} = Bengali: ||| {{ sentence_ben }}'
     metadata: *id001
-    name: translate-this-ory-ibo
-    reference: Basic translation (Oriya into Igbo)
-  080da2dd-4496-407f-aa93-35f97ebb858c: !Template
+    name: equals-translation-mal-ben
+    reference: Equals translation (Malayalam into Bengali)
+  092134e8-579c-4ceb-b5b2-c12f4ed64e1f: !Template
     answer_choices: null
-    id: 080da2dd-4496-407f-aa93-35f97ebb858c
-    jinja: 'Translate this from English into Hindi: {{ sentence_eng }} ||| {{ sentence_hin
+    id: 092134e8-579c-4ceb-b5b2-c12f4ed64e1f
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Punjabi: ||| {{ sentence_pan
       }}'
     metadata: *id001
-    name: translate-this-eng-hin
-    reference: Basic translation (English into Hindi)
-  083f8bf5-3932-416d-86de-73dbe14bbf3f: !Template
+    name: equals-translation-zho_trad-pan
+    reference: Equals translation (traditional Chinese into Punjabi)
+  09c26b2e-2d8e-48c8-9aea-e79f5a2ddd32: !Template
     answer_choices: null
-    id: 083f8bf5-3932-416d-86de-73dbe14bbf3f
-    jinja: 'Translate this from Telugu into Assamese: {{ sentence_tel }} ||| {{ sentence_asm
-      }}'
+    id: 09c26b2e-2d8e-48c8-9aea-e79f5a2ddd32
+    jinja: 'French: {{ sentence_fra }} = Marathi: ||| {{ sentence_mar }}'
     metadata: *id001
-    name: translate-this-tel-asm
-    reference: Basic translation (Telugu into Assamese)
-  084747c4-55c1-453c-8b1b-e7f10cb8a81b: !Template
+    name: equals-translation-fra-mar
+    reference: Equals translation (French into Marathi)
+  09cab085-799b-4de1-9d21-091d1136ae4a: !Template
     answer_choices: null
-    id: 084747c4-55c1-453c-8b1b-e7f10cb8a81b
-    jinja: 'Translate this from Lingala into French: {{ sentence_lin }} ||| {{ sentence_fra
-      }}'
+    id: 09cab085-799b-4de1-9d21-091d1136ae4a
+    jinja: 'Marathi: {{ sentence_mar }} = Lingala: ||| {{ sentence_lin }}'
     metadata: *id001
-    name: translate-this-lin-fra
-    reference: Basic translation (Lingala into French)
-  08e674c2-22a0-45ae-a1ad-b7bd61e69fad: !Template
+    name: equals-translation-mar-lin
+    reference: Equals translation (Marathi into Lingala)
+  09fbdf2b-4ce8-4f91-b5f5-64d9840a86cc: !Template
     answer_choices: null
-    id: 08e674c2-22a0-45ae-a1ad-b7bd61e69fad
-    jinja: 'Translate this from Igbo into Malayalam: {{ sentence_ibo }} ||| {{ sentence_mal
-      }}'
+    id: 09fbdf2b-4ce8-4f91-b5f5-64d9840a86cc
+    jinja: 'Indonesian: {{ sentence_ind }} = French: ||| {{ sentence_fra }}'
     metadata: *id001
-    name: translate-this-ibo-mal
-    reference: Basic translation (Igbo into Malayalam)
-  08eefae2-ae18-4d05-9287-1863427f0742: !Template
+    name: equals-translation-ind-fra
+    reference: Equals translation (Indonesian into French)
+  0a2c9d2a-2aed-462e-8985-d18d717b9ae4: !Template
     answer_choices: null
-    id: 08eefae2-ae18-4d05-9287-1863427f0742
-    jinja: 'Translate this from Indonesian into Vietnamese: {{ sentence_ind }} |||
-      {{ sentence_vie }}'
+    id: 0a2c9d2a-2aed-462e-8985-d18d717b9ae4
+    jinja: 'Kannada: {{ sentence_kan }} = English: ||| {{ sentence_eng }}'
     metadata: *id001
-    name: translate-this-ind-vie
-    reference: Basic translation (Indonesian into Vietnamese)
-  08fa7abf-4bad-46c8-ac56-347f90cf86c8: !Template
+    name: equals-translation-kan-eng
+    reference: Equals translation (Kannada into English)
+  0a4bebff-50e5-447e-9bc1-907760cca671: !Template
     answer_choices: null
-    id: 08fa7abf-4bad-46c8-ac56-347f90cf86c8
-    jinja: 'Translate this from Hindi into Swahili: {{ sentence_hin }} ||| {{ sentence_swh
-      }}'
+    id: 0a4bebff-50e5-447e-9bc1-907760cca671
+    jinja: 'English: {{ sentence_eng }} = Northern Sotho: ||| {{ sentence_nso }}'
     metadata: *id001
-    name: translate-this-hin-swh
-    reference: Basic translation (Hindi into Swahili)
-  09843dbc-adf4-4153-977f-2c1ed056dbbd: !Template
+    name: equals-translation-eng-nso
+    reference: Equals translation (English into Northern Sotho)
+  0ad21930-48c2-4ca8-aa83-e3c76833f248: !Template
     answer_choices: null
-    id: 09843dbc-adf4-4153-977f-2c1ed056dbbd
-    jinja: 'Translate this from Latin American Spanish into Xhosa: {{ sentence_spa
-      }} ||| {{ sentence_xho }}'
+    id: 0ad21930-48c2-4ca8-aa83-e3c76833f248
+    jinja: 'Yoruba: {{ sentence_yor }} = Indonesian: ||| {{ sentence_ind }}'
     metadata: *id001
-    name: translate-this-spa-xho
-    reference: Basic translation (Latin American Spanish into Xhosa)
-  099b540f-2f62-4120-980c-8c70cc73d7eb: !Template
+    name: equals-translation-yor-ind
+    reference: Equals translation (Yoruba into Indonesian)
+  0afa1f24-5138-4634-a768-178453fd1a68: !Template
     answer_choices: null
-    id: 099b540f-2f62-4120-980c-8c70cc73d7eb
-    jinja: 'Translate this from Nepali into Brazilian Portuguese: {{ sentence_npi
-      }} ||| {{ sentence_por }}'
+    id: 0afa1f24-5138-4634-a768-178453fd1a68
+    jinja: 'Nepali: {{ sentence_npi }} = Catalan: ||| {{ sentence_cat }}'
     metadata: *id001
-    name: translate-this-npi-por
-    reference: Basic translation (Nepali into Brazilian Portuguese)
-  09d4ec1c-03c7-42b9-a98e-bf8200429c1f: !Template
+    name: equals-translation-npi-cat
+    reference: Equals translation (Nepali into Catalan)
+  0b6688b3-434d-49f1-af89-7f5efcf13486: !Template
     answer_choices: null
-    id: 09d4ec1c-03c7-42b9-a98e-bf8200429c1f
-    jinja: 'Translate this from Vietnamese into French: {{ sentence_vie }} ||| {{
-      sentence_fra }}'
+    id: 0b6688b3-434d-49f1-af89-7f5efcf13486
+    jinja: 'Swahili: {{ sentence_swh }} = Indonesian: ||| {{ sentence_ind }}'
     metadata: *id001
-    name: translate-this-vie-fra
-    reference: Basic translation (Vietnamese into French)
-  09d929af-9e19-43b9-919f-bad59adc2b21: !Template
+    name: equals-translation-swh-ind
+    reference: Equals translation (Swahili into Indonesian)
+  0be791d4-bc27-4708-b70f-9930e35f6d76: !Template
     answer_choices: null
-    id: 09d929af-9e19-43b9-919f-bad59adc2b21
-    jinja: 'Translate this from Gujarati into Nepali: {{ sentence_guj }} ||| {{ sentence_npi
-      }}'
+    id: 0be791d4-bc27-4708-b70f-9930e35f6d76
+    jinja: 'Hindi: {{ sentence_hin }} = Urdu: ||| {{ sentence_urd }}'
     metadata: *id001
-    name: translate-this-guj-npi
-    reference: Basic translation (Gujarati into Nepali)
-  0a202dbe-7842-4131-9e36-6ccef199caf1: !Template
+    name: equals-translation-hin-urd
+    reference: Equals translation (Hindi into Urdu)
+  0c547cc0-dfa3-4c8c-b7a0-ebfdd9345d30: !Template
     answer_choices: null
-    id: 0a202dbe-7842-4131-9e36-6ccef199caf1
-    jinja: 'Translate this from Oriya into Tamil: {{ sentence_ory }} ||| {{ sentence_tam
+    id: 0c547cc0-dfa3-4c8c-b7a0-ebfdd9345d30
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = Hindi: ||| {{ sentence_hin
       }}'
     metadata: *id001
-    name: translate-this-ory-tam
-    reference: Basic translation (Oriya into Tamil)
-  0a5be11c-1bdf-4b07-a99e-ae3a17449785: !Template
+    name: equals-translation-spa-hin
+    reference: Equals translation (Latin American Spanish into Hindi)
+  0c6551b3-3c94-46bd-877a-6a082303c308: !Template
     answer_choices: null
-    id: 0a5be11c-1bdf-4b07-a99e-ae3a17449785
-    jinja: 'Translate this from Gujarati into Latin American Spanish: {{ sentence_guj
-      }} ||| {{ sentence_spa }}'
+    id: 0c6551b3-3c94-46bd-877a-6a082303c308
+    jinja: 'Arabic: {{ sentence_ara }} = Malayalam: ||| {{ sentence_mal }}'
     metadata: *id001
-    name: translate-this-guj-spa
-    reference: Basic translation (Gujarati into Latin American Spanish)
-  0ac3f502-6048-4854-bdc7-4657bacad839: !Template
+    name: equals-translation-ara-mal
+    reference: Equals translation (Arabic into Malayalam)
+  0cc5cc05-82db-4e77-9bbf-577e40d78f75: !Template
     answer_choices: null
-    id: 0ac3f502-6048-4854-bdc7-4657bacad839
-    jinja: 'Translate this from Xhosa into Marathi: {{ sentence_xho }} ||| {{ sentence_mar
-      }}'
+    id: 0cc5cc05-82db-4e77-9bbf-577e40d78f75
+    jinja: 'Nepali: {{ sentence_npi }} = Gujarati: ||| {{ sentence_guj }}'
     metadata: *id001
-    name: translate-this-xho-mar
-    reference: Basic translation (Xhosa into Marathi)
-  0ac721b6-eaa8-4b18-92f1-9ee495856c97: !Template
+    name: equals-translation-npi-guj
+    reference: Equals translation (Nepali into Gujarati)
+  0d209454-3f58-4f0c-9ae9-cc4aca784c17: !Template
     answer_choices: null
-    id: 0ac721b6-eaa8-4b18-92f1-9ee495856c97
-    jinja: 'Translate this from Yoruba into Gujarati: {{ sentence_yor }} ||| {{ sentence_guj
-      }}'
+    id: 0d209454-3f58-4f0c-9ae9-cc4aca784c17
+    jinja: 'Punjabi: {{ sentence_pan }} = Oriya: ||| {{ sentence_ory }}'
     metadata: *id001
-    name: translate-this-yor-guj
-    reference: Basic translation (Yoruba into Gujarati)
-  0ac9f731-f4ee-4215-898a-a70ee46fd842: !Template
+    name: equals-translation-pan-ory
+    reference: Equals translation (Punjabi into Oriya)
+  0da3b66f-c7ca-48aa-83fb-c8190c4110db: !Template
     answer_choices: null
-    id: 0ac9f731-f4ee-4215-898a-a70ee46fd842
-    jinja: 'Translate this from Urdu into Arabic: {{ sentence_urd }} ||| {{ sentence_ara
-      }}'
+    id: 0da3b66f-c7ca-48aa-83fb-c8190c4110db
+    jinja: 'Gujarati: {{ sentence_guj }} = Wolof: ||| {{ sentence_wol }}'
     metadata: *id001
-    name: translate-this-urd-ara
-    reference: Basic translation (Urdu into Arabic)
-  0ada5fdb-7b4a-47b5-b50e-e7f5a5319d03: !Template
+    name: equals-translation-guj-wol
+    reference: Equals translation (Gujarati into Wolof)
+  0e13ff85-33a0-44d1-8cd0-b7b47b95d0bd: !Template
     answer_choices: null
-    id: 0ada5fdb-7b4a-47b5-b50e-e7f5a5319d03
-    jinja: 'Translate this from Assamese into Swahili: {{ sentence_asm }} ||| {{ sentence_swh
-      }}'
+    id: 0e13ff85-33a0-44d1-8cd0-b7b47b95d0bd
+    jinja: 'Malayalam: {{ sentence_mal }} = French: ||| {{ sentence_fra }}'
     metadata: *id001
-    name: translate-this-asm-swh
-    reference: Basic translation (Assamese into Swahili)
-  0b1d6288-81d2-47d4-88e3-b1d5cbe88621: !Template
+    name: equals-translation-mal-fra
+    reference: Equals translation (Malayalam into French)
+  0e41bebe-0c58-4b83-8ef4-19d1614f4033: !Template
     answer_choices: null
-    id: 0b1d6288-81d2-47d4-88e3-b1d5cbe88621
-    jinja: 'Translate this from Swahili into Wolof: {{ sentence_swh }} ||| {{ sentence_wol
+    id: 0e41bebe-0c58-4b83-8ef4-19d1614f4033
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Yoruba: ||| {{ sentence_yor
       }}'
     metadata: *id001
-    name: translate-this-swh-wol
-    reference: Basic translation (Swahili into Wolof)
-  0b726767-7e23-4bd9-963a-f027b3af7e56: !Template
+    name: equals-translation-zho_trad-yor
+    reference: Equals translation (traditional Chinese into Yoruba)
+  1033c70e-29f5-4dc3-9f18-fa9701b0a42e: !Template
     answer_choices: null
-    id: 0b726767-7e23-4bd9-963a-f027b3af7e56
-    jinja: 'Translate this from Telugu into Xhosa: {{ sentence_tel }} ||| {{ sentence_xho
-      }}'
+    id: 1033c70e-29f5-4dc3-9f18-fa9701b0a42e
+    jinja: 'Oriya: {{ sentence_ory }} = Bengali: ||| {{ sentence_ben }}'
+    metadata: *id001
+    name: equals-translation-ory-ben
+    reference: Equals translation (Oriya into Bengali)
+  105bf1aa-cc85-4d30-a63f-3add1b1884b8: !Template
+    answer_choices: null
+    id: 105bf1aa-cc85-4d30-a63f-3add1b1884b8
+    jinja: 'Northern Sotho: {{ sentence_nso }} = Swahili: ||| {{ sentence_swh }}'
     metadata: *id001
-    name: translate-this-tel-xho
-    reference: Basic translation (Telugu into Xhosa)
-  0be31549-dc5b-4536-9028-39692c63c852: !Template
+    name: equals-translation-nso-swh
+    reference: Equals translation (Northern Sotho into Swahili)
+  11b67b3f-1ec8-41f3-8741-5e5e0c95941b: !Template
     answer_choices: null
-    id: 0be31549-dc5b-4536-9028-39692c63c852
-    jinja: 'Translate this from traditional Chinese into Telugu: {{ sentence_zho_trad
-      }} ||| {{ sentence_tel }}'
+    id: 11b67b3f-1ec8-41f3-8741-5e5e0c95941b
+    jinja: 'Kannada: {{ sentence_kan }} = Telugu: ||| {{ sentence_tel }}'
     metadata: *id001
-    name: translate-this-zho_trad-tel
-    reference: Basic translation (traditional Chinese into Telugu)
-  0bf36af1-cac0-4059-8e2d-f6acaf385696: !Template
+    name: equals-translation-kan-tel
+    reference: Equals translation (Kannada into Telugu)
+  123f6644-9f39-4087-8af5-40a5f6ade7e3: !Template
     answer_choices: null
-    id: 0bf36af1-cac0-4059-8e2d-f6acaf385696
-    jinja: 'Translate this from Swahili into Assamese: {{ sentence_swh }} ||| {{ sentence_asm
+    id: 123f6644-9f39-4087-8af5-40a5f6ade7e3
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Swahili: ||| {{ sentence_swh
       }}'
     metadata: *id001
-    name: translate-this-swh-asm
-    reference: Basic translation (Swahili into Assamese)
-  0c59f564-67d6-42e9-a157-9216c0250604: !Template
+    name: equals-translation-por-swh
+    reference: Equals translation (Brazilian Portuguese into Swahili)
+  12828299-afa7-49e8-975e-310f1f06198c: !Template
     answer_choices: null
-    id: 0c59f564-67d6-42e9-a157-9216c0250604
-    jinja: 'Translate this from Gujarati into Yoruba: {{ sentence_guj }} ||| {{ sentence_yor
+    id: 12828299-afa7-49e8-975e-310f1f06198c
+    jinja: 'Bengali: {{ sentence_ben }} = Latin American Spanish: ||| {{ sentence_spa
       }}'
     metadata: *id001
-    name: translate-this-guj-yor
-    reference: Basic translation (Gujarati into Yoruba)
-  0d02294e-2056-4da2-b202-ac50259d6fe9: !Template
+    name: equals-translation-ben-spa
+    reference: Equals translation (Bengali into Latin American Spanish)
+  1303cd6a-474a-4f13-901b-b2241ef8ec2a: !Template
     answer_choices: null
-    id: 0d02294e-2056-4da2-b202-ac50259d6fe9
-    jinja: 'Translate this from Latin American Spanish into Northern Sotho: {{ sentence_spa
-      }} ||| {{ sentence_nso }}'
+    id: 1303cd6a-474a-4f13-901b-b2241ef8ec2a
+    jinja: 'Assamese: {{ sentence_asm }} = Indonesian: ||| {{ sentence_ind }}'
     metadata: *id001
-    name: translate-this-spa-nso
-    reference: Basic translation (Latin American Spanish into Northern Sotho)
-  0d314c36-fc27-4adc-bf3f-923fc180dad5: !Template
+    name: equals-translation-asm-ind
+    reference: Equals translation (Assamese into Indonesian)
+  134f1cda-b7e5-4972-bf46-8f3ef1def3d7: !Template
     answer_choices: null
-    id: 0d314c36-fc27-4adc-bf3f-923fc180dad5
-    jinja: 'Translate this from Arabic into Oriya: {{ sentence_ara }} ||| {{ sentence_ory
-      }}'
+    id: 134f1cda-b7e5-4972-bf46-8f3ef1def3d7
+    jinja: 'Marathi: {{ sentence_mar }} = Assamese: ||| {{ sentence_asm }}'
     metadata: *id001
-    name: translate-this-ara-ory
-    reference: Basic translation (Arabic into Oriya)
-  0dbdd651-7676-4bfa-ac0a-746d2ef9c439: !Template
+    name: equals-translation-mar-asm
+    reference: Equals translation (Marathi into Assamese)
+  13df24e5-3165-45fa-a3f2-1d946e921823: !Template
     answer_choices: null
-    id: 0dbdd651-7676-4bfa-ac0a-746d2ef9c439
-    jinja: 'Translate this from Tamil into Latin American Spanish: {{ sentence_tam
-      }} ||| {{ sentence_spa }}'
+    id: 13df24e5-3165-45fa-a3f2-1d946e921823
+    jinja: 'Northern Sotho: {{ sentence_nso }} = Bengali: ||| {{ sentence_ben }}'
     metadata: *id001
-    name: translate-this-tam-spa
-    reference: Basic translation (Tamil into Latin American Spanish)
-  0ddbd769-d0a8-457d-8625-ed22c58a451b: !Template
+    name: equals-translation-nso-ben
+    reference: Equals translation (Northern Sotho into Bengali)
+  13f08813-63f6-4f7a-bf1d-a3bd98f9d9c0: !Template
     answer_choices: null
-    id: 0ddbd769-d0a8-457d-8625-ed22c58a451b
-    jinja: 'Translate this from Punjabi into Latin American Spanish: {{ sentence_pan
-      }} ||| {{ sentence_spa }}'
+    id: 13f08813-63f6-4f7a-bf1d-a3bd98f9d9c0
+    jinja: 'Telugu: {{ sentence_tel }} = Zulu: ||| {{ sentence_zul }}'
     metadata: *id001
-    name: translate-this-pan-spa
-    reference: Basic translation (Punjabi into Latin American Spanish)
-  0df052d9-6f7f-4b3f-8dc7-891c051db273: !Template
+    name: equals-translation-tel-zul
+    reference: Equals translation (Telugu into Zulu)
+  14869ddf-5978-4013-b41e-a738f2660af5: !Template
     answer_choices: null
-    id: 0df052d9-6f7f-4b3f-8dc7-891c051db273
-    jinja: 'Translate this from Marathi into Indonesian: {{ sentence_mar }} ||| {{
-      sentence_ind }}'
+    id: 14869ddf-5978-4013-b41e-a738f2660af5
+    jinja: 'Zulu: {{ sentence_zul }} = Arabic: ||| {{ sentence_ara }}'
     metadata: *id001
-    name: translate-this-mar-ind
-    reference: Basic translation (Marathi into Indonesian)
-  0e66479d-24bb-4d2d-8cd1-7738a32ad135: !Template
+    name: equals-translation-zul-ara
+    reference: Equals translation (Zulu into Arabic)
+  14a96e71-99d8-4760-82b2-f8067bae14b2: !Template
     answer_choices: null
-    id: 0e66479d-24bb-4d2d-8cd1-7738a32ad135
-    jinja: 'Translate this from Catalan into Kannada: {{ sentence_cat }} ||| {{ sentence_kan
-      }}'
+    id: 14a96e71-99d8-4760-82b2-f8067bae14b2
+    jinja: 'Lingala: {{ sentence_lin }} = Urdu: ||| {{ sentence_urd }}'
     metadata: *id001
-    name: translate-this-cat-kan
-    reference: Basic translation (Catalan into Kannada)
-  0e736d10-7674-4d69-8de6-0eed5953ff1a: !Template
+    name: equals-translation-lin-urd
+    reference: Equals translation (Lingala into Urdu)
+  14f8a089-252c-4864-9833-2b7d45291a30: !Template
     answer_choices: null
-    id: 0e736d10-7674-4d69-8de6-0eed5953ff1a
-    jinja: 'Translate this from Punjabi into simplified Chinese: {{ sentence_pan }}
-      ||| {{ sentence_zho_simpl }}'
+    id: 14f8a089-252c-4864-9833-2b7d45291a30
+    jinja: 'Nepali: {{ sentence_npi }} = Oriya: ||| {{ sentence_ory }}'
     metadata: *id001
-    name: translate-this-pan-zho_simpl
-    reference: Basic translation (Punjabi into simplified Chinese)
-  0ef0f447-fd18-4ad5-9785-a78a54ad1fec: !Template
+    name: equals-translation-npi-ory
+    reference: Equals translation (Nepali into Oriya)
+  15331449-29c9-43fe-bcef-72d829dadc3c: !Template
     answer_choices: null
-    id: 0ef0f447-fd18-4ad5-9785-a78a54ad1fec
-    jinja: 'Translate this from Tamil into Hindi: {{ sentence_tam }} ||| {{ sentence_hin
+    id: 15331449-29c9-43fe-bcef-72d829dadc3c
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Malayalam: ||| {{ sentence_mal
       }}'
     metadata: *id001
-    name: translate-this-tam-hin
-    reference: Basic translation (Tamil into Hindi)
-  0f0abd0e-37e7-4b0f-ac80-a6f6d1053d69: !Template
+    name: equals-translation-zho_simpl-mal
+    reference: Equals translation (simplified Chinese into Malayalam)
+  153d9480-5ce0-48f9-b981-bb7d6465abaf: !Template
     answer_choices: null
-    id: 0f0abd0e-37e7-4b0f-ac80-a6f6d1053d69
-    jinja: 'Translate this from Kannada into Telugu: {{ sentence_kan }} ||| {{ sentence_tel
-      }}'
+    id: 153d9480-5ce0-48f9-b981-bb7d6465abaf
+    jinja: 'Yoruba: {{ sentence_yor }} = Wolof: ||| {{ sentence_wol }}'
     metadata: *id001
-    name: translate-this-kan-tel
-    reference: Basic translation (Kannada into Telugu)
-  0f327c1e-99ea-4680-89a0-8d665f5b44b0: !Template
+    name: equals-translation-yor-wol
+    reference: Equals translation (Yoruba into Wolof)
+  15e194c6-9af8-42cb-b8e6-1f53b745801e: !Template
     answer_choices: null
-    id: 0f327c1e-99ea-4680-89a0-8d665f5b44b0
-    jinja: 'Translate this from Yoruba into Wolof: {{ sentence_yor }} ||| {{ sentence_wol
-      }}'
+    id: 15e194c6-9af8-42cb-b8e6-1f53b745801e
+    jinja: 'Malayalam: {{ sentence_mal }} = Marathi: ||| {{ sentence_mar }}'
     metadata: *id001
-    name: translate-this-yor-wol
-    reference: Basic translation (Yoruba into Wolof)
-  0f3b82fc-b0b9-4bb7-a159-d427fbbe04ae: !Template
+    name: equals-translation-mal-mar
+    reference: Equals translation (Malayalam into Marathi)
+  16679fa1-6c7f-498a-9fc4-b1ee8029fbfc: !Template
     answer_choices: null
-    id: 0f3b82fc-b0b9-4bb7-a159-d427fbbe04ae
-    jinja: 'Translate this from French into Urdu: {{ sentence_fra }} ||| {{ sentence_urd
-      }}'
+    id: 16679fa1-6c7f-498a-9fc4-b1ee8029fbfc
+    jinja: 'Marathi: {{ sentence_mar }} = Igbo: ||| {{ sentence_ibo }}'
     metadata: *id001
-    name: translate-this-fra-urd
-    reference: Basic translation (French into Urdu)
-  0f5eb955-80a6-4de6-84d9-6215742628fa: !Template
+    name: equals-translation-mar-ibo
+    reference: Equals translation (Marathi into Igbo)
+  16c41742-3ca3-496d-980c-0416ce230267: !Template
     answer_choices: null
-    id: 0f5eb955-80a6-4de6-84d9-6215742628fa
-    jinja: 'Translate this from Urdu into Tamil: {{ sentence_urd }} ||| {{ sentence_tam
-      }}'
+    id: 16c41742-3ca3-496d-980c-0416ce230267
+    jinja: 'Zulu: {{ sentence_zul }} = Igbo: ||| {{ sentence_ibo }}'
     metadata: *id001
-    name: translate-this-urd-tam
-    reference: Basic translation (Urdu into Tamil)
-  0f6dc539-ea73-48ca-9547-c27848486acf: !Template
+    name: equals-translation-zul-ibo
+    reference: Equals translation (Zulu into Igbo)
+  16ef2aac-2100-4bd0-82a6-148e34bcde29: !Template
     answer_choices: null
-    id: 0f6dc539-ea73-48ca-9547-c27848486acf
-    jinja: 'Translate this from Igbo into Kannada: {{ sentence_ibo }} ||| {{ sentence_kan
+    id: 16ef2aac-2100-4bd0-82a6-148e34bcde29
+    jinja: 'Indonesian: {{ sentence_ind }} = Brazilian Portuguese: ||| {{ sentence_por
       }}'
     metadata: *id001
-    name: translate-this-ibo-kan
-    reference: Basic translation (Igbo into Kannada)
-  0f951540-adf6-4614-9627-6d326fe2ea7e: !Template
+    name: equals-translation-ind-por
+    reference: Equals translation (Indonesian into Brazilian Portuguese)
+  1701ee6a-5a37-4e3e-ac0f-a4868afbcd4c: !Template
     answer_choices: null
-    id: 0f951540-adf6-4614-9627-6d326fe2ea7e
-    jinja: 'Translate this from Marathi into French: {{ sentence_mar }} ||| {{ sentence_fra
+    id: 1701ee6a-5a37-4e3e-ac0f-a4868afbcd4c
+    jinja: 'Swahili: {{ sentence_swh }} = traditional Chinese: ||| {{ sentence_zho_trad
       }}'
     metadata: *id001
-    name: translate-this-mar-fra
-    reference: Basic translation (Marathi into French)
-  1014dca4-4c85-4a24-b5ae-6e70be26d1d5: !Template
+    name: equals-translation-swh-zho_trad
+    reference: Equals translation (Swahili into traditional Chinese)
+  171ed03a-794a-45bd-b806-3751b9f9a5ea: !Template
     answer_choices: null
-    id: 1014dca4-4c85-4a24-b5ae-6e70be26d1d5
-    jinja: 'Translate this from simplified Chinese into Vietnamese: {{ sentence_zho_simpl
-      }} ||| {{ sentence_vie }}'
+    id: 171ed03a-794a-45bd-b806-3751b9f9a5ea
+    jinja: 'Tamil: {{ sentence_tam }} = Catalan: ||| {{ sentence_cat }}'
     metadata: *id001
-    name: translate-this-zho_simpl-vie
-    reference: Basic translation (simplified Chinese into Vietnamese)
-  1029f8f6-de25-409e-b820-a662ce33c716: !Template
+    name: equals-translation-tam-cat
+    reference: Equals translation (Tamil into Catalan)
+  1754b7b6-2890-4360-a807-5549ea13b95d: !Template
     answer_choices: null
-    id: 1029f8f6-de25-409e-b820-a662ce33c716
-    jinja: 'Translate this from Oriya into Nepali: {{ sentence_ory }} ||| {{ sentence_npi
-      }}'
+    id: 1754b7b6-2890-4360-a807-5549ea13b95d
+    jinja: 'Lingala: {{ sentence_lin }} = Punjabi: ||| {{ sentence_pan }}'
     metadata: *id001
-    name: translate-this-ory-npi
-    reference: Basic translation (Oriya into Nepali)
-  1055df16-ac72-4ca0-a8ee-26a8353fee43: !Template
+    name: equals-translation-lin-pan
+    reference: Equals translation (Lingala into Punjabi)
+  17f71b93-54c2-472a-b056-f514b5a5a34c: !Template
     answer_choices: null
-    id: 1055df16-ac72-4ca0-a8ee-26a8353fee43
-    jinja: 'Translate this from Indonesian into Wolof: {{ sentence_ind }} ||| {{ sentence_wol
+    id: 17f71b93-54c2-472a-b056-f514b5a5a34c
+    jinja: 'Assamese: {{ sentence_asm }} = Latin American Spanish: ||| {{ sentence_spa
       }}'
     metadata: *id001
-    name: translate-this-ind-wol
-    reference: Basic translation (Indonesian into Wolof)
-  10aed2f0-13c9-4d2d-8572-a28b16aba51b: !Template
+    name: equals-translation-asm-spa
+    reference: Equals translation (Assamese into Latin American Spanish)
+  180375bc-b40d-443a-b9d0-584da93894a9: !Template
     answer_choices: null
-    id: 10aed2f0-13c9-4d2d-8572-a28b16aba51b
-    jinja: 'Translate this from Latin American Spanish into Nepali: {{ sentence_spa
-      }} ||| {{ sentence_npi }}'
+    id: 180375bc-b40d-443a-b9d0-584da93894a9
+    jinja: 'Telugu: {{ sentence_tel }} = Oriya: ||| {{ sentence_ory }}'
     metadata: *id001
-    name: translate-this-spa-npi
-    reference: Basic translation (Latin American Spanish into Nepali)
-  10c9d1ac-701b-404d-938d-2ece89adc898: !Template
+    name: equals-translation-tel-ory
+    reference: Equals translation (Telugu into Oriya)
+  184226ba-a1d5-40fd-b8bb-9ad13348cf4e: !Template
     answer_choices: null
-    id: 10c9d1ac-701b-404d-938d-2ece89adc898
-    jinja: 'Translate this from Bengali into Gujarati: {{ sentence_ben }} ||| {{ sentence_guj
-      }}'
+    id: 184226ba-a1d5-40fd-b8bb-9ad13348cf4e
+    jinja: 'Swahili: {{ sentence_swh }} = Lingala: ||| {{ sentence_lin }}'
     metadata: *id001
-    name: translate-this-ben-guj
-    reference: Basic translation (Bengali into Gujarati)
-  110ffac0-f57c-434b-89d4-82c487378cdc: !Template
+    name: equals-translation-swh-lin
+    reference: Equals translation (Swahili into Lingala)
+  188f6545-0a32-49eb-8b33-12cf2cb272fe: !Template
     answer_choices: null
-    id: 110ffac0-f57c-434b-89d4-82c487378cdc
-    jinja: 'Translate this from Tamil into Bengali: {{ sentence_tam }} ||| {{ sentence_ben
-      }}'
+    id: 188f6545-0a32-49eb-8b33-12cf2cb272fe
+    jinja: 'Vietnamese: {{ sentence_vie }} = Assamese: ||| {{ sentence_asm }}'
     metadata: *id001
-    name: translate-this-tam-ben
-    reference: Basic translation (Tamil into Bengali)
-  111c8caf-f3be-45cc-951f-d68f674d40b8: !Template
+    name: equals-translation-vie-asm
+    reference: Equals translation (Vietnamese into Assamese)
+  18c34d87-f144-4a0b-b686-cfa56f9387c7: !Template
     answer_choices: null
-    id: 111c8caf-f3be-45cc-951f-d68f674d40b8
-    jinja: 'Translate this from Gujarati into Northern Sotho: {{ sentence_guj }} |||
-      {{ sentence_nso }}'
+    id: 18c34d87-f144-4a0b-b686-cfa56f9387c7
+    jinja: 'Kannada: {{ sentence_kan }} = Vietnamese: ||| {{ sentence_vie }}'
     metadata: *id001
-    name: translate-this-guj-nso
-    reference: Basic translation (Gujarati into Northern Sotho)
-  112a0dd4-8ff5-4f0e-82d7-5816c6713eb1: !Template
+    name: equals-translation-kan-vie
+    reference: Equals translation (Kannada into Vietnamese)
+  18f4fdcb-801e-466e-bdc1-6bda0ae18ced: !Template
     answer_choices: null
-    id: 112a0dd4-8ff5-4f0e-82d7-5816c6713eb1
-    jinja: 'Translate this from Vietnamese into Punjabi: {{ sentence_vie }} ||| {{
-      sentence_pan }}'
+    id: 18f4fdcb-801e-466e-bdc1-6bda0ae18ced
+    jinja: 'Oriya: {{ sentence_ory }} = Gujarati: ||| {{ sentence_guj }}'
     metadata: *id001
-    name: translate-this-vie-pan
-    reference: Basic translation (Vietnamese into Punjabi)
-  11444472-dc13-48af-b45f-a00c2b91fd2c: !Template
+    name: equals-translation-ory-guj
+    reference: Equals translation (Oriya into Gujarati)
+  191cf73c-904e-49b1-93f1-da902dc03cb5: !Template
     answer_choices: null
-    id: 11444472-dc13-48af-b45f-a00c2b91fd2c
-    jinja: 'Translate this from Xhosa into Tamil: {{ sentence_xho }} ||| {{ sentence_tam
-      }}'
+    id: 191cf73c-904e-49b1-93f1-da902dc03cb5
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Igbo: ||| {{ sentence_ibo }}'
     metadata: *id001
-    name: translate-this-xho-tam
-    reference: Basic translation (Xhosa into Tamil)
-  11620de4-3383-4d9d-bb66-4a20e0023e0d: !Template
+    name: equals-translation-por-ibo
+    reference: Equals translation (Brazilian Portuguese into Igbo)
+  19b47676-dc36-4ebe-bb41-7a9823989a8d: !Template
     answer_choices: null
-    id: 11620de4-3383-4d9d-bb66-4a20e0023e0d
-    jinja: 'Translate this from Lingala into Zulu: {{ sentence_lin }} ||| {{ sentence_zul
-      }}'
+    id: 19b47676-dc36-4ebe-bb41-7a9823989a8d
+    jinja: 'Igbo: {{ sentence_ibo }} = Indonesian: ||| {{ sentence_ind }}'
     metadata: *id001
-    name: translate-this-lin-zul
-    reference: Basic translation (Lingala into Zulu)
-  11aeafbf-1e33-4c6e-ae5e-2059526b7e6c: !Template
+    name: equals-translation-ibo-ind
+    reference: Equals translation (Igbo into Indonesian)
+  1ada2b6e-e096-42f6-948d-b829cd75f8b2: !Template
     answer_choices: null
-    id: 11aeafbf-1e33-4c6e-ae5e-2059526b7e6c
-    jinja: 'Translate this from Vietnamese into traditional Chinese: {{ sentence_vie
-      }} ||| {{ sentence_zho_trad }}'
+    id: 1ada2b6e-e096-42f6-948d-b829cd75f8b2
+    jinja: 'Assamese: {{ sentence_asm }} = Marathi: ||| {{ sentence_mar }}'
     metadata: *id001
-    name: translate-this-vie-zho_trad
-    reference: Basic translation (Vietnamese into traditional Chinese)
-  11cc3d49-d821-4d22-bde0-a03da8d517c3: !Template
+    name: equals-translation-asm-mar
+    reference: Equals translation (Assamese into Marathi)
+  1b18f26e-c308-4ad0-89e2-ad385fac742a: !Template
     answer_choices: null
-    id: 11cc3d49-d821-4d22-bde0-a03da8d517c3
-    jinja: 'Translate this from Punjabi into Tamil: {{ sentence_pan }} ||| {{ sentence_tam
-      }}'
+    id: 1b18f26e-c308-4ad0-89e2-ad385fac742a
+    jinja: 'Igbo: {{ sentence_ibo }} = Marathi: ||| {{ sentence_mar }}'
     metadata: *id001
-    name: translate-this-pan-tam
-    reference: Basic translation (Punjabi into Tamil)
-  122a72f5-fec0-43f6-9aba-0e34a1a54496: !Template
+    name: equals-translation-ibo-mar
+    reference: Equals translation (Igbo into Marathi)
+  1b556dbd-4331-4fe6-b709-43a597b90245: !Template
     answer_choices: null
-    id: 122a72f5-fec0-43f6-9aba-0e34a1a54496
-    jinja: 'Translate this from Hindi into Tamil: {{ sentence_hin }} ||| {{ sentence_tam
-      }}'
+    id: 1b556dbd-4331-4fe6-b709-43a597b90245
+    jinja: 'Lingala: {{ sentence_lin }} = Bengali: ||| {{ sentence_ben }}'
     metadata: *id001
-    name: translate-this-hin-tam
-    reference: Basic translation (Hindi into Tamil)
-  124927cd-0f68-401b-8722-c7551f97a32d: !Template
+    name: equals-translation-lin-ben
+    reference: Equals translation (Lingala into Bengali)
+  1b677491-f5bd-43a9-a372-28a87ba68fe1: !Template
     answer_choices: null
-    id: 124927cd-0f68-401b-8722-c7551f97a32d
-    jinja: 'Translate this from Punjabi into Bengali: {{ sentence_pan }} ||| {{ sentence_ben
-      }}'
+    id: 1b677491-f5bd-43a9-a372-28a87ba68fe1
+    jinja: 'Assamese: {{ sentence_asm }} = Catalan: ||| {{ sentence_cat }}'
     metadata: *id001
-    name: translate-this-pan-ben
-    reference: Basic translation (Punjabi into Bengali)
-  1271ef5a-95b0-4556-9ee0-faeeec61001b: !Template
+    name: equals-translation-asm-cat
+    reference: Equals translation (Assamese into Catalan)
+  1b7486a0-d7f4-4b55-95cb-8fff6ccc43c5: !Template
     answer_choices: null
-    id: 1271ef5a-95b0-4556-9ee0-faeeec61001b
-    jinja: 'Translate this from Assamese into Brazilian Portuguese: {{ sentence_asm
-      }} ||| {{ sentence_por }}'
+    id: 1b7486a0-d7f4-4b55-95cb-8fff6ccc43c5
+    jinja: 'Marathi: {{ sentence_mar }} = Arabic: ||| {{ sentence_ara }}'
     metadata: *id001
-    name: translate-this-asm-por
-    reference: Basic translation (Assamese into Brazilian Portuguese)
-  12d3ea21-5d68-4a87-925f-b7f1bc6b7edf: !Template
+    name: equals-translation-mar-ara
+    reference: Equals translation (Marathi into Arabic)
+  1bcc7b6d-aa10-438f-9cda-f81b8d11dc15: !Template
     answer_choices: null
-    id: 12d3ea21-5d68-4a87-925f-b7f1bc6b7edf
-    jinja: 'Translate this from Gujarati into Lingala: {{ sentence_guj }} ||| {{ sentence_lin
+    id: 1bcc7b6d-aa10-438f-9cda-f81b8d11dc15
+    jinja: 'Vietnamese: {{ sentence_vie }} = Hindi: ||| {{ sentence_hin }}'
+    metadata: *id001
+    name: equals-translation-vie-hin
+    reference: Equals translation (Vietnamese into Hindi)
+  1be26707-e89a-442d-9b58-7a3a44807239: !Template
+    answer_choices: null
+    id: 1be26707-e89a-442d-9b58-7a3a44807239
+    jinja: 'Translate this from Swahili into English: {{ sentence_swh }} ||| {{ sentence_eng
       }}'
     metadata: *id001
-    name: translate-this-guj-lin
-    reference: Basic translation (Gujarati into Lingala)
-  1329649a-786f-42a1-9149-971fc4eb4679: !Template
+    name: translate-this-swh-eng
+    reference: Basic translate (Swahili into English)
+  1c461c53-06cf-4ffc-8477-3fc89ef17117: !Template
     answer_choices: null
-    id: 1329649a-786f-42a1-9149-971fc4eb4679
-    jinja: 'Translate this from Malayalam into Kannada: {{ sentence_mal }} ||| {{
-      sentence_kan }}'
+    id: 1c461c53-06cf-4ffc-8477-3fc89ef17117
+    jinja: 'Vietnamese: {{ sentence_vie }} = Lingala: ||| {{ sentence_lin }}'
     metadata: *id001
-    name: translate-this-mal-kan
-    reference: Basic translation (Malayalam into Kannada)
-  133d3e4b-91a8-4f68-a43b-5f4ef20e797a: !Template
+    name: equals-translation-vie-lin
+    reference: Equals translation (Vietnamese into Lingala)
+  1c6affef-bad9-4bf6-a656-02f4a720c44a: !Template
     answer_choices: null
-    id: 133d3e4b-91a8-4f68-a43b-5f4ef20e797a
-    jinja: 'Translate this from English into Nepali: {{ sentence_eng }} ||| {{ sentence_npi
+    id: 1c6affef-bad9-4bf6-a656-02f4a720c44a
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Tamil: ||| {{ sentence_tam
       }}'
     metadata: *id001
-    name: translate-this-eng-npi
-    reference: Basic translation (English into Nepali)
-  1340a7e7-fd22-41be-9dae-3834d5a10baf: !Template
+    name: equals-translation-zho_trad-tam
+    reference: Equals translation (traditional Chinese into Tamil)
+  1ca31a1a-1a8c-4ee5-8387-0eca04409c1e: !Template
     answer_choices: null
-    id: 1340a7e7-fd22-41be-9dae-3834d5a10baf
-    jinja: 'Translate this from Xhosa into Wolof: {{ sentence_xho }} ||| {{ sentence_wol
-      }}'
+    id: 1ca31a1a-1a8c-4ee5-8387-0eca04409c1e
+    jinja: 'Wolof: {{ sentence_wol }} = Oriya: ||| {{ sentence_ory }}'
     metadata: *id001
-    name: translate-this-xho-wol
-    reference: Basic translation (Xhosa into Wolof)
-  13ae41df-d53b-4e5c-ab13-977203d265ac: !Template
+    name: equals-translation-wol-ory
+    reference: Equals translation (Wolof into Oriya)
+  1ca77013-60ad-4520-a8e2-1f4d3a6b9663: !Template
     answer_choices: null
-    id: 13ae41df-d53b-4e5c-ab13-977203d265ac
-    jinja: 'Translate this from Punjabi into Oriya: {{ sentence_pan }} ||| {{ sentence_ory
-      }}'
+    id: 1ca77013-60ad-4520-a8e2-1f4d3a6b9663
+    jinja: 'Tamil: {{ sentence_tam }} = Kannada: ||| {{ sentence_kan }}'
     metadata: *id001
-    name: translate-this-pan-ory
-    reference: Basic translation (Punjabi into Oriya)
-  13c83f6d-f0cb-410e-a617-d0fa724af468: !Template
+    name: equals-translation-tam-kan
+    reference: Equals translation (Tamil into Kannada)
+  1cbeb172-bfc6-43ca-8a07-2c17a2021702: !Template
     answer_choices: null
-    id: 13c83f6d-f0cb-410e-a617-d0fa724af468
-    jinja: 'Translate this from Brazilian Portuguese into Bengali: {{ sentence_por
-      }} ||| {{ sentence_ben }}'
+    id: 1cbeb172-bfc6-43ca-8a07-2c17a2021702
+    jinja: 'Wolof: {{ sentence_wol }} = Catalan: ||| {{ sentence_cat }}'
     metadata: *id001
-    name: translate-this-por-ben
-    reference: Basic translation (Brazilian Portuguese into Bengali)
-  13fb274d-bd4d-4ef7-a3de-2a78b01231c6: !Template
+    name: equals-translation-wol-cat
+    reference: Equals translation (Wolof into Catalan)
+  1cfcd48c-33e0-414b-ba27-d4d488d9d2e9: !Template
     answer_choices: null
-    id: 13fb274d-bd4d-4ef7-a3de-2a78b01231c6
-    jinja: 'Translate this from Indonesian into Swahili: {{ sentence_ind }} ||| {{
-      sentence_swh }}'
+    id: 1cfcd48c-33e0-414b-ba27-d4d488d9d2e9
+    jinja: 'Northern Sotho: {{ sentence_nso }} = Wolof: ||| {{ sentence_wol }}'
     metadata: *id001
-    name: translate-this-ind-swh
-    reference: Basic translation (Indonesian into Swahili)
-  146eb530-fe0b-46d8-86c7-e4c939eae384: !Template
+    name: equals-translation-nso-wol
+    reference: Equals translation (Northern Sotho into Wolof)
+  1d35bc3e-0abc-4065-9f57-36ab8fa21321: !Template
     answer_choices: null
-    id: 146eb530-fe0b-46d8-86c7-e4c939eae384
-    jinja: 'Translate this from Malayalam into Brazilian Portuguese: {{ sentence_mal
-      }} ||| {{ sentence_por }}'
+    id: 1d35bc3e-0abc-4065-9f57-36ab8fa21321
+    jinja: 'Malayalam: {{ sentence_mal }} = Kannada: ||| {{ sentence_kan }}'
     metadata: *id001
-    name: translate-this-mal-por
-    reference: Basic translation (Malayalam into Brazilian Portuguese)
-  149ab94b-8734-42ed-9098-1b655ff55b33: !Template
+    name: equals-translation-mal-kan
+    reference: Equals translation (Malayalam into Kannada)
+  1d409257-1140-4ff9-98ee-02858783ff8e: !Template
     answer_choices: null
-    id: 149ab94b-8734-42ed-9098-1b655ff55b33
-    jinja: 'Translate this from Marathi into Oriya: {{ sentence_mar }} ||| {{ sentence_ory
+    id: 1d409257-1140-4ff9-98ee-02858783ff8e
+    jinja: 'Gujarati: {{ sentence_guj }} = traditional Chinese: ||| {{ sentence_zho_trad
       }}'
     metadata: *id001
-    name: translate-this-mar-ory
-    reference: Basic translation (Marathi into Oriya)
-  14b9b477-28aa-46f6-9973-5fb582b74bf2: !Template
+    name: equals-translation-guj-zho_trad
+    reference: Equals translation (Gujarati into traditional Chinese)
+  1d723e5a-4f54-4c7e-9fc6-eb8b0c544a06: !Template
     answer_choices: null
-    id: 14b9b477-28aa-46f6-9973-5fb582b74bf2
-    jinja: 'Translate this from English into Malayalam: {{ sentence_eng }} ||| {{
-      sentence_mal }}'
+    id: 1d723e5a-4f54-4c7e-9fc6-eb8b0c544a06
+    jinja: 'Malayalam: {{ sentence_mal }} = Latin American Spanish: ||| {{ sentence_spa
+      }}'
     metadata: *id001
-    name: translate-this-eng-mal
-    reference: Basic translation (English into Malayalam)
-  14d7207e-6b69-4b36-88f5-c41ec98af8a2: !Template
+    name: equals-translation-mal-spa
+    reference: Equals translation (Malayalam into Latin American Spanish)
+  1d7704eb-0631-4bd1-a965-ad612883e287: !Template
     answer_choices: null
-    id: 14d7207e-6b69-4b36-88f5-c41ec98af8a2
-    jinja: 'Translate this from Indonesian into Nepali: {{ sentence_ind }} ||| {{
-      sentence_npi }}'
+    id: 1d7704eb-0631-4bd1-a965-ad612883e287
+    jinja: 'Telugu: {{ sentence_tel }} = Hindi: ||| {{ sentence_hin }}'
     metadata: *id001
-    name: translate-this-ind-npi
-    reference: Basic translation (Indonesian into Nepali)
-  14e261a4-eefe-4a35-94ed-60685da1a736: !Template
+    name: equals-translation-tel-hin
+    reference: Equals translation (Telugu into Hindi)
+  1e068580-d229-4695-a19e-575a4cfda94d: !Template
     answer_choices: null
-    id: 14e261a4-eefe-4a35-94ed-60685da1a736
-    jinja: 'Translate this from Latin American Spanish into Vietnamese: {{ sentence_spa
-      }} ||| {{ sentence_vie }}'
+    id: 1e068580-d229-4695-a19e-575a4cfda94d
+    jinja: 'Bengali: {{ sentence_ben }} = Xhosa: ||| {{ sentence_xho }}'
     metadata: *id001
-    name: translate-this-spa-vie
-    reference: Basic translation (Latin American Spanish into Vietnamese)
-  15547e23-feb3-4a68-883c-43b912d11c04: !Template
+    name: equals-translation-ben-xho
+    reference: Equals translation (Bengali into Xhosa)
+  1e3d486b-4e1a-4deb-986b-4589c25f8cbc: !Template
     answer_choices: null
-    id: 15547e23-feb3-4a68-883c-43b912d11c04
-    jinja: 'Translate this from Northern Sotho into Urdu: {{ sentence_nso }} ||| {{
-      sentence_urd }}'
+    id: 1e3d486b-4e1a-4deb-986b-4589c25f8cbc
+    jinja: 'Vietnamese: {{ sentence_vie }} = Xhosa: ||| {{ sentence_xho }}'
     metadata: *id001
-    name: translate-this-nso-urd
-    reference: Basic translation (Northern Sotho into Urdu)
-  159efd39-a7d2-4f1c-b24f-c4a4af35d5db: !Template
+    name: equals-translation-vie-xho
+    reference: Equals translation (Vietnamese into Xhosa)
+  1e423659-ff8f-4cb2-90f5-dba4d293abbc: !Template
     answer_choices: null
-    id: 159efd39-a7d2-4f1c-b24f-c4a4af35d5db
-    jinja: 'Translate this from simplified Chinese into Wolof: {{ sentence_zho_simpl
-      }} ||| {{ sentence_wol }}'
+    id: 1e423659-ff8f-4cb2-90f5-dba4d293abbc
+    jinja: 'French: {{ sentence_fra }} = Kannada: ||| {{ sentence_kan }}'
     metadata: *id001
-    name: translate-this-zho_simpl-wol
-    reference: Basic translation (simplified Chinese into Wolof)
-  1624dc73-b42f-4b73-90f6-d5f742a8164a: !Template
+    name: equals-translation-fra-kan
+    reference: Equals translation (French into Kannada)
+  1e83a9c1-5120-4f9a-a342-4448876f446e: !Template
     answer_choices: null
-    id: 1624dc73-b42f-4b73-90f6-d5f742a8164a
-    jinja: 'Translate this from Marathi into Northern Sotho: {{ sentence_mar }} |||
-      {{ sentence_nso }}'
+    id: 1e83a9c1-5120-4f9a-a342-4448876f446e
+    jinja: 'Northern Sotho: {{ sentence_nso }} = Indonesian: ||| {{ sentence_ind }}'
     metadata: *id001
-    name: translate-this-mar-nso
-    reference: Basic translation (Marathi into Northern Sotho)
-  1634ffc4-b4c3-4996-ab0d-9e3b794ec284: !Template
+    name: equals-translation-nso-ind
+    reference: Equals translation (Northern Sotho into Indonesian)
+  1e89aa51-cf4e-4917-982d-7135e6dcfdad: !Template
     answer_choices: null
-    id: 1634ffc4-b4c3-4996-ab0d-9e3b794ec284
-    jinja: 'Translate this from Arabic into English: {{ sentence_ara }} ||| {{ sentence_eng
-      }}'
+    id: 1e89aa51-cf4e-4917-982d-7135e6dcfdad
+    jinja: 'Nepali: {{ sentence_npi }} = Kannada: ||| {{ sentence_kan }}'
     metadata: *id001
-    name: translate-this-ara-eng
-    reference: Basic translation (Arabic into English)
-  163ed42c-88ee-40de-ac99-baac5f89a6f5: !Template
+    name: equals-translation-npi-kan
+    reference: Equals translation (Nepali into Kannada)
+  1eb60010-df1e-4220-ab5b-bfd34ad6a2da: !Template
     answer_choices: null
-    id: 163ed42c-88ee-40de-ac99-baac5f89a6f5
-    jinja: 'Translate this from Wolof into Vietnamese: {{ sentence_wol }} ||| {{ sentence_vie
-      }}'
+    id: 1eb60010-df1e-4220-ab5b-bfd34ad6a2da
+    jinja: 'Northern Sotho: {{ sentence_nso }} = Hindi: ||| {{ sentence_hin }}'
     metadata: *id001
-    name: translate-this-wol-vie
-    reference: Basic translation (Wolof into Vietnamese)
-  1646bcab-211d-40f5-a2ed-4d6913152237: !Template
+    name: equals-translation-nso-hin
+    reference: Equals translation (Northern Sotho into Hindi)
+  1ed2dac3-49e1-4bf3-b39e-20f9025a4891: !Template
     answer_choices: null
-    id: 1646bcab-211d-40f5-a2ed-4d6913152237
-    jinja: 'Translate this from Malayalam into Assamese: {{ sentence_mal }} ||| {{
-      sentence_asm }}'
+    id: 1ed2dac3-49e1-4bf3-b39e-20f9025a4891
+    jinja: 'Punjabi: {{ sentence_pan }} = Xhosa: ||| {{ sentence_xho }}'
     metadata: *id001
-    name: translate-this-mal-asm
-    reference: Basic translation (Malayalam into Assamese)
-  1655126a-2630-48ae-bb2c-43f315658aaf: !Template
+    name: equals-translation-pan-xho
+    reference: Equals translation (Punjabi into Xhosa)
+  1f480473-1374-448f-b1bb-09ee409c92d3: !Template
     answer_choices: null
-    id: 1655126a-2630-48ae-bb2c-43f315658aaf
-    jinja: 'Translate this from Kannada into Yoruba: {{ sentence_kan }} ||| {{ sentence_yor
-      }}'
+    id: 1f480473-1374-448f-b1bb-09ee409c92d3
+    jinja: 'Zulu: {{ sentence_zul }} = Punjabi: ||| {{ sentence_pan }}'
     metadata: *id001
-    name: translate-this-kan-yor
-    reference: Basic translation (Kannada into Yoruba)
-  167b8496-e7f4-4567-836b-8bd11c8e7931: !Template
+    name: equals-translation-zul-pan
+    reference: Equals translation (Zulu into Punjabi)
+  1fa0f4b5-99aa-4faa-8777-8ac8f8d5063c: !Template
     answer_choices: null
-    id: 167b8496-e7f4-4567-836b-8bd11c8e7931
-    jinja: 'Translate this from Kannada into Indonesian: {{ sentence_kan }} ||| {{
-      sentence_ind }}'
+    id: 1fa0f4b5-99aa-4faa-8777-8ac8f8d5063c
+    jinja: 'French: {{ sentence_fra }} = Bengali: ||| {{ sentence_ben }}'
     metadata: *id001
-    name: translate-this-kan-ind
-    reference: Basic translation (Kannada into Indonesian)
-  168d3555-9dd2-4f55-a27a-496b24695098: !Template
+    name: equals-translation-fra-ben
+    reference: Equals translation (French into Bengali)
+  1fc3ee53-2347-43f0-add3-457c9b1f9c18: !Template
     answer_choices: null
-    id: 168d3555-9dd2-4f55-a27a-496b24695098
-    jinja: 'Translate this from simplified Chinese into Marathi: {{ sentence_zho_simpl
-      }} ||| {{ sentence_mar }}'
+    id: 1fc3ee53-2347-43f0-add3-457c9b1f9c18
+    jinja: 'Urdu: {{ sentence_urd }} = Kannada: ||| {{ sentence_kan }}'
     metadata: *id001
-    name: translate-this-zho_simpl-mar
-    reference: Basic translation (simplified Chinese into Marathi)
-  16d4234b-6d73-476a-bd2f-da379c979540: !Template
+    name: equals-translation-urd-kan
+    reference: Equals translation (Urdu into Kannada)
+  200c2aee-14b9-459d-b8db-6a1d73449492: !Template
     answer_choices: null
-    id: 16d4234b-6d73-476a-bd2f-da379c979540
-    jinja: 'Translate this from Oriya into Arabic: {{ sentence_ory }} ||| {{ sentence_ara
-      }}'
+    id: 200c2aee-14b9-459d-b8db-6a1d73449492
+    jinja: 'Oriya: {{ sentence_ory }} = Zulu: ||| {{ sentence_zul }}'
     metadata: *id001
-    name: translate-this-ory-ara
-    reference: Basic translation (Oriya into Arabic)
-  16fdf82e-c36e-42a9-b79e-eea5658183b4: !Template
+    name: equals-translation-ory-zul
+    reference: Equals translation (Oriya into Zulu)
+  20a5f3fb-fd61-43dc-8da2-8269a311fe00: !Template
     answer_choices: null
-    id: 16fdf82e-c36e-42a9-b79e-eea5658183b4
-    jinja: 'Translate this from Lingala into Kannada: {{ sentence_lin }} ||| {{ sentence_kan
+    id: 20a5f3fb-fd61-43dc-8da2-8269a311fe00
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Oriya: ||| {{ sentence_ory
       }}'
     metadata: *id001
-    name: translate-this-lin-kan
-    reference: Basic translation (Lingala into Kannada)
-  17581b58-6965-4c86-b0e4-5ec20ed6dc9a: !Template
+    name: equals-translation-zho_trad-ory
+    reference: Equals translation (traditional Chinese into Oriya)
+  2175f6b7-cc85-48e1-8a6e-b40f0fadf359: !Template
     answer_choices: null
-    id: 17581b58-6965-4c86-b0e4-5ec20ed6dc9a
-    jinja: 'Translate this from Lingala into Assamese: {{ sentence_lin }} ||| {{ sentence_asm
-      }}'
+    id: 2175f6b7-cc85-48e1-8a6e-b40f0fadf359
+    jinja: 'Telugu: {{ sentence_tel }} = Igbo: ||| {{ sentence_ibo }}'
     metadata: *id001
-    name: translate-this-lin-asm
-    reference: Basic translation (Lingala into Assamese)
-  18acbf94-b289-4b99-9d44-86291f490e1d: !Template
+    name: equals-translation-tel-ibo
+    reference: Equals translation (Telugu into Igbo)
+  21914c22-f416-46b6-9067-2e5f3dd7894d: !Template
     answer_choices: null
-    id: 18acbf94-b289-4b99-9d44-86291f490e1d
-    jinja: 'Translate this from Yoruba into Tamil: {{ sentence_yor }} ||| {{ sentence_tam
-      }}'
+    id: 21914c22-f416-46b6-9067-2e5f3dd7894d
+    jinja: 'Catalan: {{ sentence_cat }} = Zulu: ||| {{ sentence_zul }}'
     metadata: *id001
-    name: translate-this-yor-tam
-    reference: Basic translation (Yoruba into Tamil)
-  18ce3ea3-469c-4a69-ba39-6725969e45c1: !Template
+    name: equals-translation-cat-zul
+    reference: Equals translation (Catalan into Zulu)
+  219e694d-b47e-47a5-9b73-633430aed8ad: !Template
     answer_choices: null
-    id: 18ce3ea3-469c-4a69-ba39-6725969e45c1
-    jinja: 'Translate this from Brazilian Portuguese into Northern Sotho: {{ sentence_por
-      }} ||| {{ sentence_nso }}'
+    id: 219e694d-b47e-47a5-9b73-633430aed8ad
+    jinja: 'Northern Sotho: {{ sentence_nso }} = Urdu: ||| {{ sentence_urd }}'
     metadata: *id001
-    name: translate-this-por-nso
-    reference: Basic translation (Brazilian Portuguese into Northern Sotho)
-  19885ca0-d220-4601-aeae-dfabc18472bd: !Template
+    name: equals-translation-nso-urd
+    reference: Equals translation (Northern Sotho into Urdu)
+  21e0a4a4-0f49-4bf7-ad5f-57807b9d6392: !Template
     answer_choices: null
-    id: 19885ca0-d220-4601-aeae-dfabc18472bd
-    jinja: 'Translate this from Latin American Spanish into Assamese: {{ sentence_spa
-      }} ||| {{ sentence_asm }}'
+    id: 21e0a4a4-0f49-4bf7-ad5f-57807b9d6392
+    jinja: 'Swahili: {{ sentence_swh }} = Yoruba: ||| {{ sentence_yor }}'
     metadata: *id001
-    name: translate-this-spa-asm
-    reference: Basic translation (Latin American Spanish into Assamese)
-  19e5a6a6-1597-4a36-b67e-60533ce83be8: !Template
+    name: equals-translation-swh-yor
+    reference: Equals translation (Swahili into Yoruba)
+  21e14faf-a4d8-4f68-a852-5f2fda6c0cf3: !Template
     answer_choices: null
-    id: 19e5a6a6-1597-4a36-b67e-60533ce83be8
-    jinja: 'Translate this from Telugu into Catalan: {{ sentence_tel }} ||| {{ sentence_cat
+    id: 21e14faf-a4d8-4f68-a852-5f2fda6c0cf3
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Oriya: ||| {{ sentence_ory
       }}'
     metadata: *id001
-    name: translate-this-tel-cat
-    reference: Basic translation (Telugu into Catalan)
-  19fb2bd9-3ac3-4630-a59b-bc07ec92e012: !Template
+    name: equals-translation-zho_simpl-ory
+    reference: Equals translation (simplified Chinese into Oriya)
+  2228d3e0-8b2a-48d3-8d87-c41e3419d0aa: !Template
     answer_choices: null
-    id: 19fb2bd9-3ac3-4630-a59b-bc07ec92e012
-    jinja: 'Translate this from Wolof into Arabic: {{ sentence_wol }} ||| {{ sentence_ara
-      }}'
+    id: 2228d3e0-8b2a-48d3-8d87-c41e3419d0aa
+    jinja: 'Assamese: {{ sentence_asm }} = Lingala: ||| {{ sentence_lin }}'
     metadata: *id001
-    name: translate-this-wol-ara
-    reference: Basic translation (Wolof into Arabic)
-  1ac66201-f83c-43af-8d9a-48f6ccfa0854: !Template
+    name: equals-translation-asm-lin
+    reference: Equals translation (Assamese into Lingala)
+  22638a76-afee-4a5c-b59b-2100560325d1: !Template
     answer_choices: null
-    id: 1ac66201-f83c-43af-8d9a-48f6ccfa0854
-    jinja: 'Translate this from Punjabi into Catalan: {{ sentence_pan }} ||| {{ sentence_cat
+    id: 22638a76-afee-4a5c-b59b-2100560325d1
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Xhosa: ||| {{ sentence_xho
       }}'
     metadata: *id001
-    name: translate-this-pan-cat
-    reference: Basic translation (Punjabi into Catalan)
-  1b48c88d-0f2f-4cff-900d-68c48742c822: !Template
+    name: equals-translation-zho_trad-xho
+    reference: Equals translation (traditional Chinese into Xhosa)
+  22a39de6-bd30-4f87-9175-a61a8d302856: !Template
     answer_choices: null
-    id: 1b48c88d-0f2f-4cff-900d-68c48742c822
-    jinja: 'Translate this from Hindi into Kannada: {{ sentence_hin }} ||| {{ sentence_kan
-      }}'
+    id: 22a39de6-bd30-4f87-9175-a61a8d302856
+    jinja: 'Catalan: {{ sentence_cat }} = Yoruba: ||| {{ sentence_yor }}'
     metadata: *id001
-    name: translate-this-hin-kan
-    reference: Basic translation (Hindi into Kannada)
-  1bd3f9d6-a52b-49d6-885e-c59273331e50: !Template
+    name: equals-translation-cat-yor
+    reference: Equals translation (Catalan into Yoruba)
+  22e8d100-0f5f-41e8-bf3a-fa6f2a5a68f6: !Template
     answer_choices: null
-    id: 1bd3f9d6-a52b-49d6-885e-c59273331e50
-    jinja: 'Translate this from Telugu into Zulu: {{ sentence_tel }} ||| {{ sentence_zul
-      }}'
+    id: 22e8d100-0f5f-41e8-bf3a-fa6f2a5a68f6
+    jinja: 'Marathi: {{ sentence_mar }} = Gujarati: ||| {{ sentence_guj }}'
     metadata: *id001
-    name: translate-this-tel-zul
-    reference: Basic translation (Telugu into Zulu)
-  1be26707-e89a-442d-9b58-7a3a44807239: !Template
+    name: equals-translation-mar-guj
+    reference: Equals translation (Marathi into Gujarati)
+  234b69d3-efbf-4cf3-8cbe-232d2497adf9: !Template
     answer_choices: null
-    id: 1be26707-e89a-442d-9b58-7a3a44807239
-    jinja: 'Translate this from Swahili into English: {{ sentence_swh }} ||| {{ sentence_eng
+    id: 234b69d3-efbf-4cf3-8cbe-232d2497adf9
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Lingala: ||| {{ sentence_lin
       }}'
     metadata: *id001
-    name: translate-this-swh-eng
-    reference: Basic translate (Swahili into English)
-  1c268aee-e1ea-4417-8977-c5f8ad4431ab: !Template
+    name: equals-translation-por-lin
+    reference: Equals translation (Brazilian Portuguese into Lingala)
+  240212ed-b98c-4a9e-a066-45822188bdfb: !Template
     answer_choices: null
-    id: 1c268aee-e1ea-4417-8977-c5f8ad4431ab
-    jinja: 'Translate this from Swahili into Nepali: {{ sentence_swh }} ||| {{ sentence_npi
-      }}'
+    id: 240212ed-b98c-4a9e-a066-45822188bdfb
+    jinja: 'Oriya: {{ sentence_ory }} = Hindi: ||| {{ sentence_hin }}'
     metadata: *id001
-    name: translate-this-swh-npi
-    reference: Basic translation (Swahili into Nepali)
-  1c7ab1d4-6517-4097-9810-daf40ba1ce02: !Template
+    name: equals-translation-ory-hin
+    reference: Equals translation (Oriya into Hindi)
+  24034d20-af6d-4fc2-ae85-7cf42a8f22c1: !Template
     answer_choices: null
-    id: 1c7ab1d4-6517-4097-9810-daf40ba1ce02
-    jinja: 'Translate this from Xhosa into Brazilian Portuguese: {{ sentence_xho }}
-      ||| {{ sentence_por }}'
+    id: 24034d20-af6d-4fc2-ae85-7cf42a8f22c1
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Oriya: ||| {{ sentence_ory
+      }}'
     metadata: *id001
-    name: translate-this-xho-por
-    reference: Basic translation (Xhosa into Brazilian Portuguese)
-  1cee0e3b-bd5b-45ff-820f-0899b601d018: !Template
+    name: equals-translation-por-ory
+    reference: Equals translation (Brazilian Portuguese into Oriya)
+  24219c18-e72b-4700-9ee4-a150ab6c9cee: !Template
     answer_choices: null
-    id: 1cee0e3b-bd5b-45ff-820f-0899b601d018
-    jinja: 'Translate this from Brazilian Portuguese into Zulu: {{ sentence_por }}
-      ||| {{ sentence_zul }}'
+    id: 24219c18-e72b-4700-9ee4-a150ab6c9cee
+    jinja: 'Igbo: {{ sentence_ibo }} = Xhosa: ||| {{ sentence_xho }}'
     metadata: *id001
-    name: translate-this-por-zul
-    reference: Basic translation (Brazilian Portuguese into Zulu)
-  1e185bf0-34cc-4e7d-90d1-814f4504ec99: !Template
+    name: equals-translation-ibo-xho
+    reference: Equals translation (Igbo into Xhosa)
+  247b1a70-2b1f-4a3b-96f9-6bcf11aea6c8: !Template
     answer_choices: null
-    id: 1e185bf0-34cc-4e7d-90d1-814f4504ec99
-    jinja: 'Translate this from Punjabi into Yoruba: {{ sentence_pan }} ||| {{ sentence_yor
+    id: 247b1a70-2b1f-4a3b-96f9-6bcf11aea6c8
+    jinja: 'Hindi: {{ sentence_hin }} = simplified Chinese: ||| {{ sentence_zho_simpl
       }}'
     metadata: *id001
-    name: translate-this-pan-yor
-    reference: Basic translation (Punjabi into Yoruba)
-  1eaf660a-95b1-4501-bbf9-ed3cd665b7ba: !Template
+    name: equals-translation-hin-zho_simpl
+    reference: Equals translation (Hindi into simplified Chinese)
+  249514f4-109c-4bfd-bc48-2c48afe6ccec: !Template
     answer_choices: null
-    id: 1eaf660a-95b1-4501-bbf9-ed3cd665b7ba
-    jinja: 'Translate this from Brazilian Portuguese into Marathi: {{ sentence_por
-      }} ||| {{ sentence_mar }}'
+    id: 249514f4-109c-4bfd-bc48-2c48afe6ccec
+    jinja: 'Catalan: {{ sentence_cat }} = Gujarati: ||| {{ sentence_guj }}'
     metadata: *id001
-    name: translate-this-por-mar
-    reference: Basic translation (Brazilian Portuguese into Marathi)
-  1ee76de4-9317-4595-96bc-d82604a9fe97: !Template
+    name: equals-translation-cat-guj
+    reference: Equals translation (Catalan into Gujarati)
+  24f3b10f-720a-4174-97ec-09e1142b7fdb: !Template
     answer_choices: null
-    id: 1ee76de4-9317-4595-96bc-d82604a9fe97
-    jinja: 'Translate this from Telugu into Swahili: {{ sentence_tel }} ||| {{ sentence_swh
-      }}'
+    id: 24f3b10f-720a-4174-97ec-09e1142b7fdb
+    jinja: 'Oriya: {{ sentence_ory }} = Vietnamese: ||| {{ sentence_vie }}'
     metadata: *id001
-    name: translate-this-tel-swh
-    reference: Basic translation (Telugu into Swahili)
-  1ef0c291-ecf9-46fc-b3e0-6948e9c28f10: !Template
+    name: equals-translation-ory-vie
+    reference: Equals translation (Oriya into Vietnamese)
+  250eb7ee-8bc2-4064-8647-bc6b364fc82f: !Template
     answer_choices: null
-    id: 1ef0c291-ecf9-46fc-b3e0-6948e9c28f10
-    jinja: 'Translate this from Northern Sotho into Malayalam: {{ sentence_nso }}
-      ||| {{ sentence_mal }}'
+    id: 250eb7ee-8bc2-4064-8647-bc6b364fc82f
+    jinja: 'English: {{ sentence_eng }} = Tamil: ||| {{ sentence_tam }}'
     metadata: *id001
-    name: translate-this-nso-mal
-    reference: Basic translation (Northern Sotho into Malayalam)
-  1f9613d2-bcd5-4003-90a5-74a45d4325ca: !Template
+    name: equals-translation-eng-tam
+    reference: Equals translation (English into Tamil)
+  253372ee-78aa-485a-81cd-2046a6eda893: !Template
     answer_choices: null
-    id: 1f9613d2-bcd5-4003-90a5-74a45d4325ca
-    jinja: 'Translate this from Punjabi into Urdu: {{ sentence_pan }} ||| {{ sentence_urd
-      }}'
+    id: 253372ee-78aa-485a-81cd-2046a6eda893
+    jinja: 'Punjabi: {{ sentence_pan }} = Catalan: ||| {{ sentence_cat }}'
     metadata: *id001
-    name: translate-this-pan-urd
-    reference: Basic translation (Punjabi into Urdu)
-  1fa0b153-1a42-4152-84ea-8bd0873035d6: !Template
+    name: equals-translation-pan-cat
+    reference: Equals translation (Punjabi into Catalan)
+  25342279-379e-48af-996e-bd77dc95c957: !Template
     answer_choices: null
-    id: 1fa0b153-1a42-4152-84ea-8bd0873035d6
-    jinja: 'Translate this from Oriya into Malayalam: {{ sentence_ory }} ||| {{ sentence_mal
-      }}'
+    id: 25342279-379e-48af-996e-bd77dc95c957
+    jinja: 'Gujarati: {{ sentence_guj }} = Tamil: ||| {{ sentence_tam }}'
     metadata: *id001
-    name: translate-this-ory-mal
-    reference: Basic translation (Oriya into Malayalam)
-  1ff4ec5c-1a3e-4d71-a67a-50f8d1de876a: !Template
+    name: equals-translation-guj-tam
+    reference: Equals translation (Gujarati into Tamil)
+  253c002a-a17e-4080-8df3-9dbf0da879c0: !Template
     answer_choices: null
-    id: 1ff4ec5c-1a3e-4d71-a67a-50f8d1de876a
-    jinja: 'Translate this from Gujarati into Malayalam: {{ sentence_guj }} ||| {{
-      sentence_mal }}'
+    id: 253c002a-a17e-4080-8df3-9dbf0da879c0
+    jinja: 'Tamil: {{ sentence_tam }} = Assamese: ||| {{ sentence_asm }}'
     metadata: *id001
-    name: translate-this-guj-mal
-    reference: Basic translation (Gujarati into Malayalam)
-  200fe528-890c-4f31-bde3-ef3a2cbed0d7: !Template
+    name: equals-translation-tam-asm
+    reference: Equals translation (Tamil into Assamese)
+  254ba0d6-de21-4141-8e3e-abd944338da9: !Template
     answer_choices: null
-    id: 200fe528-890c-4f31-bde3-ef3a2cbed0d7
-    jinja: 'Translate this from Swahili into Indonesian: {{ sentence_swh }} ||| {{
-      sentence_ind }}'
+    id: 254ba0d6-de21-4141-8e3e-abd944338da9
+    jinja: 'Vietnamese: {{ sentence_vie }} = Oriya: ||| {{ sentence_ory }}'
     metadata: *id001
-    name: translate-this-swh-ind
-    reference: Basic translation (Swahili into Indonesian)
-  20363d95-0942-4857-949e-323383c6ff2e: !Template
+    name: equals-translation-vie-ory
+    reference: Equals translation (Vietnamese into Oriya)
+  255b4506-7a3c-4652-8219-d3886ceaefee: !Template
     answer_choices: null
-    id: 20363d95-0942-4857-949e-323383c6ff2e
-    jinja: 'Translate this from French into Arabic: {{ sentence_fra }} ||| {{ sentence_ara
+    id: 255b4506-7a3c-4652-8219-d3886ceaefee
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = Malayalam: ||| {{ sentence_mal
       }}'
     metadata: *id001
-    name: translate-this-fra-ara
-    reference: Basic translation (French into Arabic)
-  20d26f96-0e98-48f6-ad62-5c6aa9432348: !Template
+    name: equals-translation-spa-mal
+    reference: Equals translation (Latin American Spanish into Malayalam)
+  25fc4997-404e-41f7-8c4b-e95eb63c2a78: !Template
     answer_choices: null
-    id: 20d26f96-0e98-48f6-ad62-5c6aa9432348
-    jinja: 'Translate this from Catalan into Indonesian: {{ sentence_cat }} ||| {{
-      sentence_ind }}'
+    id: 25fc4997-404e-41f7-8c4b-e95eb63c2a78
+    jinja: 'Nepali: {{ sentence_npi }} = Igbo: ||| {{ sentence_ibo }}'
     metadata: *id001
-    name: translate-this-cat-ind
-    reference: Basic translation (Catalan into Indonesian)
-  213e849f-8d86-42b7-b8bb-21f736711a84: !Template
+    name: equals-translation-npi-ibo
+    reference: Equals translation (Nepali into Igbo)
+  2646dc8b-65d0-4464-8a31-4bae6a89ecb9: !Template
     answer_choices: null
-    id: 213e849f-8d86-42b7-b8bb-21f736711a84
-    jinja: 'Translate this from Arabic into Malayalam: {{ sentence_ara }} ||| {{ sentence_mal
-      }}'
+    id: 2646dc8b-65d0-4464-8a31-4bae6a89ecb9
+    jinja: 'Gujarati: {{ sentence_guj }} = English: ||| {{ sentence_eng }}'
     metadata: *id001
-    name: translate-this-ara-mal
-    reference: Basic translation (Arabic into Malayalam)
-  218b703c-ca65-4c57-b68b-c5b0f2310e3e: !Template
+    name: equals-translation-guj-eng
+    reference: Equals translation (Gujarati into English)
+  26780a8e-568c-419e-a0bd-73a3d1824aee: !Template
     answer_choices: null
-    id: 218b703c-ca65-4c57-b68b-c5b0f2310e3e
-    jinja: 'Translate this from traditional Chinese into Gujarati: {{ sentence_zho_trad
-      }} ||| {{ sentence_guj }}'
+    id: 26780a8e-568c-419e-a0bd-73a3d1824aee
+    jinja: 'Zulu: {{ sentence_zul }} = Marathi: ||| {{ sentence_mar }}'
     metadata: *id001
-    name: translate-this-zho_trad-guj
-    reference: Basic translation (traditional Chinese into Gujarati)
-  21ac6ece-fe10-4d50-b774-07d6b4dd40bb: !Template
+    name: equals-translation-zul-mar
+    reference: Equals translation (Zulu into Marathi)
+  27d6f2fe-1799-4504-b45a-b77d2e9e04e1: !Template
     answer_choices: null
-    id: 21ac6ece-fe10-4d50-b774-07d6b4dd40bb
-    jinja: 'Translate this from Telugu into Yoruba: {{ sentence_tel }} ||| {{ sentence_yor
+    id: 27d6f2fe-1799-4504-b45a-b77d2e9e04e1
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = Urdu: ||| {{ sentence_urd
       }}'
     metadata: *id001
-    name: translate-this-tel-yor
-    reference: Basic translation (Telugu into Yoruba)
-  220764a9-8073-44a9-aec0-320015488296: !Template
+    name: equals-translation-spa-urd
+    reference: Equals translation (Latin American Spanish into Urdu)
+  28571522-2487-4f59-a579-b272e9c4999c: !Template
     answer_choices: null
-    id: 220764a9-8073-44a9-aec0-320015488296
-    jinja: 'Translate this from Xhosa into Lingala: {{ sentence_xho }} ||| {{ sentence_lin
-      }}'
+    id: 28571522-2487-4f59-a579-b272e9c4999c
+    jinja: 'English: {{ sentence_eng }} = Assamese: ||| {{ sentence_asm }}'
     metadata: *id001
-    name: translate-this-xho-lin
-    reference: Basic translation (Xhosa into Lingala)
-  222b3f4b-a107-420d-9b9f-9c68e4b1f6d6: !Template
+    name: equals-translation-eng-asm
+    reference: Equals translation (English into Assamese)
+  286003bf-6628-41bb-b960-eebaa8cad9cc: !Template
     answer_choices: null
-    id: 222b3f4b-a107-420d-9b9f-9c68e4b1f6d6
-    jinja: 'Translate this from Hindi into Urdu: {{ sentence_hin }} ||| {{ sentence_urd
-      }}'
+    id: 286003bf-6628-41bb-b960-eebaa8cad9cc
+    jinja: 'Lingala: {{ sentence_lin }} = Arabic: ||| {{ sentence_ara }}'
     metadata: *id001
-    name: translate-this-hin-urd
-    reference: Basic translation (Hindi into Urdu)
-  22311738-fd0a-428c-a6ca-8bb272e991c3: !Template
+    name: equals-translation-lin-ara
+    reference: Equals translation (Lingala into Arabic)
+  28a02b64-ab42-494c-a1c8-11fbe024e955: !Template
     answer_choices: null
-    id: 22311738-fd0a-428c-a6ca-8bb272e991c3
-    jinja: 'Translate this from Catalan into Punjabi: {{ sentence_cat }} ||| {{ sentence_pan
-      }}'
+    id: 28a02b64-ab42-494c-a1c8-11fbe024e955
+    jinja: 'Punjabi: {{ sentence_pan }} = Assamese: ||| {{ sentence_asm }}'
     metadata: *id001
-    name: translate-this-cat-pan
-    reference: Basic translation (Catalan into Punjabi)
-  224abcfc-1d38-43c1-837e-282b0a30c6f1: !Template
+    name: equals-translation-pan-asm
+    reference: Equals translation (Punjabi into Assamese)
+  28b5b4ca-481b-4373-9f31-f0c0e60410cf: !Template
     answer_choices: null
-    id: 224abcfc-1d38-43c1-837e-282b0a30c6f1
-    jinja: 'Translate this from Zulu into Xhosa: {{ sentence_zul }} ||| {{ sentence_xho
-      }}'
+    id: 28b5b4ca-481b-4373-9f31-f0c0e60410cf
+    jinja: 'Indonesian: {{ sentence_ind }} = Wolof: ||| {{ sentence_wol }}'
     metadata: *id001
-    name: translate-this-zul-xho
-    reference: Basic translation (Zulu into Xhosa)
-  225ddfe4-c00c-411f-9456-93ec5fecd542: !Template
+    name: equals-translation-ind-wol
+    reference: Equals translation (Indonesian into Wolof)
+  28b8f1e9-3481-439c-9348-bd6e474884be: !Template
     answer_choices: null
-    id: 225ddfe4-c00c-411f-9456-93ec5fecd542
-    jinja: 'Translate this from Latin American Spanish into Arabic: {{ sentence_spa
-      }} ||| {{ sentence_ara }}'
+    id: 28b8f1e9-3481-439c-9348-bd6e474884be
+    jinja: 'Swahili: {{ sentence_swh }} = Gujarati: ||| {{ sentence_guj }}'
     metadata: *id001
-    name: translate-this-spa-ara
-    reference: Basic translation (Latin American Spanish into Arabic)
-  228029ff-b67d-4ea5-9b65-7ea2c75a115e: !Template
+    name: equals-translation-swh-guj
+    reference: Equals translation (Swahili into Gujarati)
+  28c7363d-0406-414d-80f3-48f9fff24b5d: !Template
     answer_choices: null
-    id: 228029ff-b67d-4ea5-9b65-7ea2c75a115e
-    jinja: 'Translate this from Brazilian Portuguese into simplified Chinese: {{ sentence_por
-      }} ||| {{ sentence_zho_simpl }}'
+    id: 28c7363d-0406-414d-80f3-48f9fff24b5d
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Zulu: ||| {{ sentence_zul
+      }}'
     metadata: *id001
-    name: translate-this-por-zho_simpl
-    reference: Basic translation (Brazilian Portuguese into simplified Chinese)
-  22bb9d48-7aaf-452f-b40e-3ee3e1b51f9d: !Template
+    name: equals-translation-zho_simpl-zul
+    reference: Equals translation (simplified Chinese into Zulu)
+  28f0aadd-6c74-4271-97f0-88a24ef5c63d: !Template
     answer_choices: null
-    id: 22bb9d48-7aaf-452f-b40e-3ee3e1b51f9d
-    jinja: 'Translate this from Northern Sotho into Bengali: {{ sentence_nso }} |||
-      {{ sentence_ben }}'
+    id: 28f0aadd-6c74-4271-97f0-88a24ef5c63d
+    jinja: 'Bengali: {{ sentence_ben }} = English: ||| {{ sentence_eng }}'
     metadata: *id001
-    name: translate-this-nso-ben
-    reference: Basic translation (Northern Sotho into Bengali)
-  22bba639-13da-430a-a38a-ad50381fe88a: !Template
+    name: equals-translation-ben-eng
+    reference: Equals translation (Bengali into English)
+  290b1030-b9e1-44d6-a1c9-1d64fc8abde6: !Template
     answer_choices: null
-    id: 22bba639-13da-430a-a38a-ad50381fe88a
-    jinja: 'Translate this from Gujarati into Wolof: {{ sentence_guj }} ||| {{ sentence_wol
-      }}'
+    id: 290b1030-b9e1-44d6-a1c9-1d64fc8abde6
+    jinja: 'Hindi: {{ sentence_hin }} = Gujarati: ||| {{ sentence_guj }}'
     metadata: *id001
-    name: translate-this-guj-wol
-    reference: Basic translation (Gujarati into Wolof)
-  2301be9a-a46b-4bab-96b4-b8ea4b5294f5: !Template
+    name: equals-translation-hin-guj
+    reference: Equals translation (Hindi into Gujarati)
+  292e4ece-bd77-4f04-9789-5edac6aa2a74: !Template
     answer_choices: null
-    id: 2301be9a-a46b-4bab-96b4-b8ea4b5294f5
-    jinja: 'Translate this from Oriya into Swahili: {{ sentence_ory }} ||| {{ sentence_swh
-      }}'
+    id: 292e4ece-bd77-4f04-9789-5edac6aa2a74
+    jinja: 'Hindi: {{ sentence_hin }} = Zulu: ||| {{ sentence_zul }}'
     metadata: *id001
-    name: translate-this-ory-swh
-    reference: Basic translation (Oriya into Swahili)
-  23e3f997-b90d-4486-89d5-185d4fe0c1df: !Template
+    name: equals-translation-hin-zul
+    reference: Equals translation (Hindi into Zulu)
+  2938dcb8-d0a8-4814-920a-39c390c0e51b: !Template
     answer_choices: null
-    id: 23e3f997-b90d-4486-89d5-185d4fe0c1df
-    jinja: 'Translate this from Catalan into Telugu: {{ sentence_cat }} ||| {{ sentence_tel
-      }}'
+    id: 2938dcb8-d0a8-4814-920a-39c390c0e51b
+    jinja: 'Gujarati: {{ sentence_guj }} = Zulu: ||| {{ sentence_zul }}'
     metadata: *id001
-    name: translate-this-cat-tel
-    reference: Basic translation (Catalan into Telugu)
-  2420a79b-a953-441e-91b9-60045c382ae9: !Template
+    name: equals-translation-guj-zul
+    reference: Equals translation (Gujarati into Zulu)
+  296edf9b-7fe7-4a4a-9060-42ba5d8cc435: !Template
     answer_choices: null
-    id: 2420a79b-a953-441e-91b9-60045c382ae9
-    jinja: 'Translate this from Malayalam into Nepali: {{ sentence_mal }} ||| {{ sentence_npi
-      }}'
+    id: 296edf9b-7fe7-4a4a-9060-42ba5d8cc435
+    jinja: 'Hindi: {{ sentence_hin }} = Punjabi: ||| {{ sentence_pan }}'
     metadata: *id001
-    name: translate-this-mal-npi
-    reference: Basic translation (Malayalam into Nepali)
-  255c0025-dde1-402e-aa08-c3ee2c4eefcd: !Template
+    name: equals-translation-hin-pan
+    reference: Equals translation (Hindi into Punjabi)
+  29709cf9-8d7e-4c30-82dd-0eb2b34265a9: !Template
     answer_choices: null
-    id: 255c0025-dde1-402e-aa08-c3ee2c4eefcd
-    jinja: 'Translate this from Yoruba into Lingala: {{ sentence_yor }} ||| {{ sentence_lin
-      }}'
+    id: 29709cf9-8d7e-4c30-82dd-0eb2b34265a9
+    jinja: 'French: {{ sentence_fra }} = Nepali: ||| {{ sentence_npi }}'
     metadata: *id001
-    name: translate-this-yor-lin
-    reference: Basic translation (Yoruba into Lingala)
-  25ba759d-96ae-4f98-8fa8-ad7e9ed6375a: !Template
+    name: equals-translation-fra-npi
+    reference: Equals translation (French into Nepali)
+  297dd591-89da-4756-8c75-3550c440a670: !Template
     answer_choices: null
-    id: 25ba759d-96ae-4f98-8fa8-ad7e9ed6375a
-    jinja: 'Translate this from Indonesian into simplified Chinese: {{ sentence_ind
-      }} ||| {{ sentence_zho_simpl }}'
+    id: 297dd591-89da-4756-8c75-3550c440a670
+    jinja: 'Gujarati: {{ sentence_guj }} = Punjabi: ||| {{ sentence_pan }}'
     metadata: *id001
-    name: translate-this-ind-zho_simpl
-    reference: Basic translation (Indonesian into simplified Chinese)
-  26a8db82-2542-48da-adaa-57627d4c5405: !Template
+    name: equals-translation-guj-pan
+    reference: Equals translation (Gujarati into Punjabi)
+  29fa23ff-2e4a-42ff-8815-c4f272fbec6f: !Template
     answer_choices: null
-    id: 26a8db82-2542-48da-adaa-57627d4c5405
-    jinja: 'Translate this from Igbo into Gujarati: {{ sentence_ibo }} ||| {{ sentence_guj
-      }}'
+    id: 29fa23ff-2e4a-42ff-8815-c4f272fbec6f
+    jinja: 'Xhosa: {{ sentence_xho }} = Tamil: ||| {{ sentence_tam }}'
     metadata: *id001
-    name: translate-this-ibo-guj
-    reference: Basic translation (Igbo into Gujarati)
-  26c7a2f8-385f-4a77-bfbd-25d92f87cd91: !Template
+    name: equals-translation-xho-tam
+    reference: Equals translation (Xhosa into Tamil)
+  29ffaa4d-d2e3-4d7d-8377-535912b6d72b: !Template
     answer_choices: null
-    id: 26c7a2f8-385f-4a77-bfbd-25d92f87cd91
-    jinja: 'Translate this from simplified Chinese into Punjabi: {{ sentence_zho_simpl
-      }} ||| {{ sentence_pan }}'
+    id: 29ffaa4d-d2e3-4d7d-8377-535912b6d72b
+    jinja: 'Zulu: {{ sentence_zul }} = Hindi: ||| {{ sentence_hin }}'
     metadata: *id001
-    name: translate-this-zho_simpl-pan
-    reference: Basic translation (simplified Chinese into Punjabi)
-  26dcccf0-831d-450d-9448-f03f94bcd906: !Template
+    name: equals-translation-zul-hin
+    reference: Equals translation (Zulu into Hindi)
+  2a245908-e7f4-4b81-a261-be08cef0dc8b: !Template
     answer_choices: null
-    id: 26dcccf0-831d-450d-9448-f03f94bcd906
-    jinja: 'Translate this from Vietnamese into Kannada: {{ sentence_vie }} ||| {{
-      sentence_kan }}'
+    id: 2a245908-e7f4-4b81-a261-be08cef0dc8b
+    jinja: 'Igbo: {{ sentence_ibo }} = Wolof: ||| {{ sentence_wol }}'
     metadata: *id001
-    name: translate-this-vie-kan
-    reference: Basic translation (Vietnamese into Kannada)
-  26e84960-c1bb-4896-8aba-d9fea9e212ed: !Template
+    name: equals-translation-ibo-wol
+    reference: Equals translation (Igbo into Wolof)
+  2ad2ac2c-eb6c-413e-afc0-a63af8a73f43: !Template
     answer_choices: null
-    id: 26e84960-c1bb-4896-8aba-d9fea9e212ed
-    jinja: 'Translate this from Gujarati into Punjabi: {{ sentence_guj }} ||| {{ sentence_pan
-      }}'
+    id: 2ad2ac2c-eb6c-413e-afc0-a63af8a73f43
+    jinja: 'Arabic: {{ sentence_ara }} = Northern Sotho: ||| {{ sentence_nso }}'
     metadata: *id001
-    name: translate-this-guj-pan
-    reference: Basic translation (Gujarati into Punjabi)
-  274f7377-fc47-4157-abe6-fb9a24362446: !Template
+    name: equals-translation-ara-nso
+    reference: Equals translation (Arabic into Northern Sotho)
+  2af09732-f984-4599-8141-44d4dc47c6ca: !Template
     answer_choices: null
-    id: 274f7377-fc47-4157-abe6-fb9a24362446
-    jinja: 'Translate this from Yoruba into Xhosa: {{ sentence_yor }} ||| {{ sentence_xho
-      }}'
+    id: 2af09732-f984-4599-8141-44d4dc47c6ca
+    jinja: 'Indonesian: {{ sentence_ind }} = Swahili: ||| {{ sentence_swh }}'
     metadata: *id001
-    name: translate-this-yor-xho
-    reference: Basic translation (Yoruba into Xhosa)
-  2769801e-050c-48f3-a9ab-a9a78722c3a4: !Template
+    name: equals-translation-ind-swh
+    reference: Equals translation (Indonesian into Swahili)
+  2b0194a9-8ff4-4011-be7a-3ed6a2b18b9d: !Template
     answer_choices: null
-    id: 2769801e-050c-48f3-a9ab-a9a78722c3a4
-    jinja: 'Translate this from Lingala into Northern Sotho: {{ sentence_lin }} |||
-      {{ sentence_nso }}'
+    id: 2b0194a9-8ff4-4011-be7a-3ed6a2b18b9d
+    jinja: 'Swahili: {{ sentence_swh }} = Malayalam: ||| {{ sentence_mal }}'
     metadata: *id001
-    name: translate-this-lin-nso
-    reference: Basic translation (Lingala into Northern Sotho)
-  27c4784b-0f2b-4819-b293-33c6879eb26a: !Template
+    name: equals-translation-swh-mal
+    reference: Equals translation (Swahili into Malayalam)
+  2c10eea7-79b2-459b-a36a-6a3147b2264a: !Template
     answer_choices: null
-    id: 27c4784b-0f2b-4819-b293-33c6879eb26a
-    jinja: 'Translate this from Brazilian Portuguese into English: {{ sentence_por
-      }} ||| {{ sentence_eng }}'
+    id: 2c10eea7-79b2-459b-a36a-6a3147b2264a
+    jinja: 'Xhosa: {{ sentence_xho }} = Hindi: ||| {{ sentence_hin }}'
     metadata: *id001
-    name: translate-this-por-eng
-    reference: Basic translation (Brazilian Portuguese into English)
-  27ea08c0-27b6-4dd2-81e2-82f77972ac8b: !Template
+    name: equals-translation-xho-hin
+    reference: Equals translation (Xhosa into Hindi)
+  2c1ba6e5-9741-4a70-83f4-92fbbfc59ff5: !Template
     answer_choices: null
-    id: 27ea08c0-27b6-4dd2-81e2-82f77972ac8b
-    jinja: 'Translate this from Lingala into Vietnamese: {{ sentence_lin }} ||| {{
-      sentence_vie }}'
+    id: 2c1ba6e5-9741-4a70-83f4-92fbbfc59ff5
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Indonesian: ||| {{ sentence_ind
+      }}'
     metadata: *id001
-    name: translate-this-lin-vie
-    reference: Basic translation (Lingala into Vietnamese)
-  2806b4cd-8d55-4acb-bfdd-7bba786820c8: !Template
+    name: equals-translation-por-ind
+    reference: Equals translation (Brazilian Portuguese into Indonesian)
+  2c30eca5-2ade-452b-bc10-e780a6add27c: !Template
     answer_choices: null
-    id: 2806b4cd-8d55-4acb-bfdd-7bba786820c8
-    jinja: 'Translate this from Oriya into Punjabi: {{ sentence_ory }} ||| {{ sentence_pan
-      }}'
+    id: 2c30eca5-2ade-452b-bc10-e780a6add27c
+    jinja: 'Assamese: {{ sentence_asm }} = Telugu: ||| {{ sentence_tel }}'
     metadata: *id001
-    name: translate-this-ory-pan
-    reference: Basic translation (Oriya into Punjabi)
-  280e39ac-57d4-4c94-8e11-b0fe4895d591: !Template
+    name: equals-translation-asm-tel
+    reference: Equals translation (Assamese into Telugu)
+  2c3be937-dea1-4827-8dc0-fda749e973bf: !Template
     answer_choices: null
-    id: 280e39ac-57d4-4c94-8e11-b0fe4895d591
-    jinja: 'Translate this from Latin American Spanish into Hindi: {{ sentence_spa
-      }} ||| {{ sentence_hin }}'
+    id: 2c3be937-dea1-4827-8dc0-fda749e973bf
+    jinja: 'Malayalam: {{ sentence_mal }} = Arabic: ||| {{ sentence_ara }}'
     metadata: *id001
-    name: translate-this-spa-hin
-    reference: Basic translation (Latin American Spanish into Hindi)
-  2834aeab-f340-40bb-9d2e-59a7afeb1929: !Template
+    name: equals-translation-mal-ara
+    reference: Equals translation (Malayalam into Arabic)
+  2c454d9a-6ec1-4c0d-af2a-67364d604415: !Template
     answer_choices: null
-    id: 2834aeab-f340-40bb-9d2e-59a7afeb1929
-    jinja: 'Translate this from Marathi into Lingala: {{ sentence_mar }} ||| {{ sentence_lin
-      }}'
+    id: 2c454d9a-6ec1-4c0d-af2a-67364d604415
+    jinja: 'Urdu: {{ sentence_urd }} = Malayalam: ||| {{ sentence_mal }}'
     metadata: *id001
-    name: translate-this-mar-lin
-    reference: Basic translation (Marathi into Lingala)
-  285671f4-0d0c-4744-8d50-a5b1ac074ae8: !Template
+    name: equals-translation-urd-mal
+    reference: Equals translation (Urdu into Malayalam)
+  2c7cc337-6d4e-46d2-9d64-272f794d7234: !Template
     answer_choices: null
-    id: 285671f4-0d0c-4744-8d50-a5b1ac074ae8
-    jinja: 'Translate this from Vietnamese into English: {{ sentence_vie }} ||| {{
-      sentence_eng }}'
+    id: 2c7cc337-6d4e-46d2-9d64-272f794d7234
+    jinja: 'Igbo: {{ sentence_ibo }} = Yoruba: ||| {{ sentence_yor }}'
     metadata: *id001
-    name: translate-this-vie-eng
-    reference: Basic translation (Vietnamese into English)
-  28841972-605b-4ca2-9e6a-9a7d878c67cc: !Template
+    name: equals-translation-ibo-yor
+    reference: Equals translation (Igbo into Yoruba)
+  2d1aa523-b4b3-46c8-9095-a7aea2676274: !Template
     answer_choices: null
-    id: 28841972-605b-4ca2-9e6a-9a7d878c67cc
-    jinja: 'Translate this from Swahili into Punjabi: {{ sentence_swh }} ||| {{ sentence_pan
-      }}'
+    id: 2d1aa523-b4b3-46c8-9095-a7aea2676274
+    jinja: 'Assamese: {{ sentence_asm }} = Nepali: ||| {{ sentence_npi }}'
     metadata: *id001
-    name: translate-this-swh-pan
-    reference: Basic translation (Swahili into Punjabi)
-  288aadfc-8b9c-4d11-9f97-01f9837466f3: !Template
+    name: equals-translation-asm-npi
+    reference: Equals translation (Assamese into Nepali)
+  2e4712df-9c4b-4d54-bc63-668e79b413f7: !Template
     answer_choices: null
-    id: 288aadfc-8b9c-4d11-9f97-01f9837466f3
-    jinja: 'Translate this from Nepali into Bengali: {{ sentence_npi }} ||| {{ sentence_ben
-      }}'
+    id: 2e4712df-9c4b-4d54-bc63-668e79b413f7
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = traditional Chinese: ||| {{
+      sentence_zho_trad }}'
     metadata: *id001
-    name: translate-this-npi-ben
-    reference: Basic translation (Nepali into Bengali)
-  28b549c6-c29c-459c-a7e3-f70b5759e26c: !Template
+    name: equals-translation-por-zho_trad
+    reference: Equals translation (Brazilian Portuguese into traditional Chinese)
+  2e869729-23e4-41f2-8257-3d5e37eccfcc: !Template
     answer_choices: null
-    id: 28b549c6-c29c-459c-a7e3-f70b5759e26c
-    jinja: 'Translate this from Bengali into Xhosa: {{ sentence_ben }} ||| {{ sentence_xho
-      }}'
+    id: 2e869729-23e4-41f2-8257-3d5e37eccfcc
+    jinja: 'Northern Sotho: {{ sentence_nso }} = Igbo: ||| {{ sentence_ibo }}'
     metadata: *id001
-    name: translate-this-ben-xho
-    reference: Basic translation (Bengali into Xhosa)
-  29c3e353-1a3c-4e91-b5d7-f4b6f53100ec: !Template
+    name: equals-translation-nso-ibo
+    reference: Equals translation (Northern Sotho into Igbo)
+  2f138410-0193-4251-aac8-357764af2fb0: !Template
     answer_choices: null
-    id: 29c3e353-1a3c-4e91-b5d7-f4b6f53100ec
-    jinja: 'Translate this from Tamil into Kannada: {{ sentence_tam }} ||| {{ sentence_kan
-      }}'
+    id: 2f138410-0193-4251-aac8-357764af2fb0
+    jinja: 'Gujarati: {{ sentence_guj }} = Indonesian: ||| {{ sentence_ind }}'
     metadata: *id001
-    name: translate-this-tam-kan
-    reference: Basic translation (Tamil into Kannada)
-  29c82651-6797-4a33-9fbe-9a77939dbd81: !Template
+    name: equals-translation-guj-ind
+    reference: Equals translation (Gujarati into Indonesian)
+  2f15036e-4304-4591-9291-1ec47d7f67e7: !Template
     answer_choices: null
-    id: 29c82651-6797-4a33-9fbe-9a77939dbd81
-    jinja: 'Translate this from Yoruba into Indonesian: {{ sentence_yor }} ||| {{
-      sentence_ind }}'
+    id: 2f15036e-4304-4591-9291-1ec47d7f67e7
+    jinja: 'Punjabi: {{ sentence_pan }} = English: ||| {{ sentence_eng }}'
     metadata: *id001
-    name: translate-this-yor-ind
-    reference: Basic translation (Yoruba into Indonesian)
-  29e197fb-960c-4fd6-953d-b616136f5901: !Template
+    name: equals-translation-pan-eng
+    reference: Equals translation (Punjabi into English)
+  2f5868a3-a33d-45e2-82f2-aff9318a8a7e: !Template
     answer_choices: null
-    id: 29e197fb-960c-4fd6-953d-b616136f5901
-    jinja: 'Translate this from traditional Chinese into Yoruba: {{ sentence_zho_trad
-      }} ||| {{ sentence_yor }}'
+    id: 2f5868a3-a33d-45e2-82f2-aff9318a8a7e
+    jinja: 'Igbo: {{ sentence_ibo }} = Lingala: ||| {{ sentence_lin }}'
     metadata: *id001
-    name: translate-this-zho_trad-yor
-    reference: Basic translation (traditional Chinese into Yoruba)
-  29ea4aba-9146-4810-9dd9-eb2af6a5165c: !Template
+    name: equals-translation-ibo-lin
+    reference: Equals translation (Igbo into Lingala)
+  2f5b1c9e-6110-4a18-ae49-6a35ec869c59: !Template
     answer_choices: null
-    id: 29ea4aba-9146-4810-9dd9-eb2af6a5165c
-    jinja: 'Translate this from Assamese into Zulu: {{ sentence_asm }} ||| {{ sentence_zul
-      }}'
+    id: 2f5b1c9e-6110-4a18-ae49-6a35ec869c59
+    jinja: 'Urdu: {{ sentence_urd }} = Arabic: ||| {{ sentence_ara }}'
     metadata: *id001
-    name: translate-this-asm-zul
-    reference: Basic translation (Assamese into Zulu)
-  2a1676a9-a842-45ec-82c1-2e0b3b7a4c30: !Template
+    name: equals-translation-urd-ara
+    reference: Equals translation (Urdu into Arabic)
+  2ff8fb17-2d79-42dd-9716-6f2bd86fa67c: !Template
     answer_choices: null
-    id: 2a1676a9-a842-45ec-82c1-2e0b3b7a4c30
-    jinja: 'Translate this from Northern Sotho into Gujarati: {{ sentence_nso }} |||
-      {{ sentence_guj }}'
+    id: 2ff8fb17-2d79-42dd-9716-6f2bd86fa67c
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Latin American Spanish:
+      ||| {{ sentence_spa }}'
     metadata: *id001
-    name: translate-this-nso-guj
-    reference: Basic translation (Northern Sotho into Gujarati)
-  2a833057-c672-4c30-8fef-f61fbc6be4f0: !Template
+    name: equals-translation-zho_simpl-spa
+    reference: Equals translation (simplified Chinese into Latin American Spanish)
+  30544283-9aba-47f4-921e-e5d5d20a34c7: !Template
     answer_choices: null
-    id: 2a833057-c672-4c30-8fef-f61fbc6be4f0
-    jinja: 'Translate this from Nepali into Assamese: {{ sentence_npi }} ||| {{ sentence_asm
+    id: 30544283-9aba-47f4-921e-e5d5d20a34c7
+    jinja: 'Nepali: {{ sentence_npi }} = traditional Chinese: ||| {{ sentence_zho_trad
       }}'
     metadata: *id001
-    name: translate-this-npi-asm
-    reference: Basic translation (Nepali into Assamese)
-  2b00be44-bcf4-4b05-a829-aaa7337a1a13: !Template
+    name: equals-translation-npi-zho_trad
+    reference: Equals translation (Nepali into traditional Chinese)
+  307c27f5-ee97-4ae2-adcb-4ca968c1a361: !Template
     answer_choices: null
-    id: 2b00be44-bcf4-4b05-a829-aaa7337a1a13
-    jinja: 'Translate this from Telugu into Punjabi: {{ sentence_tel }} ||| {{ sentence_pan
-      }}'
+    id: 307c27f5-ee97-4ae2-adcb-4ca968c1a361
+    jinja: 'Yoruba: {{ sentence_yor }} = Urdu: ||| {{ sentence_urd }}'
     metadata: *id001
-    name: translate-this-tel-pan
-    reference: Basic translation (Telugu into Punjabi)
-  2b0d0694-2a7d-44bf-9860-b119f1b34d97: !Template
+    name: equals-translation-yor-urd
+    reference: Equals translation (Yoruba into Urdu)
+  3081892f-975b-45db-ace2-3a071eb502f5: !Template
     answer_choices: null
-    id: 2b0d0694-2a7d-44bf-9860-b119f1b34d97
-    jinja: 'Translate this from Brazilian Portuguese into Oriya: {{ sentence_por }}
-      ||| {{ sentence_ory }}'
+    id: 3081892f-975b-45db-ace2-3a071eb502f5
+    jinja: 'Assamese: {{ sentence_asm }} = Northern Sotho: ||| {{ sentence_nso }}'
     metadata: *id001
-    name: translate-this-por-ory
-    reference: Basic translation (Brazilian Portuguese into Oriya)
-  2b3ee88c-800e-4837-ac82-6369d0754d71: !Template
+    name: equals-translation-asm-nso
+    reference: Equals translation (Assamese into Northern Sotho)
+  31805267-51cd-41ba-8d3f-d80495af01ff: !Template
     answer_choices: null
-    id: 2b3ee88c-800e-4837-ac82-6369d0754d71
-    jinja: 'Translate this from Catalan into simplified Chinese: {{ sentence_cat }}
-      ||| {{ sentence_zho_simpl }}'
+    id: 31805267-51cd-41ba-8d3f-d80495af01ff
+    jinja: 'Gujarati: {{ sentence_guj }} = Lingala: ||| {{ sentence_lin }}'
     metadata: *id001
-    name: translate-this-cat-zho_simpl
-    reference: Basic translation (Catalan into simplified Chinese)
-  2b9397ce-fd0e-45ae-abd1-59c7f85f5193: !Template
+    name: equals-translation-guj-lin
+    reference: Equals translation (Gujarati into Lingala)
+  31eb752d-42a4-40c8-a8f5-e3cd6c4ae5b3: !Template
     answer_choices: null
-    id: 2b9397ce-fd0e-45ae-abd1-59c7f85f5193
-    jinja: 'Translate this from Tamil into Marathi: {{ sentence_tam }} ||| {{ sentence_mar
-      }}'
+    id: 31eb752d-42a4-40c8-a8f5-e3cd6c4ae5b3
+    jinja: 'English: {{ sentence_eng }} = Malayalam: ||| {{ sentence_mal }}'
     metadata: *id001
-    name: translate-this-tam-mar
-    reference: Basic translation (Tamil into Marathi)
-  2bc0fe10-ea8f-439f-a978-7fcd6a1fd1b5: !Template
+    name: equals-translation-eng-mal
+    reference: Equals translation (English into Malayalam)
+  320f1b05-6f12-45c3-be4b-5c2f1617fde3: !Template
     answer_choices: null
-    id: 2bc0fe10-ea8f-439f-a978-7fcd6a1fd1b5
-    jinja: 'Translate this from Yoruba into Latin American Spanish: {{ sentence_yor
-      }} ||| {{ sentence_spa }}'
+    id: 320f1b05-6f12-45c3-be4b-5c2f1617fde3
+    jinja: 'Arabic: {{ sentence_ara }} = Assamese: ||| {{ sentence_asm }}'
     metadata: *id001
-    name: translate-this-yor-spa
-    reference: Basic translation (Yoruba into Latin American Spanish)
-  2bcb072d-6e11-4283-a68e-ab4950d25b1d: !Template
+    name: equals-translation-ara-asm
+    reference: Equals translation (Arabic into Assamese)
+  322b096d-dc0d-418c-8950-38d3b4187728: !Template
     answer_choices: null
-    id: 2bcb072d-6e11-4283-a68e-ab4950d25b1d
-    jinja: 'Translate this from Malayalam into English: {{ sentence_mal }} ||| {{
-      sentence_eng }}'
+    id: 322b096d-dc0d-418c-8950-38d3b4187728
+    jinja: 'Catalan: {{ sentence_cat }} = Tamil: ||| {{ sentence_tam }}'
     metadata: *id001
-    name: translate-this-mal-eng
-    reference: Basic translation (Malayalam into English)
-  2c9e7e80-56f3-4864-a4ab-3c38d8844de6: !Template
+    name: equals-translation-cat-tam
+    reference: Equals translation (Catalan into Tamil)
+  323931b9-5ed9-466e-a16d-b0286b8c0ca9: !Template
     answer_choices: null
-    id: 2c9e7e80-56f3-4864-a4ab-3c38d8844de6
-    jinja: 'Translate this from simplified Chinese into Zulu: {{ sentence_zho_simpl
-      }} ||| {{ sentence_zul }}'
+    id: 323931b9-5ed9-466e-a16d-b0286b8c0ca9
+    jinja: 'Catalan: {{ sentence_cat }} = Vietnamese: ||| {{ sentence_vie }}'
     metadata: *id001
-    name: translate-this-zho_simpl-zul
-    reference: Basic translation (simplified Chinese into Zulu)
-  2d44ba30-56b3-42e6-90b7-18148b115e92: !Template
+    name: equals-translation-cat-vie
+    reference: Equals translation (Catalan into Vietnamese)
+  323a555f-40de-4799-97ef-6e87f4d95565: !Template
     answer_choices: null
-    id: 2d44ba30-56b3-42e6-90b7-18148b115e92
-    jinja: 'Translate this from Hindi into traditional Chinese: {{ sentence_hin }}
-      ||| {{ sentence_zho_trad }}'
+    id: 323a555f-40de-4799-97ef-6e87f4d95565
+    jinja: 'Urdu: {{ sentence_urd }} = Zulu: ||| {{ sentence_zul }}'
     metadata: *id001
-    name: translate-this-hin-zho_trad
-    reference: Basic translation (Hindi into traditional Chinese)
-  2dce3330-97fe-4e80-9610-fd9197c159cb: !Template
+    name: equals-translation-urd-zul
+    reference: Equals translation (Urdu into Zulu)
+  327745a8-d5b9-41c8-9c94-f39446de2bac: !Template
     answer_choices: null
-    id: 2dce3330-97fe-4e80-9610-fd9197c159cb
-    jinja: 'Translate this from Latin American Spanish into Yoruba: {{ sentence_spa
-      }} ||| {{ sentence_yor }}'
+    id: 327745a8-d5b9-41c8-9c94-f39446de2bac
+    jinja: 'French: {{ sentence_fra }} = Oriya: ||| {{ sentence_ory }}'
     metadata: *id001
-    name: translate-this-spa-yor
-    reference: Basic translation (Latin American Spanish into Yoruba)
-  2dfff2a5-d0f0-4021-b938-a17b393a7b7a: !Template
+    name: equals-translation-fra-ory
+    reference: Equals translation (French into Oriya)
+  32eff7ac-64c3-4d30-b719-c0cd49301c57: !Template
     answer_choices: null
-    id: 2dfff2a5-d0f0-4021-b938-a17b393a7b7a
-    jinja: 'Translate this from Zulu into Arabic: {{ sentence_zul }} ||| {{ sentence_ara
-      }}'
+    id: 32eff7ac-64c3-4d30-b719-c0cd49301c57
+    jinja: 'Punjabi: {{ sentence_pan }} = French: ||| {{ sentence_fra }}'
     metadata: *id001
-    name: translate-this-zul-ara
-    reference: Basic translation (Zulu into Arabic)
-  2e0ba1bf-75e2-4623-80bd-fad6eb234269: !Template
+    name: equals-translation-pan-fra
+    reference: Equals translation (Punjabi into French)
+  32f02376-56fb-4c44-b0e9-d865591cf8fa: !Template
     answer_choices: null
-    id: 2e0ba1bf-75e2-4623-80bd-fad6eb234269
-    jinja: 'Translate this from Kannada into Wolof: {{ sentence_kan }} ||| {{ sentence_wol
+    id: 32f02376-56fb-4c44-b0e9-d865591cf8fa
+    jinja: 'Arabic: {{ sentence_ara }} = simplified Chinese: ||| {{ sentence_zho_simpl
       }}'
     metadata: *id001
-    name: translate-this-kan-wol
-    reference: Basic translation (Kannada into Wolof)
-  2e1042ea-c470-4fb6-8708-89b9af3f8445: !Template
+    name: equals-translation-ara-zho_simpl
+    reference: Equals translation (Arabic into simplified Chinese)
+  331151cf-29a5-47df-8034-77f2ba38ec4b: !Template
     answer_choices: null
-    id: 2e1042ea-c470-4fb6-8708-89b9af3f8445
-    jinja: 'Translate this from Yoruba into simplified Chinese: {{ sentence_yor }}
-      ||| {{ sentence_zho_simpl }}'
+    id: 331151cf-29a5-47df-8034-77f2ba38ec4b
+    jinja: 'Arabic: {{ sentence_ara }} = Bengali: ||| {{ sentence_ben }}'
     metadata: *id001
-    name: translate-this-yor-zho_simpl
-    reference: Basic translation (Yoruba into simplified Chinese)
-  2ea20010-b115-4cac-b738-511b9b265528: !Template
+    name: equals-translation-ara-ben
+    reference: Equals translation (Arabic into Bengali)
+  33bd0b44-f1a3-4f05-8b1d-ac57ec903639: !Template
     answer_choices: null
-    id: 2ea20010-b115-4cac-b738-511b9b265528
-    jinja: 'Translate this from Assamese into French: {{ sentence_asm }} ||| {{ sentence_fra
-      }}'
+    id: 33bd0b44-f1a3-4f05-8b1d-ac57ec903639
+    jinja: 'Arabic: {{ sentence_ara }} = Xhosa: ||| {{ sentence_xho }}'
     metadata: *id001
-    name: translate-this-asm-fra
-    reference: Basic translation (Assamese into French)
-  2ea531d8-2e97-48a9-905b-e80bd04d71c6: !Template
+    name: equals-translation-ara-xho
+    reference: Equals translation (Arabic into Xhosa)
+  33f8b435-938c-4f3f-8247-0848242a33ad: !Template
     answer_choices: null
-    id: 2ea531d8-2e97-48a9-905b-e80bd04d71c6
-    jinja: 'Translate this from Lingala into Telugu: {{ sentence_lin }} ||| {{ sentence_tel
-      }}'
+    id: 33f8b435-938c-4f3f-8247-0848242a33ad
+    jinja: 'Northern Sotho: {{ sentence_nso }} = Lingala: ||| {{ sentence_lin }}'
     metadata: *id001
-    name: translate-this-lin-tel
-    reference: Basic translation (Lingala into Telugu)
-  2eb3a6d2-ee6a-4ab1-a095-2a2e00405fc8: !Template
+    name: equals-translation-nso-lin
+    reference: Equals translation (Northern Sotho into Lingala)
+  343896f8-b3bc-4e77-b521-efa290f7bfbc: !Template
     answer_choices: null
-    id: 2eb3a6d2-ee6a-4ab1-a095-2a2e00405fc8
-    jinja: 'Translate this from English into Zulu: {{ sentence_eng }} ||| {{ sentence_zul
+    id: 343896f8-b3bc-4e77-b521-efa290f7bfbc
+    jinja: 'Xhosa: {{ sentence_xho }} = Brazilian Portuguese: ||| {{ sentence_por
       }}'
     metadata: *id001
-    name: translate-this-eng-zul
-    reference: Basic translation (English into Zulu)
-  2ec4eda5-0431-4d0c-98b9-0a05456918c5: !Template
+    name: equals-translation-xho-por
+    reference: Equals translation (Xhosa into Brazilian Portuguese)
+  344cbfcc-b649-445f-ba40-138aa3848552: !Template
     answer_choices: null
-    id: 2ec4eda5-0431-4d0c-98b9-0a05456918c5
-    jinja: 'Translate this from Oriya into Brazilian Portuguese: {{ sentence_ory }}
-      ||| {{ sentence_por }}'
+    id: 344cbfcc-b649-445f-ba40-138aa3848552
+    jinja: 'English: {{ sentence_eng }} = Nepali: ||| {{ sentence_npi }}'
     metadata: *id001
-    name: translate-this-ory-por
-    reference: Basic translation (Oriya into Brazilian Portuguese)
-  2ef28f4a-d7f9-4733-9f08-9ccf12b649ef: !Template
+    name: equals-translation-eng-npi
+    reference: Equals translation (English into Nepali)
+  34e8a530-36bb-4ca7-a679-e306b0d98a75: !Template
     answer_choices: null
-    id: 2ef28f4a-d7f9-4733-9f08-9ccf12b649ef
-    jinja: 'Translate this from Tamil into Malayalam: {{ sentence_tam }} ||| {{ sentence_mal
-      }}'
+    id: 34e8a530-36bb-4ca7-a679-e306b0d98a75
+    jinja: 'Lingala: {{ sentence_lin }} = English: ||| {{ sentence_eng }}'
     metadata: *id001
-    name: translate-this-tam-mal
-    reference: Basic translation (Tamil into Malayalam)
-  2ef2a0d9-d4b7-4a51-8a0b-45389e86c6aa: !Template
+    name: equals-translation-lin-eng
+    reference: Equals translation (Lingala into English)
+  3508125b-4c52-44f9-bc48-21f43e21a6b7: !Template
     answer_choices: null
-    id: 2ef2a0d9-d4b7-4a51-8a0b-45389e86c6aa
-    jinja: 'Translate this from Zulu into Tamil: {{ sentence_zul }} ||| {{ sentence_tam
-      }}'
+    id: 3508125b-4c52-44f9-bc48-21f43e21a6b7
+    jinja: 'Hindi: {{ sentence_hin }} = Assamese: ||| {{ sentence_asm }}'
     metadata: *id001
-    name: translate-this-zul-tam
-    reference: Basic translation (Zulu into Tamil)
-  2f8e9937-c364-4c8d-abe6-65789bad709c: !Template
+    name: equals-translation-hin-asm
+    reference: Equals translation (Hindi into Assamese)
+  351c4ba7-41ce-4ffc-a10d-36460aaceb54: !Template
     answer_choices: null
-    id: 2f8e9937-c364-4c8d-abe6-65789bad709c
-    jinja: 'Translate this from Catalan into Brazilian Portuguese: {{ sentence_cat
-      }} ||| {{ sentence_por }}'
+    id: 351c4ba7-41ce-4ffc-a10d-36460aaceb54
+    jinja: 'Oriya: {{ sentence_ory }} = Nepali: ||| {{ sentence_npi }}'
     metadata: *id001
-    name: translate-this-cat-por
-    reference: Basic translation (Catalan into Brazilian Portuguese)
-  2fe6f09f-036d-4300-b982-dfaf2649bbfe: !Template
+    name: equals-translation-ory-npi
+    reference: Equals translation (Oriya into Nepali)
+  35a2cf96-eb36-47fa-ab2d-d06ba2739b10: !Template
     answer_choices: null
-    id: 2fe6f09f-036d-4300-b982-dfaf2649bbfe
-    jinja: 'Translate this from Urdu into Telugu: {{ sentence_urd }} ||| {{ sentence_tel
-      }}'
+    id: 35a2cf96-eb36-47fa-ab2d-d06ba2739b10
+    jinja: 'Punjabi: {{ sentence_pan }} = Tamil: ||| {{ sentence_tam }}'
     metadata: *id001
-    name: translate-this-urd-tel
-    reference: Basic translation (Urdu into Telugu)
-  301af909-03e6-4981-8748-b3be3032472b: !Template
+    name: equals-translation-pan-tam
+    reference: Equals translation (Punjabi into Tamil)
+  363b9a30-cce8-4165-8dbd-54c287d7f3db: !Template
     answer_choices: null
-    id: 301af909-03e6-4981-8748-b3be3032472b
-    jinja: 'Translate this from Oriya into Xhosa: {{ sentence_ory }} ||| {{ sentence_xho
+    id: 363b9a30-cce8-4165-8dbd-54c287d7f3db
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Vietnamese: ||| {{ sentence_vie
       }}'
     metadata: *id001
-    name: translate-this-ory-xho
-    reference: Basic translation (Oriya into Xhosa)
-  301ef396-2498-480e-9b25-547651080398: !Template
+    name: equals-translation-zho_simpl-vie
+    reference: Equals translation (simplified Chinese into Vietnamese)
+  3656855e-c94b-4aa3-886c-d850716caf65: !Template
     answer_choices: null
-    id: 301ef396-2498-480e-9b25-547651080398
-    jinja: 'Translate this from Vietnamese into Oriya: {{ sentence_vie }} ||| {{ sentence_ory
-      }}'
+    id: 3656855e-c94b-4aa3-886c-d850716caf65
+    jinja: 'Northern Sotho: {{ sentence_nso }} = Assamese: ||| {{ sentence_asm }}'
     metadata: *id001
-    name: translate-this-vie-ory
-    reference: Basic translation (Vietnamese into Oriya)
-  302b2e93-1b5a-4c27-8087-c1a227c747f8: !Template
+    name: equals-translation-nso-asm
+    reference: Equals translation (Northern Sotho into Assamese)
+  36766259-80e7-43d6-801f-2605bf1c94b2: !Template
     answer_choices: null
-    id: 302b2e93-1b5a-4c27-8087-c1a227c747f8
-    jinja: 'Translate this from Kannada into Punjabi: {{ sentence_kan }} ||| {{ sentence_pan
-      }}'
+    id: 36766259-80e7-43d6-801f-2605bf1c94b2
+    jinja: 'Yoruba: {{ sentence_yor }} = Northern Sotho: ||| {{ sentence_nso }}'
     metadata: *id001
-    name: translate-this-kan-pan
-    reference: Basic translation (Kannada into Punjabi)
-  3049882a-819c-4bab-aebd-47ed4e56589b: !Template
+    name: equals-translation-yor-nso
+    reference: Equals translation (Yoruba into Northern Sotho)
+  369a2659-8fe5-4b84-b37b-a1c8a88c09d9: !Template
     answer_choices: null
-    id: 3049882a-819c-4bab-aebd-47ed4e56589b
-    jinja: 'Translate this from Lingala into Igbo: {{ sentence_lin }} ||| {{ sentence_ibo
-      }}'
+    id: 369a2659-8fe5-4b84-b37b-a1c8a88c09d9
+    jinja: 'French: {{ sentence_fra }} = Telugu: ||| {{ sentence_tel }}'
     metadata: *id001
-    name: translate-this-lin-ibo
-    reference: Basic translation (Lingala into Igbo)
-  305a370b-4998-476b-b06c-59d67bdbfa13: !Template
+    name: equals-translation-fra-tel
+    reference: Equals translation (French into Telugu)
+  36dd77cc-c4ce-4ab1-8784-b01c3054879b: !Template
     answer_choices: null
-    id: 305a370b-4998-476b-b06c-59d67bdbfa13
-    jinja: 'Translate this from Wolof into Zulu: {{ sentence_wol }} ||| {{ sentence_zul
-      }}'
+    id: 36dd77cc-c4ce-4ab1-8784-b01c3054879b
+    jinja: 'Xhosa: {{ sentence_xho }} = Urdu: ||| {{ sentence_urd }}'
     metadata: *id001
-    name: translate-this-wol-zul
-    reference: Basic translation (Wolof into Zulu)
-  30b69489-e330-4b4f-9e5d-e1b7b5b63f39: !Template
+    name: equals-translation-xho-urd
+    reference: Equals translation (Xhosa into Urdu)
+  3705cee4-3f54-4c14-9d67-416da141348f: !Template
     answer_choices: null
-    id: 30b69489-e330-4b4f-9e5d-e1b7b5b63f39
-    jinja: 'Translate this from Xhosa into Malayalam: {{ sentence_xho }} ||| {{ sentence_mal
-      }}'
+    id: 3705cee4-3f54-4c14-9d67-416da141348f
+    jinja: 'Malayalam: {{ sentence_mal }} = Indonesian: ||| {{ sentence_ind }}'
     metadata: *id001
-    name: translate-this-xho-mal
-    reference: Basic translation (Xhosa into Malayalam)
-  30c50a98-1429-42ec-a141-5043cd6cca6d: !Template
+    name: equals-translation-mal-ind
+    reference: Equals translation (Malayalam into Indonesian)
+  372ed731-45ca-4396-b894-8ac0b455192f: !Template
     answer_choices: null
-    id: 30c50a98-1429-42ec-a141-5043cd6cca6d
-    jinja: 'Translate this from Indonesian into Urdu: {{ sentence_ind }} ||| {{ sentence_urd
+    id: 372ed731-45ca-4396-b894-8ac0b455192f
+    jinja: 'Marathi: {{ sentence_mar }} = traditional Chinese: ||| {{ sentence_zho_trad
       }}'
     metadata: *id001
-    name: translate-this-ind-urd
-    reference: Basic translation (Indonesian into Urdu)
-  30deb3a3-607b-4d3f-ab33-abef13632b24: !Template
+    name: equals-translation-mar-zho_trad
+    reference: Equals translation (Marathi into traditional Chinese)
+  375a1f92-172d-419b-83af-8e9d3c680423: !Template
     answer_choices: null
-    id: 30deb3a3-607b-4d3f-ab33-abef13632b24
-    jinja: 'Translate this from Urdu into Punjabi: {{ sentence_urd }} ||| {{ sentence_pan
-      }}'
+    id: 375a1f92-172d-419b-83af-8e9d3c680423
+    jinja: 'Telugu: {{ sentence_tel }} = Assamese: ||| {{ sentence_asm }}'
     metadata: *id001
-    name: translate-this-urd-pan
-    reference: Basic translation (Urdu into Punjabi)
-  30e8e453-2d3c-4d67-a3ed-bbba1c8f6dc2: !Template
+    name: equals-translation-tel-asm
+    reference: Equals translation (Telugu into Assamese)
+  3761cf5d-1295-4028-a2b0-a77d27936c91: !Template
     answer_choices: null
-    id: 30e8e453-2d3c-4d67-a3ed-bbba1c8f6dc2
-    jinja: 'Translate this from Igbo into Catalan: {{ sentence_ibo }} ||| {{ sentence_cat
-      }}'
+    id: 3761cf5d-1295-4028-a2b0-a77d27936c91
+    jinja: 'Nepali: {{ sentence_npi }} = Wolof: ||| {{ sentence_wol }}'
     metadata: *id001
-    name: translate-this-ibo-cat
-    reference: Basic translation (Igbo into Catalan)
-  30ed79f8-ee17-4da2-9f75-d6a50817c891: !Template
+    name: equals-translation-npi-wol
+    reference: Equals translation (Nepali into Wolof)
+  37718ab0-ec1a-48a4-afdb-67660db32096: !Template
     answer_choices: null
-    id: 30ed79f8-ee17-4da2-9f75-d6a50817c891
-    jinja: 'Translate this from Malayalam into Oriya: {{ sentence_mal }} ||| {{ sentence_ory
-      }}'
+    id: 37718ab0-ec1a-48a4-afdb-67660db32096
+    jinja: 'Lingala: {{ sentence_lin }} = Nepali: ||| {{ sentence_npi }}'
     metadata: *id001
-    name: translate-this-mal-ory
-    reference: Basic translation (Malayalam into Oriya)
-  31256e73-48f4-4514-8610-b608f8bcac9d: !Template
+    name: equals-translation-lin-npi
+    reference: Equals translation (Lingala into Nepali)
+  37959101-6f56-4318-b0b5-8de6e8502457: !Template
     answer_choices: null
-    id: 31256e73-48f4-4514-8610-b608f8bcac9d
-    jinja: 'Translate this from Oriya into Yoruba: {{ sentence_ory }} ||| {{ sentence_yor
-      }}'
+    id: 37959101-6f56-4318-b0b5-8de6e8502457
+    jinja: 'Igbo: {{ sentence_ibo }} = Vietnamese: ||| {{ sentence_vie }}'
     metadata: *id001
-    name: translate-this-ory-yor
-    reference: Basic translation (Oriya into Yoruba)
-  31db01e3-b12b-47c9-b9f1-9a1a563c82f2: !Template
+    name: equals-translation-ibo-vie
+    reference: Equals translation (Igbo into Vietnamese)
+  380350d1-af62-4b79-8ac7-06fb3b71135d: !Template
     answer_choices: null
-    id: 31db01e3-b12b-47c9-b9f1-9a1a563c82f2
-    jinja: 'Translate this from Catalan into Gujarati: {{ sentence_cat }} ||| {{ sentence_guj
+    id: 380350d1-af62-4b79-8ac7-06fb3b71135d
+    jinja: 'Catalan: {{ sentence_cat }} = French: ||| {{ sentence_fra }}'
+    metadata: *id001
+    name: equals-translation-cat-fra
+    reference: Equals translation (Catalan into French)
+  380e0776-5e39-49f7-8d35-1fa89ca60f4a: !Template
+    answer_choices: null
+    id: 380e0776-5e39-49f7-8d35-1fa89ca60f4a
+    jinja: 'French: {{ sentence_fra }} = simplified Chinese: ||| {{ sentence_zho_simpl
       }}'
     metadata: *id001
-    name: translate-this-cat-guj
-    reference: Basic translation (Catalan into Gujarati)
-  320173f1-3f8a-4ce2-b485-2c651701c7dd: !Template
+    name: equals-translation-fra-zho_simpl
+    reference: Equals translation (French into simplified Chinese)
+  38df746b-5633-4e91-912a-33eee80e5c32: !Template
     answer_choices: null
-    id: 320173f1-3f8a-4ce2-b485-2c651701c7dd
-    jinja: 'Translate this from Marathi into Latin American Spanish: {{ sentence_mar
-      }} ||| {{ sentence_spa }}'
+    id: 38df746b-5633-4e91-912a-33eee80e5c32
+    jinja: 'Punjabi: {{ sentence_pan }} = Northern Sotho: ||| {{ sentence_nso }}'
     metadata: *id001
-    name: translate-this-mar-spa
-    reference: Basic translation (Marathi into Latin American Spanish)
-  32597949-f679-475e-8693-487dcd1b015d: !Template
+    name: equals-translation-pan-nso
+    reference: Equals translation (Punjabi into Northern Sotho)
+  39085c2d-0d67-4bf3-b56d-1d833a37d137: !Template
     answer_choices: null
-    id: 32597949-f679-475e-8693-487dcd1b015d
-    jinja: 'Translate this from Swahili into Urdu: {{ sentence_swh }} ||| {{ sentence_urd
-      }}'
+    id: 39085c2d-0d67-4bf3-b56d-1d833a37d137
+    jinja: 'Malayalam: {{ sentence_mal }} = Punjabi: ||| {{ sentence_pan }}'
     metadata: *id001
-    name: translate-this-swh-urd
-    reference: Basic translation (Swahili into Urdu)
-  32931b3d-b215-448c-96fc-5b671e53632c: !Template
+    name: equals-translation-mal-pan
+    reference: Equals translation (Malayalam into Punjabi)
+  3939c33e-08a1-415e-a0ae-30028a954a1f: !Template
     answer_choices: null
-    id: 32931b3d-b215-448c-96fc-5b671e53632c
-    jinja: 'Translate this from traditional Chinese into Urdu: {{ sentence_zho_trad
-      }} ||| {{ sentence_urd }}'
+    id: 3939c33e-08a1-415e-a0ae-30028a954a1f
+    jinja: 'Assamese: {{ sentence_asm }} = Malayalam: ||| {{ sentence_mal }}'
     metadata: *id001
-    name: translate-this-zho_trad-urd
-    reference: Basic translation (traditional Chinese into Urdu)
-  3359aecb-b509-4ac1-9186-2e3c0fc7d04a: !Template
+    name: equals-translation-asm-mal
+    reference: Equals translation (Assamese into Malayalam)
+  393d0f40-b1aa-4f00-b5a2-d43477f44f1b: !Template
     answer_choices: null
-    id: 3359aecb-b509-4ac1-9186-2e3c0fc7d04a
-    jinja: 'Translate this from Hindi into Malayalam: {{ sentence_hin }} ||| {{ sentence_mal
-      }}'
+    id: 393d0f40-b1aa-4f00-b5a2-d43477f44f1b
+    jinja: 'Tamil: {{ sentence_tam }} = Northern Sotho: ||| {{ sentence_nso }}'
     metadata: *id001
-    name: translate-this-hin-mal
-    reference: Basic translation (Hindi into Malayalam)
-  338bcd33-bf61-4146-82f0-7d84cbc0df55: !Template
+    name: equals-translation-tam-nso
+    reference: Equals translation (Tamil into Northern Sotho)
+  397e8ff6-7489-4a38-962f-8cf758598121: !Template
     answer_choices: null
-    id: 338bcd33-bf61-4146-82f0-7d84cbc0df55
-    jinja: 'Translate this from Kannada into Zulu: {{ sentence_kan }} ||| {{ sentence_zul
+    id: 397e8ff6-7489-4a38-962f-8cf758598121
+    jinja: 'Urdu: {{ sentence_urd }} = Yoruba: ||| {{ sentence_yor }}'
+    metadata: *id001
+    name: equals-translation-urd-yor
+    reference: Equals translation (Urdu into Yoruba)
+  39f66b4d-87e0-4c6f-9dd1-c9b212ee5f8c: !Template
+    answer_choices: null
+    id: 39f66b4d-87e0-4c6f-9dd1-c9b212ee5f8c
+    jinja: 'Lingala: {{ sentence_lin }} = Latin American Spanish: ||| {{ sentence_spa
       }}'
     metadata: *id001
-    name: translate-this-kan-zul
-    reference: Basic translation (Kannada into Zulu)
-  3432055c-58b8-4663-bc49-4c1f07a897a3: !Template
+    name: equals-translation-lin-spa
+    reference: Equals translation (Lingala into Latin American Spanish)
+  3b214302-abf1-4476-b718-99faaf7de959: !Template
     answer_choices: null
-    id: 3432055c-58b8-4663-bc49-4c1f07a897a3
-    jinja: 'Translate this from Northern Sotho into Brazilian Portuguese: {{ sentence_nso
-      }} ||| {{ sentence_por }}'
+    id: 3b214302-abf1-4476-b718-99faaf7de959
+    jinja: 'Zulu: {{ sentence_zul }} = Vietnamese: ||| {{ sentence_vie }}'
     metadata: *id001
-    name: translate-this-nso-por
-    reference: Basic translation (Northern Sotho into Brazilian Portuguese)
-  349eba5c-2633-4f0c-8385-d6d35f0f0eae: !Template
+    name: equals-translation-zul-vie
+    reference: Equals translation (Zulu into Vietnamese)
+  3b40c32a-5d18-4472-833e-85c2aebb09b9: !Template
     answer_choices: null
-    id: 349eba5c-2633-4f0c-8385-d6d35f0f0eae
-    jinja: 'Translate this from Wolof into Lingala: {{ sentence_wol }} ||| {{ sentence_lin
+    id: 3b40c32a-5d18-4472-833e-85c2aebb09b9
+    jinja: 'Arabic: {{ sentence_ara }} = traditional Chinese: ||| {{ sentence_zho_trad
       }}'
     metadata: *id001
-    name: translate-this-wol-lin
-    reference: Basic translation (Wolof into Lingala)
-  358009d4-1ca6-4601-93a8-feef2b5fc7fd: !Template
+    name: equals-translation-ara-zho_trad
+    reference: Equals translation (Arabic into traditional Chinese)
+  3ba51744-5c32-4742-a893-11cebc746a7f: !Template
     answer_choices: null
-    id: 358009d4-1ca6-4601-93a8-feef2b5fc7fd
-    jinja: 'Translate this from Bengali into Latin American Spanish: {{ sentence_ben
-      }} ||| {{ sentence_spa }}'
+    id: 3ba51744-5c32-4742-a893-11cebc746a7f
+    jinja: 'Zulu: {{ sentence_zul }} = Nepali: ||| {{ sentence_npi }}'
     metadata: *id001
-    name: translate-this-ben-spa
-    reference: Basic translation (Bengali into Latin American Spanish)
-  3640b22e-d677-4e77-8746-27d15986406d: !Template
+    name: equals-translation-zul-npi
+    reference: Equals translation (Zulu into Nepali)
+  3bf7ddec-d379-441c-81fc-4fa28141501f: !Template
     answer_choices: null
-    id: 3640b22e-d677-4e77-8746-27d15986406d
-    jinja: 'Translate this from Swahili into simplified Chinese: {{ sentence_swh }}
-      ||| {{ sentence_zho_simpl }}'
+    id: 3bf7ddec-d379-441c-81fc-4fa28141501f
+    jinja: 'Tamil: {{ sentence_tam }} = simplified Chinese: ||| {{ sentence_zho_simpl
+      }}'
     metadata: *id001
-    name: translate-this-swh-zho_simpl
-    reference: Basic translation (Swahili into simplified Chinese)
-  367000a2-021d-4be2-a227-de25957ab931: !Template
+    name: equals-translation-tam-zho_simpl
+    reference: Equals translation (Tamil into simplified Chinese)
+  3c36bef0-d301-42a3-a13f-67c51decfe3c: !Template
     answer_choices: null
-    id: 367000a2-021d-4be2-a227-de25957ab931
-    jinja: 'Translate this from Xhosa into Telugu: {{ sentence_xho }} ||| {{ sentence_tel
+    id: 3c36bef0-d301-42a3-a13f-67c51decfe3c
+    jinja: 'French: {{ sentence_fra }} = Latin American Spanish: ||| {{ sentence_spa
       }}'
     metadata: *id001
-    name: translate-this-xho-tel
-    reference: Basic translation (Xhosa into Telugu)
-  36a53209-9c52-47de-9ddb-f0166154626e: !Template
+    name: equals-translation-fra-spa
+    reference: Equals translation (French into Latin American Spanish)
+  3cd58bbf-b2bb-4c0e-9028-f4bac079f9ac: !Template
     answer_choices: null
-    id: 36a53209-9c52-47de-9ddb-f0166154626e
-    jinja: 'Translate this from Indonesian into Malayalam: {{ sentence_ind }} |||
-      {{ sentence_mal }}'
+    id: 3cd58bbf-b2bb-4c0e-9028-f4bac079f9ac
+    jinja: 'Zulu: {{ sentence_zul }} = Xhosa: ||| {{ sentence_xho }}'
     metadata: *id001
-    name: translate-this-ind-mal
-    reference: Basic translation (Indonesian into Malayalam)
-  36d051b9-1ebb-4d03-a5f1-c7eb7f67a4d9: !Template
+    name: equals-translation-zul-xho
+    reference: Equals translation (Zulu into Xhosa)
+  3d0dbc1f-4f6e-4847-946e-1dd3e602b3fc: !Template
     answer_choices: null
-    id: 36d051b9-1ebb-4d03-a5f1-c7eb7f67a4d9
-    jinja: 'Translate this from Northern Sotho into Lingala: {{ sentence_nso }} |||
-      {{ sentence_lin }}'
+    id: 3d0dbc1f-4f6e-4847-946e-1dd3e602b3fc
+    jinja: 'Vietnamese: {{ sentence_vie }} = Yoruba: ||| {{ sentence_yor }}'
     metadata: *id001
-    name: translate-this-nso-lin
-    reference: Basic translation (Northern Sotho into Lingala)
-  374165d8-5a07-46f1-a8e5-490caae7178a: !Template
+    name: equals-translation-vie-yor
+    reference: Equals translation (Vietnamese into Yoruba)
+  3d3ac306-e0be-439a-9d85-1b7c63533888: !Template
     answer_choices: null
-    id: 374165d8-5a07-46f1-a8e5-490caae7178a
-    jinja: 'Translate this from Punjabi into Xhosa: {{ sentence_pan }} ||| {{ sentence_xho
-      }}'
+    id: 3d3ac306-e0be-439a-9d85-1b7c63533888
+    jinja: 'Oriya: {{ sentence_ory }} = Wolof: ||| {{ sentence_wol }}'
     metadata: *id001
-    name: translate-this-pan-xho
-    reference: Basic translation (Punjabi into Xhosa)
-  379cabbd-1350-48e3-9179-6ed9067f3cd8: !Template
+    name: equals-translation-ory-wol
+    reference: Equals translation (Oriya into Wolof)
+  3d67b93b-ba74-48c6-9f59-19df89a7ec00: !Template
     answer_choices: null
-    id: 379cabbd-1350-48e3-9179-6ed9067f3cd8
-    jinja: 'Translate this from Igbo into Oriya: {{ sentence_ibo }} ||| {{ sentence_ory
-      }}'
+    id: 3d67b93b-ba74-48c6-9f59-19df89a7ec00
+    jinja: 'Bengali: {{ sentence_ben }} = Tamil: ||| {{ sentence_tam }}'
     metadata: *id001
-    name: translate-this-ibo-ory
-    reference: Basic translation (Igbo into Oriya)
-  37a1e2fb-865a-44e5-894a-da6dc75467b5: !Template
+    name: equals-translation-ben-tam
+    reference: Equals translation (Bengali into Tamil)
+  3d77b729-379e-4098-9947-99bd5ed607cd: !Template
     answer_choices: null
-    id: 37a1e2fb-865a-44e5-894a-da6dc75467b5
-    jinja: 'Translate this from Zulu into Marathi: {{ sentence_zul }} ||| {{ sentence_mar
+    id: 3d77b729-379e-4098-9947-99bd5ed607cd
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Telugu: ||| {{ sentence_tel
       }}'
     metadata: *id001
-    name: translate-this-zul-mar
-    reference: Basic translation (Zulu into Marathi)
-  37c611a2-cd70-4460-bda5-5dd0432fcd86: !Template
+    name: equals-translation-zho_simpl-tel
+    reference: Equals translation (simplified Chinese into Telugu)
+  3dcbab16-5ad1-440f-8eeb-3dabae9f59b6: !Template
     answer_choices: null
-    id: 37c611a2-cd70-4460-bda5-5dd0432fcd86
-    jinja: 'Translate this from English into Assamese: {{ sentence_eng }} ||| {{ sentence_asm
-      }}'
+    id: 3dcbab16-5ad1-440f-8eeb-3dabae9f59b6
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Northern Sotho: ||| {{
+      sentence_nso }}'
     metadata: *id001
-    name: translate-this-eng-asm
-    reference: Basic translation (English into Assamese)
-  37e0767c-eec5-41de-8f72-84f3f9a067ac: !Template
+    name: equals-translation-zho_simpl-nso
+    reference: Equals translation (simplified Chinese into Northern Sotho)
+  3dd98ba8-5fcc-42cd-9a17-ecbf6bcaaeed: !Template
     answer_choices: null
-    id: 37e0767c-eec5-41de-8f72-84f3f9a067ac
-    jinja: 'Translate this from Latin American Spanish into Malayalam: {{ sentence_spa
-      }} ||| {{ sentence_mal }}'
+    id: 3dd98ba8-5fcc-42cd-9a17-ecbf6bcaaeed
+    jinja: 'Gujarati: {{ sentence_guj }} = simplified Chinese: ||| {{ sentence_zho_simpl
+      }}'
     metadata: *id001
-    name: translate-this-spa-mal
-    reference: Basic translation (Latin American Spanish into Malayalam)
-  38983ff5-2f36-4762-97e1-ec14daf3d8a6: !Template
+    name: equals-translation-guj-zho_simpl
+    reference: Equals translation (Gujarati into simplified Chinese)
+  3df808f2-d7f5-4c26-98ac-e9985ea09bef: !Template
     answer_choices: null
-    id: 38983ff5-2f36-4762-97e1-ec14daf3d8a6
-    jinja: 'Translate this from Bengali into Hindi: {{ sentence_ben }} ||| {{ sentence_hin
-      }}'
+    id: 3df808f2-d7f5-4c26-98ac-e9985ea09bef
+    jinja: 'Arabic: {{ sentence_ara }} = Tamil: ||| {{ sentence_tam }}'
     metadata: *id001
-    name: translate-this-ben-hin
-    reference: Basic translation (Bengali into Hindi)
-  38a7c7b4-11db-45b1-b305-71c003bd2d5e: !Template
+    name: equals-translation-ara-tam
+    reference: Equals translation (Arabic into Tamil)
+  3e268eae-d3d2-453f-bd20-4375480ffb05: !Template
     answer_choices: null
-    id: 38a7c7b4-11db-45b1-b305-71c003bd2d5e
-    jinja: 'Translate this from Zulu into English: {{ sentence_zul }} ||| {{ sentence_eng
+    id: 3e268eae-d3d2-453f-bd20-4375480ffb05
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = Lingala: ||| {{ sentence_lin
       }}'
     metadata: *id001
-    name: translate-this-zul-eng
-    reference: Basic translation (Zulu into English)
-  38fcbc85-7267-4aa9-bf2c-c3a93ba927d4: !Template
+    name: equals-translation-spa-lin
+    reference: Equals translation (Latin American Spanish into Lingala)
+  3edc4f0a-d0f4-4c78-92bf-510091629da7: !Template
     answer_choices: null
-    id: 38fcbc85-7267-4aa9-bf2c-c3a93ba927d4
-    jinja: 'Translate this from Yoruba into Bengali: {{ sentence_yor }} ||| {{ sentence_ben
+    id: 3edc4f0a-d0f4-4c78-92bf-510091629da7
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Catalan: ||| {{ sentence_cat
       }}'
     metadata: *id001
-    name: translate-this-yor-ben
-    reference: Basic translation (Yoruba into Bengali)
-  390b3817-bd6c-4f46-a4ec-e561bbb1f21a: !Template
+    name: equals-translation-zho_simpl-cat
+    reference: Equals translation (simplified Chinese into Catalan)
+  3fa44de6-a012-4ff2-8567-d2f0d3728b38: !Template
     answer_choices: null
-    id: 390b3817-bd6c-4f46-a4ec-e561bbb1f21a
-    jinja: 'Translate this from Wolof into Northern Sotho: {{ sentence_wol }} |||
-      {{ sentence_nso }}'
+    id: 3fa44de6-a012-4ff2-8567-d2f0d3728b38
+    jinja: 'Hindi: {{ sentence_hin }} = Xhosa: ||| {{ sentence_xho }}'
     metadata: *id001
-    name: translate-this-wol-nso
-    reference: Basic translation (Wolof into Northern Sotho)
-  39410be1-21e7-4445-9807-b8e47f9f7e4c: !Template
+    name: equals-translation-hin-xho
+    reference: Equals translation (Hindi into Xhosa)
+  40da0330-6f47-48ec-855b-304e375cb0c5: !Template
     answer_choices: null
-    id: 39410be1-21e7-4445-9807-b8e47f9f7e4c
-    jinja: 'Translate this from Kannada into Hindi: {{ sentence_kan }} ||| {{ sentence_hin
+    id: 40da0330-6f47-48ec-855b-304e375cb0c5
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = Gujarati: ||| {{ sentence_guj
       }}'
     metadata: *id001
-    name: translate-this-kan-hin
-    reference: Basic translation (Kannada into Hindi)
-  39867095-dad6-4501-93fb-d242dca9f930: !Template
+    name: equals-translation-spa-guj
+    reference: Equals translation (Latin American Spanish into Gujarati)
+  40fe62aa-8830-4186-a979-54e5c9b5692b: !Template
     answer_choices: null
-    id: 39867095-dad6-4501-93fb-d242dca9f930
-    jinja: 'Translate this from Catalan into Oriya: {{ sentence_cat }} ||| {{ sentence_ory
+    id: 40fe62aa-8830-4186-a979-54e5c9b5692b
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Nepali: ||| {{ sentence_npi
       }}'
     metadata: *id001
-    name: translate-this-cat-ory
-    reference: Basic translation (Catalan into Oriya)
-  399eb5b5-bf8a-45a6-95af-b16dde99e56e: !Template
+    name: equals-translation-por-npi
+    reference: Equals translation (Brazilian Portuguese into Nepali)
+  4134f495-1bb9-450d-9bac-1f6944d12266: !Template
     answer_choices: null
-    id: 399eb5b5-bf8a-45a6-95af-b16dde99e56e
-    jinja: 'Translate this from Marathi into Arabic: {{ sentence_mar }} ||| {{ sentence_ara
-      }}'
+    id: 4134f495-1bb9-450d-9bac-1f6944d12266
+    jinja: 'Vietnamese: {{ sentence_vie }} = Catalan: ||| {{ sentence_cat }}'
     metadata: *id001
-    name: translate-this-mar-ara
-    reference: Basic translation (Marathi into Arabic)
-  39c015d7-de1f-411e-8fc8-158f8ea9d082: !Template
+    name: equals-translation-vie-cat
+    reference: Equals translation (Vietnamese into Catalan)
+  41932377-5ffd-4523-bfca-308d34d892f2: !Template
     answer_choices: null
-    id: 39c015d7-de1f-411e-8fc8-158f8ea9d082
-    jinja: 'Translate this from Malayalam into traditional Chinese: {{ sentence_mal
-      }} ||| {{ sentence_zho_trad }}'
+    id: 41932377-5ffd-4523-bfca-308d34d892f2
+    jinja: 'French: {{ sentence_fra }} = Urdu: ||| {{ sentence_urd }}'
     metadata: *id001
-    name: translate-this-mal-zho_trad
-    reference: Basic translation (Malayalam into traditional Chinese)
-  3a03c964-3ec1-49af-ad14-9d4602ee7677: !Template
+    name: equals-translation-fra-urd
+    reference: Equals translation (French into Urdu)
+  41bcc511-4f03-44b3-8613-200839cce312: !Template
     answer_choices: null
-    id: 3a03c964-3ec1-49af-ad14-9d4602ee7677
-    jinja: 'Translate this from Catalan into Hindi: {{ sentence_cat }} ||| {{ sentence_hin
-      }}'
+    id: 41bcc511-4f03-44b3-8613-200839cce312
+    jinja: 'Gujarati: {{ sentence_guj }} = Yoruba: ||| {{ sentence_yor }}'
     metadata: *id001
-    name: translate-this-cat-hin
-    reference: Basic translation (Catalan into Hindi)
-  3a2e789f-f7d6-497c-843c-2c0ec2b398f3: !Template
+    name: equals-translation-guj-yor
+    reference: Equals translation (Gujarati into Yoruba)
+  41d5e6fe-d4c1-4bab-b865-3ce6236334c3: !Template
     answer_choices: null
-    id: 3a2e789f-f7d6-497c-843c-2c0ec2b398f3
-    jinja: 'Translate this from traditional Chinese into Marathi: {{ sentence_zho_trad
-      }} ||| {{ sentence_mar }}'
+    id: 41d5e6fe-d4c1-4bab-b865-3ce6236334c3
+    jinja: 'Catalan: {{ sentence_cat }} = Nepali: ||| {{ sentence_npi }}'
     metadata: *id001
-    name: translate-this-zho_trad-mar
-    reference: Basic translation (traditional Chinese into Marathi)
-  3a5b8886-78e0-42fc-bbe0-210d9f6226e6: !Template
+    name: equals-translation-cat-npi
+    reference: Equals translation (Catalan into Nepali)
+  41f6026f-f23b-4149-a920-e2aa418982bf: !Template
     answer_choices: null
-    id: 3a5b8886-78e0-42fc-bbe0-210d9f6226e6
-    jinja: 'Translate this from Igbo into Marathi: {{ sentence_ibo }} ||| {{ sentence_mar
-      }}'
+    id: 41f6026f-f23b-4149-a920-e2aa418982bf
+    jinja: 'Hindi: {{ sentence_hin }} = Telugu: ||| {{ sentence_tel }}'
     metadata: *id001
-    name: translate-this-ibo-mar
-    reference: Basic translation (Igbo into Marathi)
-  3a78a3ad-2c9d-4499-80bc-e12494c060ca: !Template
+    name: equals-translation-hin-tel
+    reference: Equals translation (Hindi into Telugu)
+  420416e9-6e1f-4aad-86b0-31d0923e8f5d: !Template
     answer_choices: null
-    id: 3a78a3ad-2c9d-4499-80bc-e12494c060ca
-    jinja: 'Translate this from French into Tamil: {{ sentence_fra }} ||| {{ sentence_tam
-      }}'
+    id: 420416e9-6e1f-4aad-86b0-31d0923e8f5d
+    jinja: 'Gujarati: {{ sentence_guj }} = Swahili: ||| {{ sentence_swh }}'
     metadata: *id001
-    name: translate-this-fra-tam
-    reference: Basic translation (French into Tamil)
-  3a8bf195-a984-46b4-9b3d-aa1f12809428: !Template
+    name: equals-translation-guj-swh
+    reference: Equals translation (Gujarati into Swahili)
+  420ce512-0222-4a46-8ba3-173f1040d660: !Template
     answer_choices: null
-    id: 3a8bf195-a984-46b4-9b3d-aa1f12809428
-    jinja: 'Translate this from Arabic into Bengali: {{ sentence_ara }} ||| {{ sentence_ben
-      }}'
+    id: 420ce512-0222-4a46-8ba3-173f1040d660
+    jinja: 'English: {{ sentence_eng }} = Arabic: ||| {{ sentence_ara }}'
     metadata: *id001
-    name: translate-this-ara-ben
-    reference: Basic translation (Arabic into Bengali)
-  3ad31d6e-219b-42cb-ac8b-a8629f5d6f42: !Template
+    name: equals-translation-eng-ara
+    reference: Equals translation (English into Arabic)
+  422bc678-9138-4a29-af49-d62bf550accf: !Template
     answer_choices: null
-    id: 3ad31d6e-219b-42cb-ac8b-a8629f5d6f42
-    jinja: 'Translate this from Nepali into Yoruba: {{ sentence_npi }} ||| {{ sentence_yor
+    id: 422bc678-9138-4a29-af49-d62bf550accf
+    jinja: 'Oriya: {{ sentence_ory }} = simplified Chinese: ||| {{ sentence_zho_simpl
       }}'
     metadata: *id001
-    name: translate-this-npi-yor
-    reference: Basic translation (Nepali into Yoruba)
-  3afedbc2-9f83-4619-bd23-221ef1c1ba49: !Template
+    name: equals-translation-ory-zho_simpl
+    reference: Equals translation (Oriya into simplified Chinese)
+  4231dd44-56bd-46ae-8d7e-ef9cf729a538: !Template
     answer_choices: null
-    id: 3afedbc2-9f83-4619-bd23-221ef1c1ba49
-    jinja: 'Translate this from Catalan into Wolof: {{ sentence_cat }} ||| {{ sentence_wol
-      }}'
+    id: 4231dd44-56bd-46ae-8d7e-ef9cf729a538
+    jinja: 'Punjabi: {{ sentence_pan }} = Nepali: ||| {{ sentence_npi }}'
     metadata: *id001
-    name: translate-this-cat-wol
-    reference: Basic translation (Catalan into Wolof)
-  3b1c955a-a9d3-4887-a7f0-d748b807cc41: !Template
+    name: equals-translation-pan-npi
+    reference: Equals translation (Punjabi into Nepali)
+  4283a5ab-b8f2-448c-a08e-f66b7edfb407: !Template
     answer_choices: null
-    id: 3b1c955a-a9d3-4887-a7f0-d748b807cc41
-    jinja: 'Translate this from Oriya into traditional Chinese: {{ sentence_ory }}
-      ||| {{ sentence_zho_trad }}'
+    id: 4283a5ab-b8f2-448c-a08e-f66b7edfb407
+    jinja: 'Igbo: {{ sentence_ibo }} = Arabic: ||| {{ sentence_ara }}'
     metadata: *id001
-    name: translate-this-ory-zho_trad
-    reference: Basic translation (Oriya into traditional Chinese)
-  3b2d859d-8461-4e30-aa09-20b29c02b573: !Template
+    name: equals-translation-ibo-ara
+    reference: Equals translation (Igbo into Arabic)
+  42a2eca2-9dc4-454c-9db8-d9cd787ea3b4: !Template
     answer_choices: null
-    id: 3b2d859d-8461-4e30-aa09-20b29c02b573
-    jinja: 'Translate this from Punjabi into Malayalam: {{ sentence_pan }} ||| {{
-      sentence_mal }}'
+    id: 42a2eca2-9dc4-454c-9db8-d9cd787ea3b4
+    jinja: 'Indonesian: {{ sentence_ind }} = Kannada: ||| {{ sentence_kan }}'
     metadata: *id001
-    name: translate-this-pan-mal
-    reference: Basic translation (Punjabi into Malayalam)
-  3b8030e2-2e51-40d7-b260-38093df4e062: !Template
+    name: equals-translation-ind-kan
+    reference: Equals translation (Indonesian into Kannada)
+  42b68e18-d2a7-41e5-ab3d-d43000c78963: !Template
     answer_choices: null
-    id: 3b8030e2-2e51-40d7-b260-38093df4e062
-    jinja: 'Translate this from Arabic into Swahili: {{ sentence_ara }} ||| {{ sentence_swh
-      }}'
+    id: 42b68e18-d2a7-41e5-ab3d-d43000c78963
+    jinja: 'Urdu: {{ sentence_urd }} = Wolof: ||| {{ sentence_wol }}'
     metadata: *id001
-    name: translate-this-ara-swh
-    reference: Basic translation (Arabic into Swahili)
-  3c09660e-a76a-45c3-a299-0b32d4fa6ea2: !Template
+    name: equals-translation-urd-wol
+    reference: Equals translation (Urdu into Wolof)
+  4338d602-8ae5-4c77-8b8b-96ff42bb287d: !Template
     answer_choices: null
-    id: 3c09660e-a76a-45c3-a299-0b32d4fa6ea2
-    jinja: 'Translate this from Northern Sotho into Hindi: {{ sentence_nso }} |||
-      {{ sentence_hin }}'
+    id: 4338d602-8ae5-4c77-8b8b-96ff42bb287d
+    jinja: 'Nepali: {{ sentence_npi }} = Zulu: ||| {{ sentence_zul }}'
     metadata: *id001
-    name: translate-this-nso-hin
-    reference: Basic translation (Northern Sotho into Hindi)
-  3cafe21f-3163-4081-b785-dba79628534a: !Template
+    name: equals-translation-npi-zul
+    reference: Equals translation (Nepali into Zulu)
+  434995fc-2356-4829-904f-a55d45091a9a: !Template
     answer_choices: null
-    id: 3cafe21f-3163-4081-b785-dba79628534a
-    jinja: 'Translate this from Bengali into Indonesian: {{ sentence_ben }} ||| {{
-      sentence_ind }}'
+    id: 434995fc-2356-4829-904f-a55d45091a9a
+    jinja: 'Telugu: {{ sentence_tel }} = Urdu: ||| {{ sentence_urd }}'
     metadata: *id001
-    name: translate-this-ben-ind
-    reference: Basic translation (Bengali into Indonesian)
-  3d0a39dd-a404-46e1-a189-996ea5c2800e: !Template
+    name: equals-translation-tel-urd
+    reference: Equals translation (Telugu into Urdu)
+  43786fec-70cc-4306-b56b-8c24421a8af9: !Template
     answer_choices: null
-    id: 3d0a39dd-a404-46e1-a189-996ea5c2800e
-    jinja: 'Translate this from simplified Chinese into English: {{ sentence_zho_simpl
-      }} ||| {{ sentence_eng }}'
+    id: 43786fec-70cc-4306-b56b-8c24421a8af9
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = traditional Chinese: |||
+      {{ sentence_zho_trad }}'
     metadata: *id001
-    name: translate-this-zho_simpl-eng
-    reference: Basic translation (simplified Chinese into English)
-  3d48dbba-02ba-44fa-a811-f67ce4d5de18: !Template
+    name: equals-translation-zho_simpl-zho_trad
+    reference: Equals translation (simplified Chinese into traditional Chinese)
+  43847177-7cbf-4667-90e3-306516f57ae3: !Template
     answer_choices: null
-    id: 3d48dbba-02ba-44fa-a811-f67ce4d5de18
-    jinja: 'Translate this from Arabic into Catalan: {{ sentence_ara }} ||| {{ sentence_cat
-      }}'
+    id: 43847177-7cbf-4667-90e3-306516f57ae3
+    jinja: 'Tamil: {{ sentence_tam }} = Telugu: ||| {{ sentence_tel }}'
     metadata: *id001
-    name: translate-this-ara-cat
-    reference: Basic translation (Arabic into Catalan)
-  3d738407-e64f-4984-a284-0d3cf0c9f6fe: !Template
+    name: equals-translation-tam-tel
+    reference: Equals translation (Tamil into Telugu)
+  43907742-da98-4258-9155-6c6e7d09e908: !Template
     answer_choices: null
-    id: 3d738407-e64f-4984-a284-0d3cf0c9f6fe
-    jinja: 'Translate this from Urdu into Yoruba: {{ sentence_urd }} ||| {{ sentence_yor
+    id: 43907742-da98-4258-9155-6c6e7d09e908
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Bengali: ||| {{ sentence_ben
       }}'
     metadata: *id001
-    name: translate-this-urd-yor
-    reference: Basic translation (Urdu into Yoruba)
-  3d7cfcff-49f9-441c-8feb-48e281db9a35: !Template
+    name: equals-translation-zho_simpl-ben
+    reference: Equals translation (simplified Chinese into Bengali)
+  43d7ff12-c48f-4ecc-8bfb-a7694eb4839b: !Template
     answer_choices: null
-    id: 3d7cfcff-49f9-441c-8feb-48e281db9a35
-    jinja: 'Translate this from Indonesian into Brazilian Portuguese: {{ sentence_ind
-      }} ||| {{ sentence_por }}'
+    id: 43d7ff12-c48f-4ecc-8bfb-a7694eb4839b
+    jinja: 'Swahili: {{ sentence_swh }} = Nepali: ||| {{ sentence_npi }}'
     metadata: *id001
-    name: translate-this-ind-por
-    reference: Basic translation (Indonesian into Brazilian Portuguese)
-  3df591e6-c9bd-4436-b9ea-2de3a490af46: !Template
+    name: equals-translation-swh-npi
+    reference: Equals translation (Swahili into Nepali)
+  444d439e-e63c-4349-951e-9033d28ef56e: !Template
     answer_choices: null
-    id: 3df591e6-c9bd-4436-b9ea-2de3a490af46
-    jinja: 'Translate this from Zulu into Telugu: {{ sentence_zul }} ||| {{ sentence_tel
+    id: 444d439e-e63c-4349-951e-9033d28ef56e
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = Zulu: ||| {{ sentence_zul
       }}'
     metadata: *id001
-    name: translate-this-zul-tel
-    reference: Basic translation (Zulu into Telugu)
-  3e64a223-6fa6-4ed8-915e-8ff1c4229868: !Template
+    name: equals-translation-spa-zul
+    reference: Equals translation (Latin American Spanish into Zulu)
+  447e8bab-de9d-4163-8232-6621e76c922e: !Template
     answer_choices: null
-    id: 3e64a223-6fa6-4ed8-915e-8ff1c4229868
-    jinja: 'Translate this from Wolof into Kannada: {{ sentence_wol }} ||| {{ sentence_kan
-      }}'
+    id: 447e8bab-de9d-4163-8232-6621e76c922e
+    jinja: 'Lingala: {{ sentence_lin }} = Igbo: ||| {{ sentence_ibo }}'
     metadata: *id001
-    name: translate-this-wol-kan
-    reference: Basic translation (Wolof into Kannada)
-  3f2aff6c-d22c-4755-b7c9-f0fe3f562485: !Template
+    name: equals-translation-lin-ibo
+    reference: Equals translation (Lingala into Igbo)
+  448cc593-4cfb-45cf-90b7-7e6f9bb730c2: !Template
     answer_choices: null
-    id: 3f2aff6c-d22c-4755-b7c9-f0fe3f562485
-    jinja: 'Translate this from Punjabi into Telugu: {{ sentence_pan }} ||| {{ sentence_tel
-      }}'
+    id: 448cc593-4cfb-45cf-90b7-7e6f9bb730c2
+    jinja: 'Indonesian: {{ sentence_ind }} = Assamese: ||| {{ sentence_asm }}'
     metadata: *id001
-    name: translate-this-pan-tel
-    reference: Basic translation (Punjabi into Telugu)
-  3f8b57a2-295b-4d83-adad-b8c04157f2d0: !Template
+    name: equals-translation-ind-asm
+    reference: Equals translation (Indonesian into Assamese)
+  44f158c8-490b-4243-bece-f44d2dbcb304: !Template
     answer_choices: null
-    id: 3f8b57a2-295b-4d83-adad-b8c04157f2d0
-    jinja: 'Translate this from French into Yoruba: {{ sentence_fra }} ||| {{ sentence_yor
+    id: 44f158c8-490b-4243-bece-f44d2dbcb304
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Indonesian: ||| {{ sentence_ind
       }}'
     metadata: *id001
-    name: translate-this-fra-yor
-    reference: Basic translation (French into Yoruba)
-  3fca2ecf-789b-4441-9c4e-1175da2ba4c8: !Template
+    name: equals-translation-zho_simpl-ind
+    reference: Equals translation (simplified Chinese into Indonesian)
+  453bbc77-0c32-4339-b211-7c6adc7c19c2: !Template
     answer_choices: null
-    id: 3fca2ecf-789b-4441-9c4e-1175da2ba4c8
-    jinja: 'Translate this from Nepali into Urdu: {{ sentence_npi }} ||| {{ sentence_urd
+    id: 453bbc77-0c32-4339-b211-7c6adc7c19c2
+    jinja: 'Telugu: {{ sentence_tel }} = traditional Chinese: ||| {{ sentence_zho_trad
       }}'
     metadata: *id001
-    name: translate-this-npi-urd
-    reference: Basic translation (Nepali into Urdu)
-  4007a2ab-90d1-4577-aee9-6e6659c6bd20: !Template
+    name: equals-translation-tel-zho_trad
+    reference: Equals translation (Telugu into traditional Chinese)
+  45796d41-0755-4351-9a50-a7fdcf276536: !Template
     answer_choices: null
-    id: 4007a2ab-90d1-4577-aee9-6e6659c6bd20
-    jinja: 'Translate this from Arabic into Lingala: {{ sentence_ara }} ||| {{ sentence_lin
-      }}'
+    id: 45796d41-0755-4351-9a50-a7fdcf276536
+    jinja: 'French: {{ sentence_fra }} = Swahili: ||| {{ sentence_swh }}'
     metadata: *id001
-    name: translate-this-ara-lin
-    reference: Basic translation (Arabic into Lingala)
-  40d12e13-0793-4a00-b341-9f5516c33063: !Template
+    name: equals-translation-fra-swh
+    reference: Equals translation (French into Swahili)
+  45cc4100-9572-4b2f-828b-6c6d0a929969: !Template
     answer_choices: null
-    id: 40d12e13-0793-4a00-b341-9f5516c33063
-    jinja: 'Translate this from Igbo into Northern Sotho: {{ sentence_ibo }} ||| {{
-      sentence_nso }}'
+    id: 45cc4100-9572-4b2f-828b-6c6d0a929969
+    jinja: 'Hindi: {{ sentence_hin }} = Bengali: ||| {{ sentence_ben }}'
     metadata: *id001
-    name: translate-this-ibo-nso
-    reference: Basic translation (Igbo into Northern Sotho)
-  40de80f1-8089-48d1-8a91-cd27f22be785: !Template
+    name: equals-translation-hin-ben
+    reference: Equals translation (Hindi into Bengali)
+  45dbcc39-b798-4950-9854-5d4808237b5a: !Template
     answer_choices: null
-    id: 40de80f1-8089-48d1-8a91-cd27f22be785
-    jinja: 'Translate this from Assamese into Urdu: {{ sentence_asm }} ||| {{ sentence_urd
-      }}'
+    id: 45dbcc39-b798-4950-9854-5d4808237b5a
+    jinja: 'Hindi: {{ sentence_hin }} = English: ||| {{ sentence_eng }}'
     metadata: *id001
-    name: translate-this-asm-urd
-    reference: Basic translation (Assamese into Urdu)
-  41856d6b-70e6-4160-a0a1-2ca2c0118fbf: !Template
+    name: equals-translation-hin-eng
+    reference: Equals translation (Hindi into English)
+  46440f35-88d4-4c3f-85f1-a934ea324943: !Template
     answer_choices: null
-    id: 41856d6b-70e6-4160-a0a1-2ca2c0118fbf
-    jinja: 'Translate this from Gujarati into Telugu: {{ sentence_guj }} ||| {{ sentence_tel
-      }}'
+    id: 46440f35-88d4-4c3f-85f1-a934ea324943
+    jinja: 'Wolof: {{ sentence_wol }} = Bengali: ||| {{ sentence_ben }}'
     metadata: *id001
-    name: translate-this-guj-tel
-    reference: Basic translation (Gujarati into Telugu)
-  41e9029c-8d79-4273-ae84-43ef342d6708: !Template
+    name: equals-translation-wol-ben
+    reference: Equals translation (Wolof into Bengali)
+  4681d473-4418-4b2a-90e4-690d0021818f: !Template
     answer_choices: null
-    id: 41e9029c-8d79-4273-ae84-43ef342d6708
-    jinja: 'Translate this from traditional Chinese into English: {{ sentence_zho_trad
-      }} ||| {{ sentence_eng }}'
+    id: 4681d473-4418-4b2a-90e4-690d0021818f
+    jinja: 'Swahili: {{ sentence_swh }} = Wolof: ||| {{ sentence_wol }}'
     metadata: *id001
-    name: translate-this-zho_trad-eng
-    reference: Basic translation (traditional Chinese into English)
-  4203ff3b-5157-4f36-bd84-023d1a007fd9: !Template
+    name: equals-translation-swh-wol
+    reference: Equals translation (Swahili into Wolof)
+  46847079-7f7b-4c44-a200-34a75535beb6: !Template
     answer_choices: null
-    id: 4203ff3b-5157-4f36-bd84-023d1a007fd9
-    jinja: 'Translate this from Xhosa into Arabic: {{ sentence_xho }} ||| {{ sentence_ara
+    id: 46847079-7f7b-4c44-a200-34a75535beb6
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Punjabi: ||| {{ sentence_pan
       }}'
     metadata: *id001
-    name: translate-this-xho-ara
-    reference: Basic translation (Xhosa into Arabic)
-  42c0777d-1bbd-4691-b217-2ae3fd118844: !Template
+    name: equals-translation-zho_simpl-pan
+    reference: Equals translation (simplified Chinese into Punjabi)
+  468d3e92-4966-4bad-9f52-f979a8d28cf9: !Template
     answer_choices: null
-    id: 42c0777d-1bbd-4691-b217-2ae3fd118844
-    jinja: 'Translate this from Igbo into Brazilian Portuguese: {{ sentence_ibo }}
-      ||| {{ sentence_por }}'
+    id: 468d3e92-4966-4bad-9f52-f979a8d28cf9
+    jinja: 'Hindi: {{ sentence_hin }} = Indonesian: ||| {{ sentence_ind }}'
     metadata: *id001
-    name: translate-this-ibo-por
-    reference: Basic translation (Igbo into Brazilian Portuguese)
-  4372addb-fa0b-4e06-afb9-1f86068fc2e1: !Template
+    name: equals-translation-hin-ind
+    reference: Equals translation (Hindi into Indonesian)
+  468fdf61-2e9c-4282-9401-5b0f3d3978dd: !Template
     answer_choices: null
-    id: 4372addb-fa0b-4e06-afb9-1f86068fc2e1
-    jinja: 'Translate this from Marathi into Kannada: {{ sentence_mar }} ||| {{ sentence_kan
-      }}'
+    id: 468fdf61-2e9c-4282-9401-5b0f3d3978dd
+    jinja: 'Lingala: {{ sentence_lin }} = Hindi: ||| {{ sentence_hin }}'
     metadata: *id001
-    name: translate-this-mar-kan
-    reference: Basic translation (Marathi into Kannada)
-  43866147-76d5-4caa-95c3-36cecf5749e1: !Template
+    name: equals-translation-lin-hin
+    reference: Equals translation (Lingala into Hindi)
+  476a5739-099b-40ef-b945-370fcbefefca: !Template
     answer_choices: null
-    id: 43866147-76d5-4caa-95c3-36cecf5749e1
-    jinja: 'Translate this from English into Kannada: {{ sentence_eng }} ||| {{ sentence_kan
+    id: 476a5739-099b-40ef-b945-370fcbefefca
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = Tamil: ||| {{ sentence_tam
       }}'
     metadata: *id001
-    name: translate-this-eng-kan
-    reference: Basic translation (English into Kannada)
-  439c10a8-353d-4406-a90d-00602a9dc7e3: !Template
+    name: equals-translation-spa-tam
+    reference: Equals translation (Latin American Spanish into Tamil)
+  477945a9-d34a-4b2b-aa5a-556cd9a391f1: !Template
     answer_choices: null
-    id: 439c10a8-353d-4406-a90d-00602a9dc7e3
-    jinja: 'Translate this from Indonesian into Telugu: {{ sentence_ind }} ||| {{
-      sentence_tel }}'
+    id: 477945a9-d34a-4b2b-aa5a-556cd9a391f1
+    jinja: 'Indonesian: {{ sentence_ind }} = Lingala: ||| {{ sentence_lin }}'
     metadata: *id001
-    name: translate-this-ind-tel
-    reference: Basic translation (Indonesian into Telugu)
-  43a6a9b5-cb2f-449e-8152-84da12e27d39: !Template
+    name: equals-translation-ind-lin
+    reference: Equals translation (Indonesian into Lingala)
+  47923fd4-9381-486b-b81f-a0684163ef0f: !Template
     answer_choices: null
-    id: 43a6a9b5-cb2f-449e-8152-84da12e27d39
-    jinja: 'Translate this from Bengali into Punjabi: {{ sentence_ben }} ||| {{ sentence_pan
+    id: 47923fd4-9381-486b-b81f-a0684163ef0f
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Vietnamese: ||| {{ sentence_vie
       }}'
     metadata: *id001
-    name: translate-this-ben-pan
-    reference: Basic translation (Bengali into Punjabi)
-  43b1a9d1-c130-4517-b583-458c1855083a: !Template
+    name: equals-translation-por-vie
+    reference: Equals translation (Brazilian Portuguese into Vietnamese)
+  47a93b7a-837c-4f8f-8ab0-9716ee4c36bd: !Template
     answer_choices: null
-    id: 43b1a9d1-c130-4517-b583-458c1855083a
-    jinja: 'Translate this from Vietnamese into Igbo: {{ sentence_vie }} ||| {{ sentence_ibo
-      }}'
+    id: 47a93b7a-837c-4f8f-8ab0-9716ee4c36bd
+    jinja: 'Swahili: {{ sentence_swh }} = Marathi: ||| {{ sentence_mar }}'
     metadata: *id001
-    name: translate-this-vie-ibo
-    reference: Basic translation (Vietnamese into Igbo)
-  43ba42ef-8c2d-4f0b-8b61-44ec9f1d08bd: !Template
+    name: equals-translation-swh-mar
+    reference: Equals translation (Swahili into Marathi)
+  47d3e4d2-7d63-4bdd-b5f2-4e64f04a8af2: !Template
     answer_choices: null
-    id: 43ba42ef-8c2d-4f0b-8b61-44ec9f1d08bd
-    jinja: 'Translate this from Xhosa into Bengali: {{ sentence_xho }} ||| {{ sentence_ben
-      }}'
+    id: 47d3e4d2-7d63-4bdd-b5f2-4e64f04a8af2
+    jinja: 'Swahili: {{ sentence_swh }} = Oriya: ||| {{ sentence_ory }}'
     metadata: *id001
-    name: translate-this-xho-ben
-    reference: Basic translation (Xhosa into Bengali)
-  43f3fc86-ad1c-4f43-8df7-982cb6401c9d: !Template
+    name: equals-translation-swh-ory
+    reference: Equals translation (Swahili into Oriya)
+  4815ce90-d14a-4c12-aeb3-c71914e1d3e3: !Template
     answer_choices: null
-    id: 43f3fc86-ad1c-4f43-8df7-982cb6401c9d
-    jinja: 'Translate this from Kannada into Xhosa: {{ sentence_kan }} ||| {{ sentence_xho
-      }}'
+    id: 4815ce90-d14a-4c12-aeb3-c71914e1d3e3
+    jinja: 'English: {{ sentence_eng }} = Kannada: ||| {{ sentence_kan }}'
     metadata: *id001
-    name: translate-this-kan-xho
-    reference: Basic translation (Kannada into Xhosa)
-  445ba5a6-17ba-4cc6-8bd9-d272b1075eb0: !Template
+    name: equals-translation-eng-kan
+    reference: Equals translation (English into Kannada)
+  488326ec-be58-4473-945b-6452a299b9fd: !Template
     answer_choices: null
-    id: 445ba5a6-17ba-4cc6-8bd9-d272b1075eb0
-    jinja: 'Translate this from Yoruba into Igbo: {{ sentence_yor }} ||| {{ sentence_ibo
-      }}'
+    id: 488326ec-be58-4473-945b-6452a299b9fd
+    jinja: 'Swahili: {{ sentence_swh }} = Catalan: ||| {{ sentence_cat }}'
     metadata: *id001
-    name: translate-this-yor-ibo
-    reference: Basic translation (Yoruba into Igbo)
-  45271a5b-802e-4c43-810b-cd8aade5bf3c: !Template
+    name: equals-translation-swh-cat
+    reference: Equals translation (Swahili into Catalan)
+  48a89b80-00b8-444e-a65b-c01df719104a: !Template
     answer_choices: null
-    id: 45271a5b-802e-4c43-810b-cd8aade5bf3c
-    jinja: 'Translate this from Arabic into simplified Chinese: {{ sentence_ara }}
-      ||| {{ sentence_zho_simpl }}'
+    id: 48a89b80-00b8-444e-a65b-c01df719104a
+    jinja: 'Punjabi: {{ sentence_pan }} = Bengali: ||| {{ sentence_ben }}'
     metadata: *id001
-    name: translate-this-ara-zho_simpl
-    reference: Basic translation (Arabic into simplified Chinese)
-  455a9a85-c122-4a13-b13b-e70a225b5719: !Template
+    name: equals-translation-pan-ben
+    reference: Equals translation (Punjabi into Bengali)
+  48af1adf-0c85-4bb1-9c60-03bca480a5e5: !Template
     answer_choices: null
-    id: 455a9a85-c122-4a13-b13b-e70a225b5719
-    jinja: 'Translate this from simplified Chinese into Lingala: {{ sentence_zho_simpl
-      }} ||| {{ sentence_lin }}'
+    id: 48af1adf-0c85-4bb1-9c60-03bca480a5e5
+    jinja: 'Arabic: {{ sentence_ara }} = English: ||| {{ sentence_eng }}'
     metadata: *id001
-    name: translate-this-zho_simpl-lin
-    reference: Basic translation (simplified Chinese into Lingala)
-  4568c720-e59c-45c2-80d8-3528be8aa53a: !Template
+    name: equals-translation-ara-eng
+    reference: Equals translation (Arabic into English)
+  48eb822d-0885-4ca9-a916-9020d03bc745: !Template
     answer_choices: null
-    id: 4568c720-e59c-45c2-80d8-3528be8aa53a
-    jinja: 'Translate this from Gujarati into French: {{ sentence_guj }} ||| {{ sentence_fra
-      }}'
+    id: 48eb822d-0885-4ca9-a916-9020d03bc745
+    jinja: 'Oriya: {{ sentence_ory }} = Lingala: ||| {{ sentence_lin }}'
     metadata: *id001
-    name: translate-this-guj-fra
-    reference: Basic translation (Gujarati into French)
-  456a8d05-a4b1-4065-bd54-3b0e19c88328: !Template
+    name: equals-translation-ory-lin
+    reference: Equals translation (Oriya into Lingala)
+  48f50c80-29fd-46d9-b1da-bbdd87e05143: !Template
     answer_choices: null
-    id: 456a8d05-a4b1-4065-bd54-3b0e19c88328
-    jinja: 'Translate this from Zulu into Punjabi: {{ sentence_zul }} ||| {{ sentence_pan
-      }}'
+    id: 48f50c80-29fd-46d9-b1da-bbdd87e05143
+    jinja: 'Tamil: {{ sentence_tam }} = Malayalam: ||| {{ sentence_mal }}'
     metadata: *id001
-    name: translate-this-zul-pan
-    reference: Basic translation (Zulu into Punjabi)
-  46188006-f3cb-4b29-aac5-0835c480c2c0: !Template
+    name: equals-translation-tam-mal
+    reference: Equals translation (Tamil into Malayalam)
+  48fe27bb-e477-4e59-b452-bdc7879841e9: !Template
     answer_choices: null
-    id: 46188006-f3cb-4b29-aac5-0835c480c2c0
-    jinja: 'Translate this from Assamese into Vietnamese: {{ sentence_asm }} ||| {{
-      sentence_vie }}'
+    id: 48fe27bb-e477-4e59-b452-bdc7879841e9
+    jinja: 'Indonesian: {{ sentence_ind }} = Arabic: ||| {{ sentence_ara }}'
     metadata: *id001
-    name: translate-this-asm-vie
-    reference: Basic translation (Assamese into Vietnamese)
-  462008e0-a767-43a6-abae-d06b7af4cc66: !Template
+    name: equals-translation-ind-ara
+    reference: Equals translation (Indonesian into Arabic)
+  4922f8d7-a1a3-4bf8-be39-05e1c6e932f7: !Template
     answer_choices: null
-    id: 462008e0-a767-43a6-abae-d06b7af4cc66
-    jinja: 'Translate this from Yoruba into French: {{ sentence_yor }} ||| {{ sentence_fra
-      }}'
+    id: 4922f8d7-a1a3-4bf8-be39-05e1c6e932f7
+    jinja: 'Punjabi: {{ sentence_pan }} = Arabic: ||| {{ sentence_ara }}'
     metadata: *id001
-    name: translate-this-yor-fra
-    reference: Basic translation (Yoruba into French)
-  46866d6b-f58f-4cc2-860d-cd9a494ee581: !Template
+    name: equals-translation-pan-ara
+    reference: Equals translation (Punjabi into Arabic)
+  4949b1c3-6693-43cb-a5fb-3b9516ceb940: !Template
     answer_choices: null
-    id: 46866d6b-f58f-4cc2-860d-cd9a494ee581
-    jinja: 'Translate this from Punjabi into Arabic: {{ sentence_pan }} ||| {{ sentence_ara
-      }}'
+    id: 4949b1c3-6693-43cb-a5fb-3b9516ceb940
+    jinja: 'Bengali: {{ sentence_ben }} = Vietnamese: ||| {{ sentence_vie }}'
     metadata: *id001
-    name: translate-this-pan-ara
-    reference: Basic translation (Punjabi into Arabic)
-  46eb3c55-4b9c-4484-aa2b-d6671e901c47: !Template
+    name: equals-translation-ben-vie
+    reference: Equals translation (Bengali into Vietnamese)
+  4a36ebd0-5769-482c-a788-656d2d146460: !Template
     answer_choices: null
-    id: 46eb3c55-4b9c-4484-aa2b-d6671e901c47
-    jinja: 'Translate this from Hindi into Xhosa: {{ sentence_hin }} ||| {{ sentence_xho
+    id: 4a36ebd0-5769-482c-a788-656d2d146460
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Wolof: ||| {{ sentence_wol
       }}'
     metadata: *id001
-    name: translate-this-hin-xho
-    reference: Basic translation (Hindi into Xhosa)
-  47296a0d-7048-45c8-a1e9-b01e2849d201: !Template
+    name: equals-translation-zho_simpl-wol
+    reference: Equals translation (simplified Chinese into Wolof)
+  4a6488fd-792a-4a6a-a8a8-c54c9bca5932: !Template
     answer_choices: null
-    id: 47296a0d-7048-45c8-a1e9-b01e2849d201
-    jinja: 'Translate this from Nepali into Gujarati: {{ sentence_npi }} ||| {{ sentence_guj
-      }}'
+    id: 4a6488fd-792a-4a6a-a8a8-c54c9bca5932
+    jinja: 'Hindi: {{ sentence_hin }} = French: ||| {{ sentence_fra }}'
     metadata: *id001
-    name: translate-this-npi-guj
-    reference: Basic translation (Nepali into Gujarati)
-  474b4f3b-08df-4a73-a2f3-f6a6de6c06ef: !Template
+    name: equals-translation-hin-fra
+    reference: Equals translation (Hindi into French)
+  4ab4724c-43e0-45a8-9915-83021373cb90: !Template
     answer_choices: null
-    id: 474b4f3b-08df-4a73-a2f3-f6a6de6c06ef
-    jinja: 'Translate this from English into Yoruba: {{ sentence_eng }} ||| {{ sentence_yor
+    id: 4ab4724c-43e0-45a8-9915-83021373cb90
+    jinja: 'French: {{ sentence_fra }} = Brazilian Portuguese: ||| {{ sentence_por
       }}'
     metadata: *id001
-    name: translate-this-eng-yor
-    reference: Basic translation (English into Yoruba)
-  477cbaf3-891b-4387-9e60-c4bbf71d2674: !Template
+    name: equals-translation-fra-por
+    reference: Equals translation (French into Brazilian Portuguese)
+  4ad62766-5deb-4559-a7dc-f427cd61010b: !Template
     answer_choices: null
-    id: 477cbaf3-891b-4387-9e60-c4bbf71d2674
-    jinja: 'Translate this from Indonesian into French: {{ sentence_ind }} ||| {{
-      sentence_fra }}'
+    id: 4ad62766-5deb-4559-a7dc-f427cd61010b
+    jinja: 'Oriya: {{ sentence_ory }} = Marathi: ||| {{ sentence_mar }}'
     metadata: *id001
-    name: translate-this-ind-fra
-    reference: Basic translation (Indonesian into French)
-  47ba7cfb-3e80-4dba-b00a-072a1e227774: !Template
+    name: equals-translation-ory-mar
+    reference: Equals translation (Oriya into Marathi)
+  4af7b8c0-2943-4de7-8f23-d25c125e8fe7: !Template
     answer_choices: null
-    id: 47ba7cfb-3e80-4dba-b00a-072a1e227774
-    jinja: 'Translate this from Xhosa into Urdu: {{ sentence_xho }} ||| {{ sentence_urd
+    id: 4af7b8c0-2943-4de7-8f23-d25c125e8fe7
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Hindi: ||| {{ sentence_hin
       }}'
     metadata: *id001
-    name: translate-this-xho-urd
-    reference: Basic translation (Xhosa into Urdu)
-  48c5a765-3fde-48f0-87ef-b3201022ef90: !Template
-    answer_choices: null
-    id: 48c5a765-3fde-48f0-87ef-b3201022ef90
-    jinja: 'Translate this from Assamese into Wolof: {{ sentence_asm }} ||| {{ sentence_wol
-      }}'
-    metadata: *id001
-    name: translate-this-asm-wol
-    reference: Basic translation (Assamese into Wolof)
-  49178cbc-2bd3-4993-8a6f-2e5c88bb2252: !Template
-    answer_choices: null
-    id: 49178cbc-2bd3-4993-8a6f-2e5c88bb2252
-    jinja: 'Translate this from Northern Sotho into Telugu: {{ sentence_nso }} |||
-      {{ sentence_tel }}'
-    metadata: *id001
-    name: translate-this-nso-tel
-    reference: Basic translation (Northern Sotho into Telugu)
-  49237bdb-000d-4841-8880-bc6fd2dcba06: !Template
+    name: equals-translation-zho_trad-hin
+    reference: Equals translation (traditional Chinese into Hindi)
+  4b45676e-58f6-4b2e-8e15-e425424fb359: !Template
     answer_choices: null
-    id: 49237bdb-000d-4841-8880-bc6fd2dcba06
-    jinja: 'Translate this from simplified Chinese into traditional Chinese: {{ sentence_zho_simpl
-      }} ||| {{ sentence_zho_trad }}'
+    id: 4b45676e-58f6-4b2e-8e15-e425424fb359
+    jinja: 'English: {{ sentence_eng }} = Bengali: ||| {{ sentence_ben }}'
     metadata: *id001
-    name: translate-this-zho_simpl-zho_trad
-    reference: Basic translation (simplified Chinese into traditional Chinese)
-  49945144-f4e6-4abe-9a10-b4699509bc75: !Template
+    name: equals-translation-eng-ben
+    reference: Equals translation (English into Bengali)
+  4b91ec47-3f86-4af8-a23c-146b65eb4048: !Template
     answer_choices: null
-    id: 49945144-f4e6-4abe-9a10-b4699509bc75
-    jinja: 'Translate this from Malayalam into French: {{ sentence_mal }} ||| {{ sentence_fra
+    id: 4b91ec47-3f86-4af8-a23c-146b65eb4048
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Urdu: ||| {{ sentence_urd
       }}'
     metadata: *id001
-    name: translate-this-mal-fra
-    reference: Basic translation (Malayalam into French)
-  49ba6cb4-2c7e-4044-a711-007511dbcfe9: !Template
+    name: equals-translation-zho_simpl-urd
+    reference: Equals translation (simplified Chinese into Urdu)
+  4bd6ace5-53a4-48a8-a51e-047500831a33: !Template
     answer_choices: null
-    id: 49ba6cb4-2c7e-4044-a711-007511dbcfe9
-    jinja: 'Translate this from Malayalam into Indonesian: {{ sentence_mal }} |||
-      {{ sentence_ind }}'
+    id: 4bd6ace5-53a4-48a8-a51e-047500831a33
+    jinja: 'Yoruba: {{ sentence_yor }} = Zulu: ||| {{ sentence_zul }}'
     metadata: *id001
-    name: translate-this-mal-ind
-    reference: Basic translation (Malayalam into Indonesian)
-  4a05fc16-4a95-42bb-8b33-2221d873a663: !Template
+    name: equals-translation-yor-zul
+    reference: Equals translation (Yoruba into Zulu)
+  4c9a653e-cd0c-4a29-ad0c-829319a9e15c: !Template
     answer_choices: null
-    id: 4a05fc16-4a95-42bb-8b33-2221d873a663
-    jinja: 'Translate this from Urdu into Malayalam: {{ sentence_urd }} ||| {{ sentence_mal
+    id: 4c9a653e-cd0c-4a29-ad0c-829319a9e15c
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Assamese: ||| {{ sentence_asm
       }}'
     metadata: *id001
-    name: translate-this-urd-mal
-    reference: Basic translation (Urdu into Malayalam)
-  4a0704aa-c3d3-4c24-ac1b-8d645f4f0bbc: !Template
+    name: equals-translation-por-asm
+    reference: Equals translation (Brazilian Portuguese into Assamese)
+  4cb42572-204e-487a-9a41-63c44b5b8b2a: !Template
     answer_choices: null
-    id: 4a0704aa-c3d3-4c24-ac1b-8d645f4f0bbc
-    jinja: 'Translate this from Vietnamese into Latin American Spanish: {{ sentence_vie
-      }} ||| {{ sentence_spa }}'
+    id: 4cb42572-204e-487a-9a41-63c44b5b8b2a
+    jinja: 'Malayalam: {{ sentence_mal }} = Northern Sotho: ||| {{ sentence_nso }}'
     metadata: *id001
-    name: translate-this-vie-spa
-    reference: Basic translation (Vietnamese into Latin American Spanish)
-  4a0a25a7-016f-4430-bed5-84b94c42155e: !Template
+    name: equals-translation-mal-nso
+    reference: Equals translation (Malayalam into Northern Sotho)
+  4d1a8dea-4ed5-4d63-91fa-eb020f6a7a00: !Template
     answer_choices: null
-    id: 4a0a25a7-016f-4430-bed5-84b94c42155e
-    jinja: 'Translate this from Hindi into Vietnamese: {{ sentence_hin }} ||| {{ sentence_vie
-      }}'
+    id: 4d1a8dea-4ed5-4d63-91fa-eb020f6a7a00
+    jinja: 'Lingala: {{ sentence_lin }} = Indonesian: ||| {{ sentence_ind }}'
     metadata: *id001
-    name: translate-this-hin-vie
-    reference: Basic translation (Hindi into Vietnamese)
-  4a1f9868-c4ab-4d4c-b074-f668e1bef980: !Template
+    name: equals-translation-lin-ind
+    reference: Equals translation (Lingala into Indonesian)
+  4d90409a-967c-4bc5-b7d1-be3e5d894412: !Template
     answer_choices: null
-    id: 4a1f9868-c4ab-4d4c-b074-f668e1bef980
-    jinja: 'Translate this from Bengali into Lingala: {{ sentence_ben }} ||| {{ sentence_lin
+    id: 4d90409a-967c-4bc5-b7d1-be3e5d894412
+    jinja: 'Vietnamese: {{ sentence_vie }} = Brazilian Portuguese: ||| {{ sentence_por
       }}'
     metadata: *id001
-    name: translate-this-ben-lin
-    reference: Basic translation (Bengali into Lingala)
-  4a27a602-cc65-4c2b-ba14-edecd086de41: !Template
+    name: equals-translation-vie-por
+    reference: Equals translation (Vietnamese into Brazilian Portuguese)
+  4db97ece-1289-45b2-a8fb-e7d23a6b3201: !Template
     answer_choices: null
-    id: 4a27a602-cc65-4c2b-ba14-edecd086de41
-    jinja: 'Translate this from Northern Sotho into Vietnamese: {{ sentence_nso }}
-      ||| {{ sentence_vie }}'
+    id: 4db97ece-1289-45b2-a8fb-e7d23a6b3201
+    jinja: 'Zulu: {{ sentence_zul }} = Assamese: ||| {{ sentence_asm }}'
     metadata: *id001
-    name: translate-this-nso-vie
-    reference: Basic translation (Northern Sotho into Vietnamese)
-  4ac9f1ec-28c8-43ab-9222-393cc94544f6: !Template
+    name: equals-translation-zul-asm
+    reference: Equals translation (Zulu into Assamese)
+  4dc337b9-bab7-4a48-8dfa-d2c94b7d7e0e: !Template
     answer_choices: null
-    id: 4ac9f1ec-28c8-43ab-9222-393cc94544f6
-    jinja: 'Translate this from Wolof into Urdu: {{ sentence_wol }} ||| {{ sentence_urd
-      }}'
+    id: 4dc337b9-bab7-4a48-8dfa-d2c94b7d7e0e
+    jinja: 'Catalan: {{ sentence_cat }} = Bengali: ||| {{ sentence_ben }}'
     metadata: *id001
-    name: translate-this-wol-urd
-    reference: Basic translation (Wolof into Urdu)
-  4b3246f9-5577-4aee-8e9f-0fcf9e60e2f2: !Template
+    name: equals-translation-cat-ben
+    reference: Equals translation (Catalan into Bengali)
+  4dc4da3b-42ac-477b-95c9-b76c83be5705: !Template
     answer_choices: null
-    id: 4b3246f9-5577-4aee-8e9f-0fcf9e60e2f2
-    jinja: 'Translate this from Igbo into Zulu: {{ sentence_ibo }} ||| {{ sentence_zul
-      }}'
+    id: 4dc4da3b-42ac-477b-95c9-b76c83be5705
+    jinja: 'Yoruba: {{ sentence_yor }} = Tamil: ||| {{ sentence_tam }}'
     metadata: *id001
-    name: translate-this-ibo-zul
-    reference: Basic translation (Igbo into Zulu)
-  4b370afb-96df-4f11-af1a-ac8c4e6a208c: !Template
+    name: equals-translation-yor-tam
+    reference: Equals translation (Yoruba into Tamil)
+  4ddf7cc9-2fe1-4a3d-85fa-375adf6f82da: !Template
     answer_choices: null
-    id: 4b370afb-96df-4f11-af1a-ac8c4e6a208c
-    jinja: 'Translate this from Gujarati into Tamil: {{ sentence_guj }} ||| {{ sentence_tam
-      }}'
+    id: 4ddf7cc9-2fe1-4a3d-85fa-375adf6f82da
+    jinja: 'English: {{ sentence_eng }} = Punjabi: ||| {{ sentence_pan }}'
     metadata: *id001
-    name: translate-this-guj-tam
-    reference: Basic translation (Gujarati into Tamil)
-  4bb57bcd-c05c-454a-b10f-c4bde42973c2: !Template
+    name: equals-translation-eng-pan
+    reference: Equals translation (English into Punjabi)
+  4df3c69c-4a10-401e-bfe3-f8084c002180: !Template
     answer_choices: null
-    id: 4bb57bcd-c05c-454a-b10f-c4bde42973c2
-    jinja: 'Translate this from Marathi into Xhosa: {{ sentence_mar }} ||| {{ sentence_xho
+    id: 4df3c69c-4a10-401e-bfe3-f8084c002180
+    jinja: 'Igbo: {{ sentence_ibo }} = simplified Chinese: ||| {{ sentence_zho_simpl
       }}'
     metadata: *id001
-    name: translate-this-mar-xho
-    reference: Basic translation (Marathi into Xhosa)
-  4bdc2f65-920f-431b-8cf9-0e3a02d2b5f3: !Template
+    name: equals-translation-ibo-zho_simpl
+    reference: Equals translation (Igbo into simplified Chinese)
+  4e66010f-b82a-47b6-a8e0-e6656c69e70d: !Template
     answer_choices: null
-    id: 4bdc2f65-920f-431b-8cf9-0e3a02d2b5f3
-    jinja: 'Translate this from Punjabi into Gujarati: {{ sentence_pan }} ||| {{ sentence_guj
-      }}'
+    id: 4e66010f-b82a-47b6-a8e0-e6656c69e70d
+    jinja: 'Assamese: {{ sentence_asm }} = French: ||| {{ sentence_fra }}'
     metadata: *id001
-    name: translate-this-pan-guj
-    reference: Basic translation (Punjabi into Gujarati)
-  4be088e5-a8f1-47aa-b86a-64f04c8c2ed6: !Template
+    name: equals-translation-asm-fra
+    reference: Equals translation (Assamese into French)
+  4ec52039-0783-46e7-b1c2-bc5c737f1fa9: !Template
     answer_choices: null
-    id: 4be088e5-a8f1-47aa-b86a-64f04c8c2ed6
-    jinja: 'Translate this from Kannada into traditional Chinese: {{ sentence_kan
-      }} ||| {{ sentence_zho_trad }}'
+    id: 4ec52039-0783-46e7-b1c2-bc5c737f1fa9
+    jinja: 'English: {{ sentence_eng }} = Wolof: ||| {{ sentence_wol }}'
     metadata: *id001
-    name: translate-this-kan-zho_trad
-    reference: Basic translation (Kannada into traditional Chinese)
-  4be9404c-30a9-41b7-9fdd-1ebf956656e2: !Template
+    name: equals-translation-eng-wol
+    reference: Equals translation (English into Wolof)
+  4f59cd51-9d7f-49f5-9a7f-2b6691e82204: !Template
     answer_choices: null
-    id: 4be9404c-30a9-41b7-9fdd-1ebf956656e2
-    jinja: 'Translate this from Catalan into Marathi: {{ sentence_cat }} ||| {{ sentence_mar
-      }}'
+    id: 4f59cd51-9d7f-49f5-9a7f-2b6691e82204
+    jinja: 'Xhosa: {{ sentence_xho }} = Northern Sotho: ||| {{ sentence_nso }}'
     metadata: *id001
-    name: translate-this-cat-mar
-    reference: Basic translation (Catalan into Marathi)
-  4c74b777-9f74-4343-a748-d2d316e54e63: !Template
+    name: equals-translation-xho-nso
+    reference: Equals translation (Xhosa into Northern Sotho)
+  4f696df2-f40d-472a-bcd9-6bfaea73a5af: !Template
     answer_choices: null
-    id: 4c74b777-9f74-4343-a748-d2d316e54e63
-    jinja: 'Translate this from traditional Chinese into Northern Sotho: {{ sentence_zho_trad
-      }} ||| {{ sentence_nso }}'
+    id: 4f696df2-f40d-472a-bcd9-6bfaea73a5af
+    jinja: 'Xhosa: {{ sentence_xho }} = Malayalam: ||| {{ sentence_mal }}'
     metadata: *id001
-    name: translate-this-zho_trad-nso
-    reference: Basic translation (traditional Chinese into Northern Sotho)
-  4cb385bc-c29c-498f-b484-d7ee2c7b72bb: !Template
+    name: equals-translation-xho-mal
+    reference: Equals translation (Xhosa into Malayalam)
+  4f726a6b-8d10-43a4-aa53-82a20d90293f: !Template
     answer_choices: null
-    id: 4cb385bc-c29c-498f-b484-d7ee2c7b72bb
-    jinja: 'Translate this from Wolof into Xhosa: {{ sentence_wol }} ||| {{ sentence_xho
+    id: 4f726a6b-8d10-43a4-aa53-82a20d90293f
+    jinja: 'Yoruba: {{ sentence_yor }} = traditional Chinese: ||| {{ sentence_zho_trad
       }}'
     metadata: *id001
-    name: translate-this-wol-xho
-    reference: Basic translation (Wolof into Xhosa)
-  4dacc871-5315-4052-a80c-b34f3d456a61: !Template
+    name: equals-translation-yor-zho_trad
+    reference: Equals translation (Yoruba into traditional Chinese)
+  4f76ab94-f2f6-48e9-a6a2-565af7b0edac: !Template
     answer_choices: null
-    id: 4dacc871-5315-4052-a80c-b34f3d456a61
-    jinja: 'Translate this from French into Vietnamese: {{ sentence_fra }} ||| {{
-      sentence_vie }}'
+    id: 4f76ab94-f2f6-48e9-a6a2-565af7b0edac
+    jinja: 'English: {{ sentence_eng }} = Vietnamese: ||| {{ sentence_vie }}'
     metadata: *id001
-    name: translate-this-fra-vie
-    reference: Basic translation (French into Vietnamese)
-  4e184aec-82cd-4f57-9650-274c2d27dbf3: !Template
+    name: equals-translation-eng-vie
+    reference: Equals translation (English into Vietnamese)
+  4fba5346-1693-455c-8a52-6014d13a4e50: !Template
     answer_choices: null
-    id: 4e184aec-82cd-4f57-9650-274c2d27dbf3
-    jinja: 'Translate this from Xhosa into Assamese: {{ sentence_xho }} ||| {{ sentence_asm
+    id: 4fba5346-1693-455c-8a52-6014d13a4e50
+    jinja: 'Igbo: {{ sentence_ibo }} = Latin American Spanish: ||| {{ sentence_spa
       }}'
     metadata: *id001
-    name: translate-this-xho-asm
-    reference: Basic translation (Xhosa into Assamese)
-  4e1bc3f2-9067-460a-847c-2dc0610492ca: !Template
+    name: equals-translation-ibo-spa
+    reference: Equals translation (Igbo into Latin American Spanish)
+  4fcde954-2d9b-42e9-b9f9-981c9fbeb699: !Template
     answer_choices: null
-    id: 4e1bc3f2-9067-460a-847c-2dc0610492ca
-    jinja: 'Translate this from Vietnamese into Wolof: {{ sentence_vie }} ||| {{ sentence_wol
-      }}'
+    id: 4fcde954-2d9b-42e9-b9f9-981c9fbeb699
+    jinja: 'Gujarati: {{ sentence_guj }} = Malayalam: ||| {{ sentence_mal }}'
     metadata: *id001
-    name: translate-this-vie-wol
-    reference: Basic translation (Vietnamese into Wolof)
-  4e5d3ffa-64b2-4135-a86f-806bd3bf2c85: !Template
+    name: equals-translation-guj-mal
+    reference: Equals translation (Gujarati into Malayalam)
+  4fd0856f-b33d-41f9-a30c-b3def10d0692: !Template
     answer_choices: null
-    id: 4e5d3ffa-64b2-4135-a86f-806bd3bf2c85
-    jinja: 'Translate this from Gujarati into Kannada: {{ sentence_guj }} ||| {{ sentence_kan
-      }}'
+    id: 4fd0856f-b33d-41f9-a30c-b3def10d0692
+    jinja: 'English: {{ sentence_eng }} = Telugu: ||| {{ sentence_tel }}'
     metadata: *id001
-    name: translate-this-guj-kan
-    reference: Basic translation (Gujarati into Kannada)
-  4ec94806-e6be-4c5c-8b07-ca023976a031: !Template
+    name: equals-translation-eng-tel
+    reference: Equals translation (English into Telugu)
+  508a6007-e8fc-4751-bc90-3729d4fca785: !Template
     answer_choices: null
-    id: 4ec94806-e6be-4c5c-8b07-ca023976a031
-    jinja: 'Translate this from Swahili into Igbo: {{ sentence_swh }} ||| {{ sentence_ibo
-      }}'
+    id: 508a6007-e8fc-4751-bc90-3729d4fca785
+    jinja: 'Urdu: {{ sentence_urd }} = Lingala: ||| {{ sentence_lin }}'
     metadata: *id001
-    name: translate-this-swh-ibo
-    reference: Basic translation (Swahili into Igbo)
-  4f552f8d-5b6a-4723-a9b4-09c79e58365e: !Template
+    name: equals-translation-urd-lin
+    reference: Equals translation (Urdu into Lingala)
+  50ab01da-9f60-4712-89ab-2331e402815c: !Template
     answer_choices: null
-    id: 4f552f8d-5b6a-4723-a9b4-09c79e58365e
-    jinja: 'Translate this from Malayalam into Wolof: {{ sentence_mal }} ||| {{ sentence_wol
-      }}'
+    id: 50ab01da-9f60-4712-89ab-2331e402815c
+    jinja: 'Zulu: {{ sentence_zul }} = Brazilian Portuguese: ||| {{ sentence_por }}'
     metadata: *id001
-    name: translate-this-mal-wol
-    reference: Basic translation (Malayalam into Wolof)
-  4f6585ac-83cd-4a93-b3c5-e1c781361b2f: !Template
+    name: equals-translation-zul-por
+    reference: Equals translation (Zulu into Brazilian Portuguese)
+  51150f24-537c-4d9d-b414-0981ab6aee73: !Template
     answer_choices: null
-    id: 4f6585ac-83cd-4a93-b3c5-e1c781361b2f
-    jinja: 'Translate this from Marathi into Tamil: {{ sentence_mar }} ||| {{ sentence_tam
+    id: 51150f24-537c-4d9d-b414-0981ab6aee73
+    jinja: 'Hindi: {{ sentence_hin }} = Brazilian Portuguese: ||| {{ sentence_por
       }}'
     metadata: *id001
-    name: translate-this-mar-tam
-    reference: Basic translation (Marathi into Tamil)
-  4fea9482-67fd-4cb7-8458-d1821f0788f4: !Template
+    name: equals-translation-hin-por
+    reference: Equals translation (Hindi into Brazilian Portuguese)
+  51790a4e-3f25-47ee-bbdf-b9262b5967dd: !Template
     answer_choices: null
-    id: 4fea9482-67fd-4cb7-8458-d1821f0788f4
-    jinja: 'Translate this from Kannada into Marathi: {{ sentence_kan }} ||| {{ sentence_mar
-      }}'
+    id: 51790a4e-3f25-47ee-bbdf-b9262b5967dd
+    jinja: 'Malayalam: {{ sentence_mal }} = Vietnamese: ||| {{ sentence_vie }}'
     metadata: *id001
-    name: translate-this-kan-mar
-    reference: Basic translation (Kannada into Marathi)
-  502d9f84-2b39-4ba1-8af9-cba86c269aaf: !Template
+    name: equals-translation-mal-vie
+    reference: Equals translation (Malayalam into Vietnamese)
+  51c4f0f6-9f4c-41b3-9c48-02710dc9968a: !Template
     answer_choices: null
-    id: 502d9f84-2b39-4ba1-8af9-cba86c269aaf
-    jinja: 'Translate this from Indonesian into English: {{ sentence_ind }} ||| {{
-      sentence_eng }}'
+    id: 51c4f0f6-9f4c-41b3-9c48-02710dc9968a
+    jinja: 'Igbo: {{ sentence_ibo }} = Catalan: ||| {{ sentence_cat }}'
     metadata: *id001
-    name: translate-this-ind-eng
-    reference: Basic translation (Indonesian into English)
-  504013e3-2279-426d-bc7d-368901734580: !Template
+    name: equals-translation-ibo-cat
+    reference: Equals translation (Igbo into Catalan)
+  51ced8ec-cb3e-4a09-8e82-44ed544d2eb9: !Template
     answer_choices: null
-    id: 504013e3-2279-426d-bc7d-368901734580
-    jinja: 'Translate this from Gujarati into Brazilian Portuguese: {{ sentence_guj
-      }} ||| {{ sentence_por }}'
+    id: 51ced8ec-cb3e-4a09-8e82-44ed544d2eb9
+    jinja: 'Hindi: {{ sentence_hin }} = Vietnamese: ||| {{ sentence_vie }}'
     metadata: *id001
-    name: translate-this-guj-por
-    reference: Basic translation (Gujarati into Brazilian Portuguese)
-  51129ea2-b4c6-4b90-b1f3-13542a39035e: !Template
+    name: equals-translation-hin-vie
+    reference: Equals translation (Hindi into Vietnamese)
+  51d6c289-6267-4911-adc0-5ec49ebe12ed: !Template
     answer_choices: null
-    id: 51129ea2-b4c6-4b90-b1f3-13542a39035e
-    jinja: 'Translate this from Assamese into Yoruba: {{ sentence_asm }} ||| {{ sentence_yor
-      }}'
+    id: 51d6c289-6267-4911-adc0-5ec49ebe12ed
+    jinja: 'Bengali: {{ sentence_ben }} = Nepali: ||| {{ sentence_npi }}'
     metadata: *id001
-    name: translate-this-asm-yor
-    reference: Basic translation (Assamese into Yoruba)
-  5134e501-e41d-4870-840a-ce341ef0db11: !Template
+    name: equals-translation-ben-npi
+    reference: Equals translation (Bengali into Nepali)
+  51fe39b7-59c4-44bf-8336-0a9762d8b333: !Template
     answer_choices: null
-    id: 5134e501-e41d-4870-840a-ce341ef0db11
-    jinja: 'Translate this from Assamese into English: {{ sentence_asm }} ||| {{ sentence_eng
+    id: 51fe39b7-59c4-44bf-8336-0a9762d8b333
+    jinja: 'Catalan: {{ sentence_cat }} = Latin American Spanish: ||| {{ sentence_spa
       }}'
     metadata: *id001
-    name: translate-this-asm-eng
-    reference: Basic translation (Assamese into English)
-  51378dca-7f4d-4a6b-ad9b-9e68e5b901da: !Template
+    name: equals-translation-cat-spa
+    reference: Equals translation (Catalan into Latin American Spanish)
+  5204e108-1987-4c91-b9f1-e3d33dbd879a: !Template
     answer_choices: null
-    id: 51378dca-7f4d-4a6b-ad9b-9e68e5b901da
-    jinja: 'Translate this from Northern Sotho into Xhosa: {{ sentence_nso }} |||
-      {{ sentence_xho }}'
+    id: 5204e108-1987-4c91-b9f1-e3d33dbd879a
+    jinja: 'Lingala: {{ sentence_lin }} = Yoruba: ||| {{ sentence_yor }}'
     metadata: *id001
-    name: translate-this-nso-xho
-    reference: Basic translation (Northern Sotho into Xhosa)
-  5159b407-d28d-4057-855d-1a9ae8cf0e6e: !Template
+    name: equals-translation-lin-yor
+    reference: Equals translation (Lingala into Yoruba)
+  52286ad8-2429-4139-bc82-62fbb1d1d315: !Template
     answer_choices: null
-    id: 5159b407-d28d-4057-855d-1a9ae8cf0e6e
-    jinja: 'Translate this from French into Malayalam: {{ sentence_fra }} ||| {{ sentence_mal
+    id: 52286ad8-2429-4139-bc82-62fbb1d1d315
+    jinja: 'Punjabi: {{ sentence_pan }} = Brazilian Portuguese: ||| {{ sentence_por
       }}'
     metadata: *id001
-    name: translate-this-fra-mal
-    reference: Basic translation (French into Malayalam)
-  5176a0a2-72fd-4c9c-ac32-69fde80e2716: !Template
+    name: equals-translation-pan-por
+    reference: Equals translation (Punjabi into Brazilian Portuguese)
+  52320856-2947-49f8-98ea-8aac44ef9770: !Template
     answer_choices: null
-    id: 5176a0a2-72fd-4c9c-ac32-69fde80e2716
-    jinja: 'Translate this from Marathi into Yoruba: {{ sentence_mar }} ||| {{ sentence_yor
+    id: 52320856-2947-49f8-98ea-8aac44ef9770
+    jinja: 'Kannada: {{ sentence_kan }} = simplified Chinese: ||| {{ sentence_zho_simpl
       }}'
     metadata: *id001
-    name: translate-this-mar-yor
-    reference: Basic translation (Marathi into Yoruba)
-  5357acdf-a3fa-4199-b96a-7c0ba5eb778b: !Template
+    name: equals-translation-kan-zho_simpl
+    reference: Equals translation (Kannada into simplified Chinese)
+  52817e58-be9f-4154-8c32-cdcc6ccefa51: !Template
     answer_choices: null
-    id: 5357acdf-a3fa-4199-b96a-7c0ba5eb778b
-    jinja: 'Translate this from Malayalam into Latin American Spanish: {{ sentence_mal
-      }} ||| {{ sentence_spa }}'
+    id: 52817e58-be9f-4154-8c32-cdcc6ccefa51
+    jinja: 'Vietnamese: {{ sentence_vie }} = Tamil: ||| {{ sentence_tam }}'
     metadata: *id001
-    name: translate-this-mal-spa
-    reference: Basic translation (Malayalam into Latin American Spanish)
-  5376a9ff-2a88-432a-ac94-96bf7e5372b0: !Template
+    name: equals-translation-vie-tam
+    reference: Equals translation (Vietnamese into Tamil)
+  5293f1cb-b46d-44ca-a045-e8c8c543ee0a: !Template
     answer_choices: null
-    id: 5376a9ff-2a88-432a-ac94-96bf7e5372b0
-    jinja: 'Translate this from Brazilian Portuguese into Punjabi: {{ sentence_por
-      }} ||| {{ sentence_pan }}'
+    id: 5293f1cb-b46d-44ca-a045-e8c8c543ee0a
+    jinja: 'English: {{ sentence_eng }} = Gujarati: ||| {{ sentence_guj }}'
     metadata: *id001
-    name: translate-this-por-pan
-    reference: Basic translation (Brazilian Portuguese into Punjabi)
-  538b7c6e-cef7-4267-9e7a-291004d65fb1: !Template
+    name: equals-translation-eng-guj
+    reference: Equals translation (English into Gujarati)
+  52c42e19-1812-4784-8d6d-d2c3dbf95f87: !Template
     answer_choices: null
-    id: 538b7c6e-cef7-4267-9e7a-291004d65fb1
-    jinja: 'Translate this from Igbo into Yoruba: {{ sentence_ibo }} ||| {{ sentence_yor
-      }}'
+    id: 52c42e19-1812-4784-8d6d-d2c3dbf95f87
+    jinja: 'Gujarati: {{ sentence_guj }} = Northern Sotho: ||| {{ sentence_nso }}'
     metadata: *id001
-    name: translate-this-ibo-yor
-    reference: Basic translation (Igbo into Yoruba)
-  538fe143-5032-41c8-9379-83baefb117f8: !Template
+    name: equals-translation-guj-nso
+    reference: Equals translation (Gujarati into Northern Sotho)
+  52d98ecd-c35f-4b59-8a29-ab77cbfc96ab: !Template
     answer_choices: null
-    id: 538fe143-5032-41c8-9379-83baefb117f8
-    jinja: 'Translate this from Wolof into simplified Chinese: {{ sentence_wol }}
-      ||| {{ sentence_zho_simpl }}'
+    id: 52d98ecd-c35f-4b59-8a29-ab77cbfc96ab
+    jinja: 'Nepali: {{ sentence_npi }} = Xhosa: ||| {{ sentence_xho }}'
     metadata: *id001
-    name: translate-this-wol-zho_simpl
-    reference: Basic translation (Wolof into simplified Chinese)
-  545f2bf0-fec7-4e02-a9bd-9e0fb63dad70: !Template
+    name: equals-translation-npi-xho
+    reference: Equals translation (Nepali into Xhosa)
+  52ed238a-f4ed-4da4-a04f-7a8feb3d14b8: !Template
     answer_choices: null
-    id: 545f2bf0-fec7-4e02-a9bd-9e0fb63dad70
-    jinja: 'Translate this from French into Hindi: {{ sentence_fra }} ||| {{ sentence_hin
-      }}'
+    id: 52ed238a-f4ed-4da4-a04f-7a8feb3d14b8
+    jinja: 'Bengali: {{ sentence_ben }} = Urdu: ||| {{ sentence_urd }}'
     metadata: *id001
-    name: translate-this-fra-hin
-    reference: Basic translation (French into Hindi)
-  5493ac19-883d-4846-951d-2b058d432e04: !Template
+    name: equals-translation-ben-urd
+    reference: Equals translation (Bengali into Urdu)
+  530a56d7-719f-4d58-bf6c-c893a6cddeb1: !Template
     answer_choices: null
-    id: 5493ac19-883d-4846-951d-2b058d432e04
-    jinja: 'Translate this from Swahili into Telugu: {{ sentence_swh }} ||| {{ sentence_tel
-      }}'
+    id: 530a56d7-719f-4d58-bf6c-c893a6cddeb1
+    jinja: 'Igbo: {{ sentence_ibo }} = Urdu: ||| {{ sentence_urd }}'
     metadata: *id001
-    name: translate-this-swh-tel
-    reference: Basic translation (Swahili into Telugu)
-  549ba76b-9ac9-4f51-80ec-d184280505f2: !Template
+    name: equals-translation-ibo-urd
+    reference: Equals translation (Igbo into Urdu)
+  53742719-db41-4060-a95c-35d20564d947: !Template
     answer_choices: null
-    id: 549ba76b-9ac9-4f51-80ec-d184280505f2
-    jinja: 'Translate this from Arabic into Punjabi: {{ sentence_ara }} ||| {{ sentence_pan
+    id: 53742719-db41-4060-a95c-35d20564d947
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = Indonesian: ||| {{ sentence_ind
       }}'
     metadata: *id001
-    name: translate-this-ara-pan
-    reference: Basic translation (Arabic into Punjabi)
-  54f176a3-fc4a-4f9c-9d52-2c0d858620eb: !Template
+    name: equals-translation-spa-ind
+    reference: Equals translation (Latin American Spanish into Indonesian)
+  53857738-c403-47a4-a09b-a5c6e77b73d8: !Template
     answer_choices: null
-    id: 54f176a3-fc4a-4f9c-9d52-2c0d858620eb
-    jinja: 'Translate this from Swahili into Gujarati: {{ sentence_swh }} ||| {{ sentence_guj
-      }}'
+    id: 53857738-c403-47a4-a09b-a5c6e77b73d8
+    jinja: 'Northern Sotho: {{ sentence_nso }} = Xhosa: ||| {{ sentence_xho }}'
     metadata: *id001
-    name: translate-this-swh-guj
-    reference: Basic translation (Swahili into Gujarati)
-  558b7fb0-3075-4d55-869c-c6202b03b2a9: !Template
+    name: equals-translation-nso-xho
+    reference: Equals translation (Northern Sotho into Xhosa)
+  54107478-0654-4010-92f9-dc4d89cdaf00: !Template
     answer_choices: null
-    id: 558b7fb0-3075-4d55-869c-c6202b03b2a9
-    jinja: 'Translate this from English into Tamil: {{ sentence_eng }} ||| {{ sentence_tam
-      }}'
+    id: 54107478-0654-4010-92f9-dc4d89cdaf00
+    jinja: 'Wolof: {{ sentence_wol }} = Vietnamese: ||| {{ sentence_vie }}'
     metadata: *id001
-    name: translate-this-eng-tam
-    reference: Basic translation (English into Tamil)
-  5591026f-7bc6-4f68-a931-9dbf7567682f: !Template
+    name: equals-translation-wol-vie
+    reference: Equals translation (Wolof into Vietnamese)
+  54146642-5da3-47d7-b996-6ba64dc9d61a: !Template
     answer_choices: null
-    id: 5591026f-7bc6-4f68-a931-9dbf7567682f
-    jinja: 'Translate this from Marathi into Vietnamese: {{ sentence_mar }} ||| {{
-      sentence_vie }}'
+    id: 54146642-5da3-47d7-b996-6ba64dc9d61a
+    jinja: 'Vietnamese: {{ sentence_vie }} = Punjabi: ||| {{ sentence_pan }}'
     metadata: *id001
-    name: translate-this-mar-vie
-    reference: Basic translation (Marathi into Vietnamese)
-  55d2e995-ec75-474b-a58d-73bdac751e74: !Template
+    name: equals-translation-vie-pan
+    reference: Equals translation (Vietnamese into Punjabi)
+  5424125f-6b5a-4e6a-9c2e-5c872cb31290: !Template
     answer_choices: null
-    id: 55d2e995-ec75-474b-a58d-73bdac751e74
-    jinja: 'Translate this from simplified Chinese into Latin American Spanish: {{
-      sentence_zho_simpl }} ||| {{ sentence_spa }}'
+    id: 5424125f-6b5a-4e6a-9c2e-5c872cb31290
+    jinja: 'Gujarati: {{ sentence_guj }} = Oriya: ||| {{ sentence_ory }}'
     metadata: *id001
-    name: translate-this-zho_simpl-spa
-    reference: Basic translation (simplified Chinese into Latin American Spanish)
-  560983c7-f8e6-4195-8409-bae62a4c3296: !Template
+    name: equals-translation-guj-ory
+    reference: Equals translation (Gujarati into Oriya)
+  5443c430-c621-46bc-af4b-52e6d08edd75: !Template
     answer_choices: null
-    id: 560983c7-f8e6-4195-8409-bae62a4c3296
-    jinja: 'Translate this from Catalan into English: {{ sentence_cat }} ||| {{ sentence_eng
-      }}'
+    id: 5443c430-c621-46bc-af4b-52e6d08edd75
+    jinja: 'Nepali: {{ sentence_npi }} = French: ||| {{ sentence_fra }}'
     metadata: *id001
-    name: translate-this-cat-eng
-    reference: Basic translation (Catalan into English)
-  56992398-52b5-4c3b-a84c-e289dd8f7895: !Template
+    name: equals-translation-npi-fra
+    reference: Equals translation (Nepali into French)
+  548b4073-69db-4011-9303-71b85801d984: !Template
     answer_choices: null
-    id: 56992398-52b5-4c3b-a84c-e289dd8f7895
-    jinja: 'Translate this from Telugu into Malayalam: {{ sentence_tel }} ||| {{ sentence_mal
-      }}'
+    id: 548b4073-69db-4011-9303-71b85801d984
+    jinja: 'Telugu: {{ sentence_tel }} = Lingala: ||| {{ sentence_lin }}'
     metadata: *id001
-    name: translate-this-tel-mal
-    reference: Basic translation (Telugu into Malayalam)
-  5733db56-fc9e-40d6-bb90-2faf00819c28: !Template
+    name: equals-translation-tel-lin
+    reference: Equals translation (Telugu into Lingala)
+  54990163-8667-4493-b359-73e1c590ca20: !Template
     answer_choices: null
-    id: 5733db56-fc9e-40d6-bb90-2faf00819c28
-    jinja: 'Translate this from Catalan into Vietnamese: {{ sentence_cat }} ||| {{
-      sentence_vie }}'
+    id: 54990163-8667-4493-b359-73e1c590ca20
+    jinja: 'Wolof: {{ sentence_wol }} = Gujarati: ||| {{ sentence_guj }}'
     metadata: *id001
-    name: translate-this-cat-vie
-    reference: Basic translation (Catalan into Vietnamese)
-  575a602d-7896-4104-b7f0-c7fb02794009: !Template
+    name: equals-translation-wol-guj
+    reference: Equals translation (Wolof into Gujarati)
+  54a47270-e8f7-4d40-8984-7fa9312bfb01: !Template
     answer_choices: null
-    id: 575a602d-7896-4104-b7f0-c7fb02794009
-    jinja: 'Translate this from Oriya into English: {{ sentence_ory }} ||| {{ sentence_eng
+    id: 54a47270-e8f7-4d40-8984-7fa9312bfb01
+    jinja: 'English: {{ sentence_eng }} = traditional Chinese: ||| {{ sentence_zho_trad
       }}'
     metadata: *id001
-    name: translate-this-ory-eng
-    reference: Basic translation (Oriya into English)
-  575b5dd6-a42d-4e7c-999e-17eff0e108f7: !Template
+    name: equals-translation-eng-zho_trad
+    reference: Equals translation (English into traditional Chinese)
+  55681680-7230-4838-849a-164c3b3c6cef: !Template
     answer_choices: null
-    id: 575b5dd6-a42d-4e7c-999e-17eff0e108f7
-    jinja: 'Translate this from Oriya into Northern Sotho: {{ sentence_ory }} |||
-      {{ sentence_nso }}'
+    id: 55681680-7230-4838-849a-164c3b3c6cef
+    jinja: 'Wolof: {{ sentence_wol }} = Telugu: ||| {{ sentence_tel }}'
     metadata: *id001
-    name: translate-this-ory-nso
-    reference: Basic translation (Oriya into Northern Sotho)
-  578d0d5d-5782-41d8-9678-61f30cceffdc: !Template
+    name: equals-translation-wol-tel
+    reference: Equals translation (Wolof into Telugu)
+  560bdb12-7484-4a40-ab04-593a1fc18540: !Template
     answer_choices: null
-    id: 578d0d5d-5782-41d8-9678-61f30cceffdc
-    jinja: 'Translate this from Vietnamese into simplified Chinese: {{ sentence_vie
-      }} ||| {{ sentence_zho_simpl }}'
+    id: 560bdb12-7484-4a40-ab04-593a1fc18540
+    jinja: 'English: {{ sentence_eng }} = Swahili: ||| {{ sentence_swh }}'
     metadata: *id001
-    name: translate-this-vie-zho_simpl
-    reference: Basic translation (Vietnamese into simplified Chinese)
-  57ae240b-b539-4a67-a08b-a3514bff21c1: !Template
+    name: equals-translation-eng-swh
+    reference: Equals translation (English into Swahili)
+  562fce04-47e5-4b34-9cdb-16875924d2d9: !Template
     answer_choices: null
-    id: 57ae240b-b539-4a67-a08b-a3514bff21c1
-    jinja: 'Translate this from Tamil into Urdu: {{ sentence_tam }} ||| {{ sentence_urd
-      }}'
-    metadata: *id001
-    name: translate-this-tam-urd
-    reference: Basic translation (Tamil into Urdu)
-  57f0c4b2-5ed9-4d2f-9704-d4c4d929bcb9: !Template
-    answer_choices: null
-    id: 57f0c4b2-5ed9-4d2f-9704-d4c4d929bcb9
-    jinja: 'Translate this from Bengali into simplified Chinese: {{ sentence_ben }}
-      ||| {{ sentence_zho_simpl }}'
+    id: 562fce04-47e5-4b34-9cdb-16875924d2d9
+    jinja: 'Arabic: {{ sentence_ara }} = Yoruba: ||| {{ sentence_yor }}'
     metadata: *id001
-    name: translate-this-ben-zho_simpl
-    reference: Basic translation (Bengali into simplified Chinese)
-  5879b273-5e02-4444-ba98-6a05d3d8b50e: !Template
+    name: equals-translation-ara-yor
+    reference: Equals translation (Arabic into Yoruba)
+  565a668f-d5ef-41bd-a375-0639fe3dddb2: !Template
     answer_choices: null
-    id: 5879b273-5e02-4444-ba98-6a05d3d8b50e
-    jinja: 'Translate this from Marathi into Telugu: {{ sentence_mar }} ||| {{ sentence_tel
+    id: 565a668f-d5ef-41bd-a375-0639fe3dddb2
+    jinja: 'Yoruba: {{ sentence_yor }} = simplified Chinese: ||| {{ sentence_zho_simpl
       }}'
     metadata: *id001
-    name: translate-this-mar-tel
-    reference: Basic translation (Marathi into Telugu)
-  58a307fc-50ef-4c21-96ff-1e265e3f0ec2: !Template
+    name: equals-translation-yor-zho_simpl
+    reference: Equals translation (Yoruba into simplified Chinese)
+  565b3ce8-3f34-484e-ab1c-9680595851f7: !Template
     answer_choices: null
-    id: 58a307fc-50ef-4c21-96ff-1e265e3f0ec2
-    jinja: 'Translate this from Nepali into Marathi: {{ sentence_npi }} ||| {{ sentence_mar
-      }}'
+    id: 565b3ce8-3f34-484e-ab1c-9680595851f7
+    jinja: 'English: {{ sentence_eng }} = Yoruba: ||| {{ sentence_yor }}'
     metadata: *id001
-    name: translate-this-npi-mar
-    reference: Basic translation (Nepali into Marathi)
-  58ce9a3e-7393-4e58-a7c5-bfce48294201: !Template
+    name: equals-translation-eng-yor
+    reference: Equals translation (English into Yoruba)
+  56768d50-a023-453d-8a0d-91ab7b60d477: !Template
     answer_choices: null
-    id: 58ce9a3e-7393-4e58-a7c5-bfce48294201
-    jinja: 'Translate this from Hindi into Oriya: {{ sentence_hin }} ||| {{ sentence_ory
+    id: 56768d50-a023-453d-8a0d-91ab7b60d477
+    jinja: 'Swahili: {{ sentence_swh }} = Latin American Spanish: ||| {{ sentence_spa
       }}'
     metadata: *id001
-    name: translate-this-hin-ory
-    reference: Basic translation (Hindi into Oriya)
-  58f0f8db-8416-41d6-9079-ab5f349242ff: !Template
+    name: equals-translation-swh-spa
+    reference: Equals translation (Swahili into Latin American Spanish)
+  56b93e32-048e-46b4-b238-47c9a5e3dc05: !Template
     answer_choices: null
-    id: 58f0f8db-8416-41d6-9079-ab5f349242ff
-    jinja: 'Translate this from Telugu into Igbo: {{ sentence_tel }} ||| {{ sentence_ibo
+    id: 56b93e32-048e-46b4-b238-47c9a5e3dc05
+    jinja: 'Indonesian: {{ sentence_ind }} = traditional Chinese: ||| {{ sentence_zho_trad
       }}'
     metadata: *id001
-    name: translate-this-tel-ibo
-    reference: Basic translation (Telugu into Igbo)
-  59e37da9-c9eb-4743-9d86-581fe1080efe: !Template
+    name: equals-translation-ind-zho_trad
+    reference: Equals translation (Indonesian into traditional Chinese)
+  56e59926-7124-44da-ad59-0cb9e86c87fc: !Template
     answer_choices: null
-    id: 59e37da9-c9eb-4743-9d86-581fe1080efe
-    jinja: 'Translate this from Latin American Spanish into Bengali: {{ sentence_spa
-      }} ||| {{ sentence_ben }}'
+    id: 56e59926-7124-44da-ad59-0cb9e86c87fc
+    jinja: 'English: {{ sentence_eng }} = Oriya: ||| {{ sentence_ory }}'
     metadata: *id001
-    name: translate-this-spa-ben
-    reference: Basic translation (Latin American Spanish into Bengali)
-  5ad1a309-9ee0-41d4-9bee-9b0230c9bddd: !Template
+    name: equals-translation-eng-ory
+    reference: Equals translation (English into Oriya)
+  57203244-8068-437e-b812-6998374f93f9: !Template
     answer_choices: null
-    id: 5ad1a309-9ee0-41d4-9bee-9b0230c9bddd
-    jinja: 'Translate this from Nepali into Vietnamese: {{ sentence_npi }} ||| {{
-      sentence_vie }}'
+    id: 57203244-8068-437e-b812-6998374f93f9
+    jinja: 'Vietnamese: {{ sentence_vie }} = Indonesian: ||| {{ sentence_ind }}'
     metadata: *id001
-    name: translate-this-npi-vie
-    reference: Basic translation (Nepali into Vietnamese)
-  5b1e9f83-fab4-48a3-a622-b1674b1a4ca3: !Template
+    name: equals-translation-vie-ind
+    reference: Equals translation (Vietnamese into Indonesian)
+  575387bc-1959-4270-9f96-5e480f9e8af7: !Template
     answer_choices: null
-    id: 5b1e9f83-fab4-48a3-a622-b1674b1a4ca3
-    jinja: 'Translate this from simplified Chinese into Assamese: {{ sentence_zho_simpl
-      }} ||| {{ sentence_asm }}'
+    id: 575387bc-1959-4270-9f96-5e480f9e8af7
+    jinja: 'Xhosa: {{ sentence_xho }} = Indonesian: ||| {{ sentence_ind }}'
     metadata: *id001
-    name: translate-this-zho_simpl-asm
-    reference: Basic translation (simplified Chinese into Assamese)
-  5b6ecfc5-9ef4-44ac-b5c6-0dbd9acbfb29: !Template
+    name: equals-translation-xho-ind
+    reference: Equals translation (Xhosa into Indonesian)
+  57c2b9f3-4e2f-4a72-b95e-2b7fca8b05fa: !Template
     answer_choices: null
-    id: 5b6ecfc5-9ef4-44ac-b5c6-0dbd9acbfb29
-    jinja: 'Translate this from Vietnamese into Marathi: {{ sentence_vie }} ||| {{
-      sentence_mar }}'
+    id: 57c2b9f3-4e2f-4a72-b95e-2b7fca8b05fa
+    jinja: 'Marathi: {{ sentence_mar }} = simplified Chinese: ||| {{ sentence_zho_simpl
+      }}'
     metadata: *id001
-    name: translate-this-vie-mar
-    reference: Basic translation (Vietnamese into Marathi)
-  5bb82f9d-851e-4fa7-ae15-bc72139aa4a6: !Template
+    name: equals-translation-mar-zho_simpl
+    reference: Equals translation (Marathi into simplified Chinese)
+  582d6a4a-bb60-4ba7-8a92-7121b3e7708f: !Template
     answer_choices: null
-    id: 5bb82f9d-851e-4fa7-ae15-bc72139aa4a6
-    jinja: 'Translate this from Wolof into Swahili: {{ sentence_wol }} ||| {{ sentence_swh
-      }}'
+    id: 582d6a4a-bb60-4ba7-8a92-7121b3e7708f
+    jinja: 'Urdu: {{ sentence_urd }} = Brazilian Portuguese: ||| {{ sentence_por }}'
     metadata: *id001
-    name: translate-this-wol-swh
-    reference: Basic translation (Wolof into Swahili)
-  5c604052-392d-4257-988b-f36e19e5f020: !Template
+    name: equals-translation-urd-por
+    reference: Equals translation (Urdu into Brazilian Portuguese)
+  583c7f2e-fb44-4456-90a3-ad80ead22f07: !Template
     answer_choices: null
-    id: 5c604052-392d-4257-988b-f36e19e5f020
-    jinja: 'Translate this from Bengali into Arabic: {{ sentence_ben }} ||| {{ sentence_ara
-      }}'
+    id: 583c7f2e-fb44-4456-90a3-ad80ead22f07
+    jinja: 'Bengali: {{ sentence_ben }} = French: ||| {{ sentence_fra }}'
     metadata: *id001
-    name: translate-this-ben-ara
-    reference: Basic translation (Bengali into Arabic)
-  5cb543e1-a16e-496c-b6be-7f71640a1a69: !Template
+    name: equals-translation-ben-fra
+    reference: Equals translation (Bengali into French)
+  5847be2b-8a49-45f6-983f-54060019d85d: !Template
     answer_choices: null
-    id: 5cb543e1-a16e-496c-b6be-7f71640a1a69
-    jinja: 'Translate this from Arabic into traditional Chinese: {{ sentence_ara }}
-      ||| {{ sentence_zho_trad }}'
+    id: 5847be2b-8a49-45f6-983f-54060019d85d
+    jinja: 'Vietnamese: {{ sentence_vie }} = Wolof: ||| {{ sentence_wol }}'
     metadata: *id001
-    name: translate-this-ara-zho_trad
-    reference: Basic translation (Arabic into traditional Chinese)
-  5d09dc63-c5a0-4743-844b-52191762f27b: !Template
+    name: equals-translation-vie-wol
+    reference: Equals translation (Vietnamese into Wolof)
+  5871bb04-5557-428b-9e85-11c562af4808: !Template
     answer_choices: null
-    id: 5d09dc63-c5a0-4743-844b-52191762f27b
-    jinja: 'Translate this from Indonesian into Igbo: {{ sentence_ind }} ||| {{ sentence_ibo
-      }}'
+    id: 5871bb04-5557-428b-9e85-11c562af4808
+    jinja: 'Xhosa: {{ sentence_xho }} = French: ||| {{ sentence_fra }}'
     metadata: *id001
-    name: translate-this-ind-ibo
-    reference: Basic translation (Indonesian into Igbo)
-  5d3cc5db-bf4d-4456-8c4c-faa178974777: !Template
+    name: equals-translation-xho-fra
+    reference: Equals translation (Xhosa into French)
+  587eef7b-1fea-402d-a601-a45cfe5f5a73: !Template
     answer_choices: null
-    id: 5d3cc5db-bf4d-4456-8c4c-faa178974777
-    jinja: 'Translate this from Kannada into English: {{ sentence_kan }} ||| {{ sentence_eng
-      }}'
+    id: 587eef7b-1fea-402d-a601-a45cfe5f5a73
+    jinja: 'Bengali: {{ sentence_ben }} = Wolof: ||| {{ sentence_wol }}'
     metadata: *id001
-    name: translate-this-kan-eng
-    reference: Basic translation (Kannada into English)
-  5da4f0c3-8ede-4648-9c47-3011f223d21b: !Template
+    name: equals-translation-ben-wol
+    reference: Equals translation (Bengali into Wolof)
+  58986de2-2fb2-44ec-a1fd-6d92ddd51d96: !Template
     answer_choices: null
-    id: 5da4f0c3-8ede-4648-9c47-3011f223d21b
-    jinja: 'Translate this from Tamil into Northern Sotho: {{ sentence_tam }} |||
-      {{ sentence_nso }}'
+    id: 58986de2-2fb2-44ec-a1fd-6d92ddd51d96
+    jinja: 'Gujarati: {{ sentence_guj }} = Catalan: ||| {{ sentence_cat }}'
     metadata: *id001
-    name: translate-this-tam-nso
-    reference: Basic translation (Tamil into Northern Sotho)
-  5dbbd16d-e629-4304-9067-54379f2afdeb: !Template
+    name: equals-translation-guj-cat
+    reference: Equals translation (Gujarati into Catalan)
+  58da511f-4369-40c5-9fc9-c6b18fa62a67: !Template
     answer_choices: null
-    id: 5dbbd16d-e629-4304-9067-54379f2afdeb
-    jinja: 'Translate this from Assamese into Punjabi: {{ sentence_asm }} ||| {{ sentence_pan
-      }}'
+    id: 58da511f-4369-40c5-9fc9-c6b18fa62a67
+    jinja: 'Kannada: {{ sentence_kan }} = Lingala: ||| {{ sentence_lin }}'
     metadata: *id001
-    name: translate-this-asm-pan
-    reference: Basic translation (Assamese into Punjabi)
-  5dfddc9f-6393-4e3e-af16-f708b6ff0d4f: !Template
+    name: equals-translation-kan-lin
+    reference: Equals translation (Kannada into Lingala)
+  5972338f-e529-401f-a3b0-4118751bfeb1: !Template
     answer_choices: null
-    id: 5dfddc9f-6393-4e3e-af16-f708b6ff0d4f
-    jinja: 'Translate this from Catalan into Yoruba: {{ sentence_cat }} ||| {{ sentence_yor
-      }}'
+    id: 5972338f-e529-401f-a3b0-4118751bfeb1
+    jinja: 'Assamese: {{ sentence_asm }} = Bengali: ||| {{ sentence_ben }}'
     metadata: *id001
-    name: translate-this-cat-yor
-    reference: Basic translation (Catalan into Yoruba)
-  5e4102b3-6497-4d69-8a7c-69f3885707c4: !Template
+    name: equals-translation-asm-ben
+    reference: Equals translation (Assamese into Bengali)
+  5a5a505d-77c9-4a92-992f-262caf0c7637: !Template
     answer_choices: null
-    id: 5e4102b3-6497-4d69-8a7c-69f3885707c4
-    jinja: 'Translate this from Punjabi into Vietnamese: {{ sentence_pan }} ||| {{
-      sentence_vie }}'
+    id: 5a5a505d-77c9-4a92-992f-262caf0c7637
+    jinja: 'Lingala: {{ sentence_lin }} = Malayalam: ||| {{ sentence_mal }}'
     metadata: *id001
-    name: translate-this-pan-vie
-    reference: Basic translation (Punjabi into Vietnamese)
-  5e82d8f6-c8d1-408d-9ac0-57e60b6f96ea: !Template
+    name: equals-translation-lin-mal
+    reference: Equals translation (Lingala into Malayalam)
+  5a8b3f84-b323-45eb-b929-361bb7fd7c36: !Template
     answer_choices: null
-    id: 5e82d8f6-c8d1-408d-9ac0-57e60b6f96ea
-    jinja: 'Translate this from Gujarati into Bengali: {{ sentence_guj }} ||| {{ sentence_ben
+    id: 5a8b3f84-b323-45eb-b929-361bb7fd7c36
+    jinja: 'Catalan: {{ sentence_cat }} = Brazilian Portuguese: ||| {{ sentence_por
       }}'
     metadata: *id001
-    name: translate-this-guj-ben
-    reference: Basic translation (Gujarati into Bengali)
-  5ef228ee-a200-4e91-abf2-4263db358626: !Template
+    name: equals-translation-cat-por
+    reference: Equals translation (Catalan into Brazilian Portuguese)
+  5b8220d3-b11f-4bad-969f-ed383a908f2a: !Template
     answer_choices: null
-    id: 5ef228ee-a200-4e91-abf2-4263db358626
-    jinja: 'Translate this from Nepali into Indonesian: {{ sentence_npi }} ||| {{
-      sentence_ind }}'
+    id: 5b8220d3-b11f-4bad-969f-ed383a908f2a
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Gujarati: ||| {{ sentence_guj
+      }}'
     metadata: *id001
-    name: translate-this-npi-ind
-    reference: Basic translation (Nepali into Indonesian)
-  5f02d466-09b0-4796-9e22-e3c4d4aed3c0: !Template
+    name: equals-translation-zho_trad-guj
+    reference: Equals translation (traditional Chinese into Gujarati)
+  5bb56e19-5c4d-4133-9888-affadeda5e4b: !Template
     answer_choices: null
-    id: 5f02d466-09b0-4796-9e22-e3c4d4aed3c0
-    jinja: 'Translate this from Northern Sotho into Latin American Spanish: {{ sentence_nso
-      }} ||| {{ sentence_spa }}'
+    id: 5bb56e19-5c4d-4133-9888-affadeda5e4b
+    jinja: 'Nepali: {{ sentence_npi }} = Swahili: ||| {{ sentence_swh }}'
     metadata: *id001
-    name: translate-this-nso-spa
-    reference: Basic translation (Northern Sotho into Latin American Spanish)
-  5f7774ae-a3ff-4865-9fe6-04b0637f9488: !Template
+    name: equals-translation-npi-swh
+    reference: Equals translation (Nepali into Swahili)
+  5bf46d3c-5fa8-4c63-a49e-184471133f65: !Template
     answer_choices: null
-    id: 5f7774ae-a3ff-4865-9fe6-04b0637f9488
-    jinja: 'Translate this from Nepali into Kannada: {{ sentence_npi }} ||| {{ sentence_kan
-      }}'
+    id: 5bf46d3c-5fa8-4c63-a49e-184471133f65
+    jinja: 'Igbo: {{ sentence_ibo }} = Gujarati: ||| {{ sentence_guj }}'
     metadata: *id001
-    name: translate-this-npi-kan
-    reference: Basic translation (Nepali into Kannada)
-  5fbbd7f2-5040-456b-a971-2af1601cd0df: !Template
+    name: equals-translation-ibo-guj
+    reference: Equals translation (Igbo into Gujarati)
+  5c22b094-c127-4fa8-9bf6-0092016e49d1: !Template
     answer_choices: null
-    id: 5fbbd7f2-5040-456b-a971-2af1601cd0df
-    jinja: 'Translate this from Hindi into Nepali: {{ sentence_hin }} ||| {{ sentence_npi
-      }}'
+    id: 5c22b094-c127-4fa8-9bf6-0092016e49d1
+    jinja: 'Kannada: {{ sentence_kan }} = Zulu: ||| {{ sentence_zul }}'
     metadata: *id001
-    name: translate-this-hin-npi
-    reference: Basic translation (Hindi into Nepali)
-  5fd1e538-f158-4df2-9bb0-b8719579dd05: !Template
+    name: equals-translation-kan-zul
+    reference: Equals translation (Kannada into Zulu)
+  5c456ec3-9c00-4255-a8bf-7eaa63b729b2: !Template
     answer_choices: null
-    id: 5fd1e538-f158-4df2-9bb0-b8719579dd05
-    jinja: 'Translate this from Gujarati into English: {{ sentence_guj }} ||| {{ sentence_eng
-      }}'
+    id: 5c456ec3-9c00-4255-a8bf-7eaa63b729b2
+    jinja: 'Igbo: {{ sentence_ibo }} = Kannada: ||| {{ sentence_kan }}'
     metadata: *id001
-    name: translate-this-guj-eng
-    reference: Basic translation (Gujarati into English)
-  5fec3f1f-960f-43cf-be82-39df5f9c3cb5: !Template
+    name: equals-translation-ibo-kan
+    reference: Equals translation (Igbo into Kannada)
+  5c9c224f-785b-4a63-b786-3078d5491dcc: !Template
     answer_choices: null
-    id: 5fec3f1f-960f-43cf-be82-39df5f9c3cb5
-    jinja: 'Translate this from Igbo into Bengali: {{ sentence_ibo }} ||| {{ sentence_ben
-      }}'
+    id: 5c9c224f-785b-4a63-b786-3078d5491dcc
+    jinja: 'Yoruba: {{ sentence_yor }} = Vietnamese: ||| {{ sentence_vie }}'
     metadata: *id001
-    name: translate-this-ibo-ben
-    reference: Basic translation (Igbo into Bengali)
-  5ff928d1-7562-4a6e-b1ed-80728ab845c8: !Template
+    name: equals-translation-yor-vie
+    reference: Equals translation (Yoruba into Vietnamese)
+  5dc6bad9-b0b3-41d1-8436-d5b980f5b8f9: !Template
     answer_choices: null
-    id: 5ff928d1-7562-4a6e-b1ed-80728ab845c8
-    jinja: 'Translate this from Catalan into Zulu: {{ sentence_cat }} ||| {{ sentence_zul
+    id: 5dc6bad9-b0b3-41d1-8436-d5b980f5b8f9
+    jinja: 'Northern Sotho: {{ sentence_nso }} = traditional Chinese: ||| {{ sentence_zho_trad
       }}'
     metadata: *id001
-    name: translate-this-cat-zul
-    reference: Basic translation (Catalan into Zulu)
-  60538295-c19c-4b57-98fe-1532c5046dbe: !Template
-    answer_choices: null
-    id: 60538295-c19c-4b57-98fe-1532c5046dbe
-    jinja: 'Translate this from Telugu into simplified Chinese: {{ sentence_tel }}
-      ||| {{ sentence_zho_simpl }}'
-    metadata: *id001
-    name: translate-this-tel-zho_simpl
-    reference: Basic translation (Telugu into simplified Chinese)
-  60570f50-f8fd-4e9b-849c-deaf9355b70b: !Template
+    name: equals-translation-nso-zho_trad
+    reference: Equals translation (Northern Sotho into traditional Chinese)
+  5df7639e-3151-4d64-85dd-84180b1bd765: !Template
     answer_choices: null
-    id: 60570f50-f8fd-4e9b-849c-deaf9355b70b
-    jinja: 'Translate this from traditional Chinese into Wolof: {{ sentence_zho_trad
-      }} ||| {{ sentence_wol }}'
+    id: 5df7639e-3151-4d64-85dd-84180b1bd765
+    jinja: 'Bengali: {{ sentence_ben }} = Marathi: ||| {{ sentence_mar }}'
     metadata: *id001
-    name: translate-this-zho_trad-wol
-    reference: Basic translation (traditional Chinese into Wolof)
-  6086e567-48f3-42f8-b512-6f627d198a6f: !Template
+    name: equals-translation-ben-mar
+    reference: Equals translation (Bengali into Marathi)
+  5e362705-9ef2-4a65-a1fb-4f6b79e15fd7: !Template
     answer_choices: null
-    id: 6086e567-48f3-42f8-b512-6f627d198a6f
-    jinja: 'Translate this from Oriya into Assamese: {{ sentence_ory }} ||| {{ sentence_asm
-      }}'
+    id: 5e362705-9ef2-4a65-a1fb-4f6b79e15fd7
+    jinja: 'Telugu: {{ sentence_tel }} = Gujarati: ||| {{ sentence_guj }}'
     metadata: *id001
-    name: translate-this-ory-asm
-    reference: Basic translation (Oriya into Assamese)
-  60bcd8a0-3a4b-4653-be54-88edb318cd47: !Template
+    name: equals-translation-tel-guj
+    reference: Equals translation (Telugu into Gujarati)
+  5e9ee7fd-1931-4000-81de-d4876d91fe7e: !Template
     answer_choices: null
-    id: 60bcd8a0-3a4b-4653-be54-88edb318cd47
-    jinja: 'Translate this from Northern Sotho into English: {{ sentence_nso }} |||
-      {{ sentence_eng }}'
+    id: 5e9ee7fd-1931-4000-81de-d4876d91fe7e
+    jinja: 'Zulu: {{ sentence_zul }} = Oriya: ||| {{ sentence_ory }}'
     metadata: *id001
-    name: translate-this-nso-eng
-    reference: Basic translation (Northern Sotho into English)
-  60dc09fe-d4cf-401f-b6ec-916e93e4c273: !Template
+    name: equals-translation-zul-ory
+    reference: Equals translation (Zulu into Oriya)
+  5ed21c17-5ece-401f-a71a-c24b5f35543b: !Template
     answer_choices: null
-    id: 60dc09fe-d4cf-401f-b6ec-916e93e4c273
-    jinja: 'Translate this from Latin American Spanish into English: {{ sentence_spa
-      }} ||| {{ sentence_eng }}'
+    id: 5ed21c17-5ece-401f-a71a-c24b5f35543b
+    jinja: 'Nepali: {{ sentence_npi }} = Latin American Spanish: ||| {{ sentence_spa
+      }}'
     metadata: *id001
-    name: translate-this-spa-eng
-    reference: Basic translation (Latin American Spanish into English)
-  611dc15a-72bc-4238-a8a4-dfba491f1b2a: !Template
+    name: equals-translation-npi-spa
+    reference: Equals translation (Nepali into Latin American Spanish)
+  5f11dc11-b514-4c38-8e56-abfbcbc5212d: !Template
     answer_choices: null
-    id: 611dc15a-72bc-4238-a8a4-dfba491f1b2a
-    jinja: 'Translate this from Nepali into Oriya: {{ sentence_npi }} ||| {{ sentence_ory
-      }}'
+    id: 5f11dc11-b514-4c38-8e56-abfbcbc5212d
+    jinja: 'Zulu: {{ sentence_zul }} = Bengali: ||| {{ sentence_ben }}'
     metadata: *id001
-    name: translate-this-npi-ory
-    reference: Basic translation (Nepali into Oriya)
-  614b10cf-4dcd-4067-b0d8-8bfbcdc64cfd: !Template
+    name: equals-translation-zul-ben
+    reference: Equals translation (Zulu into Bengali)
+  5f3cb1c2-3e45-4900-aef0-b3dd2709fb8f: !Template
     answer_choices: null
-    id: 614b10cf-4dcd-4067-b0d8-8bfbcdc64cfd
-    jinja: 'Translate this from Brazilian Portuguese into Xhosa: {{ sentence_por }}
-      ||| {{ sentence_xho }}'
+    id: 5f3cb1c2-3e45-4900-aef0-b3dd2709fb8f
+    jinja: 'Assamese: {{ sentence_asm }} = Vietnamese: ||| {{ sentence_vie }}'
     metadata: *id001
-    name: translate-this-por-xho
-    reference: Basic translation (Brazilian Portuguese into Xhosa)
-  617567f5-ea18-4e61-bffd-d7175ad20fef: !Template
+    name: equals-translation-asm-vie
+    reference: Equals translation (Assamese into Vietnamese)
+  5f48c3af-75fb-4070-b0dc-476a1b404fa1: !Template
     answer_choices: null
-    id: 617567f5-ea18-4e61-bffd-d7175ad20fef
-    jinja: 'Translate this from simplified Chinese into Malayalam: {{ sentence_zho_simpl
-      }} ||| {{ sentence_mal }}'
+    id: 5f48c3af-75fb-4070-b0dc-476a1b404fa1
+    jinja: 'Hindi: {{ sentence_hin }} = Kannada: ||| {{ sentence_kan }}'
     metadata: *id001
-    name: translate-this-zho_simpl-mal
-    reference: Basic translation (simplified Chinese into Malayalam)
-  619d96d0-23c9-4c1b-a335-d1064f9e049e: !Template
+    name: equals-translation-hin-kan
+    reference: Equals translation (Hindi into Kannada)
+  5f59f977-6137-44e0-873d-49157fe5e4e9: !Template
     answer_choices: null
-    id: 619d96d0-23c9-4c1b-a335-d1064f9e049e
-    jinja: 'Translate this from Indonesian into Hindi: {{ sentence_ind }} ||| {{ sentence_hin
-      }}'
+    id: 5f59f977-6137-44e0-873d-49157fe5e4e9
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = traditional Chinese: |||
+      {{ sentence_zho_trad }}'
     metadata: *id001
-    name: translate-this-ind-hin
-    reference: Basic translation (Indonesian into Hindi)
-  61e5e970-bc10-47ed-b09b-dde5e08ff171: !Template
+    name: equals-translation-spa-zho_trad
+    reference: Equals translation (Latin American Spanish into traditional Chinese)
+  5fe111e7-4633-45e9-bbd8-0b3415c95f78: !Template
     answer_choices: null
-    id: 61e5e970-bc10-47ed-b09b-dde5e08ff171
-    jinja: 'Translate this from Zulu into Gujarati: {{ sentence_zul }} ||| {{ sentence_guj
-      }}'
+    id: 5fe111e7-4633-45e9-bbd8-0b3415c95f78
+    jinja: 'Telugu: {{ sentence_tel }} = Wolof: ||| {{ sentence_wol }}'
     metadata: *id001
-    name: translate-this-zul-guj
-    reference: Basic translation (Zulu into Gujarati)
-  621203fb-d88d-4b1b-913c-b34f14a9ba94: !Template
+    name: equals-translation-tel-wol
+    reference: Equals translation (Telugu into Wolof)
+  60904d72-ef1c-4397-95eb-36b179b73e85: !Template
     answer_choices: null
-    id: 621203fb-d88d-4b1b-913c-b34f14a9ba94
-    jinja: 'Translate this from Urdu into French: {{ sentence_urd }} ||| {{ sentence_fra
-      }}'
+    id: 60904d72-ef1c-4397-95eb-36b179b73e85
+    jinja: 'Oriya: {{ sentence_ory }} = Urdu: ||| {{ sentence_urd }}'
     metadata: *id001
-    name: translate-this-urd-fra
-    reference: Basic translation (Urdu into French)
-  6261b055-c007-408a-9177-329c6ef7817a: !Template
+    name: equals-translation-ory-urd
+    reference: Equals translation (Oriya into Urdu)
+  6093d9fc-643b-48a3-833b-4bef980aa9ad: !Template
     answer_choices: null
-    id: 6261b055-c007-408a-9177-329c6ef7817a
-    jinja: 'Translate this from Northern Sotho into simplified Chinese: {{ sentence_nso
-      }} ||| {{ sentence_zho_simpl }}'
+    id: 6093d9fc-643b-48a3-833b-4bef980aa9ad
+    jinja: 'Zulu: {{ sentence_zul }} = Indonesian: ||| {{ sentence_ind }}'
     metadata: *id001
-    name: translate-this-nso-zho_simpl
-    reference: Basic translation (Northern Sotho into simplified Chinese)
-  627235f6-c70d-4a08-a163-5b82b9388b41: !Template
+    name: equals-translation-zul-ind
+    reference: Equals translation (Zulu into Indonesian)
+  60e40ab9-0d08-4f3f-bc9b-8453f8bad6be: !Template
     answer_choices: null
-    id: 627235f6-c70d-4a08-a163-5b82b9388b41
-    jinja: 'Translate this from Telugu into traditional Chinese: {{ sentence_tel }}
-      ||| {{ sentence_zho_trad }}'
+    id: 60e40ab9-0d08-4f3f-bc9b-8453f8bad6be
+    jinja: 'Malayalam: {{ sentence_mal }} = Zulu: ||| {{ sentence_zul }}'
     metadata: *id001
-    name: translate-this-tel-zho_trad
-    reference: Basic translation (Telugu into traditional Chinese)
-  6335f534-0c40-4325-bc5f-0e2af3ecc02f: !Template
+    name: equals-translation-mal-zul
+    reference: Equals translation (Malayalam into Zulu)
+  60eb50de-28d0-48b8-b236-892a7c954aa7: !Template
     answer_choices: null
-    id: 6335f534-0c40-4325-bc5f-0e2af3ecc02f
-    jinja: 'Translate this from Tamil into Yoruba: {{ sentence_tam }} ||| {{ sentence_yor
-      }}'
+    id: 60eb50de-28d0-48b8-b236-892a7c954aa7
+    jinja: 'Igbo: {{ sentence_ibo }} = Tamil: ||| {{ sentence_tam }}'
     metadata: *id001
-    name: translate-this-tam-yor
-    reference: Basic translation (Tamil into Yoruba)
-  6341b31f-f6b8-4892-90e0-a530cc18302c: !Template
+    name: equals-translation-ibo-tam
+    reference: Equals translation (Igbo into Tamil)
+  61479cb1-86d8-480b-a6d8-1a8c9ebed907: !Template
     answer_choices: null
-    id: 6341b31f-f6b8-4892-90e0-a530cc18302c
-    jinja: 'Translate this from Tamil into Indonesian: {{ sentence_tam }} ||| {{ sentence_ind
-      }}'
+    id: 61479cb1-86d8-480b-a6d8-1a8c9ebed907
+    jinja: 'Swahili: {{ sentence_swh }} = Telugu: ||| {{ sentence_tel }}'
     metadata: *id001
-    name: translate-this-tam-ind
-    reference: Basic translation (Tamil into Indonesian)
-  638add6f-e503-495d-9cf2-04222bfd7f13: !Template
+    name: equals-translation-swh-tel
+    reference: Equals translation (Swahili into Telugu)
+  6152136c-8e53-48c9-ac2c-0591ee1d74b7: !Template
     answer_choices: null
-    id: 638add6f-e503-495d-9cf2-04222bfd7f13
-    jinja: 'Translate this from Bengali into Catalan: {{ sentence_ben }} ||| {{ sentence_cat
-      }}'
+    id: 6152136c-8e53-48c9-ac2c-0591ee1d74b7
+    jinja: 'Swahili: {{ sentence_swh }} = Punjabi: ||| {{ sentence_pan }}'
     metadata: *id001
-    name: translate-this-ben-cat
-    reference: Basic translation (Bengali into Catalan)
-  63c6e33e-ff7a-417c-9e75-71fd98e36b4c: !Template
+    name: equals-translation-swh-pan
+    reference: Equals translation (Swahili into Punjabi)
+  6172dda0-dccf-4526-8d96-c48c9e31cead: !Template
     answer_choices: null
-    id: 63c6e33e-ff7a-417c-9e75-71fd98e36b4c
-    jinja: 'Translate this from Nepali into Catalan: {{ sentence_npi }} ||| {{ sentence_cat
-      }}'
+    id: 6172dda0-dccf-4526-8d96-c48c9e31cead
+    jinja: 'Indonesian: {{ sentence_ind }} = Oriya: ||| {{ sentence_ory }}'
     metadata: *id001
-    name: translate-this-npi-cat
-    reference: Basic translation (Nepali into Catalan)
-  63f5adf5-fae1-44c4-8e1d-d0b70c87733d: !Template
+    name: equals-translation-ind-ory
+    reference: Equals translation (Indonesian into Oriya)
+  61a33dde-d343-47be-b79e-d1cb7e3ae2c3: !Template
     answer_choices: null
-    id: 63f5adf5-fae1-44c4-8e1d-d0b70c87733d
-    jinja: 'Translate this from English into Brazilian Portuguese: {{ sentence_eng
-      }} ||| {{ sentence_por }}'
+    id: 61a33dde-d343-47be-b79e-d1cb7e3ae2c3
+    jinja: 'Xhosa: {{ sentence_xho }} = Marathi: ||| {{ sentence_mar }}'
     metadata: *id001
-    name: translate-this-eng-por
-    reference: Basic translation (English into Brazilian Portuguese)
-  646962f5-0f24-44a1-a0cd-33b946002c2f: !Template
+    name: equals-translation-xho-mar
+    reference: Equals translation (Xhosa into Marathi)
+  61b2ad10-99de-4022-817c-d0c83166ad54: !Template
     answer_choices: null
-    id: 646962f5-0f24-44a1-a0cd-33b946002c2f
-    jinja: 'Translate this from Kannada into Bengali: {{ sentence_kan }} ||| {{ sentence_ben
-      }}'
+    id: 61b2ad10-99de-4022-817c-d0c83166ad54
+    jinja: 'Northern Sotho: {{ sentence_nso }} = Oriya: ||| {{ sentence_ory }}'
     metadata: *id001
-    name: translate-this-kan-ben
-    reference: Basic translation (Kannada into Bengali)
-  646b6821-a0e2-4335-b919-1d952aebc780: !Template
+    name: equals-translation-nso-ory
+    reference: Equals translation (Northern Sotho into Oriya)
+  61f28d52-d2c4-4f05-a79a-e6a5f8952dc0: !Template
     answer_choices: null
-    id: 646b6821-a0e2-4335-b919-1d952aebc780
-    jinja: 'Translate this from Telugu into Latin American Spanish: {{ sentence_tel
-      }} ||| {{ sentence_spa }}'
+    id: 61f28d52-d2c4-4f05-a79a-e6a5f8952dc0
+    jinja: 'Wolof: {{ sentence_wol }} = Zulu: ||| {{ sentence_zul }}'
     metadata: *id001
-    name: translate-this-tel-spa
-    reference: Basic translation (Telugu into Latin American Spanish)
-  646d980f-50d0-4ec5-bcfa-65b1a3a5115f: !Template
+    name: equals-translation-wol-zul
+    reference: Equals translation (Wolof into Zulu)
+  629c1613-30f2-4859-a4de-2ddb163a17da: !Template
     answer_choices: null
-    id: 646d980f-50d0-4ec5-bcfa-65b1a3a5115f
-    jinja: 'Translate this from simplified Chinese into Kannada: {{ sentence_zho_simpl
-      }} ||| {{ sentence_kan }}'
+    id: 629c1613-30f2-4859-a4de-2ddb163a17da
+    jinja: 'Oriya: {{ sentence_ory }} = French: ||| {{ sentence_fra }}'
     metadata: *id001
-    name: translate-this-zho_simpl-kan
-    reference: Basic translation (simplified Chinese into Kannada)
-  64ab3d50-6d2d-40dd-a914-6525e3584697: !Template
+    name: equals-translation-ory-fra
+    reference: Equals translation (Oriya into French)
+  62ad478a-2c4f-4410-8175-059217cf0a89: !Template
     answer_choices: null
-    id: 64ab3d50-6d2d-40dd-a914-6525e3584697
-    jinja: 'Translate this from Assamese into Kannada: {{ sentence_asm }} ||| {{ sentence_kan
-      }}'
+    id: 62ad478a-2c4f-4410-8175-059217cf0a89
+    jinja: 'Northern Sotho: {{ sentence_nso }} = Yoruba: ||| {{ sentence_yor }}'
     metadata: *id001
-    name: translate-this-asm-kan
-    reference: Basic translation (Assamese into Kannada)
-  65c31c7f-a56f-46b6-93a1-5d512cc16a2d: !Template
+    name: equals-translation-nso-yor
+    reference: Equals translation (Northern Sotho into Yoruba)
+  62c178fe-11ef-44e4-bfa0-9a9ee490b122: !Template
     answer_choices: null
-    id: 65c31c7f-a56f-46b6-93a1-5d512cc16a2d
-    jinja: 'Translate this from Xhosa into Punjabi: {{ sentence_xho }} ||| {{ sentence_pan
-      }}'
+    id: 62c178fe-11ef-44e4-bfa0-9a9ee490b122
+    jinja: 'Kannada: {{ sentence_kan }} = Punjabi: ||| {{ sentence_pan }}'
     metadata: *id001
-    name: translate-this-xho-pan
-    reference: Basic translation (Xhosa into Punjabi)
-  65e82110-1777-401b-982f-9e7e97e33b43: !Template
+    name: equals-translation-kan-pan
+    reference: Equals translation (Kannada into Punjabi)
+  62f17be0-d5c4-4bc4-8797-21dcda0ee57a: !Template
     answer_choices: null
-    id: 65e82110-1777-401b-982f-9e7e97e33b43
-    jinja: 'Translate this from Urdu into Swahili: {{ sentence_urd }} ||| {{ sentence_swh
+    id: 62f17be0-d5c4-4bc4-8797-21dcda0ee57a
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Bengali: ||| {{ sentence_ben
       }}'
     metadata: *id001
-    name: translate-this-urd-swh
-    reference: Basic translation (Urdu into Swahili)
-  66004ea0-912d-4cc4-9317-94d1905022d1: !Template
+    name: equals-translation-por-ben
+    reference: Equals translation (Brazilian Portuguese into Bengali)
+  63130fc9-9bea-48b0-a7b2-9cdf74fe3c49: !Template
     answer_choices: null
-    id: 66004ea0-912d-4cc4-9317-94d1905022d1
-    jinja: 'Translate this from Tamil into Swahili: {{ sentence_tam }} ||| {{ sentence_swh
-      }}'
+    id: 63130fc9-9bea-48b0-a7b2-9cdf74fe3c49
+    jinja: 'Assamese: {{ sentence_asm }} = Tamil: ||| {{ sentence_tam }}'
     metadata: *id001
-    name: translate-this-tam-swh
-    reference: Basic translation (Tamil into Swahili)
-  6601e544-7788-41a4-9a1a-2fbe7dba38c0: !Template
+    name: equals-translation-asm-tam
+    reference: Equals translation (Assamese into Tamil)
+  63af9bd7-5e02-4210-ad0a-4d6a7b694ea5: !Template
     answer_choices: null
-    id: 6601e544-7788-41a4-9a1a-2fbe7dba38c0
-    jinja: 'Translate this from Bengali into Marathi: {{ sentence_ben }} ||| {{ sentence_mar
-      }}'
+    id: 63af9bd7-5e02-4210-ad0a-4d6a7b694ea5
+    jinja: 'French: {{ sentence_fra }} = English: ||| {{ sentence_eng }}'
     metadata: *id001
-    name: translate-this-ben-mar
-    reference: Basic translation (Bengali into Marathi)
-  66211962-79d5-4aea-acc2-e43f011e7c9c: !Template
+    name: equals-translation-fra-eng
+    reference: Equals translation (French into English)
+  63d5b74f-9b37-402d-88d5-ca9647ddfa3f: !Template
     answer_choices: null
-    id: 66211962-79d5-4aea-acc2-e43f011e7c9c
-    jinja: 'Translate this from Tamil into Telugu: {{ sentence_tam }} ||| {{ sentence_tel
+    id: 63d5b74f-9b37-402d-88d5-ca9647ddfa3f
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = Telugu: ||| {{ sentence_tel
       }}'
     metadata: *id001
-    name: translate-this-tam-tel
-    reference: Basic translation (Tamil into Telugu)
-  66508288-3442-4295-b7fa-9b3823ba37a5: !Template
+    name: equals-translation-spa-tel
+    reference: Equals translation (Latin American Spanish into Telugu)
+  64ab28de-6228-4093-a7b7-71ec625265ef: !Template
     answer_choices: null
-    id: 66508288-3442-4295-b7fa-9b3823ba37a5
-    jinja: 'Translate this from Urdu into Gujarati: {{ sentence_urd }} ||| {{ sentence_guj
-      }}'
+    id: 64ab28de-6228-4093-a7b7-71ec625265ef
+    jinja: 'Wolof: {{ sentence_wol }} = Yoruba: ||| {{ sentence_yor }}'
     metadata: *id001
-    name: translate-this-urd-guj
-    reference: Basic translation (Urdu into Gujarati)
-  66903aa2-ef76-4f15-b525-4d4a587a9b5d: !Template
+    name: equals-translation-wol-yor
+    reference: Equals translation (Wolof into Yoruba)
+  64c5fb53-b86a-4b1c-b50f-c860f8df5be0: !Template
     answer_choices: null
-    id: 66903aa2-ef76-4f15-b525-4d4a587a9b5d
-    jinja: 'Translate this from French into traditional Chinese: {{ sentence_fra }}
-      ||| {{ sentence_zho_trad }}'
+    id: 64c5fb53-b86a-4b1c-b50f-c860f8df5be0
+    jinja: 'Bengali: {{ sentence_ben }} = Hindi: ||| {{ sentence_hin }}'
     metadata: *id001
-    name: translate-this-fra-zho_trad
-    reference: Basic translation (French into traditional Chinese)
-  6722c49e-ef17-4f13-b1f6-14689328a0e2: !Template
+    name: equals-translation-ben-hin
+    reference: Equals translation (Bengali into Hindi)
+  64cfc5fc-09eb-45e6-80f2-bae680b7e6e4: !Template
     answer_choices: null
-    id: 6722c49e-ef17-4f13-b1f6-14689328a0e2
-    jinja: 'Translate this from Hindi into French: {{ sentence_hin }} ||| {{ sentence_fra
-      }}'
+    id: 64cfc5fc-09eb-45e6-80f2-bae680b7e6e4
+    jinja: 'Arabic: {{ sentence_ara }} = Punjabi: ||| {{ sentence_pan }}'
     metadata: *id001
-    name: translate-this-hin-fra
-    reference: Basic translation (Hindi into French)
-  673b81a1-2b3c-4092-b1c2-3847f00b42a0: !Template
+    name: equals-translation-ara-pan
+    reference: Equals translation (Arabic into Punjabi)
+  652af00b-7e49-452b-ba6f-aca92b1fbf35: !Template
     answer_choices: null
-    id: 673b81a1-2b3c-4092-b1c2-3847f00b42a0
-    jinja: 'Translate this from Tamil into Vietnamese: {{ sentence_tam }} ||| {{ sentence_vie
-      }}'
+    id: 652af00b-7e49-452b-ba6f-aca92b1fbf35
+    jinja: 'Catalan: {{ sentence_cat }} = Wolof: ||| {{ sentence_wol }}'
     metadata: *id001
-    name: translate-this-tam-vie
-    reference: Basic translation (Tamil into Vietnamese)
-  67929673-832f-4103-a600-bd8c6f58e3a4: !Template
+    name: equals-translation-cat-wol
+    reference: Equals translation (Catalan into Wolof)
+  6570dde9-7d9c-425f-a62b-77248467795c: !Template
     answer_choices: null
-    id: 67929673-832f-4103-a600-bd8c6f58e3a4
-    jinja: 'Translate this from Northern Sotho into Swahili: {{ sentence_nso }} |||
-      {{ sentence_swh }}'
+    id: 6570dde9-7d9c-425f-a62b-77248467795c
+    jinja: 'Punjabi: {{ sentence_pan }} = Swahili: ||| {{ sentence_swh }}'
     metadata: *id001
-    name: translate-this-nso-swh
-    reference: Basic translation (Northern Sotho into Swahili)
-  67c76c63-beb0-4e1e-9805-b6275e7b3d80: !Template
+    name: equals-translation-pan-swh
+    reference: Equals translation (Punjabi into Swahili)
+  65866700-d34a-48a3-a0bf-19b9fccc6551: !Template
     answer_choices: null
-    id: 67c76c63-beb0-4e1e-9805-b6275e7b3d80
-    jinja: 'Translate this from Hindi into Bengali: {{ sentence_hin }} ||| {{ sentence_ben
+    id: 65866700-d34a-48a3-a0bf-19b9fccc6551
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Tamil: ||| {{ sentence_tam
       }}'
     metadata: *id001
-    name: translate-this-hin-ben
-    reference: Basic translation (Hindi into Bengali)
-  6824eb84-3703-46dd-979c-fad42b7eb568: !Template
+    name: equals-translation-zho_simpl-tam
+    reference: Equals translation (simplified Chinese into Tamil)
+  65ba40fd-a3da-48bb-a4c7-4b68236a1734: !Template
     answer_choices: null
-    id: 6824eb84-3703-46dd-979c-fad42b7eb568
-    jinja: 'Translate this from Bengali into Malayalam: {{ sentence_ben }} ||| {{
-      sentence_mal }}'
+    id: 65ba40fd-a3da-48bb-a4c7-4b68236a1734
+    jinja: 'Nepali: {{ sentence_npi }} = Yoruba: ||| {{ sentence_yor }}'
     metadata: *id001
-    name: translate-this-ben-mal
-    reference: Basic translation (Bengali into Malayalam)
-  68384d24-028d-4796-a5ad-f97acb09cf4b: !Template
+    name: equals-translation-npi-yor
+    reference: Equals translation (Nepali into Yoruba)
+  65c50c9e-d603-437a-8a6d-69efa677953a: !Template
     answer_choices: null
-    id: 68384d24-028d-4796-a5ad-f97acb09cf4b
-    jinja: 'Translate this from Latin American Spanish into Brazilian Portuguese:
-      {{ sentence_spa }} ||| {{ sentence_por }}'
+    id: 65c50c9e-d603-437a-8a6d-69efa677953a
+    jinja: 'Wolof: {{ sentence_wol }} = Assamese: ||| {{ sentence_asm }}'
     metadata: *id001
-    name: translate-this-spa-por
-    reference: Basic translation (Latin American Spanish into Brazilian Portuguese)
-  68bc1d02-e8d0-44a7-9663-e038443efd12: !Template
+    name: equals-translation-wol-asm
+    reference: Equals translation (Wolof into Assamese)
+  660db695-ea30-4175-9ca5-8de2a91a3280: !Template
     answer_choices: null
-    id: 68bc1d02-e8d0-44a7-9663-e038443efd12
-    jinja: 'Translate this from Latin American Spanish into Indonesian: {{ sentence_spa
-      }} ||| {{ sentence_ind }}'
+    id: 660db695-ea30-4175-9ca5-8de2a91a3280
+    jinja: 'Kannada: {{ sentence_kan }} = Indonesian: ||| {{ sentence_ind }}'
     metadata: *id001
-    name: translate-this-spa-ind
-    reference: Basic translation (Latin American Spanish into Indonesian)
-  693f0ece-92f9-44ce-b90e-42a6ff4e7b5c: !Template
+    name: equals-translation-kan-ind
+    reference: Equals translation (Kannada into Indonesian)
+  661b40c6-280f-4fec-b0b2-e633497f937c: !Template
     answer_choices: null
-    id: 693f0ece-92f9-44ce-b90e-42a6ff4e7b5c
-    jinja: 'Translate this from Marathi into Punjabi: {{ sentence_mar }} ||| {{ sentence_pan
-      }}'
+    id: 661b40c6-280f-4fec-b0b2-e633497f937c
+    jinja: 'French: {{ sentence_fra }} = Northern Sotho: ||| {{ sentence_nso }}'
     metadata: *id001
-    name: translate-this-mar-pan
-    reference: Basic translation (Marathi into Punjabi)
-  6967d56e-fb37-4395-aff1-acbd1e18c447: !Template
+    name: equals-translation-fra-nso
+    reference: Equals translation (French into Northern Sotho)
+  66277df0-1bf6-4d92-999d-236d98f5f8e7: !Template
     answer_choices: null
-    id: 6967d56e-fb37-4395-aff1-acbd1e18c447
-    jinja: 'Translate this from Urdu into Marathi: {{ sentence_urd }} ||| {{ sentence_mar
+    id: 66277df0-1bf6-4d92-999d-236d98f5f8e7
+    jinja: 'Zulu: {{ sentence_zul }} = simplified Chinese: ||| {{ sentence_zho_simpl
       }}'
     metadata: *id001
-    name: translate-this-urd-mar
-    reference: Basic translation (Urdu into Marathi)
-  699c6d13-86ba-40dc-a0ea-3086535d51e6: !Template
+    name: equals-translation-zul-zho_simpl
+    reference: Equals translation (Zulu into simplified Chinese)
+  66586e65-8aa4-4c15-a900-972f78bfc9e7: !Template
     answer_choices: null
-    id: 699c6d13-86ba-40dc-a0ea-3086535d51e6
-    jinja: 'Translate this from English into Urdu: {{ sentence_eng }} ||| {{ sentence_urd
-      }}'
+    id: 66586e65-8aa4-4c15-a900-972f78bfc9e7
+    jinja: 'Swahili: {{ sentence_swh }} = English: ||| {{ sentence_eng }}'
     metadata: *id001
-    name: translate-this-eng-urd
-    reference: Basic translation (English into Urdu)
-  69f88ce0-7bab-4eb0-8687-17555d05dadd: !Template
+    name: equals-translation-swh-eng
+    reference: Equals translation (Swahili into English)
+  665e0838-130f-4e8d-be18-adcd6edf59e1: !Template
     answer_choices: null
-    id: 69f88ce0-7bab-4eb0-8687-17555d05dadd
-    jinja: 'Translate this from French into Latin American Spanish: {{ sentence_fra
-      }} ||| {{ sentence_spa }}'
+    id: 665e0838-130f-4e8d-be18-adcd6edf59e1
+    jinja: 'Marathi: {{ sentence_mar }} = Xhosa: ||| {{ sentence_xho }}'
     metadata: *id001
-    name: translate-this-fra-spa
-    reference: Basic translation (French into Latin American Spanish)
-  69fd88d4-7755-44fa-b989-dce430cce51b: !Template
+    name: equals-translation-mar-xho
+    reference: Equals translation (Marathi into Xhosa)
+  6710ab3b-772d-426b-9719-37803f6a333f: !Template
     answer_choices: null
-    id: 69fd88d4-7755-44fa-b989-dce430cce51b
-    jinja: 'Translate this from Latin American Spanish into Swahili: {{ sentence_spa
-      }} ||| {{ sentence_swh }}'
+    id: 6710ab3b-772d-426b-9719-37803f6a333f
+    jinja: 'Lingala: {{ sentence_lin }} = Kannada: ||| {{ sentence_kan }}'
     metadata: *id001
-    name: translate-this-spa-swh
-    reference: Basic translation (Latin American Spanish into Swahili)
-  6a58ce16-0885-423f-9c3b-569c4a30c0ad: !Template
+    name: equals-translation-lin-kan
+    reference: Equals translation (Lingala into Kannada)
+  67880bc7-ae00-4a61-8b3a-548313a61d5b: !Template
     answer_choices: null
-    id: 6a58ce16-0885-423f-9c3b-569c4a30c0ad
-    jinja: 'Translate this from Zulu into Swahili: {{ sentence_zul }} ||| {{ sentence_swh
-      }}'
+    id: 67880bc7-ae00-4a61-8b3a-548313a61d5b
+    jinja: 'Arabic: {{ sentence_ara }} = Wolof: ||| {{ sentence_wol }}'
     metadata: *id001
-    name: translate-this-zul-swh
-    reference: Basic translation (Zulu into Swahili)
-  6aa22e2c-541d-40aa-b447-69d7e55e069d: !Template
+    name: equals-translation-ara-wol
+    reference: Equals translation (Arabic into Wolof)
+  6795ade2-1e0d-4e77-ba13-82b692eeb2f2: !Template
     answer_choices: null
-    id: 6aa22e2c-541d-40aa-b447-69d7e55e069d
-    jinja: 'Translate this from Catalan into Northern Sotho: {{ sentence_cat }} |||
-      {{ sentence_nso }}'
+    id: 6795ade2-1e0d-4e77-ba13-82b692eeb2f2
+    jinja: 'Tamil: {{ sentence_tam }} = Wolof: ||| {{ sentence_wol }}'
     metadata: *id001
-    name: translate-this-cat-nso
-    reference: Basic translation (Catalan into Northern Sotho)
-  6ad879cc-7ea6-4788-96a6-0d2f273fd5ae: !Template
+    name: equals-translation-tam-wol
+    reference: Equals translation (Tamil into Wolof)
+  67d378a8-b9ce-429f-9181-6cce26ae47d5: !Template
     answer_choices: null
-    id: 6ad879cc-7ea6-4788-96a6-0d2f273fd5ae
-    jinja: 'Translate this from Xhosa into Kannada: {{ sentence_xho }} ||| {{ sentence_kan
-      }}'
+    id: 67d378a8-b9ce-429f-9181-6cce26ae47d5
+    jinja: 'Punjabi: {{ sentence_pan }} = Vietnamese: ||| {{ sentence_vie }}'
     metadata: *id001
-    name: translate-this-xho-kan
-    reference: Basic translation (Xhosa into Kannada)
-  6ae2713b-8bc9-48f3-bb2d-023c8cbe49f1: !Template
+    name: equals-translation-pan-vie
+    reference: Equals translation (Punjabi into Vietnamese)
+  6800dca1-f15a-4a5c-a7e9-0d4e9db083cf: !Template
     answer_choices: null
-    id: 6ae2713b-8bc9-48f3-bb2d-023c8cbe49f1
-    jinja: 'Translate this from Malayalam into Zulu: {{ sentence_mal }} ||| {{ sentence_zul
+    id: 6800dca1-f15a-4a5c-a7e9-0d4e9db083cf
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = English: ||| {{ sentence_eng
       }}'
     metadata: *id001
-    name: translate-this-mal-zul
-    reference: Basic translation (Malayalam into Zulu)
-  6aed07c5-b49e-4137-82f3-7f4eca999f88: !Template
+    name: equals-translation-zho_trad-eng
+    reference: Equals translation (traditional Chinese into English)
+  68d76063-e78c-472c-8378-a10852f6d43f: !Template
     answer_choices: null
-    id: 6aed07c5-b49e-4137-82f3-7f4eca999f88
-    jinja: 'Translate this from traditional Chinese into Latin American Spanish: {{
-      sentence_zho_trad }} ||| {{ sentence_spa }}'
+    id: 68d76063-e78c-472c-8378-a10852f6d43f
+    jinja: 'Gujarati: {{ sentence_guj }} = Bengali: ||| {{ sentence_ben }}'
     metadata: *id001
-    name: translate-this-zho_trad-spa
-    reference: Basic translation (traditional Chinese into Latin American Spanish)
-  6b560efb-d5c7-44bc-ad32-0e0ed805ac96: !Template
+    name: equals-translation-guj-ben
+    reference: Equals translation (Gujarati into Bengali)
+  690a28d0-a34d-482b-b062-02c0004666d6: !Template
     answer_choices: null
-    id: 6b560efb-d5c7-44bc-ad32-0e0ed805ac96
-    jinja: 'Translate this from Assamese into Catalan: {{ sentence_asm }} ||| {{ sentence_cat
+    id: 690a28d0-a34d-482b-b062-02c0004666d6
+    jinja: 'Xhosa: {{ sentence_xho }} = simplified Chinese: ||| {{ sentence_zho_simpl
       }}'
     metadata: *id001
-    name: translate-this-asm-cat
-    reference: Basic translation (Assamese into Catalan)
-  6b5e2b52-189a-4a7c-b7d4-498ab29ddb9e: !Template
-    answer_choices: null
-    id: 6b5e2b52-189a-4a7c-b7d4-498ab29ddb9e
-    jinja: 'Translate this from Assamese into Gujarati: {{ sentence_asm }} ||| {{
-      sentence_guj }}'
-    metadata: *id001
-    name: translate-this-asm-guj
-    reference: Basic translation (Assamese into Gujarati)
-  6bcca77e-4f20-4588-b5e3-1206ed83e235: !Template
+    name: equals-translation-xho-zho_simpl
+    reference: Equals translation (Xhosa into simplified Chinese)
+  69ae6ac9-cf65-4b63-b3a8-2bdc915f1f74: !Template
     answer_choices: null
-    id: 6bcca77e-4f20-4588-b5e3-1206ed83e235
-    jinja: 'Translate this from Arabic into Wolof: {{ sentence_ara }} ||| {{ sentence_wol
-      }}'
+    id: 69ae6ac9-cf65-4b63-b3a8-2bdc915f1f74
+    jinja: 'Bengali: {{ sentence_ben }} = Igbo: ||| {{ sentence_ibo }}'
     metadata: *id001
-    name: translate-this-ara-wol
-    reference: Basic translation (Arabic into Wolof)
-  6bea0c2c-4bc4-4382-b9f5-ae2060d02756: !Template
+    name: equals-translation-ben-ibo
+    reference: Equals translation (Bengali into Igbo)
+  69b1384e-4e6b-43c8-aa81-f3ce2ffe7375: !Template
     answer_choices: null
-    id: 6bea0c2c-4bc4-4382-b9f5-ae2060d02756
-    jinja: 'Translate this from Arabic into French: {{ sentence_ara }} ||| {{ sentence_fra
+    id: 69b1384e-4e6b-43c8-aa81-f3ce2ffe7375
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Assamese: ||| {{ sentence_asm
       }}'
     metadata: *id001
-    name: translate-this-ara-fra
-    reference: Basic translation (Arabic into French)
-  6c0f13ec-3f42-47f2-9b41-b87dd200f69b: !Template
+    name: equals-translation-zho_simpl-asm
+    reference: Equals translation (simplified Chinese into Assamese)
+  69c2ce52-6d93-4f8a-a31c-2fc762d9183d: !Template
     answer_choices: null
-    id: 6c0f13ec-3f42-47f2-9b41-b87dd200f69b
-    jinja: 'Translate this from Brazilian Portuguese into Swahili: {{ sentence_por
-      }} ||| {{ sentence_swh }}'
+    id: 69c2ce52-6d93-4f8a-a31c-2fc762d9183d
+    jinja: 'Telugu: {{ sentence_tel }} = Punjabi: ||| {{ sentence_pan }}'
     metadata: *id001
-    name: translate-this-por-swh
-    reference: Basic translation (Brazilian Portuguese into Swahili)
-  6c1edf3c-18c2-421f-8e0d-090ae3aa6b67: !Template
+    name: equals-translation-tel-pan
+    reference: Equals translation (Telugu into Punjabi)
+  69cb998b-90ca-4f23-8102-8972c3628d59: !Template
     answer_choices: null
-    id: 6c1edf3c-18c2-421f-8e0d-090ae3aa6b67
-    jinja: 'Translate this from simplified Chinese into Xhosa: {{ sentence_zho_simpl
-      }} ||| {{ sentence_xho }}'
+    id: 69cb998b-90ca-4f23-8102-8972c3628d59
+    jinja: 'French: {{ sentence_fra }} = Xhosa: ||| {{ sentence_xho }}'
     metadata: *id001
-    name: translate-this-zho_simpl-xho
-    reference: Basic translation (simplified Chinese into Xhosa)
-  6cc5f25b-a135-4dd3-961e-bd8b74825891: !Template
+    name: equals-translation-fra-xho
+    reference: Equals translation (French into Xhosa)
+  6aa7a38f-8980-461b-9756-882643da0ff9: !Template
     answer_choices: null
-    id: 6cc5f25b-a135-4dd3-961e-bd8b74825891
-    jinja: 'Translate this from French into Indonesian: {{ sentence_fra }} ||| {{
-      sentence_ind }}'
+    id: 6aa7a38f-8980-461b-9756-882643da0ff9
+    jinja: 'Telugu: {{ sentence_tel }} = Malayalam: ||| {{ sentence_mal }}'
     metadata: *id001
-    name: translate-this-fra-ind
-    reference: Basic translation (French into Indonesian)
-  6ce6ebf6-7a5b-4d2b-8fcb-8e11b1b8f7de: !Template
+    name: equals-translation-tel-mal
+    reference: Equals translation (Telugu into Malayalam)
+  6aa9414c-cd71-4ce4-9d48-ef75e290270f: !Template
     answer_choices: null
-    id: 6ce6ebf6-7a5b-4d2b-8fcb-8e11b1b8f7de
-    jinja: 'Translate this from Catalan into Nepali: {{ sentence_cat }} ||| {{ sentence_npi
+    id: 6aa9414c-cd71-4ce4-9d48-ef75e290270f
+    jinja: 'Oriya: {{ sentence_ory }} = Latin American Spanish: ||| {{ sentence_spa
       }}'
     metadata: *id001
-    name: translate-this-cat-npi
-    reference: Basic translation (Catalan into Nepali)
-  6d0593a3-301a-44be-97f1-078d646c7e17: !Template
+    name: equals-translation-ory-spa
+    reference: Equals translation (Oriya into Latin American Spanish)
+  6ab6267d-894f-4aea-bf30-1791ee4a6a9d: !Template
     answer_choices: null
-    id: 6d0593a3-301a-44be-97f1-078d646c7e17
-    jinja: 'Translate this from Gujarati into Igbo: {{ sentence_guj }} ||| {{ sentence_ibo
-      }}'
+    id: 6ab6267d-894f-4aea-bf30-1791ee4a6a9d
+    jinja: 'Igbo: {{ sentence_ibo }} = Zulu: ||| {{ sentence_zul }}'
     metadata: *id001
-    name: translate-this-guj-ibo
-    reference: Basic translation (Gujarati into Igbo)
-  6d69c278-0722-47c0-9d9a-fc1dce1340a9: !Template
+    name: equals-translation-ibo-zul
+    reference: Equals translation (Igbo into Zulu)
+  6ad324a0-365a-4100-b942-df3c3ff4d56f: !Template
     answer_choices: null
-    id: 6d69c278-0722-47c0-9d9a-fc1dce1340a9
-    jinja: 'Translate this from French into Wolof: {{ sentence_fra }} ||| {{ sentence_wol
-      }}'
+    id: 6ad324a0-365a-4100-b942-df3c3ff4d56f
+    jinja: 'Igbo: {{ sentence_ibo }} = Hindi: ||| {{ sentence_hin }}'
     metadata: *id001
-    name: translate-this-fra-wol
-    reference: Basic translation (French into Wolof)
-  6d707068-10a3-4121-af1a-b8ad193da0b9: !Template
+    name: equals-translation-ibo-hin
+    reference: Equals translation (Igbo into Hindi)
+  6afe2e5e-4848-4252-91a9-92ed9f204e04: !Template
     answer_choices: null
-    id: 6d707068-10a3-4121-af1a-b8ad193da0b9
-    jinja: 'Translate this from Zulu into Igbo: {{ sentence_zul }} ||| {{ sentence_ibo
-      }}'
+    id: 6afe2e5e-4848-4252-91a9-92ed9f204e04
+    jinja: 'Oriya: {{ sentence_ory }} = Kannada: ||| {{ sentence_kan }}'
     metadata: *id001
-    name: translate-this-zul-ibo
-    reference: Basic translation (Zulu into Igbo)
-  6d715a12-b4b5-49f8-bbff-9e6e3ab6ff76: !Template
+    name: equals-translation-ory-kan
+    reference: Equals translation (Oriya into Kannada)
+  6b07e366-8d49-4790-900a-92efecd7e30b: !Template
     answer_choices: null
-    id: 6d715a12-b4b5-49f8-bbff-9e6e3ab6ff76
-    jinja: 'Translate this from Vietnamese into Gujarati: {{ sentence_vie }} ||| {{
-      sentence_guj }}'
+    id: 6b07e366-8d49-4790-900a-92efecd7e30b
+    jinja: 'Igbo: {{ sentence_ibo }} = Assamese: ||| {{ sentence_asm }}'
     metadata: *id001
-    name: translate-this-vie-guj
-    reference: Basic translation (Vietnamese into Gujarati)
-  6daeee3b-1ece-49de-b99a-f73766bb149f: !Template
+    name: equals-translation-ibo-asm
+    reference: Equals translation (Igbo into Assamese)
+  6b5c9db8-8408-4dfd-8bdf-86c52ba7d222: !Template
     answer_choices: null
-    id: 6daeee3b-1ece-49de-b99a-f73766bb149f
-    jinja: 'Translate this from Kannada into Malayalam: {{ sentence_kan }} ||| {{
-      sentence_mal }}'
+    id: 6b5c9db8-8408-4dfd-8bdf-86c52ba7d222
+    jinja: 'Urdu: {{ sentence_urd }} = Tamil: ||| {{ sentence_tam }}'
     metadata: *id001
-    name: translate-this-kan-mal
-    reference: Basic translation (Kannada into Malayalam)
-  6dba5631-1d00-4098-bcb4-670ef50c9083: !Template
+    name: equals-translation-urd-tam
+    reference: Equals translation (Urdu into Tamil)
+  6c476afb-acc9-44ad-9d94-76b5a1b14b22: !Template
     answer_choices: null
-    id: 6dba5631-1d00-4098-bcb4-670ef50c9083
-    jinja: 'Translate this from English into Gujarati: {{ sentence_eng }} ||| {{ sentence_guj
+    id: 6c476afb-acc9-44ad-9d94-76b5a1b14b22
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Telugu: ||| {{ sentence_tel
       }}'
     metadata: *id001
-    name: translate-this-eng-guj
-    reference: Basic translation (English into Gujarati)
-  6de1fc89-4775-4be7-9e1d-1b210f8a1172: !Template
+    name: equals-translation-zho_trad-tel
+    reference: Equals translation (traditional Chinese into Telugu)
+  6c6dff96-aa05-4384-bea3-9a07467cf9be: !Template
     answer_choices: null
-    id: 6de1fc89-4775-4be7-9e1d-1b210f8a1172
-    jinja: 'Translate this from Kannada into Gujarati: {{ sentence_kan }} ||| {{ sentence_guj
-      }}'
+    id: 6c6dff96-aa05-4384-bea3-9a07467cf9be
+    jinja: 'Wolof: {{ sentence_wol }} = Malayalam: ||| {{ sentence_mal }}'
     metadata: *id001
-    name: translate-this-kan-guj
-    reference: Basic translation (Kannada into Gujarati)
-  6e157378-b473-4da1-b810-9b23b4b64c05: !Template
+    name: equals-translation-wol-mal
+    reference: Equals translation (Wolof into Malayalam)
+  6cd14fcf-236d-4533-8b02-90fcb62fa638: !Template
     answer_choices: null
-    id: 6e157378-b473-4da1-b810-9b23b4b64c05
-    jinja: 'Translate this from Wolof into Nepali: {{ sentence_wol }} ||| {{ sentence_npi
-      }}'
+    id: 6cd14fcf-236d-4533-8b02-90fcb62fa638
+    jinja: 'Urdu: {{ sentence_urd }} = Gujarati: ||| {{ sentence_guj }}'
     metadata: *id001
-    name: translate-this-wol-npi
-    reference: Basic translation (Wolof into Nepali)
-  6e18720d-da82-4359-94dc-c15b183593c8: !Template
+    name: equals-translation-urd-guj
+    reference: Equals translation (Urdu into Gujarati)
+  6d267cba-e8b5-4d88-aa33-46ace7736900: !Template
     answer_choices: null
-    id: 6e18720d-da82-4359-94dc-c15b183593c8
-    jinja: 'Translate this from Telugu into Kannada: {{ sentence_tel }} ||| {{ sentence_kan
+    id: 6d267cba-e8b5-4d88-aa33-46ace7736900
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = Kannada: ||| {{ sentence_kan
       }}'
     metadata: *id001
-    name: translate-this-tel-kan
-    reference: Basic translation (Telugu into Kannada)
-  6efa77b5-f0ba-429f-aecd-d4a664856b3b: !Template
+    name: equals-translation-spa-kan
+    reference: Equals translation (Latin American Spanish into Kannada)
+  6d6ca0a6-7a63-4ccd-adc4-3a1534ddda21: !Template
     answer_choices: null
-    id: 6efa77b5-f0ba-429f-aecd-d4a664856b3b
-    jinja: 'Translate this from Hindi into Telugu: {{ sentence_hin }} ||| {{ sentence_tel
-      }}'
+    id: 6d6ca0a6-7a63-4ccd-adc4-3a1534ddda21
+    jinja: 'Yoruba: {{ sentence_yor }} = Gujarati: ||| {{ sentence_guj }}'
     metadata: *id001
-    name: translate-this-hin-tel
-    reference: Basic translation (Hindi into Telugu)
-  6f400afa-a00c-4d88-b51f-c5b0fdd663e5: !Template
+    name: equals-translation-yor-guj
+    reference: Equals translation (Yoruba into Gujarati)
+  6d9b2664-a0ae-41f5-b535-15791e534b1c: !Template
     answer_choices: null
-    id: 6f400afa-a00c-4d88-b51f-c5b0fdd663e5
-    jinja: 'Translate this from Indonesian into Northern Sotho: {{ sentence_ind }}
-      ||| {{ sentence_nso }}'
+    id: 6d9b2664-a0ae-41f5-b535-15791e534b1c
+    jinja: 'Bengali: {{ sentence_ben }} = Malayalam: ||| {{ sentence_mal }}'
     metadata: *id001
-    name: translate-this-ind-nso
-    reference: Basic translation (Indonesian into Northern Sotho)
-  6f488769-a846-4853-815a-9908bc4b17a2: !Template
+    name: equals-translation-ben-mal
+    reference: Equals translation (Bengali into Malayalam)
+  6de2ec9c-5c46-440d-b57f-e5887f8a8629: !Template
     answer_choices: null
-    id: 6f488769-a846-4853-815a-9908bc4b17a2
-    jinja: 'Translate this from Northern Sotho into traditional Chinese: {{ sentence_nso
-      }} ||| {{ sentence_zho_trad }}'
+    id: 6de2ec9c-5c46-440d-b57f-e5887f8a8629
+    jinja: 'Kannada: {{ sentence_kan }} = Tamil: ||| {{ sentence_tam }}'
     metadata: *id001
-    name: translate-this-nso-zho_trad
-    reference: Basic translation (Northern Sotho into traditional Chinese)
-  70314e10-16f0-47e6-9a9c-85c262c63e22: !Template
+    name: equals-translation-kan-tam
+    reference: Equals translation (Kannada into Tamil)
+  6e610699-013d-4de2-b468-0a5c258e18fc: !Template
     answer_choices: null
-    id: 70314e10-16f0-47e6-9a9c-85c262c63e22
-    jinja: 'Translate this from Wolof into Brazilian Portuguese: {{ sentence_wol }}
-      ||| {{ sentence_por }}'
+    id: 6e610699-013d-4de2-b468-0a5c258e18fc
+    jinja: 'Indonesian: {{ sentence_ind }} = Catalan: ||| {{ sentence_cat }}'
     metadata: *id001
-    name: translate-this-wol-por
-    reference: Basic translation (Wolof into Brazilian Portuguese)
-  705d498a-f573-4c61-be2f-4f297d6f6784: !Template
+    name: equals-translation-ind-cat
+    reference: Equals translation (Indonesian into Catalan)
+  6e9aecf0-c668-41c7-ac52-407edfd63ffd: !Template
     answer_choices: null
-    id: 705d498a-f573-4c61-be2f-4f297d6f6784
-    jinja: 'Translate this from Assamese into Latin American Spanish: {{ sentence_asm
-      }} ||| {{ sentence_spa }}'
+    id: 6e9aecf0-c668-41c7-ac52-407edfd63ffd
+    jinja: 'Indonesian: {{ sentence_ind }} = Nepali: ||| {{ sentence_npi }}'
     metadata: *id001
-    name: translate-this-asm-spa
-    reference: Basic translation (Assamese into Latin American Spanish)
-  710ab478-10f8-4bb1-8af5-026471b69fc8: !Template
+    name: equals-translation-ind-npi
+    reference: Equals translation (Indonesian into Nepali)
+  6ee3f653-f3f6-4a9e-ada6-58a3b65ac646: !Template
     answer_choices: null
-    id: 710ab478-10f8-4bb1-8af5-026471b69fc8
-    jinja: 'Translate this from Hindi into Arabic: {{ sentence_hin }} ||| {{ sentence_ara
-      }}'
+    id: 6ee3f653-f3f6-4a9e-ada6-58a3b65ac646
+    jinja: 'Gujarati: {{ sentence_guj }} = Xhosa: ||| {{ sentence_xho }}'
     metadata: *id001
-    name: translate-this-hin-ara
-    reference: Basic translation (Hindi into Arabic)
-  711eb115-03d6-45f9-ab01-f163fb2530ea: !Template
+    name: equals-translation-guj-xho
+    reference: Equals translation (Gujarati into Xhosa)
+  6f10b00a-60fe-4e70-be80-196e0da57040: !Template
     answer_choices: null
-    id: 711eb115-03d6-45f9-ab01-f163fb2530ea
-    jinja: 'Translate this from Swahili into Vietnamese: {{ sentence_swh }} ||| {{
-      sentence_vie }}'
+    id: 6f10b00a-60fe-4e70-be80-196e0da57040
+    jinja: 'Lingala: {{ sentence_lin }} = Assamese: ||| {{ sentence_asm }}'
     metadata: *id001
-    name: translate-this-swh-vie
-    reference: Basic translation (Swahili into Vietnamese)
-  7143975d-b0d0-4c49-aecf-7f6a65e7197a: !Template
+    name: equals-translation-lin-asm
+    reference: Equals translation (Lingala into Assamese)
+  700304d6-b83d-4f68-8409-c041380febbe: !Template
     answer_choices: null
-    id: 7143975d-b0d0-4c49-aecf-7f6a65e7197a
-    jinja: 'Translate this from Vietnamese into Hindi: {{ sentence_vie }} ||| {{ sentence_hin
-      }}'
+    id: 700304d6-b83d-4f68-8409-c041380febbe
+    jinja: 'Bengali: {{ sentence_ben }} = Yoruba: ||| {{ sentence_yor }}'
     metadata: *id001
-    name: translate-this-vie-hin
-    reference: Basic translation (Vietnamese into Hindi)
-  714804ad-86c0-4a0f-9e79-1f629e561764: !Template
+    name: equals-translation-ben-yor
+    reference: Equals translation (Bengali into Yoruba)
+  7056f3e2-af24-492f-8b23-471dc34d18b6: !Template
     answer_choices: null
-    id: 714804ad-86c0-4a0f-9e79-1f629e561764
-    jinja: 'Translate this from Gujarati into Xhosa: {{ sentence_guj }} ||| {{ sentence_xho
-      }}'
+    id: 7056f3e2-af24-492f-8b23-471dc34d18b6
+    jinja: 'Assamese: {{ sentence_asm }} = Wolof: ||| {{ sentence_wol }}'
     metadata: *id001
-    name: translate-this-guj-xho
-    reference: Basic translation (Gujarati into Xhosa)
-  715255a0-7d04-4a38-9014-a316cf8df17b: !Template
+    name: equals-translation-asm-wol
+    reference: Equals translation (Assamese into Wolof)
+  7184c181-bea2-4324-8587-40f4834240b8: !Template
     answer_choices: null
-    id: 715255a0-7d04-4a38-9014-a316cf8df17b
-    jinja: 'Translate this from Oriya into Urdu: {{ sentence_ory }} ||| {{ sentence_urd
+    id: 7184c181-bea2-4324-8587-40f4834240b8
+    jinja: 'Swahili: {{ sentence_swh }} = Brazilian Portuguese: ||| {{ sentence_por
       }}'
     metadata: *id001
-    name: translate-this-ory-urd
-    reference: Basic translation (Oriya into Urdu)
-  71a86ca1-67a0-4012-9b3f-20b4de33e6ab: !Template
+    name: equals-translation-swh-por
+    reference: Equals translation (Swahili into Brazilian Portuguese)
+  719852c0-1284-4d67-b0e3-f2dfe8584157: !Template
     answer_choices: null
-    id: 71a86ca1-67a0-4012-9b3f-20b4de33e6ab
-    jinja: 'Translate this from Gujarati into Hindi: {{ sentence_guj }} ||| {{ sentence_hin
-      }}'
+    id: 719852c0-1284-4d67-b0e3-f2dfe8584157
+    jinja: 'Wolof: {{ sentence_wol }} = Northern Sotho: ||| {{ sentence_nso }}'
     metadata: *id001
-    name: translate-this-guj-hin
-    reference: Basic translation (Gujarati into Hindi)
-  71b141d6-0933-4c02-a75b-3c88c0179408: !Template
+    name: equals-translation-wol-nso
+    reference: Equals translation (Wolof into Northern Sotho)
+  7255e793-d518-4aa3-9f55-d62c7df02c9c: !Template
     answer_choices: null
-    id: 71b141d6-0933-4c02-a75b-3c88c0179408
-    jinja: 'Translate this from Assamese into Nepali: {{ sentence_asm }} ||| {{ sentence_npi
-      }}'
+    id: 7255e793-d518-4aa3-9f55-d62c7df02c9c
+    jinja: 'Bengali: {{ sentence_ben }} = Arabic: ||| {{ sentence_ara }}'
     metadata: *id001
-    name: translate-this-asm-npi
-    reference: Basic translation (Assamese into Nepali)
-  71fe6b79-07b8-4495-9591-1a38ff77f0f9: !Template
+    name: equals-translation-ben-ara
+    reference: Equals translation (Bengali into Arabic)
+  72b6a405-aa80-4ece-9917-78ee2fd82fae: !Template
     answer_choices: null
-    id: 71fe6b79-07b8-4495-9591-1a38ff77f0f9
-    jinja: 'Translate this from Northern Sotho into Oriya: {{ sentence_nso }} |||
-      {{ sentence_ory }}'
+    id: 72b6a405-aa80-4ece-9917-78ee2fd82fae
+    jinja: 'Assamese: {{ sentence_asm }} = English: ||| {{ sentence_eng }}'
     metadata: *id001
-    name: translate-this-nso-ory
-    reference: Basic translation (Northern Sotho into Oriya)
-  7207c93a-a6eb-409a-95d4-1e79d27e7036: !Template
+    name: equals-translation-asm-eng
+    reference: Equals translation (Assamese into English)
+  72be6db0-c76f-4003-9064-96bd82e471b5: !Template
     answer_choices: null
-    id: 7207c93a-a6eb-409a-95d4-1e79d27e7036
-    jinja: 'Translate this from Latin American Spanish into Zulu: {{ sentence_spa
-      }} ||| {{ sentence_zul }}'
+    id: 72be6db0-c76f-4003-9064-96bd82e471b5
+    jinja: 'Zulu: {{ sentence_zul }} = Yoruba: ||| {{ sentence_yor }}'
     metadata: *id001
-    name: translate-this-spa-zul
-    reference: Basic translation (Latin American Spanish into Zulu)
-  7238f01b-9b0e-444e-916c-26fc1df3a9f3: !Template
+    name: equals-translation-zul-yor
+    reference: Equals translation (Zulu into Yoruba)
+  72fdceba-36b6-4c13-a908-cd4893699531: !Template
     answer_choices: null
-    id: 7238f01b-9b0e-444e-916c-26fc1df3a9f3
-    jinja: 'Translate this from Punjabi into Northern Sotho: {{ sentence_pan }} |||
-      {{ sentence_nso }}'
+    id: 72fdceba-36b6-4c13-a908-cd4893699531
+    jinja: 'Arabic: {{ sentence_ara }} = Gujarati: ||| {{ sentence_guj }}'
     metadata: *id001
-    name: translate-this-pan-nso
-    reference: Basic translation (Punjabi into Northern Sotho)
-  72ac3544-6fd1-4dd1-8097-fa279451a44f: !Template
+    name: equals-translation-ara-guj
+    reference: Equals translation (Arabic into Gujarati)
+  731b8d6c-da0c-494c-a0d8-521a9d24d0c6: !Template
     answer_choices: null
-    id: 72ac3544-6fd1-4dd1-8097-fa279451a44f
-    jinja: 'Translate this from Lingala into Catalan: {{ sentence_lin }} ||| {{ sentence_cat
+    id: 731b8d6c-da0c-494c-a0d8-521a9d24d0c6
+    jinja: 'English: {{ sentence_eng }} = Latin American Spanish: ||| {{ sentence_spa
       }}'
     metadata: *id001
-    name: translate-this-lin-cat
-    reference: Basic translation (Lingala into Catalan)
-  72c388f3-b76f-4498-9b68-2cda9c0a0d28: !Template
+    name: equals-translation-eng-spa
+    reference: Equals translation (English into Latin American Spanish)
+  734037c4-ddcd-4a15-93a8-f38e4ec917dd: !Template
     answer_choices: null
-    id: 72c388f3-b76f-4498-9b68-2cda9c0a0d28
-    jinja: 'Translate this from Indonesian into Oriya: {{ sentence_ind }} ||| {{ sentence_ory
-      }}'
+    id: 734037c4-ddcd-4a15-93a8-f38e4ec917dd
+    jinja: 'Xhosa: {{ sentence_xho }} = Arabic: ||| {{ sentence_ara }}'
     metadata: *id001
-    name: translate-this-ind-ory
-    reference: Basic translation (Indonesian into Oriya)
-  7335be74-60ff-437d-af7a-35452e858545: !Template
+    name: equals-translation-xho-ara
+    reference: Equals translation (Xhosa into Arabic)
+  735446e6-9296-4654-b6c1-bd2e94f9fe43: !Template
     answer_choices: null
-    id: 7335be74-60ff-437d-af7a-35452e858545
-    jinja: 'Translate this from Marathi into Urdu: {{ sentence_mar }} ||| {{ sentence_urd
-      }}'
+    id: 735446e6-9296-4654-b6c1-bd2e94f9fe43
+    jinja: 'Lingala: {{ sentence_lin }} = Northern Sotho: ||| {{ sentence_nso }}'
     metadata: *id001
-    name: translate-this-mar-urd
-    reference: Basic translation (Marathi into Urdu)
-  73532de4-3e9f-42d6-bb19-600dd1d6d0ac: !Template
+    name: equals-translation-lin-nso
+    reference: Equals translation (Lingala into Northern Sotho)
+  73af113c-b670-4194-b36d-96a10d47fa08: !Template
     answer_choices: null
-    id: 73532de4-3e9f-42d6-bb19-600dd1d6d0ac
-    jinja: 'Translate this from Marathi into Brazilian Portuguese: {{ sentence_mar
-      }} ||| {{ sentence_por }}'
+    id: 73af113c-b670-4194-b36d-96a10d47fa08
+    jinja: 'French: {{ sentence_fra }} = Igbo: ||| {{ sentence_ibo }}'
     metadata: *id001
-    name: translate-this-mar-por
-    reference: Basic translation (Marathi into Brazilian Portuguese)
-  73a7aba3-33b7-4706-a77b-2921ab1c3032: !Template
+    name: equals-translation-fra-ibo
+    reference: Equals translation (French into Igbo)
+  73e80420-a9fd-49d7-82f4-61bfc799201a: !Template
     answer_choices: null
-    id: 73a7aba3-33b7-4706-a77b-2921ab1c3032
-    jinja: 'Translate this from English into Latin American Spanish: {{ sentence_eng
-      }} ||| {{ sentence_spa }}'
+    id: 73e80420-a9fd-49d7-82f4-61bfc799201a
+    jinja: 'Malayalam: {{ sentence_mal }} = English: ||| {{ sentence_eng }}'
     metadata: *id001
-    name: translate-this-eng-spa
-    reference: Basic translation (English into Latin American Spanish)
-  73c3dd35-7c15-4bc6-92f7-a4def56ce851: !Template
+    name: equals-translation-mal-eng
+    reference: Equals translation (Malayalam into English)
+  7424d7d5-de99-4120-b753-b0c54ab73483: !Template
     answer_choices: null
-    id: 73c3dd35-7c15-4bc6-92f7-a4def56ce851
-    jinja: 'Translate this from Hindi into Wolof: {{ sentence_hin }} ||| {{ sentence_wol
-      }}'
+    id: 7424d7d5-de99-4120-b753-b0c54ab73483
+    jinja: 'Northern Sotho: {{ sentence_nso }} = Marathi: ||| {{ sentence_mar }}'
     metadata: *id001
-    name: translate-this-hin-wol
-    reference: Basic translation (Hindi into Wolof)
-  73e0241d-5815-44ac-ad2c-7f65fc292f8a: !Template
+    name: equals-translation-nso-mar
+    reference: Equals translation (Northern Sotho into Marathi)
+  7449b808-0292-448f-919b-7dd91f19996b: !Template
     answer_choices: null
-    id: 73e0241d-5815-44ac-ad2c-7f65fc292f8a
-    jinja: 'Translate this from Igbo into traditional Chinese: {{ sentence_ibo }}
-      ||| {{ sentence_zho_trad }}'
+    id: 7449b808-0292-448f-919b-7dd91f19996b
+    jinja: 'Wolof: {{ sentence_wol }} = Arabic: ||| {{ sentence_ara }}'
     metadata: *id001
-    name: translate-this-ibo-zho_trad
-    reference: Basic translation (Igbo into traditional Chinese)
-  7428a0ce-06c7-49fd-9964-13f072a5056f: !Template
+    name: equals-translation-wol-ara
+    reference: Equals translation (Wolof into Arabic)
+  74cccac1-949b-4546-8447-1da816cc8f82: !Template
     answer_choices: null
-    id: 7428a0ce-06c7-49fd-9964-13f072a5056f
-    jinja: 'Translate this from Latin American Spanish into Marathi: {{ sentence_spa
-      }} ||| {{ sentence_mar }}'
+    id: 74cccac1-949b-4546-8447-1da816cc8f82
+    jinja: 'Yoruba: {{ sentence_yor }} = Oriya: ||| {{ sentence_ory }}'
     metadata: *id001
-    name: translate-this-spa-mar
-    reference: Basic translation (Latin American Spanish into Marathi)
-  742c1296-aa17-4331-80dc-9ea830bacb17: !Template
+    name: equals-translation-yor-ory
+    reference: Equals translation (Yoruba into Oriya)
+  74e89fc0-fb12-4b23-b323-6568396c7e48: !Template
     answer_choices: null
-    id: 742c1296-aa17-4331-80dc-9ea830bacb17
-    jinja: 'Translate this from Hindi into English: {{ sentence_hin }} ||| {{ sentence_eng
-      }}'
+    id: 74e89fc0-fb12-4b23-b323-6568396c7e48
+    jinja: 'Wolof: {{ sentence_wol }} = Swahili: ||| {{ sentence_swh }}'
     metadata: *id001
-    name: translate-this-hin-eng
-    reference: Basic translation (Hindi into English)
-  7434b236-487a-4f85-a4bd-ec3e8449b7f2: !Template
+    name: equals-translation-wol-swh
+    reference: Equals translation (Wolof into Swahili)
+  75313888-52b0-418b-9a3d-61136c2ad97e: !Template
     answer_choices: null
-    id: 7434b236-487a-4f85-a4bd-ec3e8449b7f2
-    jinja: 'Translate this from English into Telugu: {{ sentence_eng }} ||| {{ sentence_tel
-      }}'
+    id: 75313888-52b0-418b-9a3d-61136c2ad97e
+    jinja: 'Nepali: {{ sentence_npi }} = Arabic: ||| {{ sentence_ara }}'
     metadata: *id001
-    name: translate-this-eng-tel
-    reference: Basic translation (English into Telugu)
-  7472cd1a-eae7-48f4-a870-522f016edc3d: !Template
+    name: equals-translation-npi-ara
+    reference: Equals translation (Nepali into Arabic)
+  75419f4c-623e-41fb-be25-ad34a066daf7: !Template
     answer_choices: null
-    id: 7472cd1a-eae7-48f4-a870-522f016edc3d
-    jinja: 'Translate this from Hindi into Northern Sotho: {{ sentence_hin }} |||
-      {{ sentence_nso }}'
+    id: 75419f4c-623e-41fb-be25-ad34a066daf7
+    jinja: 'Urdu: {{ sentence_urd }} = Swahili: ||| {{ sentence_swh }}'
     metadata: *id001
-    name: translate-this-hin-nso
-    reference: Basic translation (Hindi into Northern Sotho)
-  749f40fb-e057-4a03-b8b0-92b5c91cadbd: !Template
+    name: equals-translation-urd-swh
+    reference: Equals translation (Urdu into Swahili)
+  75c91e43-b43c-4d3d-b4f4-5b3f7e924ff1: !Template
     answer_choices: null
-    id: 749f40fb-e057-4a03-b8b0-92b5c91cadbd
-    jinja: 'Translate this from Igbo into Wolof: {{ sentence_ibo }} ||| {{ sentence_wol
-      }}'
+    id: 75c91e43-b43c-4d3d-b4f4-5b3f7e924ff1
+    jinja: 'Yoruba: {{ sentence_yor }} = Igbo: ||| {{ sentence_ibo }}'
     metadata: *id001
-    name: translate-this-ibo-wol
-    reference: Basic translation (Igbo into Wolof)
-  74ba3f34-cc61-4051-874f-e8b271dbd5fc: !Template
+    name: equals-translation-yor-ibo
+    reference: Equals translation (Yoruba into Igbo)
+  7660a416-d00e-40eb-8693-0cdc51ff0831: !Template
     answer_choices: null
-    id: 74ba3f34-cc61-4051-874f-e8b271dbd5fc
-    jinja: 'Translate this from Latin American Spanish into Telugu: {{ sentence_spa
-      }} ||| {{ sentence_tel }}'
+    id: 7660a416-d00e-40eb-8693-0cdc51ff0831
+    jinja: 'Xhosa: {{ sentence_xho }} = Wolof: ||| {{ sentence_wol }}'
     metadata: *id001
-    name: translate-this-spa-tel
-    reference: Basic translation (Latin American Spanish into Telugu)
-  74d2069c-bcd3-4575-b983-bac9a181a411: !Template
+    name: equals-translation-xho-wol
+    reference: Equals translation (Xhosa into Wolof)
+  76dc64aa-9e7c-4990-816b-47599e8b8223: !Template
     answer_choices: null
-    id: 74d2069c-bcd3-4575-b983-bac9a181a411
-    jinja: 'Translate this from Yoruba into Arabic: {{ sentence_yor }} ||| {{ sentence_ara
-      }}'
+    id: 76dc64aa-9e7c-4990-816b-47599e8b8223
+    jinja: 'Hindi: {{ sentence_hin }} = Catalan: ||| {{ sentence_cat }}'
     metadata: *id001
-    name: translate-this-yor-ara
-    reference: Basic translation (Yoruba into Arabic)
-  74efbfaa-a2f2-408f-b64d-e9e84dea232f: !Template
+    name: equals-translation-hin-cat
+    reference: Equals translation (Hindi into Catalan)
+  770e6c7e-caf2-4c60-9e72-120032d3e47a: !Template
     answer_choices: null
-    id: 74efbfaa-a2f2-408f-b64d-e9e84dea232f
-    jinja: 'Translate this from Igbo into Nepali: {{ sentence_ibo }} ||| {{ sentence_npi
+    id: 770e6c7e-caf2-4c60-9e72-120032d3e47a
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Catalan: ||| {{ sentence_cat
       }}'
     metadata: *id001
-    name: translate-this-ibo-npi
-    reference: Basic translation (Igbo into Nepali)
-  75063724-8043-47b8-9cba-8d3efa76adbe: !Template
+    name: equals-translation-zho_trad-cat
+    reference: Equals translation (traditional Chinese into Catalan)
+  7817fbbc-362e-48b7-817a-c4ea41cb2a8b: !Template
     answer_choices: null
-    id: 75063724-8043-47b8-9cba-8d3efa76adbe
-    jinja: 'Translate this from Yoruba into Northern Sotho: {{ sentence_yor }} |||
-      {{ sentence_nso }}'
+    id: 7817fbbc-362e-48b7-817a-c4ea41cb2a8b
+    jinja: 'Oriya: {{ sentence_ory }} = Tamil: ||| {{ sentence_tam }}'
     metadata: *id001
-    name: translate-this-yor-nso
-    reference: Basic translation (Yoruba into Northern Sotho)
-  75298d16-11dd-4247-ac4e-37d25b868c4d: !Template
+    name: equals-translation-ory-tam
+    reference: Equals translation (Oriya into Tamil)
+  78185047-71c3-4441-bb86-9cb873463121: !Template
     answer_choices: null
-    id: 75298d16-11dd-4247-ac4e-37d25b868c4d
-    jinja: 'Translate this from traditional Chinese into Tamil: {{ sentence_zho_trad
-      }} ||| {{ sentence_tam }}'
+    id: 78185047-71c3-4441-bb86-9cb873463121
+    jinja: 'Wolof: {{ sentence_wol }} = Kannada: ||| {{ sentence_kan }}'
     metadata: *id001
-    name: translate-this-zho_trad-tam
-    reference: Basic translation (traditional Chinese into Tamil)
-  7571897b-9461-40bc-95e0-2a3ca5c1a5ad: !Template
+    name: equals-translation-wol-kan
+    reference: Equals translation (Wolof into Kannada)
+  7848b290-8443-4518-ad2f-34e26327d9fd: !Template
     answer_choices: null
-    id: 7571897b-9461-40bc-95e0-2a3ca5c1a5ad
-    jinja: 'Translate this from Oriya into Catalan: {{ sentence_ory }} ||| {{ sentence_cat
-      }}'
+    id: 7848b290-8443-4518-ad2f-34e26327d9fd
+    jinja: 'French: {{ sentence_fra }} = Gujarati: ||| {{ sentence_guj }}'
     metadata: *id001
-    name: translate-this-ory-cat
-    reference: Basic translation (Oriya into Catalan)
-  75739fe9-3749-4425-822d-002a5580aeed: !Template
+    name: equals-translation-fra-guj
+    reference: Equals translation (French into Gujarati)
+  78c35d63-865e-45e9-8318-d0126d256f08: !Template
     answer_choices: null
-    id: 75739fe9-3749-4425-822d-002a5580aeed
-    jinja: 'Translate this from Hindi into Zulu: {{ sentence_hin }} ||| {{ sentence_zul
-      }}'
+    id: 78c35d63-865e-45e9-8318-d0126d256f08
+    jinja: 'Bengali: {{ sentence_ben }} = Swahili: ||| {{ sentence_swh }}'
     metadata: *id001
-    name: translate-this-hin-zul
-    reference: Basic translation (Hindi into Zulu)
-  75b014de-fcbe-4792-a7ab-eb50b0aace17: !Template
+    name: equals-translation-ben-swh
+    reference: Equals translation (Bengali into Swahili)
+  78ca85d7-a694-4b4c-b630-115c8f563ce2: !Template
     answer_choices: null
-    id: 75b014de-fcbe-4792-a7ab-eb50b0aace17
-    jinja: 'Translate this from Brazilian Portuguese into Kannada: {{ sentence_por
-      }} ||| {{ sentence_kan }}'
+    id: 78ca85d7-a694-4b4c-b630-115c8f563ce2
+    jinja: 'Kannada: {{ sentence_kan }} = Malayalam: ||| {{ sentence_mal }}'
     metadata: *id001
-    name: translate-this-por-kan
-    reference: Basic translation (Brazilian Portuguese into Kannada)
-  75f7e0e3-b86c-487a-97a8-3e27d3f0c53e: !Template
+    name: equals-translation-kan-mal
+    reference: Equals translation (Kannada into Malayalam)
+  78ef8502-8f99-4008-a3a1-f6e367bfaec0: !Template
     answer_choices: null
-    id: 75f7e0e3-b86c-487a-97a8-3e27d3f0c53e
-    jinja: 'Translate this from Igbo into Tamil: {{ sentence_ibo }} ||| {{ sentence_tam
+    id: 78ef8502-8f99-4008-a3a1-f6e367bfaec0
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Lingala: ||| {{ sentence_lin
       }}'
     metadata: *id001
-    name: translate-this-ibo-tam
-    reference: Basic translation (Igbo into Tamil)
-  76cafdad-e80f-4acf-b9e5-95e80bd7b23d: !Template
+    name: equals-translation-zho_trad-lin
+    reference: Equals translation (traditional Chinese into Lingala)
+  7971b2b3-72a0-4df5-ab68-7a196267df37: !Template
     answer_choices: null
-    id: 76cafdad-e80f-4acf-b9e5-95e80bd7b23d
-    jinja: 'Translate this from Northern Sotho into Wolof: {{ sentence_nso }} |||
-      {{ sentence_wol }}'
-    metadata: *id001
-    name: translate-this-nso-wol
-    reference: Basic translation (Northern Sotho into Wolof)
-  76e4973d-d4c6-4996-8b82-c972c70eed23: !Template
-    answer_choices: null
-    id: 76e4973d-d4c6-4996-8b82-c972c70eed23
-    jinja: 'Translate this from Zulu into Oriya: {{ sentence_zul }} ||| {{ sentence_ory
+    id: 7971b2b3-72a0-4df5-ab68-7a196267df37
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Hindi: ||| {{ sentence_hin
       }}'
     metadata: *id001
-    name: translate-this-zul-ory
-    reference: Basic translation (Zulu into Oriya)
-  770be7d7-333a-45dc-8248-6d97b736b370: !Template
+    name: equals-translation-por-hin
+    reference: Equals translation (Brazilian Portuguese into Hindi)
+  798619ac-4bfc-4ad3-b460-0f70873d8860: !Template
     answer_choices: null
-    id: 770be7d7-333a-45dc-8248-6d97b736b370
-    jinja: 'Translate this from Arabic into Northern Sotho: {{ sentence_ara }} |||
-      {{ sentence_nso }}'
+    id: 798619ac-4bfc-4ad3-b460-0f70873d8860
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Swahili: ||| {{ sentence_swh
+      }}'
     metadata: *id001
-    name: translate-this-ara-nso
-    reference: Basic translation (Arabic into Northern Sotho)
-  772854fc-4a61-4880-b5a8-ba0292ad07a9: !Template
+    name: equals-translation-zho_trad-swh
+    reference: Equals translation (traditional Chinese into Swahili)
+  7a4af304-e852-492a-8736-305792c34ea6: !Template
     answer_choices: null
-    id: 772854fc-4a61-4880-b5a8-ba0292ad07a9
-    jinja: 'Translate this from Brazilian Portuguese into French: {{ sentence_por
-      }} ||| {{ sentence_fra }}'
+    id: 7a4af304-e852-492a-8736-305792c34ea6
+    jinja: 'Yoruba: {{ sentence_yor }} = Hindi: ||| {{ sentence_hin }}'
     metadata: *id001
-    name: translate-this-por-fra
-    reference: Basic translation (Brazilian Portuguese into French)
-  776cd869-df36-4c13-85b8-4acb33cf09cc: !Template
+    name: equals-translation-yor-hin
+    reference: Equals translation (Yoruba into Hindi)
+  7a4f2eae-d8e3-4cc1-8b19-5d45e4769e7d: !Template
     answer_choices: null
-    id: 776cd869-df36-4c13-85b8-4acb33cf09cc
-    jinja: 'Translate this from Tamil into Lingala: {{ sentence_tam }} ||| {{ sentence_lin
-      }}'
+    id: 7a4f2eae-d8e3-4cc1-8b19-5d45e4769e7d
+    jinja: 'Malayalam: {{ sentence_mal }} = Gujarati: ||| {{ sentence_guj }}'
     metadata: *id001
-    name: translate-this-tam-lin
-    reference: Basic translation (Tamil into Lingala)
-  77aaef18-ad87-48fd-827c-40bcc89b5e51: !Template
+    name: equals-translation-mal-guj
+    reference: Equals translation (Malayalam into Gujarati)
+  7a5bd48e-759f-4488-a754-9ec9e018e37f: !Template
     answer_choices: null
-    id: 77aaef18-ad87-48fd-827c-40bcc89b5e51
-    jinja: 'Translate this from English into Vietnamese: {{ sentence_eng }} ||| {{
-      sentence_vie }}'
+    id: 7a5bd48e-759f-4488-a754-9ec9e018e37f
+    jinja: 'Bengali: {{ sentence_ben }} = Lingala: ||| {{ sentence_lin }}'
     metadata: *id001
-    name: translate-this-eng-vie
-    reference: Basic translation (English into Vietnamese)
-  77c69924-1204-48dd-9f24-9216ef89d47e: !Template
+    name: equals-translation-ben-lin
+    reference: Equals translation (Bengali into Lingala)
+  7a7623f3-964f-4d2a-ab97-0ef934169285: !Template
     answer_choices: null
-    id: 77c69924-1204-48dd-9f24-9216ef89d47e
-    jinja: 'Translate this from Bengali into Swahili: {{ sentence_ben }} ||| {{ sentence_swh
-      }}'
+    id: 7a7623f3-964f-4d2a-ab97-0ef934169285
+    jinja: 'Arabic: {{ sentence_ara }} = Catalan: ||| {{ sentence_cat }}'
     metadata: *id001
-    name: translate-this-ben-swh
-    reference: Basic translation (Bengali into Swahili)
-  77d9f90e-d0f8-42de-9d4e-adb1d68760af: !Template
+    name: equals-translation-ara-cat
+    reference: Equals translation (Arabic into Catalan)
+  7b3b820a-4699-4c45-9f3c-60eb4a543a48: !Template
     answer_choices: null
-    id: 77d9f90e-d0f8-42de-9d4e-adb1d68760af
-    jinja: 'Translate this from Bengali into Wolof: {{ sentence_ben }} ||| {{ sentence_wol
-      }}'
+    id: 7b3b820a-4699-4c45-9f3c-60eb4a543a48
+    jinja: 'Urdu: {{ sentence_urd }} = Indonesian: ||| {{ sentence_ind }}'
     metadata: *id001
-    name: translate-this-ben-wol
-    reference: Basic translation (Bengali into Wolof)
-  77e6101f-71f9-4edf-b1af-741c1b24df89: !Template
+    name: equals-translation-urd-ind
+    reference: Equals translation (Urdu into Indonesian)
+  7b7ef524-871a-4a2f-8cc1-be1a2c3127cb: !Template
     answer_choices: null
-    id: 77e6101f-71f9-4edf-b1af-741c1b24df89
-    jinja: 'Translate this from Arabic into Yoruba: {{ sentence_ara }} ||| {{ sentence_yor
+    id: 7b7ef524-871a-4a2f-8cc1-be1a2c3127cb
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Gujarati: ||| {{ sentence_guj
       }}'
     metadata: *id001
-    name: translate-this-ara-yor
-    reference: Basic translation (Arabic into Yoruba)
-  77f0995e-ebe5-4def-87de-0714fef4a9db: !Template
+    name: equals-translation-zho_simpl-guj
+    reference: Equals translation (simplified Chinese into Gujarati)
+  7ba3095d-26d2-4ec0-9f54-8ac6262e9a8d: !Template
     answer_choices: null
-    id: 77f0995e-ebe5-4def-87de-0714fef4a9db
-    jinja: 'Translate this from Bengali into Telugu: {{ sentence_ben }} ||| {{ sentence_tel
-      }}'
+    id: 7ba3095d-26d2-4ec0-9f54-8ac6262e9a8d
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = simplified Chinese: ||| {{
+      sentence_zho_simpl }}'
     metadata: *id001
-    name: translate-this-ben-tel
-    reference: Basic translation (Bengali into Telugu)
-  77f3aa8e-928e-49af-ad05-e5cfb550cbfd: !Template
+    name: equals-translation-por-zho_simpl
+    reference: Equals translation (Brazilian Portuguese into simplified Chinese)
+  7bb1833d-d306-4d4d-b3d1-b2e824d3bc05: !Template
     answer_choices: null
-    id: 77f3aa8e-928e-49af-ad05-e5cfb550cbfd
-    jinja: 'Translate this from Hindi into Igbo: {{ sentence_hin }} ||| {{ sentence_ibo
+    id: 7bb1833d-d306-4d4d-b3d1-b2e824d3bc05
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Marathi: ||| {{ sentence_mar
       }}'
     metadata: *id001
-    name: translate-this-hin-ibo
-    reference: Basic translation (Hindi into Igbo)
-  78a1fbce-1192-43cf-8a8c-96febd4dfc1a: !Template
+    name: equals-translation-zho_trad-mar
+    reference: Equals translation (traditional Chinese into Marathi)
+  7c0cd330-188e-4a40-8ba8-d3a4c4d7a599: !Template
     answer_choices: null
-    id: 78a1fbce-1192-43cf-8a8c-96febd4dfc1a
-    jinja: 'Translate this from Catalan into Latin American Spanish: {{ sentence_cat
-      }} ||| {{ sentence_spa }}'
+    id: 7c0cd330-188e-4a40-8ba8-d3a4c4d7a599
+    jinja: 'Northern Sotho: {{ sentence_nso }} = Gujarati: ||| {{ sentence_guj }}'
     metadata: *id001
-    name: translate-this-cat-spa
-    reference: Basic translation (Catalan into Latin American Spanish)
-  7915332d-a376-4453-8484-b976d378b1c4: !Template
+    name: equals-translation-nso-guj
+    reference: Equals translation (Northern Sotho into Gujarati)
+  7cfe31d5-2bb1-4259-8ed5-10373d54d44e: !Template
     answer_choices: null
-    id: 7915332d-a376-4453-8484-b976d378b1c4
-    jinja: 'Translate this from Yoruba into Urdu: {{ sentence_yor }} ||| {{ sentence_urd
+    id: 7cfe31d5-2bb1-4259-8ed5-10373d54d44e
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Vietnamese: ||| {{ sentence_vie
       }}'
     metadata: *id001
-    name: translate-this-yor-urd
-    reference: Basic translation (Yoruba into Urdu)
-  7976b09a-82ea-4bc9-a646-ab1f959c1813: !Template
+    name: equals-translation-zho_trad-vie
+    reference: Equals translation (traditional Chinese into Vietnamese)
+  7d6c811c-5282-4f06-a951-e4ca1786ee6c: !Template
     answer_choices: null
-    id: 7976b09a-82ea-4bc9-a646-ab1f959c1813
-    jinja: 'Translate this from Zulu into Lingala: {{ sentence_zul }} ||| {{ sentence_lin
-      }}'
+    id: 7d6c811c-5282-4f06-a951-e4ca1786ee6c
+    jinja: 'Zulu: {{ sentence_zul }} = Telugu: ||| {{ sentence_tel }}'
     metadata: *id001
-    name: translate-this-zul-lin
-    reference: Basic translation (Zulu into Lingala)
-  7a58a245-36b4-4aee-9da2-edb2d5b3922b: !Template
+    name: equals-translation-zul-tel
+    reference: Equals translation (Zulu into Telugu)
+  7d975d44-ef3d-4ea1-bf50-0ec4a13aacc6: !Template
     answer_choices: null
-    id: 7a58a245-36b4-4aee-9da2-edb2d5b3922b
-    jinja: 'Translate this from Assamese into Igbo: {{ sentence_asm }} ||| {{ sentence_ibo
-      }}'
+    id: 7d975d44-ef3d-4ea1-bf50-0ec4a13aacc6
+    jinja: 'Gujarati: {{ sentence_guj }} = Igbo: ||| {{ sentence_ibo }}'
     metadata: *id001
-    name: translate-this-asm-ibo
-    reference: Basic translation (Assamese into Igbo)
-  7a801e2e-697a-47cd-b2a0-254c19922606: !Template
+    name: equals-translation-guj-ibo
+    reference: Equals translation (Gujarati into Igbo)
+  7dd6bcd2-3b1f-49c5-b2c9-e3ae36993122: !Template
     answer_choices: null
-    id: 7a801e2e-697a-47cd-b2a0-254c19922606
-    jinja: 'Translate this from Yoruba into Malayalam: {{ sentence_yor }} ||| {{ sentence_mal
-      }}'
+    id: 7dd6bcd2-3b1f-49c5-b2c9-e3ae36993122
+    jinja: 'Xhosa: {{ sentence_xho }} = Catalan: ||| {{ sentence_cat }}'
     metadata: *id001
-    name: translate-this-yor-mal
-    reference: Basic translation (Yoruba into Malayalam)
-  7aa02e88-d301-474d-b4fe-c84a28135331: !Template
+    name: equals-translation-xho-cat
+    reference: Equals translation (Xhosa into Catalan)
+  7dde0612-f6b9-42d6-b72e-8a1b9ec5ba72: !Template
     answer_choices: null
-    id: 7aa02e88-d301-474d-b4fe-c84a28135331
-    jinja: 'Translate this from Swahili into Oriya: {{ sentence_swh }} ||| {{ sentence_ory
-      }}'
+    id: 7dde0612-f6b9-42d6-b72e-8a1b9ec5ba72
+    jinja: 'Yoruba: {{ sentence_yor }} = English: ||| {{ sentence_eng }}'
     metadata: *id001
-    name: translate-this-swh-ory
-    reference: Basic translation (Swahili into Oriya)
-  7abac42d-08bd-4d36-bf1c-b2d873a9050f: !Template
+    name: equals-translation-yor-eng
+    reference: Equals translation (Yoruba into English)
+  7e069d70-6fe9-4311-a36d-f60b77c256a3: !Template
     answer_choices: null
-    id: 7abac42d-08bd-4d36-bf1c-b2d873a9050f
-    jinja: 'Translate this from traditional Chinese into Assamese: {{ sentence_zho_trad
-      }} ||| {{ sentence_asm }}'
+    id: 7e069d70-6fe9-4311-a36d-f60b77c256a3
+    jinja: 'Lingala: {{ sentence_lin }} = Vietnamese: ||| {{ sentence_vie }}'
     metadata: *id001
-    name: translate-this-zho_trad-asm
-    reference: Basic translation (traditional Chinese into Assamese)
-  7ae9d466-4770-481f-8ffb-cce6364f75ac: !Template
+    name: equals-translation-lin-vie
+    reference: Equals translation (Lingala into Vietnamese)
+  7e1ed0de-a98e-4cfe-925e-27a62d2e736b: !Template
     answer_choices: null
-    id: 7ae9d466-4770-481f-8ffb-cce6364f75ac
-    jinja: 'Translate this from simplified Chinese into Northern Sotho: {{ sentence_zho_simpl
-      }} ||| {{ sentence_nso }}'
+    id: 7e1ed0de-a98e-4cfe-925e-27a62d2e736b
+    jinja: 'Zulu: {{ sentence_zul }} = Wolof: ||| {{ sentence_wol }}'
     metadata: *id001
-    name: translate-this-zho_simpl-nso
-    reference: Basic translation (simplified Chinese into Northern Sotho)
-  7ae9d50d-92a2-49d0-8aed-d462776ee444: !Template
+    name: equals-translation-zul-wol
+    reference: Equals translation (Zulu into Wolof)
+  7e838e93-3a79-4330-9c9e-fef308b31f93: !Template
     answer_choices: null
-    id: 7ae9d50d-92a2-49d0-8aed-d462776ee444
-    jinja: 'Translate this from Punjabi into Swahili: {{ sentence_pan }} ||| {{ sentence_swh
+    id: 7e838e93-3a79-4330-9c9e-fef308b31f93
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Yoruba: ||| {{ sentence_yor
       }}'
     metadata: *id001
-    name: translate-this-pan-swh
-    reference: Basic translation (Punjabi into Swahili)
-  7b0b3d31-3c92-414c-9279-c775542b45dc: !Template
+    name: equals-translation-por-yor
+    reference: Equals translation (Brazilian Portuguese into Yoruba)
+  7f5c1273-8a33-4e1b-8d10-1e7002377ab2: !Template
     answer_choices: null
-    id: 7b0b3d31-3c92-414c-9279-c775542b45dc
-    jinja: 'Translate this from Yoruba into Assamese: {{ sentence_yor }} ||| {{ sentence_asm
+    id: 7f5c1273-8a33-4e1b-8d10-1e7002377ab2
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = Oriya: ||| {{ sentence_ory
       }}'
     metadata: *id001
-    name: translate-this-yor-asm
-    reference: Basic translation (Yoruba into Assamese)
-  7c4d0d55-5bdb-4424-a38c-4462c1cfe38f: !Template
+    name: equals-translation-spa-ory
+    reference: Equals translation (Latin American Spanish into Oriya)
+  7f8a15ea-da5f-4b63-af99-e807299338c7: !Template
     answer_choices: null
-    id: 7c4d0d55-5bdb-4424-a38c-4462c1cfe38f
-    jinja: 'Translate this from traditional Chinese into Indonesian: {{ sentence_zho_trad
-      }} ||| {{ sentence_ind }}'
+    id: 7f8a15ea-da5f-4b63-af99-e807299338c7
+    jinja: 'French: {{ sentence_fra }} = Wolof: ||| {{ sentence_wol }}'
     metadata: *id001
-    name: translate-this-zho_trad-ind
-    reference: Basic translation (traditional Chinese into Indonesian)
-  7c78a406-bd72-47bc-a09d-c06cf90edf90: !Template
+    name: equals-translation-fra-wol
+    reference: Equals translation (French into Wolof)
+  7faf8a22-63f0-4557-a11a-7ce4aaedef77: !Template
     answer_choices: null
-    id: 7c78a406-bd72-47bc-a09d-c06cf90edf90
-    jinja: 'Translate this from Telugu into Gujarati: {{ sentence_tel }} ||| {{ sentence_guj
+    id: 7faf8a22-63f0-4557-a11a-7ce4aaedef77
+    jinja: 'Punjabi: {{ sentence_pan }} = Latin American Spanish: ||| {{ sentence_spa
       }}'
     metadata: *id001
-    name: translate-this-tel-guj
-    reference: Basic translation (Telugu into Gujarati)
-  7d529228-b7b0-4d44-a521-42bb9ca6ace5: !Template
+    name: equals-translation-pan-spa
+    reference: Equals translation (Punjabi into Latin American Spanish)
+  7fd93069-8b6e-4ff7-8a19-874be51acbb3: !Template
     answer_choices: null
-    id: 7d529228-b7b0-4d44-a521-42bb9ca6ace5
-    jinja: 'Translate this from Northern Sotho into Assamese: {{ sentence_nso }} |||
-      {{ sentence_asm }}'
+    id: 7fd93069-8b6e-4ff7-8a19-874be51acbb3
+    jinja: 'Northern Sotho: {{ sentence_nso }} = Punjabi: ||| {{ sentence_pan }}'
     metadata: *id001
-    name: translate-this-nso-asm
-    reference: Basic translation (Northern Sotho into Assamese)
-  7dc3dd96-825e-45ce-9ffa-9eb95f29e57c: !Template
+    name: equals-translation-nso-pan
+    reference: Equals translation (Northern Sotho into Punjabi)
+  7fdf5924-1253-4683-8e2c-f8013d16eb45: !Template
     answer_choices: null
-    id: 7dc3dd96-825e-45ce-9ffa-9eb95f29e57c
-    jinja: 'Translate this from Igbo into Vietnamese: {{ sentence_ibo }} ||| {{ sentence_vie
-      }}'
+    id: 7fdf5924-1253-4683-8e2c-f8013d16eb45
+    jinja: 'Arabic: {{ sentence_ara }} = Marathi: ||| {{ sentence_mar }}'
     metadata: *id001
-    name: translate-this-ibo-vie
-    reference: Basic translation (Igbo into Vietnamese)
-  7e5796e5-040f-41a3-a3a7-e61fd0a70bbb: !Template
+    name: equals-translation-ara-mar
+    reference: Equals translation (Arabic into Marathi)
+  8036f670-a822-47e0-b08d-f3d256a8f322: !Template
     answer_choices: null
-    id: 7e5796e5-040f-41a3-a3a7-e61fd0a70bbb
-    jinja: 'Translate this from Tamil into Gujarati: {{ sentence_tam }} ||| {{ sentence_guj
-      }}'
+    id: 8036f670-a822-47e0-b08d-f3d256a8f322
+    jinja: 'Bengali: {{ sentence_ben }} = Assamese: ||| {{ sentence_asm }}'
     metadata: *id001
-    name: translate-this-tam-guj
-    reference: Basic translation (Tamil into Gujarati)
-  7e8350f4-7818-4efb-a9bc-ed27ece00656: !Template
+    name: equals-translation-ben-asm
+    reference: Equals translation (Bengali into Assamese)
+  8038dd7f-ed27-4613-ab55-eda227f23958: !Template
     answer_choices: null
-    id: 7e8350f4-7818-4efb-a9bc-ed27ece00656
-    jinja: 'Translate this from English into Swahili: {{ sentence_eng }} ||| {{ sentence_swh
-      }}'
+    id: 8038dd7f-ed27-4613-ab55-eda227f23958
+    jinja: 'Kannada: {{ sentence_kan }} = Igbo: ||| {{ sentence_ibo }}'
     metadata: *id001
-    name: translate-this-eng-swh
-    reference: Basic translation (English into Swahili)
-  7eff6838-b175-46a3-b5c4-95a456914397: !Template
+    name: equals-translation-kan-ibo
+    reference: Equals translation (Kannada into Igbo)
+  8057f3fb-c8f3-444d-a390-30bbf0dee94f: !Template
     answer_choices: null
-    id: 7eff6838-b175-46a3-b5c4-95a456914397
-    jinja: 'Translate this from Tamil into Oriya: {{ sentence_tam }} ||| {{ sentence_ory
+    id: 8057f3fb-c8f3-444d-a390-30bbf0dee94f
+    jinja: 'Wolof: {{ sentence_wol }} = Brazilian Portuguese: ||| {{ sentence_por
       }}'
     metadata: *id001
-    name: translate-this-tam-ory
-    reference: Basic translation (Tamil into Oriya)
-  7f201a54-4594-4751-8133-1ae860bab18f: !Template
+    name: equals-translation-wol-por
+    reference: Equals translation (Wolof into Brazilian Portuguese)
+  810f99fc-bc89-48d3-9d08-5b97507bb005: !Template
     answer_choices: null
-    id: 7f201a54-4594-4751-8133-1ae860bab18f
-    jinja: 'Translate this from Marathi into Assamese: {{ sentence_mar }} ||| {{ sentence_asm
-      }}'
+    id: 810f99fc-bc89-48d3-9d08-5b97507bb005
+    jinja: 'Lingala: {{ sentence_lin }} = French: ||| {{ sentence_fra }}'
     metadata: *id001
-    name: translate-this-mar-asm
-    reference: Basic translation (Marathi into Assamese)
-  7f33e652-9574-4bf1-b4fd-286af9af0734: !Template
+    name: equals-translation-lin-fra
+    reference: Equals translation (Lingala into French)
+  8111dbc6-7d15-4eea-b043-0b0ae320fd9f: !Template
     answer_choices: null
-    id: 7f33e652-9574-4bf1-b4fd-286af9af0734
-    jinja: 'Translate this from Malayalam into Lingala: {{ sentence_mal }} ||| {{
-      sentence_lin }}'
+    id: 8111dbc6-7d15-4eea-b043-0b0ae320fd9f
+    jinja: 'Marathi: {{ sentence_mar }} = Zulu: ||| {{ sentence_zul }}'
     metadata: *id001
-    name: translate-this-mal-lin
-    reference: Basic translation (Malayalam into Lingala)
-  7fa79031-3475-4d7c-9ae5-9364e44a663d: !Template
+    name: equals-translation-mar-zul
+    reference: Equals translation (Marathi into Zulu)
+  813a5227-a483-4b54-927e-3c82dacfed6d: !Template
     answer_choices: null
-    id: 7fa79031-3475-4d7c-9ae5-9364e44a663d
-    jinja: 'Translate this from Tamil into Brazilian Portuguese: {{ sentence_tam }}
-      ||| {{ sentence_por }}'
+    id: 813a5227-a483-4b54-927e-3c82dacfed6d
+    jinja: 'Indonesian: {{ sentence_ind }} = Vietnamese: ||| {{ sentence_vie }}'
     metadata: *id001
-    name: translate-this-tam-por
-    reference: Basic translation (Tamil into Brazilian Portuguese)
-  7fdb18e3-5cce-4e72-8052-945030950a82: !Template
+    name: equals-translation-ind-vie
+    reference: Equals translation (Indonesian into Vietnamese)
+  81640d87-f319-4751-9692-223746fcf335: !Template
     answer_choices: null
-    id: 7fdb18e3-5cce-4e72-8052-945030950a82
-    jinja: 'Translate this from Assamese into Xhosa: {{ sentence_asm }} ||| {{ sentence_xho
-      }}'
+    id: 81640d87-f319-4751-9692-223746fcf335
+    jinja: 'Oriya: {{ sentence_ory }} = Yoruba: ||| {{ sentence_yor }}'
     metadata: *id001
-    name: translate-this-asm-xho
-    reference: Basic translation (Assamese into Xhosa)
-  7ff58b1c-b979-4f35-b64f-d6070676af96: !Template
+    name: equals-translation-ory-yor
+    reference: Equals translation (Oriya into Yoruba)
+  819690da-d3ff-45cc-93c1-b912f1bf6c61: !Template
     answer_choices: null
-    id: 7ff58b1c-b979-4f35-b64f-d6070676af96
-    jinja: 'Translate this from Indonesian into Zulu: {{ sentence_ind }} ||| {{ sentence_zul
+    id: 819690da-d3ff-45cc-93c1-b912f1bf6c61
+    jinja: 'Urdu: {{ sentence_urd }} = simplified Chinese: ||| {{ sentence_zho_simpl
       }}'
     metadata: *id001
-    name: translate-this-ind-zul
-    reference: Basic translation (Indonesian into Zulu)
-  80174b8e-a446-44e8-957a-03ef562d03b8: !Template
+    name: equals-translation-urd-zho_simpl
+    reference: Equals translation (Urdu into simplified Chinese)
+  819930ab-fb34-42a8-9bb1-c2281b747b47: !Template
     answer_choices: null
-    id: 80174b8e-a446-44e8-957a-03ef562d03b8
-    jinja: 'Translate this from Lingala into Latin American Spanish: {{ sentence_lin
-      }} ||| {{ sentence_spa }}'
+    id: 819930ab-fb34-42a8-9bb1-c2281b747b47
+    jinja: 'Northern Sotho: {{ sentence_nso }} = Catalan: ||| {{ sentence_cat }}'
     metadata: *id001
-    name: translate-this-lin-spa
-    reference: Basic translation (Lingala into Latin American Spanish)
-  8025d701-ea5d-4b00-9ece-c3f5d48e1e64: !Template
+    name: equals-translation-nso-cat
+    reference: Equals translation (Northern Sotho into Catalan)
+  81bdb741-982e-4425-965b-228753b41190: !Template
     answer_choices: null
-    id: 8025d701-ea5d-4b00-9ece-c3f5d48e1e64
-    jinja: 'Translate this from Yoruba into Marathi: {{ sentence_yor }} ||| {{ sentence_mar
-      }}'
+    id: 81bdb741-982e-4425-965b-228753b41190
+    jinja: 'French: {{ sentence_fra }} = Yoruba: ||| {{ sentence_yor }}'
     metadata: *id001
-    name: translate-this-yor-mar
-    reference: Basic translation (Yoruba into Marathi)
-  804e09e3-e6d2-407d-9261-6963d9710769: !Template
+    name: equals-translation-fra-yor
+    reference: Equals translation (French into Yoruba)
+  81c272de-8b80-4b49-9c02-315d7f92709f: !Template
     answer_choices: null
-    id: 804e09e3-e6d2-407d-9261-6963d9710769
-    jinja: 'Translate this from Punjabi into Kannada: {{ sentence_pan }} ||| {{ sentence_kan
+    id: 81c272de-8b80-4b49-9c02-315d7f92709f
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = Marathi: ||| {{ sentence_mar
       }}'
     metadata: *id001
-    name: translate-this-pan-kan
-    reference: Basic translation (Punjabi into Kannada)
-  8050875a-9cec-4dd3-92aa-5555b5226c29: !Template
+    name: equals-translation-spa-mar
+    reference: Equals translation (Latin American Spanish into Marathi)
+  82188975-05b2-4924-930d-dbe78dfdd052: !Template
     answer_choices: null
-    id: 8050875a-9cec-4dd3-92aa-5555b5226c29
-    jinja: 'Translate this from Marathi into Igbo: {{ sentence_mar }} ||| {{ sentence_ibo
-      }}'
+    id: 82188975-05b2-4924-930d-dbe78dfdd052
+    jinja: 'Tamil: {{ sentence_tam }} = Indonesian: ||| {{ sentence_ind }}'
     metadata: *id001
-    name: translate-this-mar-ibo
-    reference: Basic translation (Marathi into Igbo)
-  80a9e2ca-1d81-4169-88a2-9c3819a53157: !Template
+    name: equals-translation-tam-ind
+    reference: Equals translation (Tamil into Indonesian)
+  82229058-6742-47c1-96dd-0488c6916422: !Template
     answer_choices: null
-    id: 80a9e2ca-1d81-4169-88a2-9c3819a53157
-    jinja: 'Translate this from Xhosa into Yoruba: {{ sentence_xho }} ||| {{ sentence_yor
-      }}'
+    id: 82229058-6742-47c1-96dd-0488c6916422
+    jinja: 'Catalan: {{ sentence_cat }} = Assamese: ||| {{ sentence_asm }}'
     metadata: *id001
-    name: translate-this-xho-yor
-    reference: Basic translation (Xhosa into Yoruba)
-  8108031c-adf6-4dfa-a982-253424945b33: !Template
+    name: equals-translation-cat-asm
+    reference: Equals translation (Catalan into Assamese)
+  82480e9c-e393-4d43-8769-e7c91b396458: !Template
     answer_choices: null
-    id: 8108031c-adf6-4dfa-a982-253424945b33
-    jinja: 'Translate this from Malayalam into Tamil: {{ sentence_mal }} ||| {{ sentence_tam
-      }}'
+    id: 82480e9c-e393-4d43-8769-e7c91b396458
+    jinja: 'Tamil: {{ sentence_tam }} = Lingala: ||| {{ sentence_lin }}'
     metadata: *id001
-    name: translate-this-mal-tam
-    reference: Basic translation (Malayalam into Tamil)
-  816b2d97-9646-4657-9d57-532b46c9b697: !Template
+    name: equals-translation-tam-lin
+    reference: Equals translation (Tamil into Lingala)
+  824d2917-9303-4475-8f11-1d901bbff0c1: !Template
     answer_choices: null
-    id: 816b2d97-9646-4657-9d57-532b46c9b697
-    jinja: 'Translate this from Gujarati into Vietnamese: {{ sentence_guj }} ||| {{
-      sentence_vie }}'
+    id: 824d2917-9303-4475-8f11-1d901bbff0c1
+    jinja: 'Yoruba: {{ sentence_yor }} = Marathi: ||| {{ sentence_mar }}'
     metadata: *id001
-    name: translate-this-guj-vie
-    reference: Basic translation (Gujarati into Vietnamese)
-  81d656b6-87d9-4fc4-8f37-0bb4f5a36bae: !Template
+    name: equals-translation-yor-mar
+    reference: Equals translation (Yoruba into Marathi)
+  82eb2f45-5f81-4c13-8a47-d14022d014e9: !Template
     answer_choices: null
-    id: 81d656b6-87d9-4fc4-8f37-0bb4f5a36bae
-    jinja: 'Translate this from Lingala into Hindi: {{ sentence_lin }} ||| {{ sentence_hin
-      }}'
+    id: 82eb2f45-5f81-4c13-8a47-d14022d014e9
+    jinja: 'Marathi: {{ sentence_mar }} = Northern Sotho: ||| {{ sentence_nso }}'
     metadata: *id001
-    name: translate-this-lin-hin
-    reference: Basic translation (Lingala into Hindi)
-  8212ec6c-e4cc-4f96-9b9c-d35896c713c8: !Template
+    name: equals-translation-mar-nso
+    reference: Equals translation (Marathi into Northern Sotho)
+  82ee358a-077f-4084-b355-3aa5a0ff7356: !Template
     answer_choices: null
-    id: 8212ec6c-e4cc-4f96-9b9c-d35896c713c8
-    jinja: 'Translate this from French into Oriya: {{ sentence_fra }} ||| {{ sentence_ory
-      }}'
+    id: 82ee358a-077f-4084-b355-3aa5a0ff7356
+    jinja: 'Xhosa: {{ sentence_xho }} = Assamese: ||| {{ sentence_asm }}'
     metadata: *id001
-    name: translate-this-fra-ory
-    reference: Basic translation (French into Oriya)
-  82206e44-78f6-4017-acd0-a3bbae1f4d46: !Template
+    name: equals-translation-xho-asm
+    reference: Equals translation (Xhosa into Assamese)
+  8348c992-fc4e-41f7-850a-8ae8d29deabf: !Template
     answer_choices: null
-    id: 82206e44-78f6-4017-acd0-a3bbae1f4d46
-    jinja: 'Translate this from Swahili into traditional Chinese: {{ sentence_swh
-      }} ||| {{ sentence_zho_trad }}'
+    id: 8348c992-fc4e-41f7-850a-8ae8d29deabf
+    jinja: 'Nepali: {{ sentence_npi }} = English: ||| {{ sentence_eng }}'
     metadata: *id001
-    name: translate-this-swh-zho_trad
-    reference: Basic translation (Swahili into traditional Chinese)
-  822ce9fd-c356-4360-91ee-20c7c75cc2eb: !Template
+    name: equals-translation-npi-eng
+    reference: Equals translation (Nepali into English)
+  83d439cd-0200-4b92-a270-2ef39bce0b42: !Template
     answer_choices: null
-    id: 822ce9fd-c356-4360-91ee-20c7c75cc2eb
-    jinja: 'Translate this from Yoruba into Catalan: {{ sentence_yor }} ||| {{ sentence_cat
-      }}'
+    id: 83d439cd-0200-4b92-a270-2ef39bce0b42
+    jinja: 'Zulu: {{ sentence_zul }} = French: ||| {{ sentence_fra }}'
     metadata: *id001
-    name: translate-this-yor-cat
-    reference: Basic translation (Yoruba into Catalan)
-  82f37e4d-0f27-4c31-97b7-776357d95ba0: !Template
+    name: equals-translation-zul-fra
+    reference: Equals translation (Zulu into French)
+  8400d443-2e71-440e-a78b-d95881687032: !Template
     answer_choices: null
-    id: 82f37e4d-0f27-4c31-97b7-776357d95ba0
-    jinja: 'Translate this from Nepali into Hindi: {{ sentence_npi }} ||| {{ sentence_hin
-      }}'
+    id: 8400d443-2e71-440e-a78b-d95881687032
+    jinja: 'Northern Sotho: {{ sentence_nso }} = Vietnamese: ||| {{ sentence_vie }}'
     metadata: *id001
-    name: translate-this-npi-hin
-    reference: Basic translation (Nepali into Hindi)
-  82f939db-49ad-4939-a780-0660745ae154: !Template
+    name: equals-translation-nso-vie
+    reference: Equals translation (Northern Sotho into Vietnamese)
+  841d9760-5954-4d13-bf7b-b86c2ff03f72: !Template
     answer_choices: null
-    id: 82f939db-49ad-4939-a780-0660745ae154
-    jinja: 'Translate this from French into English: {{ sentence_fra }} ||| {{ sentence_eng
+    id: 841d9760-5954-4d13-bf7b-b86c2ff03f72
+    jinja: 'Wolof: {{ sentence_wol }} = traditional Chinese: ||| {{ sentence_zho_trad
       }}'
     metadata: *id001
-    name: translate-this-fra-eng
-    reference: Basic translation (French into English)
-  836a19b0-c0dc-4685-83f1-3be8db866f0a: !Template
+    name: equals-translation-wol-zho_trad
+    reference: Equals translation (Wolof into traditional Chinese)
+  84601e7c-497a-49ca-9a87-d465ce2eb20a: !Template
     answer_choices: null
-    id: 836a19b0-c0dc-4685-83f1-3be8db866f0a
-    jinja: 'Translate this from Gujarati into Oriya: {{ sentence_guj }} ||| {{ sentence_ory
-      }}'
+    id: 84601e7c-497a-49ca-9a87-d465ce2eb20a
+    jinja: 'Telugu: {{ sentence_tel }} = Arabic: ||| {{ sentence_ara }}'
     metadata: *id001
-    name: translate-this-guj-ory
-    reference: Basic translation (Gujarati into Oriya)
-  83710aff-8907-4112-b259-edf1977b6c09: !Template
+    name: equals-translation-tel-ara
+    reference: Equals translation (Telugu into Arabic)
+  85330fd7-d0ff-4ff6-8ff7-1fa4af574150: !Template
     answer_choices: null
-    id: 83710aff-8907-4112-b259-edf1977b6c09
-    jinja: 'Translate this from simplified Chinese into Yoruba: {{ sentence_zho_simpl
-      }} ||| {{ sentence_yor }}'
+    id: 85330fd7-d0ff-4ff6-8ff7-1fa4af574150
+    jinja: 'Igbo: {{ sentence_ibo }} = Telugu: ||| {{ sentence_tel }}'
     metadata: *id001
-    name: translate-this-zho_simpl-yor
-    reference: Basic translation (simplified Chinese into Yoruba)
-  83830905-e680-426e-b89a-93fb46b79e44: !Template
+    name: equals-translation-ibo-tel
+    reference: Equals translation (Igbo into Telugu)
+  853e7e4d-8b4e-4173-8537-22687ca369ae: !Template
     answer_choices: null
-    id: 83830905-e680-426e-b89a-93fb46b79e44
-    jinja: 'Translate this from Lingala into Gujarati: {{ sentence_lin }} ||| {{ sentence_guj
-      }}'
+    id: 853e7e4d-8b4e-4173-8537-22687ca369ae
+    jinja: 'Vietnamese: {{ sentence_vie }} = Telugu: ||| {{ sentence_tel }}'
     metadata: *id001
-    name: translate-this-lin-guj
-    reference: Basic translation (Lingala into Gujarati)
-  83becdf6-1604-4aad-8914-b5564af5c7e7: !Template
+    name: equals-translation-vie-tel
+    reference: Equals translation (Vietnamese into Telugu)
+  8570ea04-b231-4f9c-a50b-b0356709dd62: !Template
     answer_choices: null
-    id: 83becdf6-1604-4aad-8914-b5564af5c7e7
-    jinja: 'Translate this from Xhosa into Nepali: {{ sentence_xho }} ||| {{ sentence_npi
-      }}'
+    id: 8570ea04-b231-4f9c-a50b-b0356709dd62
+    jinja: 'Arabic: {{ sentence_ara }} = Oriya: ||| {{ sentence_ory }}'
     metadata: *id001
-    name: translate-this-xho-npi
-    reference: Basic translation (Xhosa into Nepali)
-  83ecaea7-8972-4f8e-a500-22a7da5688d8: !Template
+    name: equals-translation-ara-ory
+    reference: Equals translation (Arabic into Oriya)
+  857948ec-9628-4095-81f9-ea76ce613d7e: !Template
     answer_choices: null
-    id: 83ecaea7-8972-4f8e-a500-22a7da5688d8
-    jinja: 'Translate this from Arabic into Marathi: {{ sentence_ara }} ||| {{ sentence_mar
+    id: 857948ec-9628-4095-81f9-ea76ce613d7e
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = Catalan: ||| {{ sentence_cat
       }}'
     metadata: *id001
-    name: translate-this-ara-mar
-    reference: Basic translation (Arabic into Marathi)
-  83f52a9a-f74a-40e5-abf1-ac76ef85b220: !Template
+    name: equals-translation-spa-cat
+    reference: Equals translation (Latin American Spanish into Catalan)
+  85a6794b-3726-4121-8aa9-b0552a9f06fb: !Template
     answer_choices: null
-    id: 83f52a9a-f74a-40e5-abf1-ac76ef85b220
-    jinja: 'Translate this from Telugu into Nepali: {{ sentence_tel }} ||| {{ sentence_npi
-      }}'
+    id: 85a6794b-3726-4121-8aa9-b0552a9f06fb
+    jinja: 'Marathi: {{ sentence_mar }} = Kannada: ||| {{ sentence_kan }}'
     metadata: *id001
-    name: translate-this-tel-npi
-    reference: Basic translation (Telugu into Nepali)
-  84078401-95c3-48e6-aba5-a1e5fd58c948: !Template
+    name: equals-translation-mar-kan
+    reference: Equals translation (Marathi into Kannada)
+  85d7d782-f8ca-453c-bcd7-8ccba9efc58f: !Template
     answer_choices: null
-    id: 84078401-95c3-48e6-aba5-a1e5fd58c948
-    jinja: 'Translate this from English into Arabic: {{ sentence_eng }} ||| {{ sentence_ara
-      }}'
+    id: 85d7d782-f8ca-453c-bcd7-8ccba9efc58f
+    jinja: 'Igbo: {{ sentence_ibo }} = Bengali: ||| {{ sentence_ben }}'
     metadata: *id001
-    name: translate-this-eng-ara
-    reference: Basic translation (English into Arabic)
-  8444637a-054a-4656-8b9b-dab19739290d: !Template
+    name: equals-translation-ibo-ben
+    reference: Equals translation (Igbo into Bengali)
+  85ed5a44-00e6-4d74-8363-4f16d95106aa: !Template
     answer_choices: null
-    id: 8444637a-054a-4656-8b9b-dab19739290d
-    jinja: 'Translate this from Kannada into Swahili: {{ sentence_kan }} ||| {{ sentence_swh
-      }}'
+    id: 85ed5a44-00e6-4d74-8363-4f16d95106aa
+    jinja: 'Tamil: {{ sentence_tam }} = Marathi: ||| {{ sentence_mar }}'
     metadata: *id001
-    name: translate-this-kan-swh
-    reference: Basic translation (Kannada into Swahili)
-  849f125d-8209-4c4a-9890-436b87a03b25: !Template
+    name: equals-translation-tam-mar
+    reference: Equals translation (Tamil into Marathi)
+  85eef99a-9827-4f81-a927-862e78fcc17d: !Template
     answer_choices: null
-    id: 849f125d-8209-4c4a-9890-436b87a03b25
-    jinja: 'Translate this from Arabic into Latin American Spanish: {{ sentence_ara
-      }} ||| {{ sentence_spa }}'
+    id: 85eef99a-9827-4f81-a927-862e78fcc17d
+    jinja: 'Zulu: {{ sentence_zul }} = Malayalam: ||| {{ sentence_mal }}'
     metadata: *id001
-    name: translate-this-ara-spa
-    reference: Basic translation (Arabic into Latin American Spanish)
-  84db8bd4-5ad2-47eb-b132-d2ce1b8c95a4: !Template
+    name: equals-translation-zul-mal
+    reference: Equals translation (Zulu into Malayalam)
+  8601e386-c680-4743-89be-a78420f35c7a: !Template
     answer_choices: null
-    id: 84db8bd4-5ad2-47eb-b132-d2ce1b8c95a4
-    jinja: 'Translate this from Malayalam into Bengali: {{ sentence_mal }} ||| {{
-      sentence_ben }}'
+    id: 8601e386-c680-4743-89be-a78420f35c7a
+    jinja: 'Wolof: {{ sentence_wol }} = English: ||| {{ sentence_eng }}'
     metadata: *id001
-    name: translate-this-mal-ben
-    reference: Basic translation (Malayalam into Bengali)
-  8557ff70-a661-4c89-b811-53c2f41f9b4c: !Template
+    name: equals-translation-wol-eng
+    reference: Equals translation (Wolof into English)
+  860811e3-4e38-4c63-8104-07172ab4c54e: !Template
     answer_choices: null
-    id: 8557ff70-a661-4c89-b811-53c2f41f9b4c
-    jinja: 'Translate this from Arabic into Telugu: {{ sentence_ara }} ||| {{ sentence_tel
-      }}'
+    id: 860811e3-4e38-4c63-8104-07172ab4c54e
+    jinja: 'Kannada: {{ sentence_kan }} = Catalan: ||| {{ sentence_cat }}'
     metadata: *id001
-    name: translate-this-ara-tel
-    reference: Basic translation (Arabic into Telugu)
-  855b24a1-4240-4b90-bc22-cee71f2f352b: !Template
+    name: equals-translation-kan-cat
+    reference: Equals translation (Kannada into Catalan)
+  866d0f10-51ab-45ff-a937-fa6eaeba9e53: !Template
     answer_choices: null
-    id: 855b24a1-4240-4b90-bc22-cee71f2f352b
-    jinja: 'Translate this from Assamese into Lingala: {{ sentence_asm }} ||| {{ sentence_lin
-      }}'
+    id: 866d0f10-51ab-45ff-a937-fa6eaeba9e53
+    jinja: 'French: {{ sentence_fra }} = Arabic: ||| {{ sentence_ara }}'
     metadata: *id001
-    name: translate-this-asm-lin
-    reference: Basic translation (Assamese into Lingala)
-  85be2e05-6666-4749-a668-5d053605fc6a: !Template
+    name: equals-translation-fra-ara
+    reference: Equals translation (French into Arabic)
+  867e0aa8-f9b1-4bab-a9b2-16733c5b188d: !Template
     answer_choices: null
-    id: 85be2e05-6666-4749-a668-5d053605fc6a
-    jinja: 'Translate this from Punjabi into Brazilian Portuguese: {{ sentence_pan
-      }} ||| {{ sentence_por }}'
+    id: 867e0aa8-f9b1-4bab-a9b2-16733c5b188d
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Nepali: ||| {{ sentence_npi
+      }}'
     metadata: *id001
-    name: translate-this-pan-por
-    reference: Basic translation (Punjabi into Brazilian Portuguese)
-  85efc53f-b611-493a-adcb-5c4fa1189831: !Template
+    name: equals-translation-zho_trad-npi
+    reference: Equals translation (traditional Chinese into Nepali)
+  868c44dc-9159-4778-96ed-b43996e6d134: !Template
     answer_choices: null
-    id: 85efc53f-b611-493a-adcb-5c4fa1189831
-    jinja: 'Translate this from Malayalam into Vietnamese: {{ sentence_mal }} |||
-      {{ sentence_vie }}'
+    id: 868c44dc-9159-4778-96ed-b43996e6d134
+    jinja: 'Kannada: {{ sentence_kan }} = Swahili: ||| {{ sentence_swh }}'
     metadata: *id001
-    name: translate-this-mal-vie
-    reference: Basic translation (Malayalam into Vietnamese)
-  85fa3914-0077-4c69-b573-ca9a8567974a: !Template
+    name: equals-translation-kan-swh
+    reference: Equals translation (Kannada into Swahili)
+  86975457-942e-44c2-914b-f0c896afb333: !Template
     answer_choices: null
-    id: 85fa3914-0077-4c69-b573-ca9a8567974a
-    jinja: 'Translate this from Swahili into Brazilian Portuguese: {{ sentence_swh
-      }} ||| {{ sentence_por }}'
+    id: 86975457-942e-44c2-914b-f0c896afb333
+    jinja: 'Yoruba: {{ sentence_yor }} = Nepali: ||| {{ sentence_npi }}'
     metadata: *id001
-    name: translate-this-swh-por
-    reference: Basic translation (Swahili into Brazilian Portuguese)
-  86153197-b33d-4d74-94c9-c53bb00d36fb: !Template
+    name: equals-translation-yor-npi
+    reference: Equals translation (Yoruba into Nepali)
+  86abccd4-3ece-4f35-b029-182aab235e3b: !Template
     answer_choices: null
-    id: 86153197-b33d-4d74-94c9-c53bb00d36fb
-    jinja: 'Translate this from Urdu into Assamese: {{ sentence_urd }} ||| {{ sentence_asm
+    id: 86abccd4-3ece-4f35-b029-182aab235e3b
+    jinja: 'Assamese: {{ sentence_asm }} = Brazilian Portuguese: ||| {{ sentence_por
       }}'
     metadata: *id001
-    name: translate-this-urd-asm
-    reference: Basic translation (Urdu into Assamese)
-  86418db9-0571-4afe-8b7e-3fe89aa5a153: !Template
+    name: equals-translation-asm-por
+    reference: Equals translation (Assamese into Brazilian Portuguese)
+  88071c62-0eaf-4872-8c18-9cb49bbd0bc2: !Template
     answer_choices: null
-    id: 86418db9-0571-4afe-8b7e-3fe89aa5a153
-    jinja: 'Translate this from Assamese into simplified Chinese: {{ sentence_asm
-      }} ||| {{ sentence_zho_simpl }}'
+    id: 88071c62-0eaf-4872-8c18-9cb49bbd0bc2
+    jinja: 'Xhosa: {{ sentence_xho }} = Vietnamese: ||| {{ sentence_vie }}'
     metadata: *id001
-    name: translate-this-asm-zho_simpl
-    reference: Basic translation (Assamese into simplified Chinese)
-  86c01cff-b4fe-474b-8859-dfe18ca6bf9f: !Template
+    name: equals-translation-xho-vie
+    reference: Equals translation (Xhosa into Vietnamese)
+  88da6874-53ed-4e09-8d20-471760aadcb6: !Template
     answer_choices: null
-    id: 86c01cff-b4fe-474b-8859-dfe18ca6bf9f
-    jinja: 'Translate this from English into French: {{ sentence_eng }} ||| {{ sentence_fra
-      }}'
+    id: 88da6874-53ed-4e09-8d20-471760aadcb6
+    jinja: 'French: {{ sentence_fra }} = Lingala: ||| {{ sentence_lin }}'
     metadata: *id001
-    name: translate-this-eng-fra
-    reference: Basic translation (English into French)
-  8794391b-1a19-4a20-bff7-a0d3a62ca703: !Template
+    name: equals-translation-fra-lin
+    reference: Equals translation (French into Lingala)
+  896037d9-52b3-43d0-9fe2-3c150202e14d: !Template
     answer_choices: null
-    id: 8794391b-1a19-4a20-bff7-a0d3a62ca703
-    jinja: 'Translate this from Xhosa into Igbo: {{ sentence_xho }} ||| {{ sentence_ibo
+    id: 896037d9-52b3-43d0-9fe2-3c150202e14d
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = Yoruba: ||| {{ sentence_yor
       }}'
     metadata: *id001
-    name: translate-this-xho-ibo
-    reference: Basic translation (Xhosa into Igbo)
-  87cbcec6-7006-4803-bff7-399a15737bdd: !Template
+    name: equals-translation-spa-yor
+    reference: Equals translation (Latin American Spanish into Yoruba)
+  89952a4d-0946-4896-a3a9-7176276703b3: !Template
     answer_choices: null
-    id: 87cbcec6-7006-4803-bff7-399a15737bdd
-    jinja: 'Translate this from Nepali into Northern Sotho: {{ sentence_npi }} |||
-      {{ sentence_nso }}'
+    id: 89952a4d-0946-4896-a3a9-7176276703b3
+    jinja: 'Arabic: {{ sentence_ara }} = Telugu: ||| {{ sentence_tel }}'
     metadata: *id001
-    name: translate-this-npi-nso
-    reference: Basic translation (Nepali into Northern Sotho)
-  88223f06-15d9-4018-9286-c3e9c9ddeeb9: !Template
+    name: equals-translation-ara-tel
+    reference: Equals translation (Arabic into Telugu)
+  89fb3294-3312-4d52-8143-f627a9c18dab: !Template
     answer_choices: null
-    id: 88223f06-15d9-4018-9286-c3e9c9ddeeb9
-    jinja: 'Translate this from Hindi into Lingala: {{ sentence_hin }} ||| {{ sentence_lin
-      }}'
+    id: 89fb3294-3312-4d52-8143-f627a9c18dab
+    jinja: 'Bengali: {{ sentence_ben }} = Punjabi: ||| {{ sentence_pan }}'
     metadata: *id001
-    name: translate-this-hin-lin
-    reference: Basic translation (Hindi into Lingala)
-  8833e290-aeeb-44a8-96c8-fc094e2967dc: !Template
+    name: equals-translation-ben-pan
+    reference: Equals translation (Bengali into Punjabi)
+  8a360abd-45a4-4feb-8064-9162a3785255: !Template
     answer_choices: null
-    id: 8833e290-aeeb-44a8-96c8-fc094e2967dc
-    jinja: 'Translate this from Wolof into Assamese: {{ sentence_wol }} ||| {{ sentence_asm
+    id: 8a360abd-45a4-4feb-8064-9162a3785255
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = Nepali: ||| {{ sentence_npi
       }}'
     metadata: *id001
-    name: translate-this-wol-asm
-    reference: Basic translation (Wolof into Assamese)
-  8879bfd5-29ac-4e6d-afdd-ac0c086adf04: !Template
+    name: equals-translation-spa-npi
+    reference: Equals translation (Latin American Spanish into Nepali)
+  8afb123b-9fe6-468c-b6e2-afc41d3265c1: !Template
     answer_choices: null
-    id: 8879bfd5-29ac-4e6d-afdd-ac0c086adf04
-    jinja: 'Translate this from Malayalam into Swahili: {{ sentence_mal }} ||| {{
-      sentence_swh }}'
+    id: 8afb123b-9fe6-468c-b6e2-afc41d3265c1
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Lingala: ||| {{ sentence_lin
+      }}'
     metadata: *id001
-    name: translate-this-mal-swh
-    reference: Basic translation (Malayalam into Swahili)
-  8903351b-a5fb-470a-9252-ef3d8c356216: !Template
+    name: equals-translation-zho_simpl-lin
+    reference: Equals translation (simplified Chinese into Lingala)
+  8afb6245-b52a-4bbe-a9cc-4bb3164acd3a: !Template
     answer_choices: null
-    id: 8903351b-a5fb-470a-9252-ef3d8c356216
-    jinja: 'Translate this from Urdu into Indonesian: {{ sentence_urd }} ||| {{ sentence_ind
-      }}'
+    id: 8afb6245-b52a-4bbe-a9cc-4bb3164acd3a
+    jinja: 'Malayalam: {{ sentence_mal }} = Igbo: ||| {{ sentence_ibo }}'
     metadata: *id001
-    name: translate-this-urd-ind
-    reference: Basic translation (Urdu into Indonesian)
-  891fb3df-076f-429c-9a6b-5e6ec2a6b63f: !Template
+    name: equals-translation-mal-ibo
+    reference: Equals translation (Malayalam into Igbo)
+  8b0c37da-730e-4959-80cc-e9583e054baf: !Template
     answer_choices: null
-    id: 891fb3df-076f-429c-9a6b-5e6ec2a6b63f
-    jinja: 'Translate this from Bengali into Nepali: {{ sentence_ben }} ||| {{ sentence_npi
-      }}'
+    id: 8b0c37da-730e-4959-80cc-e9583e054baf
+    jinja: 'Indonesian: {{ sentence_ind }} = Igbo: ||| {{ sentence_ibo }}'
     metadata: *id001
-    name: translate-this-ben-npi
-    reference: Basic translation (Bengali into Nepali)
-  89e11065-30bd-4c98-a9bd-f195cbee9e44: !Template
+    name: equals-translation-ind-ibo
+    reference: Equals translation (Indonesian into Igbo)
+  8b3754fc-e7c7-42bd-b747-467965015a09: !Template
     answer_choices: null
-    id: 89e11065-30bd-4c98-a9bd-f195cbee9e44
-    jinja: 'Translate this from Latin American Spanish into traditional Chinese: {{
-      sentence_spa }} ||| {{ sentence_zho_trad }}'
+    id: 8b3754fc-e7c7-42bd-b747-467965015a09
+    jinja: 'Hindi: {{ sentence_hin }} = Tamil: ||| {{ sentence_tam }}'
     metadata: *id001
-    name: translate-this-spa-zho_trad
-    reference: Basic translation (Latin American Spanish into traditional Chinese)
-  8a8f223a-0ec6-4a81-a2aa-ae1e60a4fc96: !Template
+    name: equals-translation-hin-tam
+    reference: Equals translation (Hindi into Tamil)
+  8b453664-bbae-4db4-a908-05045e5e140e: !Template
     answer_choices: null
-    id: 8a8f223a-0ec6-4a81-a2aa-ae1e60a4fc96
-    jinja: 'Translate this from Zulu into simplified Chinese: {{ sentence_zul }} |||
-      {{ sentence_zho_simpl }}'
+    id: 8b453664-bbae-4db4-a908-05045e5e140e
+    jinja: 'Assamese: {{ sentence_asm }} = Swahili: ||| {{ sentence_swh }}'
     metadata: *id001
-    name: translate-this-zul-zho_simpl
-    reference: Basic translation (Zulu into simplified Chinese)
-  8afce2fe-47e2-4d5c-be4e-0257f68735c4: !Template
+    name: equals-translation-asm-swh
+    reference: Equals translation (Assamese into Swahili)
+  8bee4432-6354-49f9-bdfc-fa0952237ae5: !Template
     answer_choices: null
-    id: 8afce2fe-47e2-4d5c-be4e-0257f68735c4
-    jinja: 'Translate this from Nepali into French: {{ sentence_npi }} ||| {{ sentence_fra
-      }}'
+    id: 8bee4432-6354-49f9-bdfc-fa0952237ae5
+    jinja: 'Urdu: {{ sentence_urd }} = Telugu: ||| {{ sentence_tel }}'
     metadata: *id001
-    name: translate-this-npi-fra
-    reference: Basic translation (Nepali into French)
-  8b424361-4e47-4a1b-b0ee-b392feeefaf0: !Template
+    name: equals-translation-urd-tel
+    reference: Equals translation (Urdu into Telugu)
+  8c0a4d17-0b58-4208-a405-9c37058c91b4: !Template
     answer_choices: null
-    id: 8b424361-4e47-4a1b-b0ee-b392feeefaf0
-    jinja: 'Translate this from Marathi into Hindi: {{ sentence_mar }} ||| {{ sentence_hin
-      }}'
+    id: 8c0a4d17-0b58-4208-a405-9c37058c91b4
+    jinja: 'Igbo: {{ sentence_ibo }} = Oriya: ||| {{ sentence_ory }}'
     metadata: *id001
-    name: translate-this-mar-hin
-    reference: Basic translation (Marathi into Hindi)
-  8b45f28b-1283-4b2c-b899-c3e3f6bbd718: !Template
+    name: equals-translation-ibo-ory
+    reference: Equals translation (Igbo into Oriya)
+  8da552cd-0116-4081-af61-ae18808b20ad: !Template
     answer_choices: null
-    id: 8b45f28b-1283-4b2c-b899-c3e3f6bbd718
-    jinja: 'Translate this from Oriya into Kannada: {{ sentence_ory }} ||| {{ sentence_kan
-      }}'
+    id: 8da552cd-0116-4081-af61-ae18808b20ad
+    jinja: 'Vietnamese: {{ sentence_vie }} = Malayalam: ||| {{ sentence_mal }}'
     metadata: *id001
-    name: translate-this-ory-kan
-    reference: Basic translation (Oriya into Kannada)
-  8c465c4f-3583-463c-a718-b0f2afe87f70: !Template
+    name: equals-translation-vie-mal
+    reference: Equals translation (Vietnamese into Malayalam)
+  8de6bb97-01a7-4c06-b06e-e17b12d0f3be: !Template
     answer_choices: null
-    id: 8c465c4f-3583-463c-a718-b0f2afe87f70
-    jinja: 'Translate this from Wolof into Yoruba: {{ sentence_wol }} ||| {{ sentence_yor
+    id: 8de6bb97-01a7-4c06-b06e-e17b12d0f3be
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = Swahili: ||| {{ sentence_swh
       }}'
     metadata: *id001
-    name: translate-this-wol-yor
-    reference: Basic translation (Wolof into Yoruba)
-  8c6d300b-7fc1-4dcb-b923-4281ad810a48: !Template
+    name: equals-translation-spa-swh
+    reference: Equals translation (Latin American Spanish into Swahili)
+  8e13e8a4-0dc5-4f9e-9982-d1a04a71c7f9: !Template
     answer_choices: null
-    id: 8c6d300b-7fc1-4dcb-b923-4281ad810a48
-    jinja: 'Translate this from Malayalam into Catalan: {{ sentence_mal }} ||| {{
-      sentence_cat }}'
+    id: 8e13e8a4-0dc5-4f9e-9982-d1a04a71c7f9
+    jinja: 'Indonesian: {{ sentence_ind }} = Northern Sotho: ||| {{ sentence_nso }}'
     metadata: *id001
-    name: translate-this-mal-cat
-    reference: Basic translation (Malayalam into Catalan)
-  8ceaeb85-5752-434c-8562-c752fbc05563: !Template
+    name: equals-translation-ind-nso
+    reference: Equals translation (Indonesian into Northern Sotho)
+  8ebbae29-4dd4-4c6d-94d2-53d73a3495cc: !Template
     answer_choices: null
-    id: 8ceaeb85-5752-434c-8562-c752fbc05563
-    jinja: 'Translate this from Kannada into Oriya: {{ sentence_kan }} ||| {{ sentence_ory
-      }}'
+    id: 8ebbae29-4dd4-4c6d-94d2-53d73a3495cc
+    jinja: 'Nepali: {{ sentence_npi }} = Tamil: ||| {{ sentence_tam }}'
     metadata: *id001
-    name: translate-this-kan-ory
-    reference: Basic translation (Kannada into Oriya)
-  8d04dd55-2081-4866-b02e-415bd5666bfc: !Template
+    name: equals-translation-npi-tam
+    reference: Equals translation (Nepali into Tamil)
+  8ef5f60f-d77a-43fb-8230-b1d5596bc534: !Template
     answer_choices: null
-    id: 8d04dd55-2081-4866-b02e-415bd5666bfc
-    jinja: 'Translate this from Telugu into English: {{ sentence_tel }} ||| {{ sentence_eng
+    id: 8ef5f60f-d77a-43fb-8230-b1d5596bc534
+    jinja: 'Bengali: {{ sentence_ben }} = traditional Chinese: ||| {{ sentence_zho_trad
       }}'
     metadata: *id001
-    name: translate-this-tel-eng
-    reference: Basic translation (Telugu into English)
-  8d08f7de-3bb8-4e75-985e-cc8ac92de6c5: !Template
+    name: equals-translation-ben-zho_trad
+    reference: Equals translation (Bengali into traditional Chinese)
+  8f848374-9bd1-4137-b1a0-0e75512187ed: !Template
     answer_choices: null
-    id: 8d08f7de-3bb8-4e75-985e-cc8ac92de6c5
-    jinja: 'Translate this from Yoruba into traditional Chinese: {{ sentence_yor }}
-      ||| {{ sentence_zho_trad }}'
+    id: 8f848374-9bd1-4137-b1a0-0e75512187ed
+    jinja: 'Tamil: {{ sentence_tam }} = Urdu: ||| {{ sentence_urd }}'
     metadata: *id001
-    name: translate-this-yor-zho_trad
-    reference: Basic translation (Yoruba into traditional Chinese)
-  8d6fedea-99aa-4251-b16d-580cf627da96: !Template
+    name: equals-translation-tam-urd
+    reference: Equals translation (Tamil into Urdu)
+  8fcf2e9b-fca3-490b-8af1-0fb1f1771386: !Template
     answer_choices: null
-    id: 8d6fedea-99aa-4251-b16d-580cf627da96
-    jinja: 'Translate this from traditional Chinese into Kannada: {{ sentence_zho_trad
-      }} ||| {{ sentence_kan }}'
+    id: 8fcf2e9b-fca3-490b-8af1-0fb1f1771386
+    jinja: 'Oriya: {{ sentence_ory }} = Northern Sotho: ||| {{ sentence_nso }}'
     metadata: *id001
-    name: translate-this-zho_trad-kan
-    reference: Basic translation (traditional Chinese into Kannada)
-  8e01dfde-b337-4a30-bfbc-d7debb29953b: !Template
+    name: equals-translation-ory-nso
+    reference: Equals translation (Oriya into Northern Sotho)
+  8fdd7067-085b-4e7b-9854-e57a34fd7d52: !Template
     answer_choices: null
-    id: 8e01dfde-b337-4a30-bfbc-d7debb29953b
-    jinja: 'Translate this from Gujarati into Zulu: {{ sentence_guj }} ||| {{ sentence_zul
-      }}'
+    id: 8fdd7067-085b-4e7b-9854-e57a34fd7d52
+    jinja: 'Marathi: {{ sentence_mar }} = Hindi: ||| {{ sentence_hin }}'
     metadata: *id001
-    name: translate-this-guj-zul
-    reference: Basic translation (Gujarati into Zulu)
-  8fabe497-fb08-4080-bfeb-95bd50ce184c: !Template
+    name: equals-translation-mar-hin
+    reference: Equals translation (Marathi into Hindi)
+  8febaa3c-f89d-4552-9de0-dc49f7b86538: !Template
     answer_choices: null
-    id: 8fabe497-fb08-4080-bfeb-95bd50ce184c
-    jinja: 'Translate this from Assamese into Bengali: {{ sentence_asm }} ||| {{ sentence_ben
-      }}'
+    id: 8febaa3c-f89d-4552-9de0-dc49f7b86538
+    jinja: 'Oriya: {{ sentence_ory }} = Arabic: ||| {{ sentence_ara }}'
     metadata: *id001
-    name: translate-this-asm-ben
-    reference: Basic translation (Assamese into Bengali)
-  9067c367-0e43-47d4-89e6-6155263aeb48: !Template
+    name: equals-translation-ory-ara
+    reference: Equals translation (Oriya into Arabic)
+  9030748e-8e89-4409-9d50-c3e1f0f28c60: !Template
     answer_choices: null
-    id: 9067c367-0e43-47d4-89e6-6155263aeb48
-    jinja: 'Translate this from Wolof into Telugu: {{ sentence_wol }} ||| {{ sentence_tel
+    id: 9030748e-8e89-4409-9d50-c3e1f0f28c60
+    jinja: 'Oriya: {{ sentence_ory }} = Brazilian Portuguese: ||| {{ sentence_por
       }}'
     metadata: *id001
-    name: translate-this-wol-tel
-    reference: Basic translation (Wolof into Telugu)
-  90c8b92e-92cc-45f6-8066-56a9090c9b3a: !Template
+    name: equals-translation-ory-por
+    reference: Equals translation (Oriya into Brazilian Portuguese)
+  90813bb4-2fe9-4028-b96a-d269fc350490: !Template
     answer_choices: null
-    id: 90c8b92e-92cc-45f6-8066-56a9090c9b3a
-    jinja: 'Translate this from simplified Chinese into Telugu: {{ sentence_zho_simpl
-      }} ||| {{ sentence_tel }}'
+    id: 90813bb4-2fe9-4028-b96a-d269fc350490
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Nepali: ||| {{ sentence_npi
+      }}'
     metadata: *id001
-    name: translate-this-zho_simpl-tel
-    reference: Basic translation (simplified Chinese into Telugu)
-  9141c5c1-15aa-412b-a680-66789928549c: !Template
+    name: equals-translation-zho_simpl-npi
+    reference: Equals translation (simplified Chinese into Nepali)
+  90888792-204c-49af-9140-7cbd0c7e3da3: !Template
     answer_choices: null
-    id: 9141c5c1-15aa-412b-a680-66789928549c
-    jinja: 'Translate this from Lingala into Tamil: {{ sentence_lin }} ||| {{ sentence_tam
-      }}'
+    id: 90888792-204c-49af-9140-7cbd0c7e3da3
+    jinja: 'Xhosa: {{ sentence_xho }} = Nepali: ||| {{ sentence_npi }}'
     metadata: *id001
-    name: translate-this-lin-tam
-    reference: Basic translation (Lingala into Tamil)
-  9147ad9b-2a29-4473-b539-cd82ae5e337d: !Template
+    name: equals-translation-xho-npi
+    reference: Equals translation (Xhosa into Nepali)
+  90c021a3-c7a8-4298-8c16-44f2da3eecad: !Template
     answer_choices: null
-    id: 9147ad9b-2a29-4473-b539-cd82ae5e337d
-    jinja: 'Translate this from Arabic into Gujarati: {{ sentence_ara }} ||| {{ sentence_guj
+    id: 90c021a3-c7a8-4298-8c16-44f2da3eecad
+    jinja: 'Lingala: {{ sentence_lin }} = simplified Chinese: ||| {{ sentence_zho_simpl
       }}'
     metadata: *id001
-    name: translate-this-ara-guj
-    reference: Basic translation (Arabic into Gujarati)
-  9181fef4-758a-471b-9030-2d18cd6efc72: !Template
+    name: equals-translation-lin-zho_simpl
+    reference: Equals translation (Lingala into simplified Chinese)
+  912d813b-6fc7-413b-b8aa-b13e09f14fa0: !Template
     answer_choices: null
-    id: 9181fef4-758a-471b-9030-2d18cd6efc72
-    jinja: 'Translate this from Indonesian into Marathi: {{ sentence_ind }} ||| {{
-      sentence_mar }}'
+    id: 912d813b-6fc7-413b-b8aa-b13e09f14fa0
+    jinja: 'Lingala: {{ sentence_lin }} = Telugu: ||| {{ sentence_tel }}'
     metadata: *id001
-    name: translate-this-ind-mar
-    reference: Basic translation (Indonesian into Marathi)
-  92017f3b-12a5-4a27-adf4-2f4e233f9244: !Template
+    name: equals-translation-lin-tel
+    reference: Equals translation (Lingala into Telugu)
+  91646401-7788-4907-8e0a-ff3f0a9fe75f: !Template
     answer_choices: null
-    id: 92017f3b-12a5-4a27-adf4-2f4e233f9244
-    jinja: 'Translate this from Wolof into Marathi: {{ sentence_wol }} ||| {{ sentence_mar
-      }}'
+    id: 91646401-7788-4907-8e0a-ff3f0a9fe75f
+    jinja: 'Kannada: {{ sentence_kan }} = Wolof: ||| {{ sentence_wol }}'
     metadata: *id001
-    name: translate-this-wol-mar
-    reference: Basic translation (Wolof into Marathi)
-  92322085-a2d0-4744-b30a-b65b67bf0e47: !Template
+    name: equals-translation-kan-wol
+    reference: Equals translation (Kannada into Wolof)
+  91b0dd1f-07a0-4829-9a84-810596efbb9c: !Template
     answer_choices: null
-    id: 92322085-a2d0-4744-b30a-b65b67bf0e47
-    jinja: 'Translate this from Urdu into Brazilian Portuguese: {{ sentence_urd }}
-      ||| {{ sentence_por }}'
+    id: 91b0dd1f-07a0-4829-9a84-810596efbb9c
+    jinja: 'Punjabi: {{ sentence_pan }} = Urdu: ||| {{ sentence_urd }}'
     metadata: *id001
-    name: translate-this-urd-por
-    reference: Basic translation (Urdu into Brazilian Portuguese)
-  92d02847-a850-45fd-9a68-5fbd0d47f7a5: !Template
+    name: equals-translation-pan-urd
+    reference: Equals translation (Punjabi into Urdu)
+  91c518ba-927c-4a52-8b6e-16da5e76033d: !Template
     answer_choices: null
-    id: 92d02847-a850-45fd-9a68-5fbd0d47f7a5
-    jinja: 'Translate this from Vietnamese into Lingala: {{ sentence_vie }} ||| {{
-      sentence_lin }}'
+    id: 91c518ba-927c-4a52-8b6e-16da5e76033d
+    jinja: 'Wolof: {{ sentence_wol }} = Urdu: ||| {{ sentence_urd }}'
     metadata: *id001
-    name: translate-this-vie-lin
-    reference: Basic translation (Vietnamese into Lingala)
-  932097fa-d879-4ef2-9014-6f9b803f1d4b: !Template
+    name: equals-translation-wol-urd
+    reference: Equals translation (Wolof into Urdu)
+  91f17c1a-28dc-46f3-a239-550e2482c104: !Template
     answer_choices: null
-    id: 932097fa-d879-4ef2-9014-6f9b803f1d4b
-    jinja: 'Translate this from Northern Sotho into Zulu: {{ sentence_nso }} ||| {{
-      sentence_zul }}'
+    id: 91f17c1a-28dc-46f3-a239-550e2482c104
+    jinja: 'Punjabi: {{ sentence_pan }} = Yoruba: ||| {{ sentence_yor }}'
     metadata: *id001
-    name: translate-this-nso-zul
-    reference: Basic translation (Northern Sotho into Zulu)
-  9321e88a-8367-45d4-9d62-c81596a476fb: !Template
+    name: equals-translation-pan-yor
+    reference: Equals translation (Punjabi into Yoruba)
+  92a91aa9-1580-4ac1-8a9f-e8eeb8bee87b: !Template
     answer_choices: null
-    id: 9321e88a-8367-45d4-9d62-c81596a476fb
-    jinja: 'Translate this from Catalan into Bengali: {{ sentence_cat }} ||| {{ sentence_ben
-      }}'
+    id: 92a91aa9-1580-4ac1-8a9f-e8eeb8bee87b
+    jinja: 'Telugu: {{ sentence_tel }} = Indonesian: ||| {{ sentence_ind }}'
     metadata: *id001
-    name: translate-this-cat-ben
-    reference: Basic translation (Catalan into Bengali)
-  934fcb7e-17ee-42a8-b158-2385c50c14e6: !Template
+    name: equals-translation-tel-ind
+    reference: Equals translation (Telugu into Indonesian)
+  933a97e8-d32a-4a53-960f-943d07c16b3e: !Template
     answer_choices: null
-    id: 934fcb7e-17ee-42a8-b158-2385c50c14e6
-    jinja: 'Translate this from Yoruba into Brazilian Portuguese: {{ sentence_yor
-      }} ||| {{ sentence_por }}'
+    id: 933a97e8-d32a-4a53-960f-943d07c16b3e
+    jinja: 'English: {{ sentence_eng }} = Hindi: ||| {{ sentence_hin }}'
     metadata: *id001
-    name: translate-this-yor-por
-    reference: Basic translation (Yoruba into Brazilian Portuguese)
-  935f6de2-109b-47a1-ade6-bb5b04ea1abe: !Template
+    name: equals-translation-eng-hin
+    reference: Equals translation (English into Hindi)
+  93f49fff-c3e2-4f14-923c-e3024a4b0b42: !Template
     answer_choices: null
-    id: 935f6de2-109b-47a1-ade6-bb5b04ea1abe
-    jinja: 'Translate this from Brazilian Portuguese into traditional Chinese: {{
-      sentence_por }} ||| {{ sentence_zho_trad }}'
+    id: 93f49fff-c3e2-4f14-923c-e3024a4b0b42
+    jinja: 'Catalan: {{ sentence_cat }} = Marathi: ||| {{ sentence_mar }}'
     metadata: *id001
-    name: translate-this-por-zho_trad
-    reference: Basic translation (Brazilian Portuguese into traditional Chinese)
-  9367aed8-e89b-49d9-854a-6ae408e613c4: !Template
+    name: equals-translation-cat-mar
+    reference: Equals translation (Catalan into Marathi)
+  93fb7b96-d809-41bc-940e-da7787eba77d: !Template
     answer_choices: null
-    id: 9367aed8-e89b-49d9-854a-6ae408e613c4
-    jinja: 'Translate this from Swahili into Zulu: {{ sentence_swh }} ||| {{ sentence_zul
+    id: 93fb7b96-d809-41bc-940e-da7787eba77d
+    jinja: 'Hindi: {{ sentence_hin }} = traditional Chinese: ||| {{ sentence_zho_trad
       }}'
     metadata: *id001
-    name: translate-this-swh-zul
-    reference: Basic translation (Swahili into Zulu)
-  93aa7b2c-afec-45d3-9371-918025311cd5: !Template
+    name: equals-translation-hin-zho_trad
+    reference: Equals translation (Hindi into traditional Chinese)
+  941a5f00-dabc-48ce-9036-6a01b4951bb7: !Template
     answer_choices: null
-    id: 93aa7b2c-afec-45d3-9371-918025311cd5
-    jinja: 'Translate this from Vietnamese into Indonesian: {{ sentence_vie }} |||
-      {{ sentence_ind }}'
+    id: 941a5f00-dabc-48ce-9036-6a01b4951bb7
+    jinja: 'Nepali: {{ sentence_npi }} = Telugu: ||| {{ sentence_tel }}'
     metadata: *id001
-    name: translate-this-vie-ind
-    reference: Basic translation (Vietnamese into Indonesian)
-  93eb1690-258f-4bc8-8caa-f5465dcda66f: !Template
+    name: equals-translation-npi-tel
+    reference: Equals translation (Nepali into Telugu)
+  94410045-6741-490a-9b99-ead84996d9a9: !Template
     answer_choices: null
-    id: 93eb1690-258f-4bc8-8caa-f5465dcda66f
-    jinja: 'Translate this from Nepali into Lingala: {{ sentence_npi }} ||| {{ sentence_lin
-      }}'
+    id: 94410045-6741-490a-9b99-ead84996d9a9
+    jinja: 'Nepali: {{ sentence_npi }} = Indonesian: ||| {{ sentence_ind }}'
     metadata: *id001
-    name: translate-this-npi-lin
-    reference: Basic translation (Nepali into Lingala)
-  9404ecbc-8651-42cb-8e11-80b183be1ac9: !Template
+    name: equals-translation-npi-ind
+    reference: Equals translation (Nepali into Indonesian)
+  9491ccd6-f4f6-425b-b165-475111cf6c4f: !Template
     answer_choices: null
-    id: 9404ecbc-8651-42cb-8e11-80b183be1ac9
-    jinja: 'Translate this from Tamil into Catalan: {{ sentence_tam }} ||| {{ sentence_cat
-      }}'
+    id: 9491ccd6-f4f6-425b-b165-475111cf6c4f
+    jinja: 'Vietnamese: {{ sentence_vie }} = Zulu: ||| {{ sentence_zul }}'
     metadata: *id001
-    name: translate-this-tam-cat
-    reference: Basic translation (Tamil into Catalan)
-  94407c68-fa3c-4596-b29c-3fcda48c9f50: !Template
+    name: equals-translation-vie-zul
+    reference: Equals translation (Vietnamese into Zulu)
+  95121795-1a9d-42e6-86dc-b65cb44084ff: !Template
     answer_choices: null
-    id: 94407c68-fa3c-4596-b29c-3fcda48c9f50
-    jinja: 'Translate this from English into traditional Chinese: {{ sentence_eng
-      }} ||| {{ sentence_zho_trad }}'
+    id: 95121795-1a9d-42e6-86dc-b65cb44084ff
+    jinja: 'Zulu: {{ sentence_zul }} = Urdu: ||| {{ sentence_urd }}'
     metadata: *id001
-    name: translate-this-eng-zho_trad
-    reference: Basic translation (English into traditional Chinese)
-  9461f1bc-18bb-4d58-a4ee-b8773911c392: !Template
+    name: equals-translation-zul-urd
+    reference: Equals translation (Zulu into Urdu)
+  959a106e-19e4-481e-9493-d80f1c65df88: !Template
     answer_choices: null
-    id: 9461f1bc-18bb-4d58-a4ee-b8773911c392
-    jinja: 'Translate this from simplified Chinese into Nepali: {{ sentence_zho_simpl
-      }} ||| {{ sentence_npi }}'
+    id: 959a106e-19e4-481e-9493-d80f1c65df88
+    jinja: 'Indonesian: {{ sentence_ind }} = Urdu: ||| {{ sentence_urd }}'
     metadata: *id001
-    name: translate-this-zho_simpl-npi
-    reference: Basic translation (simplified Chinese into Nepali)
-  94b1518e-8b8a-4ab2-bbb9-da6e36970345: !Template
+    name: equals-translation-ind-urd
+    reference: Equals translation (Indonesian into Urdu)
+  96482d5c-b955-4b9a-8149-951aa4e00183: !Template
     answer_choices: null
-    id: 94b1518e-8b8a-4ab2-bbb9-da6e36970345
-    jinja: 'Translate this from Tamil into Xhosa: {{ sentence_tam }} ||| {{ sentence_xho
-      }}'
+    id: 96482d5c-b955-4b9a-8149-951aa4e00183
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Urdu: ||| {{ sentence_urd }}'
     metadata: *id001
-    name: translate-this-tam-xho
-    reference: Basic translation (Tamil into Xhosa)
-  94fa1aaa-fc5d-4f98-ba94-c0321f61f805: !Template
+    name: equals-translation-por-urd
+    reference: Equals translation (Brazilian Portuguese into Urdu)
+  9733a46b-5da6-4597-bf79-b62bebf8b61d: !Template
     answer_choices: null
-    id: 94fa1aaa-fc5d-4f98-ba94-c0321f61f805
-    jinja: 'Translate this from French into Lingala: {{ sentence_fra }} ||| {{ sentence_lin
+    id: 9733a46b-5da6-4597-bf79-b62bebf8b61d
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Gujarati: ||| {{ sentence_guj
       }}'
     metadata: *id001
-    name: translate-this-fra-lin
-    reference: Basic translation (French into Lingala)
-  95200ec1-e692-494c-a896-f1173f012554: !Template
+    name: equals-translation-por-guj
+    reference: Equals translation (Brazilian Portuguese into Gujarati)
+  9779a7ef-c6d4-43de-98f9-45285de1350d: !Template
     answer_choices: null
-    id: 95200ec1-e692-494c-a896-f1173f012554
-    jinja: 'Translate this from Nepali into Arabic: {{ sentence_npi }} ||| {{ sentence_ara
+    id: 9779a7ef-c6d4-43de-98f9-45285de1350d
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Swahili: ||| {{ sentence_swh
       }}'
     metadata: *id001
-    name: translate-this-npi-ara
-    reference: Basic translation (Nepali into Arabic)
-  954f0bfe-ef88-486b-ab30-7a3aa00048c9: !Template
+    name: equals-translation-zho_simpl-swh
+    reference: Equals translation (simplified Chinese into Swahili)
+  97a459f2-24cb-42af-bb40-a968ab6ef203: !Template
     answer_choices: null
-    id: 954f0bfe-ef88-486b-ab30-7a3aa00048c9
-    jinja: 'Translate this from Kannada into Latin American Spanish: {{ sentence_kan
-      }} ||| {{ sentence_spa }}'
+    id: 97a459f2-24cb-42af-bb40-a968ab6ef203
+    jinja: 'Catalan: {{ sentence_cat }} = Kannada: ||| {{ sentence_kan }}'
     metadata: *id001
-    name: translate-this-kan-spa
-    reference: Basic translation (Kannada into Latin American Spanish)
-  959193da-5235-488c-a7ac-cd83bce7d27f: !Template
+    name: equals-translation-cat-kan
+    reference: Equals translation (Catalan into Kannada)
+  97cecc39-0c71-435b-b352-0bb5bd8fc474: !Template
     answer_choices: null
-    id: 959193da-5235-488c-a7ac-cd83bce7d27f
-    jinja: 'Translate this from Zulu into Vietnamese: {{ sentence_zul }} ||| {{ sentence_vie
-      }}'
+    id: 97cecc39-0c71-435b-b352-0bb5bd8fc474
+    jinja: 'Wolof: {{ sentence_wol }} = Nepali: ||| {{ sentence_npi }}'
     metadata: *id001
-    name: translate-this-zul-vie
-    reference: Basic translation (Zulu into Vietnamese)
-  959293ca-d440-4125-aaa3-ba0b2ecd33b5: !Template
+    name: equals-translation-wol-npi
+    reference: Equals translation (Wolof into Nepali)
+  9859abe1-e710-45fc-b167-94445b6f40a7: !Template
     answer_choices: null
-    id: 959293ca-d440-4125-aaa3-ba0b2ecd33b5
-    jinja: 'Translate this from Tamil into Zulu: {{ sentence_tam }} ||| {{ sentence_zul
-      }}'
+    id: 9859abe1-e710-45fc-b167-94445b6f40a7
+    jinja: 'Swahili: {{ sentence_swh }} = Tamil: ||| {{ sentence_tam }}'
     metadata: *id001
-    name: translate-this-tam-zul
-    reference: Basic translation (Tamil into Zulu)
-  95e66213-fd07-4a30-ab93-11d4f5aa2386: !Template
+    name: equals-translation-swh-tam
+    reference: Equals translation (Swahili into Tamil)
+  989cd787-4811-4ca8-8903-bf61a1c9f22d: !Template
     answer_choices: null
-    id: 95e66213-fd07-4a30-ab93-11d4f5aa2386
-    jinja: 'Translate this from Brazilian Portuguese into Wolof: {{ sentence_por }}
-      ||| {{ sentence_wol }}'
+    id: 989cd787-4811-4ca8-8903-bf61a1c9f22d
+    jinja: 'French: {{ sentence_fra }} = Assamese: ||| {{ sentence_asm }}'
     metadata: *id001
-    name: translate-this-por-wol
-    reference: Basic translation (Brazilian Portuguese into Wolof)
-  95ebd987-db46-4741-a7bd-6564e2797b3a: !Template
+    name: equals-translation-fra-asm
+    reference: Equals translation (French into Assamese)
+  98bedd8d-3efc-49ec-a62b-d0f0bf8f0462: !Template
     answer_choices: null
-    id: 95ebd987-db46-4741-a7bd-6564e2797b3a
-    jinja: 'Translate this from Latin American Spanish into Catalan: {{ sentence_spa
-      }} ||| {{ sentence_cat }}'
+    id: 98bedd8d-3efc-49ec-a62b-d0f0bf8f0462
+    jinja: 'Telugu: {{ sentence_tel }} = French: ||| {{ sentence_fra }}'
     metadata: *id001
-    name: translate-this-spa-cat
-    reference: Basic translation (Latin American Spanish into Catalan)
-  961c99c7-498a-431e-a8db-cbd1ef01b127: !Template
+    name: equals-translation-tel-fra
+    reference: Equals translation (Telugu into French)
+  98d94d3f-4ccc-473b-9027-f30c5debbce9: !Template
     answer_choices: null
-    id: 961c99c7-498a-431e-a8db-cbd1ef01b127
-    jinja: 'Translate this from Vietnamese into Telugu: {{ sentence_vie }} ||| {{
-      sentence_tel }}'
+    id: 98d94d3f-4ccc-473b-9027-f30c5debbce9
+    jinja: 'Tamil: {{ sentence_tam }} = Swahili: ||| {{ sentence_swh }}'
     metadata: *id001
-    name: translate-this-vie-tel
-    reference: Basic translation (Vietnamese into Telugu)
-  965a7eb0-5612-48d3-aa0a-ab38f6535b28: !Template
+    name: equals-translation-tam-swh
+    reference: Equals translation (Tamil into Swahili)
+  98f4886c-f16b-4fee-baa7-7b58ccb8a3e4: !Template
     answer_choices: null
-    id: 965a7eb0-5612-48d3-aa0a-ab38f6535b28
-    jinja: 'Translate this from Vietnamese into Nepali: {{ sentence_vie }} ||| {{
-      sentence_npi }}'
+    id: 98f4886c-f16b-4fee-baa7-7b58ccb8a3e4
+    jinja: 'Arabic: {{ sentence_ara }} = Latin American Spanish: ||| {{ sentence_spa
+      }}'
     metadata: *id001
-    name: translate-this-vie-npi
-    reference: Basic translation (Vietnamese into Nepali)
-  96be4092-dad7-4185-a12a-a24e5279582c: !Template
+    name: equals-translation-ara-spa
+    reference: Equals translation (Arabic into Latin American Spanish)
+  992bcd69-6ff2-4d9f-a6cc-1f2a0b9b3a5d: !Template
     answer_choices: null
-    id: 96be4092-dad7-4185-a12a-a24e5279582c
-    jinja: 'Translate this from Malayalam into Gujarati: {{ sentence_mal }} ||| {{
-      sentence_guj }}'
+    id: 992bcd69-6ff2-4d9f-a6cc-1f2a0b9b3a5d
+    jinja: 'Malayalam: {{ sentence_mal }} = Wolof: ||| {{ sentence_wol }}'
     metadata: *id001
-    name: translate-this-mal-guj
-    reference: Basic translation (Malayalam into Gujarati)
-  97396f78-79d0-492d-adc1-c7f7c771a570: !Template
+    name: equals-translation-mal-wol
+    reference: Equals translation (Malayalam into Wolof)
+  9943f209-8af3-43de-9dc9-f09fcf785667: !Template
     answer_choices: null
-    id: 97396f78-79d0-492d-adc1-c7f7c771a570
-    jinja: 'Translate this from Brazilian Portuguese into Indonesian: {{ sentence_por
-      }} ||| {{ sentence_ind }}'
+    id: 9943f209-8af3-43de-9dc9-f09fcf785667
+    jinja: 'Punjabi: {{ sentence_pan }} = Wolof: ||| {{ sentence_wol }}'
     metadata: *id001
-    name: translate-this-por-ind
-    reference: Basic translation (Brazilian Portuguese into Indonesian)
-  973b6567-d4ec-44b8-9c8e-d37ea9acc0c2: !Template
+    name: equals-translation-pan-wol
+    reference: Equals translation (Punjabi into Wolof)
+  9957bafb-cc1d-4e78-bcb8-c56f22fe306a: !Template
     answer_choices: null
-    id: 973b6567-d4ec-44b8-9c8e-d37ea9acc0c2
-    jinja: 'Translate this from Catalan into Malayalam: {{ sentence_cat }} ||| {{
-      sentence_mal }}'
+    id: 9957bafb-cc1d-4e78-bcb8-c56f22fe306a
+    jinja: 'Indonesian: {{ sentence_ind }} = English: ||| {{ sentence_eng }}'
     metadata: *id001
-    name: translate-this-cat-mal
-    reference: Basic translation (Catalan into Malayalam)
-  9774e6eb-a016-4e6e-b78d-8d298cdc9177: !Template
+    name: equals-translation-ind-eng
+    reference: Equals translation (Indonesian into English)
+  995fdf5a-51c9-42a6-8414-13a2bdc4babf: !Template
     answer_choices: null
-    id: 9774e6eb-a016-4e6e-b78d-8d298cdc9177
-    jinja: 'Translate this from Nepali into Wolof: {{ sentence_npi }} ||| {{ sentence_wol
-      }}'
+    id: 995fdf5a-51c9-42a6-8414-13a2bdc4babf
+    jinja: 'Yoruba: {{ sentence_yor }} = Telugu: ||| {{ sentence_tel }}'
     metadata: *id001
-    name: translate-this-npi-wol
-    reference: Basic translation (Nepali into Wolof)
-  9792b496-7803-4803-9b18-7e1fd0e3805c: !Template
+    name: equals-translation-yor-tel
+    reference: Equals translation (Yoruba into Telugu)
+  9993cea2-fa17-40f3-9aa6-ceb7ab1f9d63: !Template
     answer_choices: null
-    id: 9792b496-7803-4803-9b18-7e1fd0e3805c
-    jinja: 'Translate this from Urdu into Northern Sotho: {{ sentence_urd }} ||| {{
-      sentence_nso }}'
+    id: 9993cea2-fa17-40f3-9aa6-ceb7ab1f9d63
+    jinja: 'Catalan: {{ sentence_cat }} = Punjabi: ||| {{ sentence_pan }}'
     metadata: *id001
-    name: translate-this-urd-nso
-    reference: Basic translation (Urdu into Northern Sotho)
-  97b24bd3-f75a-447d-a9cc-5b790aee5860: !Template
+    name: equals-translation-cat-pan
+    reference: Equals translation (Catalan into Punjabi)
+  99bca63f-4fc8-4d71-8ebb-b276c8a46a66: !Template
     answer_choices: null
-    id: 97b24bd3-f75a-447d-a9cc-5b790aee5860
-    jinja: 'Translate this from Xhosa into Zulu: {{ sentence_xho }} ||| {{ sentence_zul
+    id: 99bca63f-4fc8-4d71-8ebb-b276c8a46a66
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Urdu: ||| {{ sentence_urd
       }}'
     metadata: *id001
-    name: translate-this-xho-zul
-    reference: Basic translation (Xhosa into Zulu)
-  98674636-4842-45e1-a92f-d122a587183f: !Template
+    name: equals-translation-zho_trad-urd
+    reference: Equals translation (traditional Chinese into Urdu)
+  9aa04571-1802-4def-9822-0ef85637fde1: !Template
     answer_choices: null
-    id: 98674636-4842-45e1-a92f-d122a587183f
-    jinja: 'Translate this from Brazilian Portuguese into Vietnamese: {{ sentence_por
-      }} ||| {{ sentence_vie }}'
+    id: 9aa04571-1802-4def-9822-0ef85637fde1
+    jinja: 'Northern Sotho: {{ sentence_nso }} = Zulu: ||| {{ sentence_zul }}'
     metadata: *id001
-    name: translate-this-por-vie
-    reference: Basic translation (Brazilian Portuguese into Vietnamese)
-  988f32b6-4ac9-4cc2-896c-1a958f7f1442: !Template
+    name: equals-translation-nso-zul
+    reference: Equals translation (Northern Sotho into Zulu)
+  9acec480-c963-4615-83c5-30243b8d3f56: !Template
     answer_choices: null
-    id: 988f32b6-4ac9-4cc2-896c-1a958f7f1442
-    jinja: 'Translate this from Swahili into Lingala: {{ sentence_swh }} ||| {{ sentence_lin
-      }}'
+    id: 9acec480-c963-4615-83c5-30243b8d3f56
+    jinja: 'Telugu: {{ sentence_tel }} = Catalan: ||| {{ sentence_cat }}'
     metadata: *id001
-    name: translate-this-swh-lin
-    reference: Basic translation (Swahili into Lingala)
-  989432fc-0256-4eff-b195-a53f1c781574: !Template
+    name: equals-translation-tel-cat
+    reference: Equals translation (Telugu into Catalan)
+  9b15a2c7-64a3-44b0-8a84-4ad04876cb8f: !Template
     answer_choices: null
-    id: 989432fc-0256-4eff-b195-a53f1c781574
-    jinja: 'Translate this from Bengali into Tamil: {{ sentence_ben }} ||| {{ sentence_tam
-      }}'
+    id: 9b15a2c7-64a3-44b0-8a84-4ad04876cb8f
+    jinja: 'Lingala: {{ sentence_lin }} = Zulu: ||| {{ sentence_zul }}'
     metadata: *id001
-    name: translate-this-ben-tam
-    reference: Basic translation (Bengali into Tamil)
-  98b95025-a9a6-423f-8f5e-99fef1ec8933: !Template
+    name: equals-translation-lin-zul
+    reference: Equals translation (Lingala into Zulu)
+  9b8888b2-f762-45b7-8d2d-aba70566466d: !Template
     answer_choices: null
-    id: 98b95025-a9a6-423f-8f5e-99fef1ec8933
-    jinja: 'Translate this from Brazilian Portuguese into Arabic: {{ sentence_por
-      }} ||| {{ sentence_ara }}'
+    id: 9b8888b2-f762-45b7-8d2d-aba70566466d
+    jinja: 'Igbo: {{ sentence_ibo }} = Swahili: ||| {{ sentence_swh }}'
     metadata: *id001
-    name: translate-this-por-ara
-    reference: Basic translation (Brazilian Portuguese into Arabic)
-  98baf538-169e-411e-8ea1-21106b8ddfaf: !Template
+    name: equals-translation-ibo-swh
+    reference: Equals translation (Igbo into Swahili)
+  9b9b8ec1-1a8f-4b45-a18f-dba5a239fdf5: !Template
     answer_choices: null
-    id: 98baf538-169e-411e-8ea1-21106b8ddfaf
-    jinja: 'Translate this from Indonesian into Gujarati: {{ sentence_ind }} ||| {{
-      sentence_guj }}'
+    id: 9b9b8ec1-1a8f-4b45-a18f-dba5a239fdf5
+    jinja: 'Indonesian: {{ sentence_ind }} = Marathi: ||| {{ sentence_mar }}'
     metadata: *id001
-    name: translate-this-ind-guj
-    reference: Basic translation (Indonesian into Gujarati)
-  9913b24d-0c4b-4555-b378-440570b17451: !Template
+    name: equals-translation-ind-mar
+    reference: Equals translation (Indonesian into Marathi)
+  9bbb57a1-21e7-4f8b-84af-bc461fb5f2e5: !Template
     answer_choices: null
-    id: 9913b24d-0c4b-4555-b378-440570b17451
-    jinja: 'Translate this from Urdu into Lingala: {{ sentence_urd }} ||| {{ sentence_lin
-      }}'
+    id: 9bbb57a1-21e7-4f8b-84af-bc461fb5f2e5
+    jinja: 'Assamese: {{ sentence_asm }} = Igbo: ||| {{ sentence_ibo }}'
     metadata: *id001
-    name: translate-this-urd-lin
-    reference: Basic translation (Urdu into Lingala)
-  99d1798b-17ba-424b-9bd8-56ab4140f2f6: !Template
+    name: equals-translation-asm-ibo
+    reference: Equals translation (Assamese into Igbo)
+  9bca3515-7990-4bed-b484-b953dd3b33a4: !Template
     answer_choices: null
-    id: 99d1798b-17ba-424b-9bd8-56ab4140f2f6
-    jinja: 'Translate this from Bengali into Yoruba: {{ sentence_ben }} ||| {{ sentence_yor
-      }}'
+    id: 9bca3515-7990-4bed-b484-b953dd3b33a4
+    jinja: 'Kannada: {{ sentence_kan }} = Hindi: ||| {{ sentence_hin }}'
     metadata: *id001
-    name: translate-this-ben-yor
-    reference: Basic translation (Bengali into Yoruba)
-  9a2be627-877e-4e04-9b81-011da2dc0f57: !Template
+    name: equals-translation-kan-hin
+    reference: Equals translation (Kannada into Hindi)
+  9c328626-e16c-4973-804d-85cbf884be85: !Template
     answer_choices: null
-    id: 9a2be627-877e-4e04-9b81-011da2dc0f57
-    jinja: 'Translate this from Swahili into Catalan: {{ sentence_swh }} ||| {{ sentence_cat
-      }}'
+    id: 9c328626-e16c-4973-804d-85cbf884be85
+    jinja: 'Gujarati: {{ sentence_guj }} = Telugu: ||| {{ sentence_tel }}'
     metadata: *id001
-    name: translate-this-swh-cat
-    reference: Basic translation (Swahili into Catalan)
-  9a72a33a-2216-44a9-aa06-c0c2584ea158: !Template
+    name: equals-translation-guj-tel
+    reference: Equals translation (Gujarati into Telugu)
+  9c3358e6-d0b3-453c-a5e0-b7ddb30bab4f: !Template
     answer_choices: null
-    id: 9a72a33a-2216-44a9-aa06-c0c2584ea158
-    jinja: 'Translate this from Vietnamese into Assamese: {{ sentence_vie }} ||| {{
-      sentence_asm }}'
+    id: 9c3358e6-d0b3-453c-a5e0-b7ddb30bab4f
+    jinja: 'Punjabi: {{ sentence_pan }} = Indonesian: ||| {{ sentence_ind }}'
     metadata: *id001
-    name: translate-this-vie-asm
-    reference: Basic translation (Vietnamese into Assamese)
-  9a901179-5723-4e19-ab26-b8469d50cbf8: !Template
+    name: equals-translation-pan-ind
+    reference: Equals translation (Punjabi into Indonesian)
+  9cc8ae6b-5cae-4613-bea6-deb3bd6dffee: !Template
     answer_choices: null
-    id: 9a901179-5723-4e19-ab26-b8469d50cbf8
-    jinja: 'Translate this from French into Telugu: {{ sentence_fra }} ||| {{ sentence_tel
-      }}'
+    id: 9cc8ae6b-5cae-4613-bea6-deb3bd6dffee
+    jinja: 'Marathi: {{ sentence_mar }} = Bengali: ||| {{ sentence_ben }}'
     metadata: *id001
-    name: translate-this-fra-tel
-    reference: Basic translation (French into Telugu)
-  9acad58e-1465-43f7-b90c-1288339494d5: !Template
+    name: equals-translation-mar-ben
+    reference: Equals translation (Marathi into Bengali)
+  9d0bc474-940d-4eb8-88de-f56d6cfad8e6: !Template
     answer_choices: null
-    id: 9acad58e-1465-43f7-b90c-1288339494d5
-    jinja: 'Translate this from French into Bengali: {{ sentence_fra }} ||| {{ sentence_ben
-      }}'
+    id: 9d0bc474-940d-4eb8-88de-f56d6cfad8e6
+    jinja: 'Marathi: {{ sentence_mar }} = Urdu: ||| {{ sentence_urd }}'
     metadata: *id001
-    name: translate-this-fra-ben
-    reference: Basic translation (French into Bengali)
-  9b02b896-a217-4731-b8ad-853c08686d79: !Template
+    name: equals-translation-mar-urd
+    reference: Equals translation (Marathi into Urdu)
+  9d184edb-d1e2-4832-b1f9-65db7a433a0f: !Template
     answer_choices: null
-    id: 9b02b896-a217-4731-b8ad-853c08686d79
-    jinja: 'Translate this from Telugu into Vietnamese: {{ sentence_tel }} ||| {{
-      sentence_vie }}'
+    id: 9d184edb-d1e2-4832-b1f9-65db7a433a0f
+    jinja: 'Tamil: {{ sentence_tam }} = Latin American Spanish: ||| {{ sentence_spa
+      }}'
     metadata: *id001
-    name: translate-this-tel-vie
-    reference: Basic translation (Telugu into Vietnamese)
-  9c0a0f4b-65ea-4e95-84c7-006e916012ad: !Template
+    name: equals-translation-tam-spa
+    reference: Equals translation (Tamil into Latin American Spanish)
+  9d6e1218-08c3-4af0-a406-df29b8809569: !Template
     answer_choices: null
-    id: 9c0a0f4b-65ea-4e95-84c7-006e916012ad
-    jinja: 'Translate this from Northern Sotho into Yoruba: {{ sentence_nso }} |||
-      {{ sentence_yor }}'
+    id: 9d6e1218-08c3-4af0-a406-df29b8809569
+    jinja: 'Xhosa: {{ sentence_xho }} = Zulu: ||| {{ sentence_zul }}'
     metadata: *id001
-    name: translate-this-nso-yor
-    reference: Basic translation (Northern Sotho into Yoruba)
-  9c62fe3e-62ea-45b6-8f95-1c2ec7561f73: !Template
+    name: equals-translation-xho-zul
+    reference: Equals translation (Xhosa into Zulu)
+  9e1e0213-c257-4874-9525-34b1b5334c57: !Template
     answer_choices: null
-    id: 9c62fe3e-62ea-45b6-8f95-1c2ec7561f73
-    jinja: 'Translate this from Marathi into Malayalam: {{ sentence_mar }} ||| {{
-      sentence_mal }}'
+    id: 9e1e0213-c257-4874-9525-34b1b5334c57
+    jinja: 'Telugu: {{ sentence_tel }} = Nepali: ||| {{ sentence_npi }}'
     metadata: *id001
-    name: translate-this-mar-mal
-    reference: Basic translation (Marathi into Malayalam)
-  9c660ad0-c874-41a8-8721-891021c11d6e: !Template
+    name: equals-translation-tel-npi
+    reference: Equals translation (Telugu into Nepali)
+  9e2b7f91-13b9-4fce-ab91-cd268b692743: !Template
     answer_choices: null
-    id: 9c660ad0-c874-41a8-8721-891021c11d6e
-    jinja: 'Translate this from Tamil into Arabic: {{ sentence_tam }} ||| {{ sentence_ara
-      }}'
+    id: 9e2b7f91-13b9-4fce-ab91-cd268b692743
+    jinja: 'Arabic: {{ sentence_ara }} = French: ||| {{ sentence_fra }}'
     metadata: *id001
-    name: translate-this-tam-ara
-    reference: Basic translation (Tamil into Arabic)
-  9c6d1f25-3864-4378-b33a-344bd8f7ac84: !Template
+    name: equals-translation-ara-fra
+    reference: Equals translation (Arabic into French)
+  9e3336d1-3ade-4b4c-9889-402de04813bc: !Template
     answer_choices: null
-    id: 9c6d1f25-3864-4378-b33a-344bd8f7ac84
-    jinja: 'Translate this from Vietnamese into Zulu: {{ sentence_vie }} ||| {{ sentence_zul
-      }}'
+    id: 9e3336d1-3ade-4b4c-9889-402de04813bc
+    jinja: 'English: {{ sentence_eng }} = Indonesian: ||| {{ sentence_ind }}'
     metadata: *id001
-    name: translate-this-vie-zul
-    reference: Basic translation (Vietnamese into Zulu)
-  9d8b53b2-6500-4420-9c17-9345d800bf88: !Template
+    name: equals-translation-eng-ind
+    reference: Equals translation (English into Indonesian)
+  9e343ea4-f3b5-4924-b5ca-6483e3ad9394: !Template
     answer_choices: null
-    id: 9d8b53b2-6500-4420-9c17-9345d800bf88
-    jinja: 'Translate this from Catalan into Arabic: {{ sentence_cat }} ||| {{ sentence_ara
-      }}'
+    id: 9e343ea4-f3b5-4924-b5ca-6483e3ad9394
+    jinja: 'Nepali: {{ sentence_npi }} = Vietnamese: ||| {{ sentence_vie }}'
     metadata: *id001
-    name: translate-this-cat-ara
-    reference: Basic translation (Catalan into Arabic)
-  9e86735a-2ef1-4f51-997f-bd2f2e9547b1: !Template
+    name: equals-translation-npi-vie
+    reference: Equals translation (Nepali into Vietnamese)
+  9e44c599-082d-4b77-80d1-aedda8eb5347: !Template
     answer_choices: null
-    id: 9e86735a-2ef1-4f51-997f-bd2f2e9547b1
-    jinja: 'Translate this from Zulu into Urdu: {{ sentence_zul }} ||| {{ sentence_urd
-      }}'
+    id: 9e44c599-082d-4b77-80d1-aedda8eb5347
+    jinja: 'Nepali: {{ sentence_npi }} = Punjabi: ||| {{ sentence_pan }}'
     metadata: *id001
-    name: translate-this-zul-urd
-    reference: Basic translation (Zulu into Urdu)
-  9e8fd56a-911e-4b69-8602-ceb3a0de1b0c: !Template
+    name: equals-translation-npi-pan
+    reference: Equals translation (Nepali into Punjabi)
+  9e44dfb7-72fa-45d0-a431-61846e3aac21: !Template
     answer_choices: null
-    id: 9e8fd56a-911e-4b69-8602-ceb3a0de1b0c
-    jinja: 'Translate this from Nepali into Igbo: {{ sentence_npi }} ||| {{ sentence_ibo
-      }}'
+    id: 9e44dfb7-72fa-45d0-a431-61846e3aac21
+    jinja: 'Telugu: {{ sentence_tel }} = Marathi: ||| {{ sentence_mar }}'
     metadata: *id001
-    name: translate-this-npi-ibo
-    reference: Basic translation (Nepali into Igbo)
-  9ead9648-6b5d-4acb-8fee-755c1d692018: !Template
+    name: equals-translation-tel-mar
+    reference: Equals translation (Telugu into Marathi)
+  9eb7d38f-ee09-4115-9e4e-68e0d4e3f1dc: !Template
     answer_choices: null
-    id: 9ead9648-6b5d-4acb-8fee-755c1d692018
-    jinja: 'Translate this from Arabic into Indonesian: {{ sentence_ara }} ||| {{
-      sentence_ind }}'
+    id: 9eb7d38f-ee09-4115-9e4e-68e0d4e3f1dc
+    jinja: 'Swahili: {{ sentence_swh }} = Vietnamese: ||| {{ sentence_vie }}'
     metadata: *id001
-    name: translate-this-ara-ind
-    reference: Basic translation (Arabic into Indonesian)
-  9f4536b6-30c8-47f8-b6be-2fde89ac30f6: !Template
+    name: equals-translation-swh-vie
+    reference: Equals translation (Swahili into Vietnamese)
+  9f0ac88d-16be-4446-ad43-3a400b62391e: !Template
     answer_choices: null
-    id: 9f4536b6-30c8-47f8-b6be-2fde89ac30f6
-    jinja: 'Translate this from Assamese into Telugu: {{ sentence_asm }} ||| {{ sentence_tel
-      }}'
+    id: 9f0ac88d-16be-4446-ad43-3a400b62391e
+    jinja: 'Tamil: {{ sentence_tam }} = Arabic: ||| {{ sentence_ara }}'
     metadata: *id001
-    name: translate-this-asm-tel
-    reference: Basic translation (Assamese into Telugu)
-  a044d977-c241-4120-af85-ac2ee3cd728f: !Template
+    name: equals-translation-tam-ara
+    reference: Equals translation (Tamil into Arabic)
+  a028e0e7-ed8d-472a-a6c4-116af2ef0df1: !Template
     answer_choices: null
-    id: a044d977-c241-4120-af85-ac2ee3cd728f
-    jinja: 'Translate this from Nepali into English: {{ sentence_npi }} ||| {{ sentence_eng
+    id: a028e0e7-ed8d-472a-a6c4-116af2ef0df1
+    jinja: 'Wolof: {{ sentence_wol }} = simplified Chinese: ||| {{ sentence_zho_simpl
       }}'
     metadata: *id001
-    name: translate-this-npi-eng
-    reference: Basic translation (Nepali into English)
-  a047c265-8ab4-4a35-8afb-943124b95628: !Template
+    name: equals-translation-wol-zho_simpl
+    reference: Equals translation (Wolof into simplified Chinese)
+  a0432641-014a-4675-bc34-3978a9c3a9ed: !Template
     answer_choices: null
-    id: a047c265-8ab4-4a35-8afb-943124b95628
-    jinja: 'Translate this from Arabic into Xhosa: {{ sentence_ara }} ||| {{ sentence_xho
-      }}'
+    id: a0432641-014a-4675-bc34-3978a9c3a9ed
+    jinja: 'Yoruba: {{ sentence_yor }} = Punjabi: ||| {{ sentence_pan }}'
     metadata: *id001
-    name: translate-this-ara-xho
-    reference: Basic translation (Arabic into Xhosa)
-  a08f964e-8640-4dbe-bf3d-727eec5795fc: !Template
+    name: equals-translation-yor-pan
+    reference: Equals translation (Yoruba into Punjabi)
+  a06cb3cd-c715-4a51-a7d7-069e01159b4b: !Template
     answer_choices: null
-    id: a08f964e-8640-4dbe-bf3d-727eec5795fc
-    jinja: 'Translate this from Swahili into Xhosa: {{ sentence_swh }} ||| {{ sentence_xho
-      }}'
+    id: a06cb3cd-c715-4a51-a7d7-069e01159b4b
+    jinja: 'Wolof: {{ sentence_wol }} = Indonesian: ||| {{ sentence_ind }}'
     metadata: *id001
-    name: translate-this-swh-xho
-    reference: Basic translation (Swahili into Xhosa)
-  a1418420-da8d-477a-a041-16e4794c616b: !Template
+    name: equals-translation-wol-ind
+    reference: Equals translation (Wolof into Indonesian)
+  a0adaedf-195f-4ace-bb76-4e3d2c1f4240: !Template
     answer_choices: null
-    id: a1418420-da8d-477a-a041-16e4794c616b
-    jinja: 'Translate this from Telugu into Hindi: {{ sentence_tel }} ||| {{ sentence_hin
-      }}'
+    id: a0adaedf-195f-4ace-bb76-4e3d2c1f4240
+    jinja: 'Kannada: {{ sentence_kan }} = Bengali: ||| {{ sentence_ben }}'
     metadata: *id001
-    name: translate-this-tel-hin
-    reference: Basic translation (Telugu into Hindi)
-  a2911c7f-2f1c-43b1-b29b-693294dfc767: !Template
+    name: equals-translation-kan-ben
+    reference: Equals translation (Kannada into Bengali)
+  a0fc5319-b326-4f72-974d-170e7179ed2b: !Template
     answer_choices: null
-    id: a2911c7f-2f1c-43b1-b29b-693294dfc767
-    jinja: 'Translate this from Gujarati into simplified Chinese: {{ sentence_guj
-      }} ||| {{ sentence_zho_simpl }}'
+    id: a0fc5319-b326-4f72-974d-170e7179ed2b
+    jinja: 'Hindi: {{ sentence_hin }} = Malayalam: ||| {{ sentence_mal }}'
     metadata: *id001
-    name: translate-this-guj-zho_simpl
-    reference: Basic translation (Gujarati into simplified Chinese)
-  a29285fa-e6e8-465a-84ed-815f3a528da4: !Template
+    name: equals-translation-hin-mal
+    reference: Equals translation (Hindi into Malayalam)
+  a168ed7a-52f2-4bca-b948-85e36e99bd21: !Template
     answer_choices: null
-    id: a29285fa-e6e8-465a-84ed-815f3a528da4
-    jinja: 'Translate this from English into Igbo: {{ sentence_eng }} ||| {{ sentence_ibo
-      }}'
+    id: a168ed7a-52f2-4bca-b948-85e36e99bd21
+    jinja: 'Assamese: {{ sentence_asm }} = Yoruba: ||| {{ sentence_yor }}'
     metadata: *id001
-    name: translate-this-eng-ibo
-    reference: Basic translation (English into Igbo)
-  a296cea6-93f1-4568-8ced-15883cacbf80: !Template
+    name: equals-translation-asm-yor
+    reference: Equals translation (Assamese into Yoruba)
+  a1814516-565f-464f-a61b-865d3f917baf: !Template
     answer_choices: null
-    id: a296cea6-93f1-4568-8ced-15883cacbf80
-    jinja: 'Translate this from Wolof into French: {{ sentence_wol }} ||| {{ sentence_fra
-      }}'
+    id: a1814516-565f-464f-a61b-865d3f917baf
+    jinja: 'Arabic: {{ sentence_ara }} = Swahili: ||| {{ sentence_swh }}'
     metadata: *id001
-    name: translate-this-wol-fra
-    reference: Basic translation (Wolof into French)
-  a2b64381-acc9-414b-b618-5b4f19e158de: !Template
+    name: equals-translation-ara-swh
+    reference: Equals translation (Arabic into Swahili)
+  a19cf3b6-224e-473d-a710-9e619a52a5ce: !Template
     answer_choices: null
-    id: a2b64381-acc9-414b-b618-5b4f19e158de
-    jinja: 'Translate this from Oriya into Zulu: {{ sentence_ory }} ||| {{ sentence_zul
-      }}'
+    id: a19cf3b6-224e-473d-a710-9e619a52a5ce
+    jinja: 'Catalan: {{ sentence_cat }} = Hindi: ||| {{ sentence_hin }}'
     metadata: *id001
-    name: translate-this-ory-zul
-    reference: Basic translation (Oriya into Zulu)
-  a2ce0109-9a56-4344-9e77-3bfaaa4acaaf: !Template
+    name: equals-translation-cat-hin
+    reference: Equals translation (Catalan into Hindi)
+  a1bab907-1f0a-45ed-a9e8-01cf54721773: !Template
     answer_choices: null
-    id: a2ce0109-9a56-4344-9e77-3bfaaa4acaaf
-    jinja: 'Translate this from traditional Chinese into Hindi: {{ sentence_zho_trad
-      }} ||| {{ sentence_hin }}'
+    id: a1bab907-1f0a-45ed-a9e8-01cf54721773
+    jinja: 'Punjabi: {{ sentence_pan }} = Zulu: ||| {{ sentence_zul }}'
     metadata: *id001
-    name: translate-this-zho_trad-hin
-    reference: Basic translation (traditional Chinese into Hindi)
-  a3045879-e92e-4804-8ff1-2003938e89b9: !Template
+    name: equals-translation-pan-zul
+    reference: Equals translation (Punjabi into Zulu)
+  a28d4efb-7c64-4902-94ee-154febcc904f: !Template
     answer_choices: null
-    id: a3045879-e92e-4804-8ff1-2003938e89b9
-    jinja: 'Translate this from Zulu into Northern Sotho: {{ sentence_zul }} ||| {{
-      sentence_nso }}'
+    id: a28d4efb-7c64-4902-94ee-154febcc904f
+    jinja: 'Wolof: {{ sentence_wol }} = Hindi: ||| {{ sentence_hin }}'
     metadata: *id001
-    name: translate-this-zul-nso
-    reference: Basic translation (Zulu into Northern Sotho)
-  a316506e-8418-44e3-8c3e-75a10e528800: !Template
+    name: equals-translation-wol-hin
+    reference: Equals translation (Wolof into Hindi)
+  a2e083be-b1f6-441c-a829-2496647cbaf6: !Template
     answer_choices: null
-    id: a316506e-8418-44e3-8c3e-75a10e528800
-    jinja: 'Translate this from Indonesian into traditional Chinese: {{ sentence_ind
-      }} ||| {{ sentence_zho_trad }}'
+    id: a2e083be-b1f6-441c-a829-2496647cbaf6
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Northern Sotho: ||| {{
+      sentence_nso }}'
     metadata: *id001
-    name: translate-this-ind-zho_trad
-    reference: Basic translation (Indonesian into traditional Chinese)
-  a3605953-bfb7-44e2-b296-e43881340f7c: !Template
+    name: equals-translation-zho_trad-nso
+    reference: Equals translation (traditional Chinese into Northern Sotho)
+  a3337d65-6d84-4408-87d5-4421959b23e9: !Template
     answer_choices: null
-    id: a3605953-bfb7-44e2-b296-e43881340f7c
-    jinja: 'Translate this from Oriya into Vietnamese: {{ sentence_ory }} ||| {{ sentence_vie
-      }}'
+    id: a3337d65-6d84-4408-87d5-4421959b23e9
+    jinja: 'Malayalam: {{ sentence_mal }} = Lingala: ||| {{ sentence_lin }}'
     metadata: *id001
-    name: translate-this-ory-vie
-    reference: Basic translation (Oriya into Vietnamese)
-  a36b3e95-a2f1-4b15-8007-b13c77933e8d: !Template
+    name: equals-translation-mal-lin
+    reference: Equals translation (Malayalam into Lingala)
+  a369af40-f9e0-4138-afce-d4be9162865d: !Template
     answer_choices: null
-    id: a36b3e95-a2f1-4b15-8007-b13c77933e8d
-    jinja: 'Translate this from Gujarati into Swahili: {{ sentence_guj }} ||| {{ sentence_swh
-      }}'
+    id: a369af40-f9e0-4138-afce-d4be9162865d
+    jinja: 'Urdu: {{ sentence_urd }} = Bengali: ||| {{ sentence_ben }}'
     metadata: *id001
-    name: translate-this-guj-swh
-    reference: Basic translation (Gujarati into Swahili)
-  a39ac5e6-2cdd-4146-9cbe-a344cdef8b19: !Template
+    name: equals-translation-urd-ben
+    reference: Equals translation (Urdu into Bengali)
+  a3feac17-4d3f-40c5-ab6a-cb66230edf5e: !Template
     answer_choices: null
-    id: a39ac5e6-2cdd-4146-9cbe-a344cdef8b19
-    jinja: 'Translate this from Oriya into Gujarati: {{ sentence_ory }} ||| {{ sentence_guj
-      }}'
+    id: a3feac17-4d3f-40c5-ab6a-cb66230edf5e
+    jinja: 'French: {{ sentence_fra }} = Indonesian: ||| {{ sentence_ind }}'
     metadata: *id001
-    name: translate-this-ory-guj
-    reference: Basic translation (Oriya into Gujarati)
-  a3da37ff-ffeb-4e14-89bc-52c3559af59e: !Template
+    name: equals-translation-fra-ind
+    reference: Equals translation (French into Indonesian)
+  a411c8f8-138c-412f-b3bc-b66e79808171: !Template
     answer_choices: null
-    id: a3da37ff-ffeb-4e14-89bc-52c3559af59e
-    jinja: 'Translate this from traditional Chinese into Arabic: {{ sentence_zho_trad
-      }} ||| {{ sentence_ara }}'
+    id: a411c8f8-138c-412f-b3bc-b66e79808171
+    jinja: 'Marathi: {{ sentence_mar }} = English: ||| {{ sentence_eng }}'
     metadata: *id001
-    name: translate-this-zho_trad-ara
-    reference: Basic translation (traditional Chinese into Arabic)
-  a40c071f-ed98-46f5-a684-6ee155deef38: !Template
+    name: equals-translation-mar-eng
+    reference: Equals translation (Marathi into English)
+  a4d05cba-55b6-4e09-97e1-f55805be43a4: !Template
     answer_choices: null
-    id: a40c071f-ed98-46f5-a684-6ee155deef38
-    jinja: 'Translate this from Urdu into Catalan: {{ sentence_urd }} ||| {{ sentence_cat
-      }}'
+    id: a4d05cba-55b6-4e09-97e1-f55805be43a4
+    jinja: 'Assamese: {{ sentence_asm }} = Kannada: ||| {{ sentence_kan }}'
     metadata: *id001
-    name: translate-this-urd-cat
-    reference: Basic translation (Urdu into Catalan)
-  a42905f7-fb1f-4594-a986-aac568b712e0: !Template
+    name: equals-translation-asm-kan
+    reference: Equals translation (Assamese into Kannada)
+  a4e9e45d-6077-446a-944b-df59c2a06783: !Template
     answer_choices: null
-    id: a42905f7-fb1f-4594-a986-aac568b712e0
-    jinja: 'Translate this from Marathi into English: {{ sentence_mar }} ||| {{ sentence_eng
-      }}'
+    id: a4e9e45d-6077-446a-944b-df59c2a06783
+    jinja: 'Telugu: {{ sentence_tel }} = Tamil: ||| {{ sentence_tam }}'
     metadata: *id001
-    name: translate-this-mar-eng
-    reference: Basic translation (Marathi into English)
-  a4308d82-5851-4eea-a32f-d9aed28b54a9: !Template
+    name: equals-translation-tel-tam
+    reference: Equals translation (Telugu into Tamil)
+  a5402637-7ffb-4bc7-8509-4d9cdcbced33: !Template
     answer_choices: null
-    id: a4308d82-5851-4eea-a32f-d9aed28b54a9
-    jinja: 'Translate this from Xhosa into Gujarati: {{ sentence_xho }} ||| {{ sentence_guj
-      }}'
+    id: a5402637-7ffb-4bc7-8509-4d9cdcbced33
+    jinja: 'Oriya: {{ sentence_ory }} = Xhosa: ||| {{ sentence_xho }}'
     metadata: *id001
-    name: translate-this-xho-guj
-    reference: Basic translation (Xhosa into Gujarati)
-  a439058c-8657-4160-8d4d-3a3dfc6787ee: !Template
+    name: equals-translation-ory-xho
+    reference: Equals translation (Oriya into Xhosa)
+  a54b455b-8bb4-4ea4-9808-e89a2a843b49: !Template
     answer_choices: null
-    id: a439058c-8657-4160-8d4d-3a3dfc6787ee
-    jinja: 'Translate this from Nepali into Xhosa: {{ sentence_npi }} ||| {{ sentence_xho
-      }}'
+    id: a54b455b-8bb4-4ea4-9808-e89a2a843b49
+    jinja: 'Gujarati: {{ sentence_guj }} = Nepali: ||| {{ sentence_npi }}'
     metadata: *id001
-    name: translate-this-npi-xho
-    reference: Basic translation (Nepali into Xhosa)
-  a450143b-dc42-42a4-954e-8a2e7d79ea80: !Template
+    name: equals-translation-guj-npi
+    reference: Equals translation (Gujarati into Nepali)
+  a5a41676-2250-4637-a5cd-6a7ae24d4a9c: !Template
     answer_choices: null
-    id: a450143b-dc42-42a4-954e-8a2e7d79ea80
-    jinja: 'Translate this from English into Punjabi: {{ sentence_eng }} ||| {{ sentence_pan
-      }}'
+    id: a5a41676-2250-4637-a5cd-6a7ae24d4a9c
+    jinja: 'French: {{ sentence_fra }} = Vietnamese: ||| {{ sentence_vie }}'
     metadata: *id001
-    name: translate-this-eng-pan
-    reference: Basic translation (English into Punjabi)
-  a4565e71-2199-4a1d-979f-3d93eab4470e: !Template
+    name: equals-translation-fra-vie
+    reference: Equals translation (French into Vietnamese)
+  a5cd9e14-4e0d-4124-990b-f2507b1cad74: !Template
     answer_choices: null
-    id: a4565e71-2199-4a1d-979f-3d93eab4470e
-    jinja: 'Translate this from Malayalam into simplified Chinese: {{ sentence_mal
-      }} ||| {{ sentence_zho_simpl }}'
+    id: a5cd9e14-4e0d-4124-990b-f2507b1cad74
+    jinja: 'Swahili: {{ sentence_swh }} = Kannada: ||| {{ sentence_kan }}'
     metadata: *id001
-    name: translate-this-mal-zho_simpl
-    reference: Basic translation (Malayalam into simplified Chinese)
-  a45b102e-66d1-42f9-90fa-960e90ade1e9: !Template
+    name: equals-translation-swh-kan
+    reference: Equals translation (Swahili into Kannada)
+  a731b746-69bd-434f-8ca5-6f0e7be005f6: !Template
     answer_choices: null
-    id: a45b102e-66d1-42f9-90fa-960e90ade1e9
-    jinja: 'Translate this from French into Nepali: {{ sentence_fra }} ||| {{ sentence_npi
+    id: a731b746-69bd-434f-8ca5-6f0e7be005f6
+    jinja: 'Swahili: {{ sentence_swh }} = simplified Chinese: ||| {{ sentence_zho_simpl
       }}'
     metadata: *id001
-    name: translate-this-fra-npi
-    reference: Basic translation (French into Nepali)
-  a4d65ac0-47b4-492f-817e-8e6da6f16c2f: !Template
-    answer_choices: null
-    id: a4d65ac0-47b4-492f-817e-8e6da6f16c2f
-    jinja: 'Translate this from Swahili into Northern Sotho: {{ sentence_swh }} |||
-      {{ sentence_nso }}'
-    metadata: *id001
-    name: translate-this-swh-nso
-    reference: Basic translation (Swahili into Northern Sotho)
-  a502ea5c-5008-4123-b273-79e5d5e696c0: !Template
+    name: equals-translation-swh-zho_simpl
+    reference: Equals translation (Swahili into simplified Chinese)
+  a7618ca1-1dce-4e11-a39f-360f38555cea: !Template
     answer_choices: null
-    id: a502ea5c-5008-4123-b273-79e5d5e696c0
-    jinja: 'Translate this from Marathi into Nepali: {{ sentence_mar }} ||| {{ sentence_npi
-      }}'
+    id: a7618ca1-1dce-4e11-a39f-360f38555cea
+    jinja: 'Malayalam: {{ sentence_mal }} = Tamil: ||| {{ sentence_tam }}'
     metadata: *id001
-    name: translate-this-mar-npi
-    reference: Basic translation (Marathi into Nepali)
-  a522d4e2-9603-4779-b42c-27203b426478: !Template
+    name: equals-translation-mal-tam
+    reference: Equals translation (Malayalam into Tamil)
+  a7750c80-0171-4cf3-a4c9-2e5a37808a2b: !Template
     answer_choices: null
-    id: a522d4e2-9603-4779-b42c-27203b426478
-    jinja: 'Translate this from Kannada into simplified Chinese: {{ sentence_kan }}
-      ||| {{ sentence_zho_simpl }}'
+    id: a7750c80-0171-4cf3-a4c9-2e5a37808a2b
+    jinja: 'Oriya: {{ sentence_ory }} = Telugu: ||| {{ sentence_tel }}'
     metadata: *id001
-    name: translate-this-kan-zho_simpl
-    reference: Basic translation (Kannada into simplified Chinese)
-  a54581f3-da23-4e07-9404-a6881727812e: !Template
+    name: equals-translation-ory-tel
+    reference: Equals translation (Oriya into Telugu)
+  a7ffe490-1abe-4b7a-9aac-37a1741713aa: !Template
     answer_choices: null
-    id: a54581f3-da23-4e07-9404-a6881727812e
-    jinja: 'Translate this from Bengali into Zulu: {{ sentence_ben }} ||| {{ sentence_zul
+    id: a7ffe490-1abe-4b7a-9aac-37a1741713aa
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Zulu: ||| {{ sentence_zul
       }}'
     metadata: *id001
-    name: translate-this-ben-zul
-    reference: Basic translation (Bengali into Zulu)
-  a54da36b-fb14-4b47-901b-aea28e03be26: !Template
+    name: equals-translation-zho_trad-zul
+    reference: Equals translation (traditional Chinese into Zulu)
+  a84b3819-078b-4878-ad6f-eb1ff0bcf8a1: !Template
     answer_choices: null
-    id: a54da36b-fb14-4b47-901b-aea28e03be26
-    jinja: 'Translate this from Northern Sotho into Igbo: {{ sentence_nso }} ||| {{
-      sentence_ibo }}'
+    id: a84b3819-078b-4878-ad6f-eb1ff0bcf8a1
+    jinja: 'Tamil: {{ sentence_tam }} = traditional Chinese: ||| {{ sentence_zho_trad
+      }}'
     metadata: *id001
-    name: translate-this-nso-ibo
-    reference: Basic translation (Northern Sotho into Igbo)
-  a5b9e54d-83f8-4015-bca6-374e84a58f7e: !Template
+    name: equals-translation-tam-zho_trad
+    reference: Equals translation (Tamil into traditional Chinese)
+  a871cb64-6446-465c-806b-d2e33c446c53: !Template
     answer_choices: null
-    id: a5b9e54d-83f8-4015-bca6-374e84a58f7e
-    jinja: 'Translate this from Latin American Spanish into simplified Chinese: {{
-      sentence_spa }} ||| {{ sentence_zho_simpl }}'
+    id: a871cb64-6446-465c-806b-d2e33c446c53
+    jinja: 'Gujarati: {{ sentence_guj }} = Marathi: ||| {{ sentence_mar }}'
     metadata: *id001
-    name: translate-this-spa-zho_simpl
-    reference: Basic translation (Latin American Spanish into simplified Chinese)
-  a60c2b78-023a-4d06-a673-ab13b4644926: !Template
+    name: equals-translation-guj-mar
+    reference: Equals translation (Gujarati into Marathi)
+  a8975b4e-de55-406d-86a5-f86c637a9f89: !Template
     answer_choices: null
-    id: a60c2b78-023a-4d06-a673-ab13b4644926
-    jinja: 'Translate this from Kannada into Vietnamese: {{ sentence_kan }} ||| {{
-      sentence_vie }}'
+    id: a8975b4e-de55-406d-86a5-f86c637a9f89
+    jinja: 'French: {{ sentence_fra }} = Malayalam: ||| {{ sentence_mal }}'
     metadata: *id001
-    name: translate-this-kan-vie
-    reference: Basic translation (Kannada into Vietnamese)
-  a62c24a2-138f-46d8-a034-d98e276777c9: !Template
+    name: equals-translation-fra-mal
+    reference: Equals translation (French into Malayalam)
+  a89ba0f1-afa7-45b3-8d06-a706a25ebc0d: !Template
     answer_choices: null
-    id: a62c24a2-138f-46d8-a034-d98e276777c9
-    jinja: 'Translate this from Bengali into Northern Sotho: {{ sentence_ben }} |||
-      {{ sentence_nso }}'
+    id: a89ba0f1-afa7-45b3-8d06-a706a25ebc0d
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = simplified Chinese: |||
+      {{ sentence_zho_simpl }}'
     metadata: *id001
-    name: translate-this-ben-nso
-    reference: Basic translation (Bengali into Northern Sotho)
-  a667f4bd-e14c-475b-b631-06bdd8d23b89: !Template
+    name: equals-translation-zho_trad-zho_simpl
+    reference: Equals translation (traditional Chinese into simplified Chinese)
+  a8a0d7b7-f235-4a20-8454-750de7c55f9b: !Template
     answer_choices: null
-    id: a667f4bd-e14c-475b-b631-06bdd8d23b89
-    jinja: 'Translate this from Arabic into Urdu: {{ sentence_ara }} ||| {{ sentence_urd
+    id: a8a0d7b7-f235-4a20-8454-750de7c55f9b
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = English: ||| {{ sentence_eng
       }}'
     metadata: *id001
-    name: translate-this-ara-urd
-    reference: Basic translation (Arabic into Urdu)
-  a669c5af-08a5-4200-a9ba-e6ec3779fb59: !Template
+    name: equals-translation-zho_simpl-eng
+    reference: Equals translation (simplified Chinese into English)
+  a9010c98-2a1c-4724-8900-00fdaaa2b226: !Template
     answer_choices: null
-    id: a669c5af-08a5-4200-a9ba-e6ec3779fb59
-    jinja: 'Translate this from Wolof into Latin American Spanish: {{ sentence_wol
-      }} ||| {{ sentence_spa }}'
+    id: a9010c98-2a1c-4724-8900-00fdaaa2b226
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Punjabi: ||| {{ sentence_pan
+      }}'
     metadata: *id001
-    name: translate-this-wol-spa
-    reference: Basic translation (Wolof into Latin American Spanish)
-  a6b4e13b-6214-497d-9bb3-91d14997a603: !Template
+    name: equals-translation-por-pan
+    reference: Equals translation (Brazilian Portuguese into Punjabi)
+  a9892f5b-8799-4ab4-8fc1-07496b8f05ee: !Template
     answer_choices: null
-    id: a6b4e13b-6214-497d-9bb3-91d14997a603
-    jinja: 'Translate this from simplified Chinese into Igbo: {{ sentence_zho_simpl
-      }} ||| {{ sentence_ibo }}'
+    id: a9892f5b-8799-4ab4-8fc1-07496b8f05ee
+    jinja: 'Marathi: {{ sentence_mar }} = Tamil: ||| {{ sentence_tam }}'
     metadata: *id001
-    name: translate-this-zho_simpl-ibo
-    reference: Basic translation (simplified Chinese into Igbo)
-  a6e4b48b-aba6-454c-bf67-e971a4458d0b: !Template
+    name: equals-translation-mar-tam
+    reference: Equals translation (Marathi into Tamil)
+  a9cbaf97-021c-46d4-bbaa-f65d332546af: !Template
     answer_choices: null
-    id: a6e4b48b-aba6-454c-bf67-e971a4458d0b
-    jinja: 'Translate this from Lingala into Urdu: {{ sentence_lin }} ||| {{ sentence_urd
-      }}'
+    id: a9cbaf97-021c-46d4-bbaa-f65d332546af
+    jinja: 'Kannada: {{ sentence_kan }} = Northern Sotho: ||| {{ sentence_nso }}'
     metadata: *id001
-    name: translate-this-lin-urd
-    reference: Basic translation (Lingala into Urdu)
-  a74bf93d-9f63-4280-8a63-bdb9a71a534d: !Template
+    name: equals-translation-kan-nso
+    reference: Equals translation (Kannada into Northern Sotho)
+  a9dc9039-84a6-40c6-b732-c8351a3898bf: !Template
     answer_choices: null
-    id: a74bf93d-9f63-4280-8a63-bdb9a71a534d
-    jinja: 'Translate this from Xhosa into Hindi: {{ sentence_xho }} ||| {{ sentence_hin
+    id: a9dc9039-84a6-40c6-b732-c8351a3898bf
+    jinja: 'Malayalam: {{ sentence_mal }} = simplified Chinese: ||| {{ sentence_zho_simpl
       }}'
     metadata: *id001
-    name: translate-this-xho-hin
-    reference: Basic translation (Xhosa into Hindi)
-  a7701737-6f95-4aa5-9f69-bb703062c585: !Template
+    name: equals-translation-mal-zho_simpl
+    reference: Equals translation (Malayalam into simplified Chinese)
+  aa086afc-dc82-4622-9cd3-0afa260dca2d: !Template
     answer_choices: null
-    id: a7701737-6f95-4aa5-9f69-bb703062c585
-    jinja: 'Translate this from Kannada into Catalan: {{ sentence_kan }} ||| {{ sentence_cat
-      }}'
+    id: aa086afc-dc82-4622-9cd3-0afa260dca2d
+    jinja: 'Xhosa: {{ sentence_xho }} = Oriya: ||| {{ sentence_ory }}'
     metadata: *id001
-    name: translate-this-kan-cat
-    reference: Basic translation (Kannada into Catalan)
-  a7c86008-3433-492e-8fa4-44810248524f: !Template
+    name: equals-translation-xho-ory
+    reference: Equals translation (Xhosa into Oriya)
+  aa44b514-d584-4243-9d60-5d970d89e156: !Template
     answer_choices: null
-    id: a7c86008-3433-492e-8fa4-44810248524f
-    jinja: 'Translate this from traditional Chinese into Lingala: {{ sentence_zho_trad
-      }} ||| {{ sentence_lin }}'
+    id: aa44b514-d584-4243-9d60-5d970d89e156
+    jinja: 'Wolof: {{ sentence_wol }} = Punjabi: ||| {{ sentence_pan }}'
     metadata: *id001
-    name: translate-this-zho_trad-lin
-    reference: Basic translation (traditional Chinese into Lingala)
-  a7cb9c8f-e98d-400a-95c0-5e34b7757cd1: !Template
+    name: equals-translation-wol-pan
+    reference: Equals translation (Wolof into Punjabi)
+  aa6d5927-aa5c-4bc1-b32d-2da7803af691: !Template
     answer_choices: null
-    id: a7cb9c8f-e98d-400a-95c0-5e34b7757cd1
-    jinja: 'Translate this from Swahili into Kannada: {{ sentence_swh }} ||| {{ sentence_kan
-      }}'
+    id: aa6d5927-aa5c-4bc1-b32d-2da7803af691
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Latin American Spanish:
+      ||| {{ sentence_spa }}'
     metadata: *id001
-    name: translate-this-swh-kan
-    reference: Basic translation (Swahili into Kannada)
-  a862f3db-6780-44e7-be64-e0212c74592b: !Template
+    name: equals-translation-zho_trad-spa
+    reference: Equals translation (traditional Chinese into Latin American Spanish)
+  aa70c9fc-a5ef-4e5e-b037-85bf8e775e7c: !Template
     answer_choices: null
-    id: a862f3db-6780-44e7-be64-e0212c74592b
-    jinja: 'Translate this from Telugu into Bengali: {{ sentence_tel }} ||| {{ sentence_ben
-      }}'
+    id: aa70c9fc-a5ef-4e5e-b037-85bf8e775e7c
+    jinja: 'Telugu: {{ sentence_tel }} = Vietnamese: ||| {{ sentence_vie }}'
     metadata: *id001
-    name: translate-this-tel-ben
-    reference: Basic translation (Telugu into Bengali)
-  a8a8683c-bdd9-459e-84f2-d316b5dd0f19: !Template
+    name: equals-translation-tel-vie
+    reference: Equals translation (Telugu into Vietnamese)
+  ab14d664-67ee-4b8e-9838-10d251bf29db: !Template
     answer_choices: null
-    id: a8a8683c-bdd9-459e-84f2-d316b5dd0f19
-    jinja: 'Translate this from Oriya into Bengali: {{ sentence_ory }} ||| {{ sentence_ben
-      }}'
+    id: ab14d664-67ee-4b8e-9838-10d251bf29db
+    jinja: 'Nepali: {{ sentence_npi }} = Urdu: ||| {{ sentence_urd }}'
     metadata: *id001
-    name: translate-this-ory-ben
-    reference: Basic translation (Oriya into Bengali)
-  a93e9fa9-c308-40c3-a667-29dd9ef30ed1: !Template
+    name: equals-translation-npi-urd
+    reference: Equals translation (Nepali into Urdu)
+  ab462633-7e5a-4f7c-b3ba-dcbb2b8fb275: !Template
     answer_choices: null
-    id: a93e9fa9-c308-40c3-a667-29dd9ef30ed1
-    jinja: 'Translate this from Yoruba into Telugu: {{ sentence_yor }} ||| {{ sentence_tel
-      }}'
+    id: ab462633-7e5a-4f7c-b3ba-dcbb2b8fb275
+    jinja: 'Igbo: {{ sentence_ibo }} = Malayalam: ||| {{ sentence_mal }}'
     metadata: *id001
-    name: translate-this-yor-tel
-    reference: Basic translation (Yoruba into Telugu)
-  a9966c07-3cb2-42f2-a2da-b4d98cd0bf94: !Template
+    name: equals-translation-ibo-mal
+    reference: Equals translation (Igbo into Malayalam)
+  ab4c5514-8eba-4bf5-9f3d-5704a48634e5: !Template
     answer_choices: null
-    id: a9966c07-3cb2-42f2-a2da-b4d98cd0bf94
-    jinja: 'Translate this from Indonesian into Tamil: {{ sentence_ind }} ||| {{ sentence_tam
+    id: ab4c5514-8eba-4bf5-9f3d-5704a48634e5
+    jinja: 'Gujarati: {{ sentence_guj }} = Latin American Spanish: ||| {{ sentence_spa
       }}'
     metadata: *id001
-    name: translate-this-ind-tam
-    reference: Basic translation (Indonesian into Tamil)
-  a99fb361-dd5a-4215-a436-ece06cc65bba: !Template
+    name: equals-translation-guj-spa
+    reference: Equals translation (Gujarati into Latin American Spanish)
+  ab54630f-268a-4b31-bbe9-fc49aeb5fe85: !Template
     answer_choices: null
-    id: a99fb361-dd5a-4215-a436-ece06cc65bba
-    jinja: 'Translate this from Latin American Spanish into Gujarati: {{ sentence_spa
-      }} ||| {{ sentence_guj }}'
+    id: ab54630f-268a-4b31-bbe9-fc49aeb5fe85
+    jinja: 'Assamese: {{ sentence_asm }} = Oriya: ||| {{ sentence_ory }}'
     metadata: *id001
-    name: translate-this-spa-guj
-    reference: Basic translation (Latin American Spanish into Gujarati)
-  a9de46bb-7978-4216-8c59-40610b11dd6e: !Template
+    name: equals-translation-asm-ory
+    reference: Equals translation (Assamese into Oriya)
+  abbd00ae-f647-42e3-b414-2c48c00427ee: !Template
     answer_choices: null
-    id: a9de46bb-7978-4216-8c59-40610b11dd6e
-    jinja: 'Translate this from Yoruba into Hindi: {{ sentence_yor }} ||| {{ sentence_hin
-      }}'
+    id: abbd00ae-f647-42e3-b414-2c48c00427ee
+    jinja: 'Assamese: {{ sentence_asm }} = Gujarati: ||| {{ sentence_guj }}'
     metadata: *id001
-    name: translate-this-yor-hin
-    reference: Basic translation (Yoruba into Hindi)
-  aa086c90-aca8-42e4-87b2-91327d8b2889: !Template
+    name: equals-translation-asm-guj
+    reference: Equals translation (Assamese into Gujarati)
+  abbeed5c-31fe-4143-916f-6c95949ac448: !Template
     answer_choices: null
-    id: aa086c90-aca8-42e4-87b2-91327d8b2889
-    jinja: 'Translate this from Igbo into Urdu: {{ sentence_ibo }} ||| {{ sentence_urd
-      }}'
+    id: abbeed5c-31fe-4143-916f-6c95949ac448
+    jinja: 'Indonesian: {{ sentence_ind }} = Zulu: ||| {{ sentence_zul }}'
     metadata: *id001
-    name: translate-this-ibo-urd
-    reference: Basic translation (Igbo into Urdu)
-  aa142e17-b4f2-492b-93b8-252e3e5a6987: !Template
+    name: equals-translation-ind-zul
+    reference: Equals translation (Indonesian into Zulu)
+  abc67fef-1856-48e7-be03-dcb623ae9105: !Template
     answer_choices: null
-    id: aa142e17-b4f2-492b-93b8-252e3e5a6987
-    jinja: 'Translate this from Swahili into French: {{ sentence_swh }} ||| {{ sentence_fra
-      }}'
+    id: abc67fef-1856-48e7-be03-dcb623ae9105
+    jinja: 'Gujarati: {{ sentence_guj }} = Urdu: ||| {{ sentence_urd }}'
     metadata: *id001
-    name: translate-this-swh-fra
-    reference: Basic translation (Swahili into French)
-  aa1d7e93-7d09-4217-834c-5f1fe7462d69: !Template
+    name: equals-translation-guj-urd
+    reference: Equals translation (Gujarati into Urdu)
+  ac1796ad-f5ce-4824-ac18-31dc414258cf: !Template
     answer_choices: null
-    id: aa1d7e93-7d09-4217-834c-5f1fe7462d69
-    jinja: 'Translate this from Latin American Spanish into Tamil: {{ sentence_spa
-      }} ||| {{ sentence_tam }}'
+    id: ac1796ad-f5ce-4824-ac18-31dc414258cf
+    jinja: 'Oriya: {{ sentence_ory }} = Punjabi: ||| {{ sentence_pan }}'
     metadata: *id001
-    name: translate-this-spa-tam
-    reference: Basic translation (Latin American Spanish into Tamil)
-  aba3910f-6042-4ef0-aaf9-72c1d75b01af: !Template
+    name: equals-translation-ory-pan
+    reference: Equals translation (Oriya into Punjabi)
+  ac286dc3-5a73-46d1-9d90-310701177eff: !Template
     answer_choices: null
-    id: aba3910f-6042-4ef0-aaf9-72c1d75b01af
-    jinja: 'Translate this from Hindi into Brazilian Portuguese: {{ sentence_hin }}
-      ||| {{ sentence_por }}'
+    id: ac286dc3-5a73-46d1-9d90-310701177eff
+    jinja: 'Tamil: {{ sentence_tam }} = French: ||| {{ sentence_fra }}'
     metadata: *id001
-    name: translate-this-hin-por
-    reference: Basic translation (Hindi into Brazilian Portuguese)
-  abbcbf36-5438-469f-b5d4-82a2df79b1e3: !Template
+    name: equals-translation-tam-fra
+    reference: Equals translation (Tamil into French)
+  ac3e6c7d-3d89-48d3-8e5f-f09544e8e529: !Template
     answer_choices: null
-    id: abbcbf36-5438-469f-b5d4-82a2df79b1e3
-    jinja: 'Translate this from Kannada into Urdu: {{ sentence_kan }} ||| {{ sentence_urd
+    id: ac3e6c7d-3d89-48d3-8e5f-f09544e8e529
+    jinja: 'Vietnamese: {{ sentence_vie }} = traditional Chinese: ||| {{ sentence_zho_trad
       }}'
     metadata: *id001
-    name: translate-this-kan-urd
-    reference: Basic translation (Kannada into Urdu)
-  ac064fd2-d230-4b38-b5b5-b4b47f513246: !Template
+    name: equals-translation-vie-zho_trad
+    reference: Equals translation (Vietnamese into traditional Chinese)
+  ad4c79c3-6efe-4d1c-8fcc-1ac061271d3e: !Template
     answer_choices: null
-    id: ac064fd2-d230-4b38-b5b5-b4b47f513246
-    jinja: 'Translate this from Kannada into Tamil: {{ sentence_kan }} ||| {{ sentence_tam
+    id: ad4c79c3-6efe-4d1c-8fcc-1ac061271d3e
+    jinja: 'Tamil: {{ sentence_tam }} = Brazilian Portuguese: ||| {{ sentence_por
       }}'
     metadata: *id001
-    name: translate-this-kan-tam
-    reference: Basic translation (Kannada into Tamil)
-  ac082d0c-265e-4743-a800-8f015a304f16: !Template
+    name: equals-translation-tam-por
+    reference: Equals translation (Tamil into Brazilian Portuguese)
+  adecd167-36c2-44fc-98cc-54841274fbaf: !Template
     answer_choices: null
-    id: ac082d0c-265e-4743-a800-8f015a304f16
-    jinja: 'Translate this from Northern Sotho into Nepali: {{ sentence_nso }} |||
-      {{ sentence_npi }}'
+    id: adecd167-36c2-44fc-98cc-54841274fbaf
+    jinja: 'Tamil: {{ sentence_tam }} = Gujarati: ||| {{ sentence_guj }}'
     metadata: *id001
-    name: translate-this-nso-npi
-    reference: Basic translation (Northern Sotho into Nepali)
-  ac118428-4719-4db3-b934-a5ea8a355d58: !Template
+    name: equals-translation-tam-guj
+    reference: Equals translation (Tamil into Gujarati)
+  aea6a6fc-9063-4146-882f-c7d3f1f4aaed: !Template
     answer_choices: null
-    id: ac118428-4719-4db3-b934-a5ea8a355d58
-    jinja: 'Translate this from Assamese into Marathi: {{ sentence_asm }} ||| {{ sentence_mar
-      }}'
+    id: aea6a6fc-9063-4146-882f-c7d3f1f4aaed
+    jinja: 'Arabic: {{ sentence_ara }} = Indonesian: ||| {{ sentence_ind }}'
     metadata: *id001
-    name: translate-this-asm-mar
-    reference: Basic translation (Assamese into Marathi)
-  ac2aa189-e945-4ab3-b7d2-0a52fe2ab498: !Template
+    name: equals-translation-ara-ind
+    reference: Equals translation (Arabic into Indonesian)
+  aee4e316-58d0-4458-90c3-f98c559d2f29: !Template
     answer_choices: null
-    id: ac2aa189-e945-4ab3-b7d2-0a52fe2ab498
-    jinja: 'Translate this from traditional Chinese into Oriya: {{ sentence_zho_trad
-      }} ||| {{ sentence_ory }}'
+    id: aee4e316-58d0-4458-90c3-f98c559d2f29
+    jinja: 'Arabic: {{ sentence_ara }} = Zulu: ||| {{ sentence_zul }}'
     metadata: *id001
-    name: translate-this-zho_trad-ory
-    reference: Basic translation (traditional Chinese into Oriya)
-  ac7fcfde-0b90-46c5-a2bc-06fc42c75389: !Template
+    name: equals-translation-ara-zul
+    reference: Equals translation (Arabic into Zulu)
+  af049675-e486-4c0a-82d9-8424f5757f69: !Template
     answer_choices: null
-    id: ac7fcfde-0b90-46c5-a2bc-06fc42c75389
-    jinja: 'Translate this from Punjabi into Igbo: {{ sentence_pan }} ||| {{ sentence_ibo
+    id: af049675-e486-4c0a-82d9-8424f5757f69
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = French: ||| {{ sentence_fra
       }}'
     metadata: *id001
-    name: translate-this-pan-ibo
-    reference: Basic translation (Punjabi into Igbo)
-  acaad142-638d-4ac5-b190-80a524386d34: !Template
+    name: equals-translation-por-fra
+    reference: Equals translation (Brazilian Portuguese into French)
+  afa59640-0667-4aae-95cb-7d1c2d5c49c3: !Template
     answer_choices: null
-    id: acaad142-638d-4ac5-b190-80a524386d34
-    jinja: 'Translate this from Catalan into Assamese: {{ sentence_cat }} ||| {{ sentence_asm
-      }}'
+    id: afa59640-0667-4aae-95cb-7d1c2d5c49c3
+    jinja: 'Wolof: {{ sentence_wol }} = French: ||| {{ sentence_fra }}'
     metadata: *id001
-    name: translate-this-cat-asm
-    reference: Basic translation (Catalan into Assamese)
-  acab5335-b17c-457a-a149-d00439e36eac: !Template
+    name: equals-translation-wol-fra
+    reference: Equals translation (Wolof into French)
+  b004f66f-0822-4965-b1d4-d106274ce1cd: !Template
     answer_choices: null
-    id: acab5335-b17c-457a-a149-d00439e36eac
-    jinja: 'Translate this from Gujarati into Marathi: {{ sentence_guj }} ||| {{ sentence_mar
-      }}'
+    id: b004f66f-0822-4965-b1d4-d106274ce1cd
+    jinja: 'Igbo: {{ sentence_ibo }} = English: ||| {{ sentence_eng }}'
     metadata: *id001
-    name: translate-this-guj-mar
-    reference: Basic translation (Gujarati into Marathi)
-  acd94e11-ba04-466c-bf53-794b5fe3e727: !Template
+    name: equals-translation-ibo-eng
+    reference: Equals translation (Igbo into English)
+  b01cdf86-6e6a-4dd6-98cb-8e469f872e67: !Template
     answer_choices: null
-    id: acd94e11-ba04-466c-bf53-794b5fe3e727
-    jinja: 'Translate this from Swahili into Yoruba: {{ sentence_swh }} ||| {{ sentence_yor
-      }}'
+    id: b01cdf86-6e6a-4dd6-98cb-8e469f872e67
+    jinja: 'Malayalam: {{ sentence_mal }} = Catalan: ||| {{ sentence_cat }}'
     metadata: *id001
-    name: translate-this-swh-yor
-    reference: Basic translation (Swahili into Yoruba)
-  ace2a1f1-9faa-4e24-8278-44752c6602ab: !Template
+    name: equals-translation-mal-cat
+    reference: Equals translation (Malayalam into Catalan)
+  b02d316d-02f3-46ba-af50-b8a9d4514ff8: !Template
     answer_choices: null
-    id: ace2a1f1-9faa-4e24-8278-44752c6602ab
-    jinja: 'Translate this from French into Assamese: {{ sentence_fra }} ||| {{ sentence_asm
-      }}'
+    id: b02d316d-02f3-46ba-af50-b8a9d4514ff8
+    jinja: 'Catalan: {{ sentence_cat }} = Indonesian: ||| {{ sentence_ind }}'
     metadata: *id001
-    name: translate-this-fra-asm
-    reference: Basic translation (French into Assamese)
-  ace7dbb0-e458-438c-850d-f2bd76117551: !Template
+    name: equals-translation-cat-ind
+    reference: Equals translation (Catalan into Indonesian)
+  b04d132b-7b49-49ca-8916-00efa0614297: !Template
     answer_choices: null
-    id: ace7dbb0-e458-438c-850d-f2bd76117551
-    jinja: 'Translate this from Arabic into Zulu: {{ sentence_ara }} ||| {{ sentence_zul
-      }}'
+    id: b04d132b-7b49-49ca-8916-00efa0614297
+    jinja: 'Wolof: {{ sentence_wol }} = Tamil: ||| {{ sentence_tam }}'
     metadata: *id001
-    name: translate-this-ara-zul
-    reference: Basic translation (Arabic into Zulu)
-  acec27e9-8d07-4124-b0e5-05faca954281: !Template
+    name: equals-translation-wol-tam
+    reference: Equals translation (Wolof into Tamil)
+  b08b2f77-e058-4196-8195-c7dae6f2cdce: !Template
     answer_choices: null
-    id: acec27e9-8d07-4124-b0e5-05faca954281
-    jinja: 'Translate this from Indonesian into Punjabi: {{ sentence_ind }} ||| {{
-      sentence_pan }}'
+    id: b08b2f77-e058-4196-8195-c7dae6f2cdce
+    jinja: 'Lingala: {{ sentence_lin }} = Swahili: ||| {{ sentence_swh }}'
     metadata: *id001
-    name: translate-this-ind-pan
-    reference: Basic translation (Indonesian into Punjabi)
-  acfbc840-c276-4daf-ab75-dd398c502fb2: !Template
+    name: equals-translation-lin-swh
+    reference: Equals translation (Lingala into Swahili)
+  b13dd92d-37b5-4b43-a918-e212b0ebe359: !Template
     answer_choices: null
-    id: acfbc840-c276-4daf-ab75-dd398c502fb2
-    jinja: 'Translate this from English into Lingala: {{ sentence_eng }} ||| {{ sentence_lin
-      }}'
+    id: b13dd92d-37b5-4b43-a918-e212b0ebe359
+    jinja: 'Urdu: {{ sentence_urd }} = Igbo: ||| {{ sentence_ibo }}'
     metadata: *id001
-    name: translate-this-eng-lin
-    reference: Basic translation (English into Lingala)
-  ad547fc7-73cc-4a79-be75-dae766692484: !Template
+    name: equals-translation-urd-ibo
+    reference: Equals translation (Urdu into Igbo)
+  b1450800-9e39-4837-b9c1-3d04d7563982: !Template
     answer_choices: null
-    id: ad547fc7-73cc-4a79-be75-dae766692484
-    jinja: 'Translate this from Gujarati into Arabic: {{ sentence_guj }} ||| {{ sentence_ara
-      }}'
+    id: b1450800-9e39-4837-b9c1-3d04d7563982
+    jinja: 'Kannada: {{ sentence_kan }} = Gujarati: ||| {{ sentence_guj }}'
     metadata: *id001
-    name: translate-this-guj-ara
-    reference: Basic translation (Gujarati into Arabic)
-  adbba01e-6cbd-47b4-90af-e25a2c0cc6f9: !Template
+    name: equals-translation-kan-guj
+    reference: Equals translation (Kannada into Gujarati)
+  b1468ba8-9549-4523-a838-cbcada18946c: !Template
     answer_choices: null
-    id: adbba01e-6cbd-47b4-90af-e25a2c0cc6f9
-    jinja: 'Translate this from Lingala into Bengali: {{ sentence_lin }} ||| {{ sentence_ben
-      }}'
+    id: b1468ba8-9549-4523-a838-cbcada18946c
+    jinja: 'Hindi: {{ sentence_hin }} = Northern Sotho: ||| {{ sentence_nso }}'
     metadata: *id001
-    name: translate-this-lin-ben
-    reference: Basic translation (Lingala into Bengali)
-  addcea7a-812a-43f2-b9d3-e7124320b8b0: !Template
+    name: equals-translation-hin-nso
+    reference: Equals translation (Hindi into Northern Sotho)
+  b1f5c6f1-96f1-4f3c-9713-800a0cdcc2e4: !Template
     answer_choices: null
-    id: addcea7a-812a-43f2-b9d3-e7124320b8b0
-    jinja: 'Translate this from French into Xhosa: {{ sentence_fra }} ||| {{ sentence_xho
+    id: b1f5c6f1-96f1-4f3c-9713-800a0cdcc2e4
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = French: ||| {{ sentence_fra
       }}'
     metadata: *id001
-    name: translate-this-fra-xho
-    reference: Basic translation (French into Xhosa)
-  ae1775c7-04fd-4c25-b72f-330055b28a0b: !Template
+    name: equals-translation-spa-fra
+    reference: Equals translation (Latin American Spanish into French)
+  b20686d8-fd8c-4ecd-b13f-14d5fc47159c: !Template
     answer_choices: null
-    id: ae1775c7-04fd-4c25-b72f-330055b28a0b
-    jinja: 'Translate this from Wolof into Igbo: {{ sentence_wol }} ||| {{ sentence_ibo
-      }}'
+    id: b20686d8-fd8c-4ecd-b13f-14d5fc47159c
+    jinja: 'Kannada: {{ sentence_kan }} = Nepali: ||| {{ sentence_npi }}'
+    metadata: *id001
+    name: equals-translation-kan-npi
+    reference: Equals translation (Kannada into Nepali)
+  b211b3ac-0dc5-4432-a527-1217ee8d2981: !Template
+    answer_choices: null
+    id: b211b3ac-0dc5-4432-a527-1217ee8d2981
+    jinja: 'Yoruba: {{ sentence_yor }} = Kannada: ||| {{ sentence_kan }}'
     metadata: *id001
-    name: translate-this-wol-ibo
-    reference: Basic translation (Wolof into Igbo)
-  ae2d4bd8-ac05-401b-8eca-ed69bb463346: !Template
+    name: equals-translation-yor-kan
+    reference: Equals translation (Yoruba into Kannada)
+  b23cb0bc-675e-4059-8b14-fc38f5410f9c: !Template
     answer_choices: null
-    id: ae2d4bd8-ac05-401b-8eca-ed69bb463346
-    jinja: 'Translate this from Wolof into Malayalam: {{ sentence_wol }} ||| {{ sentence_mal
+    id: b23cb0bc-675e-4059-8b14-fc38f5410f9c
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = Bengali: ||| {{ sentence_ben
       }}'
     metadata: *id001
-    name: translate-this-wol-mal
-    reference: Basic translation (Wolof into Malayalam)
-  ae5bd97a-0025-48d5-80db-c81f24314a16: !Template
+    name: equals-translation-spa-ben
+    reference: Equals translation (Latin American Spanish into Bengali)
+  b259346f-021b-48ea-9eb3-f4f7f85edd24: !Template
     answer_choices: null
-    id: ae5bd97a-0025-48d5-80db-c81f24314a16
-    jinja: 'Translate this from Latin American Spanish into Urdu: {{ sentence_spa
-      }} ||| {{ sentence_urd }}'
+    id: b259346f-021b-48ea-9eb3-f4f7f85edd24
+    jinja: 'Northern Sotho: {{ sentence_nso }} = French: ||| {{ sentence_fra }}'
     metadata: *id001
-    name: translate-this-spa-urd
-    reference: Basic translation (Latin American Spanish into Urdu)
-  aeb4995a-4ff7-4e51-842a-ab72346fd58e: !Template
+    name: equals-translation-nso-fra
+    reference: Equals translation (Northern Sotho into French)
+  b2836255-0212-4098-bbec-8ef71f7ae578: !Template
     answer_choices: null
-    id: aeb4995a-4ff7-4e51-842a-ab72346fd58e
-    jinja: 'Translate this from Catalan into French: {{ sentence_cat }} ||| {{ sentence_fra
+    id: b2836255-0212-4098-bbec-8ef71f7ae578
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Hindi: ||| {{ sentence_hin
       }}'
     metadata: *id001
-    name: translate-this-cat-fra
-    reference: Basic translation (Catalan into French)
-  aed210aa-c85f-441e-a52e-5a2188b1e637: !Template
+    name: equals-translation-zho_simpl-hin
+    reference: Equals translation (simplified Chinese into Hindi)
+  b2bfb638-a1c7-46db-b40d-4b037a4bc219: !Template
     answer_choices: null
-    id: aed210aa-c85f-441e-a52e-5a2188b1e637
-    jinja: 'Translate this from English into Indonesian: {{ sentence_eng }} ||| {{
-      sentence_ind }}'
+    id: b2bfb638-a1c7-46db-b40d-4b037a4bc219
+    jinja: 'Northern Sotho: {{ sentence_nso }} = Malayalam: ||| {{ sentence_mal }}'
     metadata: *id001
-    name: translate-this-eng-ind
-    reference: Basic translation (English into Indonesian)
-  af12f772-d4de-411d-ae2e-44a71c753127: !Template
+    name: equals-translation-nso-mal
+    reference: Equals translation (Northern Sotho into Malayalam)
+  b3282d08-cf23-4094-9f07-9e67ea1e9f66: !Template
     answer_choices: null
-    id: af12f772-d4de-411d-ae2e-44a71c753127
-    jinja: 'Translate this from Igbo into English: {{ sentence_ibo }} ||| {{ sentence_eng
-      }}'
+    id: b3282d08-cf23-4094-9f07-9e67ea1e9f66
+    jinja: 'Urdu: {{ sentence_urd }} = Nepali: ||| {{ sentence_npi }}'
     metadata: *id001
-    name: translate-this-ibo-eng
-    reference: Basic translation (Igbo into English)
-  af1c9226-59be-432d-82db-ef08993bf2f7: !Template
+    name: equals-translation-urd-npi
+    reference: Equals translation (Urdu into Nepali)
+  b4287c64-6123-4739-8797-5b957f85d6ef: !Template
     answer_choices: null
-    id: af1c9226-59be-432d-82db-ef08993bf2f7
-    jinja: 'Translate this from Igbo into Xhosa: {{ sentence_ibo }} ||| {{ sentence_xho
-      }}'
+    id: b4287c64-6123-4739-8797-5b957f85d6ef
+    jinja: 'Punjabi: {{ sentence_pan }} = Igbo: ||| {{ sentence_ibo }}'
     metadata: *id001
-    name: translate-this-ibo-xho
-    reference: Basic translation (Igbo into Xhosa)
-  af97d73b-0cec-4e18-aa47-4fa47ca265c1: !Template
+    name: equals-translation-pan-ibo
+    reference: Equals translation (Punjabi into Igbo)
+  b44d0858-4e1c-46af-b072-56e1f9c0403f: !Template
     answer_choices: null
-    id: af97d73b-0cec-4e18-aa47-4fa47ca265c1
-    jinja: 'Translate this from traditional Chinese into French: {{ sentence_zho_trad
-      }} ||| {{ sentence_fra }}'
+    id: b44d0858-4e1c-46af-b072-56e1f9c0403f
+    jinja: 'Lingala: {{ sentence_lin }} = Catalan: ||| {{ sentence_cat }}'
     metadata: *id001
-    name: translate-this-zho_trad-fra
-    reference: Basic translation (traditional Chinese into French)
-  af9b3b69-8cf1-4c61-9320-f5d4519279c2: !Template
+    name: equals-translation-lin-cat
+    reference: Equals translation (Lingala into Catalan)
+  b4f25ea0-23a2-4680-85e7-1081be0a9a1c: !Template
     answer_choices: null
-    id: af9b3b69-8cf1-4c61-9320-f5d4519279c2
-    jinja: 'Translate this from Zulu into Kannada: {{ sentence_zul }} ||| {{ sentence_kan
-      }}'
+    id: b4f25ea0-23a2-4680-85e7-1081be0a9a1c
+    jinja: 'Marathi: {{ sentence_mar }} = Oriya: ||| {{ sentence_ory }}'
+    metadata: *id001
+    name: equals-translation-mar-ory
+    reference: Equals translation (Marathi into Oriya)
+  b515dc88-f4ea-474c-92a9-9aeddbd66ad6: !Template
+    answer_choices: null
+    id: b515dc88-f4ea-474c-92a9-9aeddbd66ad6
+    jinja: 'Telugu: {{ sentence_tel }} = Northern Sotho: ||| {{ sentence_nso }}'
     metadata: *id001
-    name: translate-this-zul-kan
-    reference: Basic translation (Zulu into Kannada)
-  aff7d459-8b3a-4259-8581-a5fd112f3397: !Template
+    name: equals-translation-tel-nso
+    reference: Equals translation (Telugu into Northern Sotho)
+  b581f84d-73c8-4eee-95cd-2aff2c2dcd9e: !Template
     answer_choices: null
-    id: aff7d459-8b3a-4259-8581-a5fd112f3397
-    jinja: 'Translate this from Telugu into Wolof: {{ sentence_tel }} ||| {{ sentence_wol
+    id: b581f84d-73c8-4eee-95cd-2aff2c2dcd9e
+    jinja: 'Indonesian: {{ sentence_ind }} = Latin American Spanish: ||| {{ sentence_spa
       }}'
     metadata: *id001
-    name: translate-this-tel-wol
-    reference: Basic translation (Telugu into Wolof)
-  b0c50783-c1cf-45b8-8e01-8490f9890c3b: !Template
+    name: equals-translation-ind-spa
+    reference: Equals translation (Indonesian into Latin American Spanish)
+  b585b519-3ba7-44c7-b53d-c15ed2358872: !Template
     answer_choices: null
-    id: b0c50783-c1cf-45b8-8e01-8490f9890c3b
-    jinja: 'Translate this from Urdu into English: {{ sentence_urd }} ||| {{ sentence_eng
+    id: b585b519-3ba7-44c7-b53d-c15ed2358872
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Kannada: ||| {{ sentence_kan
       }}'
     metadata: *id001
-    name: translate-this-urd-eng
-    reference: Basic translation (Urdu into English)
-  b0dcf3d1-0ac9-4f06-b57c-2c0d95b8f249: !Template
+    name: equals-translation-por-kan
+    reference: Equals translation (Brazilian Portuguese into Kannada)
+  b5a7f52a-4cc7-4cb5-ae5d-50b3e778dfca: !Template
     answer_choices: null
-    id: b0dcf3d1-0ac9-4f06-b57c-2c0d95b8f249
-    jinja: 'Translate this from Xhosa into Oriya: {{ sentence_xho }} ||| {{ sentence_ory
+    id: b5a7f52a-4cc7-4cb5-ae5d-50b3e778dfca
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Northern Sotho: ||| {{ sentence_nso
       }}'
     metadata: *id001
-    name: translate-this-xho-ory
-    reference: Basic translation (Xhosa into Oriya)
-  b14a160b-f54a-4d32-b6e2-425ec11cbf59: !Template
+    name: equals-translation-por-nso
+    reference: Equals translation (Brazilian Portuguese into Northern Sotho)
+  b5f91710-c8d0-493d-94d4-d2d5c87c7be9: !Template
     answer_choices: null
-    id: b14a160b-f54a-4d32-b6e2-425ec11cbf59
-    jinja: 'Translate this from Telugu into Northern Sotho: {{ sentence_tel }} |||
-      {{ sentence_nso }}'
+    id: b5f91710-c8d0-493d-94d4-d2d5c87c7be9
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Arabic: ||| {{ sentence_ara
+      }}'
     metadata: *id001
-    name: translate-this-tel-nso
-    reference: Basic translation (Telugu into Northern Sotho)
-  b14e3462-3acf-409a-9dee-a647026275fb: !Template
+    name: equals-translation-por-ara
+    reference: Equals translation (Brazilian Portuguese into Arabic)
+  b600dde9-4f15-4da2-8f57-61c84411062a: !Template
     answer_choices: null
-    id: b14e3462-3acf-409a-9dee-a647026275fb
-    jinja: 'Translate this from Indonesian into Bengali: {{ sentence_ind }} ||| {{
-      sentence_ben }}'
+    id: b600dde9-4f15-4da2-8f57-61c84411062a
+    jinja: 'Vietnamese: {{ sentence_vie }} = Arabic: ||| {{ sentence_ara }}'
     metadata: *id001
-    name: translate-this-ind-ben
-    reference: Basic translation (Indonesian into Bengali)
-  b19d4804-de18-4c7b-b061-ccaa76aee1ab: !Template
+    name: equals-translation-vie-ara
+    reference: Equals translation (Vietnamese into Arabic)
+  b6023a5f-3388-4e36-a351-0ab14b9d275c: !Template
     answer_choices: null
-    id: b19d4804-de18-4c7b-b061-ccaa76aee1ab
-    jinja: 'Translate this from Oriya into simplified Chinese: {{ sentence_ory }}
-      ||| {{ sentence_zho_simpl }}'
+    id: b6023a5f-3388-4e36-a351-0ab14b9d275c
+    jinja: 'Tamil: {{ sentence_tam }} = Nepali: ||| {{ sentence_npi }}'
     metadata: *id001
-    name: translate-this-ory-zho_simpl
-    reference: Basic translation (Oriya into simplified Chinese)
-  b1b5cb7f-0cbd-4e10-9261-bea267a49dc8: !Template
+    name: equals-translation-tam-npi
+    reference: Equals translation (Tamil into Nepali)
+  b6a98dd2-df2f-4678-b419-d344d9a9d7f3: !Template
     answer_choices: null
-    id: b1b5cb7f-0cbd-4e10-9261-bea267a49dc8
-    jinja: 'Translate this from Swahili into Tamil: {{ sentence_swh }} ||| {{ sentence_tam
+    id: b6a98dd2-df2f-4678-b419-d344d9a9d7f3
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Marathi: ||| {{ sentence_mar
       }}'
     metadata: *id001
-    name: translate-this-swh-tam
-    reference: Basic translation (Swahili into Tamil)
-  b1e40283-714b-4b87-bbed-610309917a6a: !Template
+    name: equals-translation-zho_simpl-mar
+    reference: Equals translation (simplified Chinese into Marathi)
+  b6af5635-ac9e-4a1f-8fe5-f83b925b974a: !Template
     answer_choices: null
-    id: b1e40283-714b-4b87-bbed-610309917a6a
-    jinja: 'Translate this from Bengali into traditional Chinese: {{ sentence_ben
-      }} ||| {{ sentence_zho_trad }}'
+    id: b6af5635-ac9e-4a1f-8fe5-f83b925b974a
+    jinja: 'Marathi: {{ sentence_mar }} = Brazilian Portuguese: ||| {{ sentence_por
+      }}'
     metadata: *id001
-    name: translate-this-ben-zho_trad
-    reference: Basic translation (Bengali into traditional Chinese)
-  b1e9d5ec-b97b-4bbf-9969-c0cd8cb0a66a: !Template
+    name: equals-translation-mar-por
+    reference: Equals translation (Marathi into Brazilian Portuguese)
+  b6afe192-fc82-491c-af5e-35079cd4247e: !Template
     answer_choices: null
-    id: b1e9d5ec-b97b-4bbf-9969-c0cd8cb0a66a
-    jinja: 'Translate this from traditional Chinese into Malayalam: {{ sentence_zho_trad
-      }} ||| {{ sentence_mal }}'
+    id: b6afe192-fc82-491c-af5e-35079cd4247e
+    jinja: 'Kannada: {{ sentence_kan }} = Urdu: ||| {{ sentence_urd }}'
     metadata: *id001
-    name: translate-this-zho_trad-mal
-    reference: Basic translation (traditional Chinese into Malayalam)
-  b1f48b22-19e9-4cbe-a0a5-006a28886a46: !Template
+    name: equals-translation-kan-urd
+    reference: Equals translation (Kannada into Urdu)
+  b6b83daa-54e0-448e-92e7-263b9ecffd71: !Template
     answer_choices: null
-    id: b1f48b22-19e9-4cbe-a0a5-006a28886a46
-    jinja: 'Translate this from Nepali into simplified Chinese: {{ sentence_npi }}
-      ||| {{ sentence_zho_simpl }}'
+    id: b6b83daa-54e0-448e-92e7-263b9ecffd71
+    jinja: 'Gujarati: {{ sentence_guj }} = Brazilian Portuguese: ||| {{ sentence_por
+      }}'
     metadata: *id001
-    name: translate-this-npi-zho_simpl
-    reference: Basic translation (Nepali into simplified Chinese)
-  b2379aa6-db82-4e9c-8a8f-c5bb67e43c0f: !Template
+    name: equals-translation-guj-por
+    reference: Equals translation (Gujarati into Brazilian Portuguese)
+  b70c8584-b289-4852-9ab5-87912e62dc02: !Template
     answer_choices: null
-    id: b2379aa6-db82-4e9c-8a8f-c5bb67e43c0f
-    jinja: 'Translate this from Zulu into Bengali: {{ sentence_zul }} ||| {{ sentence_ben
-      }}'
+    id: b70c8584-b289-4852-9ab5-87912e62dc02
+    jinja: 'Vietnamese: {{ sentence_vie }} = Nepali: ||| {{ sentence_npi }}'
     metadata: *id001
-    name: translate-this-zul-ben
-    reference: Basic translation (Zulu into Bengali)
-  b29f742f-c0e2-4c9d-a49a-141ec9e0c79d: !Template
+    name: equals-translation-vie-npi
+    reference: Equals translation (Vietnamese into Nepali)
+  b745d70c-89a2-473e-beec-e0b50a31ce6c: !Template
     answer_choices: null
-    id: b29f742f-c0e2-4c9d-a49a-141ec9e0c79d
-    jinja: 'Translate this from Brazilian Portuguese into Hindi: {{ sentence_por }}
-      ||| {{ sentence_hin }}'
+    id: b745d70c-89a2-473e-beec-e0b50a31ce6c
+    jinja: 'Oriya: {{ sentence_ory }} = Swahili: ||| {{ sentence_swh }}'
     metadata: *id001
-    name: translate-this-por-hin
-    reference: Basic translation (Brazilian Portuguese into Hindi)
-  b367692c-088c-4f8d-8184-12f4d326d6dd: !Template
+    name: equals-translation-ory-swh
+    reference: Equals translation (Oriya into Swahili)
+  b8996262-aef0-4b33-898c-7488950cfea8: !Template
     answer_choices: null
-    id: b367692c-088c-4f8d-8184-12f4d326d6dd
-    jinja: 'Translate this from Assamese into Hindi: {{ sentence_asm }} ||| {{ sentence_hin
-      }}'
+    id: b8996262-aef0-4b33-898c-7488950cfea8
+    jinja: 'Zulu: {{ sentence_zul }} = Tamil: ||| {{ sentence_tam }}'
     metadata: *id001
-    name: translate-this-asm-hin
-    reference: Basic translation (Assamese into Hindi)
-  b41b25f5-7377-4add-a90e-ae7bae7471b6: !Template
+    name: equals-translation-zul-tam
+    reference: Equals translation (Zulu into Tamil)
+  b8e130bc-e36a-43f2-91e7-7be6c2418908: !Template
     answer_choices: null
-    id: b41b25f5-7377-4add-a90e-ae7bae7471b6
-    jinja: 'Translate this from Yoruba into Oriya: {{ sentence_yor }} ||| {{ sentence_ory
-      }}'
+    id: b8e130bc-e36a-43f2-91e7-7be6c2418908
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Brazilian Portuguese: |||
+      {{ sentence_por }}'
     metadata: *id001
-    name: translate-this-yor-ory
-    reference: Basic translation (Yoruba into Oriya)
-  b4afd55a-2244-4d11-b1b5-fcb92ab3a009: !Template
+    name: equals-translation-zho_simpl-por
+    reference: Equals translation (simplified Chinese into Brazilian Portuguese)
+  b8f507f3-af21-4ae8-bd63-ef1b25fb8144: !Template
     answer_choices: null
-    id: b4afd55a-2244-4d11-b1b5-fcb92ab3a009
-    jinja: 'Translate this from English into simplified Chinese: {{ sentence_eng }}
-      ||| {{ sentence_zho_simpl }}'
+    id: b8f507f3-af21-4ae8-bd63-ef1b25fb8144
+    jinja: 'Punjabi: {{ sentence_pan }} = Gujarati: ||| {{ sentence_guj }}'
     metadata: *id001
-    name: translate-this-eng-zho_simpl
-    reference: Basic translation (English into simplified Chinese)
-  b50f7561-391e-4799-843f-5d5d936eb37f: !Template
+    name: equals-translation-pan-guj
+    reference: Equals translation (Punjabi into Gujarati)
+  b92a1a2b-16db-4cdb-96bb-53dad882035d: !Template
     answer_choices: null
-    id: b50f7561-391e-4799-843f-5d5d936eb37f
-    jinja: 'Translate this from Urdu into Latin American Spanish: {{ sentence_urd
-      }} ||| {{ sentence_spa }}'
+    id: b92a1a2b-16db-4cdb-96bb-53dad882035d
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = Brazilian Portuguese: |||
+      {{ sentence_por }}'
     metadata: *id001
-    name: translate-this-urd-spa
-    reference: Basic translation (Urdu into Latin American Spanish)
-  b54afc30-2fce-4e55-b853-b5cf0fa7d88c: !Template
+    name: equals-translation-spa-por
+    reference: Equals translation (Latin American Spanish into Brazilian Portuguese)
+  b9410ec6-f556-4618-8ecb-fe706a619e2d: !Template
     answer_choices: null
-    id: b54afc30-2fce-4e55-b853-b5cf0fa7d88c
-    jinja: 'Translate this from Urdu into Vietnamese: {{ sentence_urd }} ||| {{ sentence_vie
-      }}'
+    id: b9410ec6-f556-4618-8ecb-fe706a619e2d
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Latin American Spanish: |||
+      {{ sentence_spa }}'
     metadata: *id001
-    name: translate-this-urd-vie
-    reference: Basic translation (Urdu into Vietnamese)
-  b57f9b98-8983-450e-9792-d3e28c081646: !Template
+    name: equals-translation-por-spa
+    reference: Equals translation (Brazilian Portuguese into Latin American Spanish)
+  b94fd114-e9ed-4436-9faa-a70d90efb430: !Template
     answer_choices: null
-    id: b57f9b98-8983-450e-9792-d3e28c081646
-    jinja: 'Translate this from Catalan into Tamil: {{ sentence_cat }} ||| {{ sentence_tam
-      }}'
+    id: b94fd114-e9ed-4436-9faa-a70d90efb430
+    jinja: 'Vietnamese: {{ sentence_vie }} = Kannada: ||| {{ sentence_kan }}'
     metadata: *id001
-    name: translate-this-cat-tam
-    reference: Basic translation (Catalan into Tamil)
-  b61a6a0e-e1b9-4ec4-84ec-3e3b2632d929: !Template
+    name: equals-translation-vie-kan
+    reference: Equals translation (Vietnamese into Kannada)
+  b97dc9c2-07fb-4811-8890-a7963698703f: !Template
     answer_choices: null
-    id: b61a6a0e-e1b9-4ec4-84ec-3e3b2632d929
-    jinja: 'Translate this from traditional Chinese into Catalan: {{ sentence_zho_trad
-      }} ||| {{ sentence_cat }}'
+    id: b97dc9c2-07fb-4811-8890-a7963698703f
+    jinja: 'Hindi: {{ sentence_hin }} = Marathi: ||| {{ sentence_mar }}'
     metadata: *id001
-    name: translate-this-zho_trad-cat
-    reference: Basic translation (traditional Chinese into Catalan)
-  b635538a-46c3-408b-af73-ac2ab01ed21d: !Template
+    name: equals-translation-hin-mar
+    reference: Equals translation (Hindi into Marathi)
+  b9febe49-756a-4867-a650-2218bc6bc568: !Template
     answer_choices: null
-    id: b635538a-46c3-408b-af73-ac2ab01ed21d
-    jinja: 'Translate this from Igbo into Hindi: {{ sentence_ibo }} ||| {{ sentence_hin
+    id: b9febe49-756a-4867-a650-2218bc6bc568
+    jinja: 'Indonesian: {{ sentence_ind }} = simplified Chinese: ||| {{ sentence_zho_simpl
       }}'
     metadata: *id001
-    name: translate-this-ibo-hin
-    reference: Basic translation (Igbo into Hindi)
-  b63ffcf4-73c5-4687-8bc4-df3ee8fb4b70: !Template
+    name: equals-translation-ind-zho_simpl
+    reference: Equals translation (Indonesian into simplified Chinese)
+  ba13a2b7-1ad9-4fbd-9e2e-cbfe4ef54270: !Template
     answer_choices: null
-    id: b63ffcf4-73c5-4687-8bc4-df3ee8fb4b70
-    jinja: 'Translate this from Xhosa into simplified Chinese: {{ sentence_xho }}
-      ||| {{ sentence_zho_simpl }}'
+    id: ba13a2b7-1ad9-4fbd-9e2e-cbfe4ef54270
+    jinja: 'Urdu: {{ sentence_urd }} = Northern Sotho: ||| {{ sentence_nso }}'
     metadata: *id001
-    name: translate-this-xho-zho_simpl
-    reference: Basic translation (Xhosa into simplified Chinese)
-  b69a2f39-381e-4eca-81d9-e4f0be0e18cc: !Template
+    name: equals-translation-urd-nso
+    reference: Equals translation (Urdu into Northern Sotho)
+  ba37030e-6a2b-4c21-a736-a103456db78a: !Template
     answer_choices: null
-    id: b69a2f39-381e-4eca-81d9-e4f0be0e18cc
-    jinja: 'Translate this from Vietnamese into Catalan: {{ sentence_vie }} ||| {{
-      sentence_cat }}'
+    id: ba37030e-6a2b-4c21-a736-a103456db78a
+    jinja: 'Marathi: {{ sentence_mar }} = Punjabi: ||| {{ sentence_pan }}'
     metadata: *id001
-    name: translate-this-vie-cat
-    reference: Basic translation (Vietnamese into Catalan)
-  b69cfbd3-1fd7-4e5e-9b1d-4bf4205d1572: !Template
+    name: equals-translation-mar-pan
+    reference: Equals translation (Marathi into Punjabi)
+  baaa8b04-418d-4724-9d25-5cc86633ff98: !Template
     answer_choices: null
-    id: b69cfbd3-1fd7-4e5e-9b1d-4bf4205d1572
-    jinja: 'Translate this from Telugu into Tamil: {{ sentence_tel }} ||| {{ sentence_tam
-      }}'
+    id: baaa8b04-418d-4724-9d25-5cc86633ff98
+    jinja: 'Vietnamese: {{ sentence_vie }} = Bengali: ||| {{ sentence_ben }}'
     metadata: *id001
-    name: translate-this-tel-tam
-    reference: Basic translation (Telugu into Tamil)
-  b6a4b17b-2157-4a8f-a961-aa5cca1e0eaa: !Template
+    name: equals-translation-vie-ben
+    reference: Equals translation (Vietnamese into Bengali)
+  bace6736-9aee-456e-b9f8-b34092f8e2c3: !Template
     answer_choices: null
-    id: b6a4b17b-2157-4a8f-a961-aa5cca1e0eaa
-    jinja: 'Translate this from Punjabi into French: {{ sentence_pan }} ||| {{ sentence_fra
+    id: bace6736-9aee-456e-b9f8-b34092f8e2c3
+    jinja: 'Zulu: {{ sentence_zul }} = traditional Chinese: ||| {{ sentence_zho_trad
       }}'
     metadata: *id001
-    name: translate-this-pan-fra
-    reference: Basic translation (Punjabi into French)
-  b6abf113-965c-4765-9e10-1a37e8e63911: !Template
+    name: equals-translation-zul-zho_trad
+    reference: Equals translation (Zulu into traditional Chinese)
+  baeecf8f-55be-490f-a601-5927672a7b52: !Template
     answer_choices: null
-    id: b6abf113-965c-4765-9e10-1a37e8e63911
-    jinja: 'Translate this from Punjabi into Hindi: {{ sentence_pan }} ||| {{ sentence_hin
+    id: baeecf8f-55be-490f-a601-5927672a7b52
+    jinja: 'Nepali: {{ sentence_npi }} = simplified Chinese: ||| {{ sentence_zho_simpl
       }}'
     metadata: *id001
-    name: translate-this-pan-hin
-    reference: Basic translation (Punjabi into Hindi)
-  b6fb16f5-ce48-4e0a-afbd-92794791906e: !Template
+    name: equals-translation-npi-zho_simpl
+    reference: Equals translation (Nepali into simplified Chinese)
+  baf4172f-57a5-418a-b195-f4a78e0ea1fd: !Template
     answer_choices: null
-    id: b6fb16f5-ce48-4e0a-afbd-92794791906e
-    jinja: 'Translate this from Lingala into traditional Chinese: {{ sentence_lin
-      }} ||| {{ sentence_zho_trad }}'
+    id: baf4172f-57a5-418a-b195-f4a78e0ea1fd
+    jinja: 'Hindi: {{ sentence_hin }} = Igbo: ||| {{ sentence_ibo }}'
     metadata: *id001
-    name: translate-this-lin-zho_trad
-    reference: Basic translation (Lingala into traditional Chinese)
-  b73cc7db-2724-4d1c-b8e5-11334621e392: !Template
+    name: equals-translation-hin-ibo
+    reference: Equals translation (Hindi into Igbo)
+  bb5f7015-79a2-48fc-8b1f-964a3144893d: !Template
     answer_choices: null
-    id: b73cc7db-2724-4d1c-b8e5-11334621e392
-    jinja: 'Translate this from Latin American Spanish into Kannada: {{ sentence_spa
-      }} ||| {{ sentence_kan }}'
+    id: bb5f7015-79a2-48fc-8b1f-964a3144893d
+    jinja: 'Nepali: {{ sentence_npi }} = Bengali: ||| {{ sentence_ben }}'
     metadata: *id001
-    name: translate-this-spa-kan
-    reference: Basic translation (Latin American Spanish into Kannada)
-  b750c935-f637-4380-b5c2-3e18deee3ed2: !Template
+    name: equals-translation-npi-ben
+    reference: Equals translation (Nepali into Bengali)
+  bb87e84d-3c0e-453b-b1b4-75ad5c2a2b34: !Template
     answer_choices: null
-    id: b750c935-f637-4380-b5c2-3e18deee3ed2
-    jinja: 'Translate this from Swahili into Marathi: {{ sentence_swh }} ||| {{ sentence_mar
-      }}'
+    id: bb87e84d-3c0e-453b-b1b4-75ad5c2a2b34
+    jinja: 'Punjabi: {{ sentence_pan }} = Lingala: ||| {{ sentence_lin }}'
     metadata: *id001
-    name: translate-this-swh-mar
-    reference: Basic translation (Swahili into Marathi)
-  b75eff24-0c87-460c-a969-11273bed8404: !Template
+    name: equals-translation-pan-lin
+    reference: Equals translation (Punjabi into Lingala)
+  bbbb42ec-3fff-4b7b-8bf3-9900eba47227: !Template
     answer_choices: null
-    id: b75eff24-0c87-460c-a969-11273bed8404
-    jinja: 'Translate this from Urdu into Nepali: {{ sentence_urd }} ||| {{ sentence_npi
-      }}'
+    id: bbbb42ec-3fff-4b7b-8bf3-9900eba47227
+    jinja: 'Gujarati: {{ sentence_guj }} = Arabic: ||| {{ sentence_ara }}'
     metadata: *id001
-    name: translate-this-urd-npi
-    reference: Basic translation (Urdu into Nepali)
-  b76daecc-0d81-4359-932e-83152fb671d7: !Template
+    name: equals-translation-guj-ara
+    reference: Equals translation (Gujarati into Arabic)
+  bc002d1f-b4ae-419b-9bf5-c88e6ee46c3c: !Template
     answer_choices: null
-    id: b76daecc-0d81-4359-932e-83152fb671d7
-    jinja: 'Translate this from Arabic into Vietnamese: {{ sentence_ara }} ||| {{
-      sentence_vie }}'
+    id: bc002d1f-b4ae-419b-9bf5-c88e6ee46c3c
+    jinja: 'Punjabi: {{ sentence_pan }} = Hindi: ||| {{ sentence_hin }}'
     metadata: *id001
-    name: translate-this-ara-vie
-    reference: Basic translation (Arabic into Vietnamese)
-  b77e6a8b-9b8d-4f04-be6b-85af9457e551: !Template
+    name: equals-translation-pan-hin
+    reference: Equals translation (Punjabi into Hindi)
+  bc27c04b-cf7d-4669-8984-2a82b3e311a2: !Template
     answer_choices: null
-    id: b77e6a8b-9b8d-4f04-be6b-85af9457e551
-    jinja: 'Translate this from English into Bengali: {{ sentence_eng }} ||| {{ sentence_ben
-      }}'
+    id: bc27c04b-cf7d-4669-8984-2a82b3e311a2
+    jinja: 'Tamil: {{ sentence_tam }} = Xhosa: ||| {{ sentence_xho }}'
     metadata: *id001
-    name: translate-this-eng-ben
-    reference: Basic translation (English into Bengali)
-  b7ca9ccb-2e9e-4a83-a00d-b36f3424382c: !Template
+    name: equals-translation-tam-xho
+    reference: Equals translation (Tamil into Xhosa)
+  bc880ad9-e8c3-436b-ae17-69be7dca544d: !Template
     answer_choices: null
-    id: b7ca9ccb-2e9e-4a83-a00d-b36f3424382c
-    jinja: 'Translate this from Marathi into Gujarati: {{ sentence_mar }} ||| {{ sentence_guj
+    id: bc880ad9-e8c3-436b-ae17-69be7dca544d
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = Northern Sotho: ||| {{ sentence_nso
       }}'
     metadata: *id001
-    name: translate-this-mar-guj
-    reference: Basic translation (Marathi into Gujarati)
-  b7edc6be-2d08-4372-9472-0e54d4e98b5e: !Template
+    name: equals-translation-spa-nso
+    reference: Equals translation (Latin American Spanish into Northern Sotho)
+  bc9035d6-5a36-40fd-8161-cd1d286d695c: !Template
     answer_choices: null
-    id: b7edc6be-2d08-4372-9472-0e54d4e98b5e
-    jinja: 'Translate this from Latin American Spanish into French: {{ sentence_spa
-      }} ||| {{ sentence_fra }}'
+    id: bc9035d6-5a36-40fd-8161-cd1d286d695c
+    jinja: 'Hindi: {{ sentence_hin }} = Wolof: ||| {{ sentence_wol }}'
     metadata: *id001
-    name: translate-this-spa-fra
-    reference: Basic translation (Latin American Spanish into French)
-  b814a414-7171-4d39-9385-2f7c9e021fa1: !Template
+    name: equals-translation-hin-wol
+    reference: Equals translation (Hindi into Wolof)
+  bd774980-bc63-4fb4-bc39-a3e3cf77f9cc: !Template
     answer_choices: null
-    id: b814a414-7171-4d39-9385-2f7c9e021fa1
-    jinja: 'Translate this from Assamese into Northern Sotho: {{ sentence_asm }} |||
-      {{ sentence_nso }}'
+    id: bd774980-bc63-4fb4-bc39-a3e3cf77f9cc
+    jinja: 'Lingala: {{ sentence_lin }} = Tamil: ||| {{ sentence_tam }}'
     metadata: *id001
-    name: translate-this-asm-nso
-    reference: Basic translation (Assamese into Northern Sotho)
-  b821238e-eabe-4954-829e-ac1f289fd439: !Template
+    name: equals-translation-lin-tam
+    reference: Equals translation (Lingala into Tamil)
+  bda92d05-ad4a-4453-97d1-dfa739649ce7: !Template
     answer_choices: null
-    id: b821238e-eabe-4954-829e-ac1f289fd439
-    jinja: 'Translate this from Lingala into Swahili: {{ sentence_lin }} ||| {{ sentence_swh
+    id: bda92d05-ad4a-4453-97d1-dfa739649ce7
+    jinja: 'Marathi: {{ sentence_mar }} = Latin American Spanish: ||| {{ sentence_spa
       }}'
     metadata: *id001
-    name: translate-this-lin-swh
-    reference: Basic translation (Lingala into Swahili)
-  b86cf77f-3b9e-4c5b-9cae-6f159341b884: !Template
-    answer_choices: null
-    id: b86cf77f-3b9e-4c5b-9cae-6f159341b884
-    jinja: 'Translate this from Indonesian into Assamese: {{ sentence_ind }} ||| {{
-      sentence_asm }}'
-    metadata: *id001
-    name: translate-this-ind-asm
-    reference: Basic translation (Indonesian into Assamese)
-  b8b3f494-48c5-4316-abc1-a86fa17f0650: !Template
+    name: equals-translation-mar-spa
+    reference: Equals translation (Marathi into Latin American Spanish)
+  bdbdd1a8-40a3-4aaa-a186-efffe9160e4a: !Template
     answer_choices: null
-    id: b8b3f494-48c5-4316-abc1-a86fa17f0650
-    jinja: 'Translate this from simplified Chinese into Swahili: {{ sentence_zho_simpl
-      }} ||| {{ sentence_swh }}'
+    id: bdbdd1a8-40a3-4aaa-a186-efffe9160e4a
+    jinja: 'Yoruba: {{ sentence_yor }} = French: ||| {{ sentence_fra }}'
     metadata: *id001
-    name: translate-this-zho_simpl-swh
-    reference: Basic translation (simplified Chinese into Swahili)
-  b8e88f16-0662-4108-b5e7-daee4b11b874: !Template
+    name: equals-translation-yor-fra
+    reference: Equals translation (Yoruba into French)
+  bdcd5a30-df32-45a3-90cd-798d0eac5254: !Template
     answer_choices: null
-    id: b8e88f16-0662-4108-b5e7-daee4b11b874
-    jinja: 'Translate this from Hindi into Latin American Spanish: {{ sentence_hin
-      }} ||| {{ sentence_spa }}'
+    id: bdcd5a30-df32-45a3-90cd-798d0eac5254
+    jinja: 'Assamese: {{ sentence_asm }} = Urdu: ||| {{ sentence_urd }}'
     metadata: *id001
-    name: translate-this-hin-spa
-    reference: Basic translation (Hindi into Latin American Spanish)
-  b95b17a7-df26-4b2e-9a69-8a6cc1f81b26: !Template
+    name: equals-translation-asm-urd
+    reference: Equals translation (Assamese into Urdu)
+  be21c701-9a69-4d1e-835f-1025890149e3: !Template
     answer_choices: null
-    id: b95b17a7-df26-4b2e-9a69-8a6cc1f81b26
-    jinja: 'Translate this from Vietnamese into Brazilian Portuguese: {{ sentence_vie
-      }} ||| {{ sentence_por }}'
+    id: be21c701-9a69-4d1e-835f-1025890149e3
+    jinja: 'Marathi: {{ sentence_mar }} = Wolof: ||| {{ sentence_wol }}'
     metadata: *id001
-    name: translate-this-vie-por
-    reference: Basic translation (Vietnamese into Brazilian Portuguese)
-  b9cc21b9-da94-4094-a732-fe153e2b660d: !Template
+    name: equals-translation-mar-wol
+    reference: Equals translation (Marathi into Wolof)
+  be507d9a-7643-4d96-bfaa-28d2c5221d19: !Template
     answer_choices: null
-    id: b9cc21b9-da94-4094-a732-fe153e2b660d
-    jinja: 'Translate this from Tamil into Assamese: {{ sentence_tam }} ||| {{ sentence_asm
+    id: be507d9a-7643-4d96-bfaa-28d2c5221d19
+    jinja: 'Catalan: {{ sentence_cat }} = traditional Chinese: ||| {{ sentence_zho_trad
       }}'
     metadata: *id001
-    name: translate-this-tam-asm
-    reference: Basic translation (Tamil into Assamese)
-  b9e7fbeb-6cc3-46a3-a19c-6373cfa01845: !Template
+    name: equals-translation-cat-zho_trad
+    reference: Equals translation (Catalan into traditional Chinese)
+  be70855b-10a9-41cb-a342-80dd3bbfdb5c: !Template
     answer_choices: null
-    id: b9e7fbeb-6cc3-46a3-a19c-6373cfa01845
-    jinja: 'Translate this from Oriya into Lingala: {{ sentence_ory }} ||| {{ sentence_lin
-      }}'
+    id: be70855b-10a9-41cb-a342-80dd3bbfdb5c
+    jinja: 'English: {{ sentence_eng }} = Xhosa: ||| {{ sentence_xho }}'
     metadata: *id001
-    name: translate-this-ory-lin
-    reference: Basic translation (Oriya into Lingala)
-  b9ee292d-0d16-4ccd-8e4e-2b551aba2a0d: !Template
+    name: equals-translation-eng-xho
+    reference: Equals translation (English into Xhosa)
+  bf0533f7-06a4-4033-a4e5-9faf7948ad97: !Template
     answer_choices: null
-    id: b9ee292d-0d16-4ccd-8e4e-2b551aba2a0d
-    jinja: 'Translate this from Punjabi into Assamese: {{ sentence_pan }} ||| {{ sentence_asm
-      }}'
+    id: bf0533f7-06a4-4033-a4e5-9faf7948ad97
+    jinja: 'Lingala: {{ sentence_lin }} = Oriya: ||| {{ sentence_ory }}'
     metadata: *id001
-    name: translate-this-pan-asm
-    reference: Basic translation (Punjabi into Assamese)
-  ba7848ec-78ff-4f73-861e-58762590c984: !Template
+    name: equals-translation-lin-ory
+    reference: Equals translation (Lingala into Oriya)
+  bff1a20e-ab9f-42fa-bc73-ed8cde143629: !Template
     answer_choices: null
-    id: ba7848ec-78ff-4f73-861e-58762590c984
-    jinja: 'Translate this from Malayalam into Xhosa: {{ sentence_mal }} ||| {{ sentence_xho
+    id: bff1a20e-ab9f-42fa-bc73-ed8cde143629
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = French: ||| {{ sentence_fra
       }}'
     metadata: *id001
-    name: translate-this-mal-xho
-    reference: Basic translation (Malayalam into Xhosa)
-  baabf114-b720-4b8d-9d56-d42e1441b000: !Template
+    name: equals-translation-zho_trad-fra
+    reference: Equals translation (traditional Chinese into French)
+  c009a14e-94fa-4151-ad77-dde9e08feb33: !Template
     answer_choices: null
-    id: baabf114-b720-4b8d-9d56-d42e1441b000
-    jinja: 'Translate this from Zulu into Yoruba: {{ sentence_zul }} ||| {{ sentence_yor
-      }}'
+    id: c009a14e-94fa-4151-ad77-dde9e08feb33
+    jinja: 'Xhosa: {{ sentence_xho }} = Bengali: ||| {{ sentence_ben }}'
     metadata: *id001
-    name: translate-this-zul-yor
-    reference: Basic translation (Zulu into Yoruba)
-  baba029a-af8d-4508-8610-673c91662c52: !Template
+    name: equals-translation-xho-ben
+    reference: Equals translation (Xhosa into Bengali)
+  c00e1eb0-acbf-44dd-81bb-4a102225ff3b: !Template
     answer_choices: null
-    id: baba029a-af8d-4508-8610-673c91662c52
-    jinja: 'Translate this from Urdu into Xhosa: {{ sentence_urd }} ||| {{ sentence_xho
+    id: c00e1eb0-acbf-44dd-81bb-4a102225ff3b
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Assamese: ||| {{ sentence_asm
       }}'
     metadata: *id001
-    name: translate-this-urd-xho
-    reference: Basic translation (Urdu into Xhosa)
-  bae48dc5-0445-41de-a312-20729e91e424: !Template
+    name: equals-translation-zho_trad-asm
+    reference: Equals translation (traditional Chinese into Assamese)
+  c047fb0d-0768-4e8f-bbe5-4595d2e42a69: !Template
     answer_choices: null
-    id: bae48dc5-0445-41de-a312-20729e91e424
-    jinja: 'Translate this from Catalan into Xhosa: {{ sentence_cat }} ||| {{ sentence_xho
-      }}'
+    id: c047fb0d-0768-4e8f-bbe5-4595d2e42a69
+    jinja: 'Tamil: {{ sentence_tam }} = Zulu: ||| {{ sentence_zul }}'
     metadata: *id001
-    name: translate-this-cat-xho
-    reference: Basic translation (Catalan into Xhosa)
-  bb205d34-618b-47dc-abd7-1cc54a51c74c: !Template
+    name: equals-translation-tam-zul
+    reference: Equals translation (Tamil into Zulu)
+  c1320dfd-f39b-4a1e-8256-1c165f4ea322: !Template
     answer_choices: null
-    id: bb205d34-618b-47dc-abd7-1cc54a51c74c
-    jinja: 'Translate this from French into Swahili: {{ sentence_fra }} ||| {{ sentence_swh
-      }}'
+    id: c1320dfd-f39b-4a1e-8256-1c165f4ea322
+    jinja: 'Urdu: {{ sentence_urd }} = Assamese: ||| {{ sentence_asm }}'
     metadata: *id001
-    name: translate-this-fra-swh
-    reference: Basic translation (French into Swahili)
-  bba15902-6501-433b-a977-1d3c7bfe6900: !Template
+    name: equals-translation-urd-asm
+    reference: Equals translation (Urdu into Assamese)
+  c14875da-6aff-4f65-a7fb-2d318b40cb72: !Template
     answer_choices: null
-    id: bba15902-6501-433b-a977-1d3c7bfe6900
-    jinja: 'Translate this from Zulu into Nepali: {{ sentence_zul }} ||| {{ sentence_npi
-      }}'
+    id: c14875da-6aff-4f65-a7fb-2d318b40cb72
+    jinja: 'Oriya: {{ sentence_ory }} = Igbo: ||| {{ sentence_ibo }}'
     metadata: *id001
-    name: translate-this-zul-npi
-    reference: Basic translation (Zulu into Nepali)
-  bbe3be52-6d83-46e5-be5d-87084400e790: !Template
+    name: equals-translation-ory-ibo
+    reference: Equals translation (Oriya into Igbo)
+  c1a28c20-6b8a-4e6a-a5da-13007a213f6d: !Template
     answer_choices: null
-    id: bbe3be52-6d83-46e5-be5d-87084400e790
-    jinja: 'Translate this from Igbo into simplified Chinese: {{ sentence_ibo }} |||
-      {{ sentence_zho_simpl }}'
+    id: c1a28c20-6b8a-4e6a-a5da-13007a213f6d
+    jinja: 'Bengali: {{ sentence_ben }} = Indonesian: ||| {{ sentence_ind }}'
     metadata: *id001
-    name: translate-this-ibo-zho_simpl
-    reference: Basic translation (Igbo into simplified Chinese)
-  bc46ab62-9a4f-44c2-b483-2da1c1113946: !Template
+    name: equals-translation-ben-ind
+    reference: Equals translation (Bengali into Indonesian)
+  c1aa2c68-58a0-4d34-a2e4-6b0012d441dc: !Template
     answer_choices: null
-    id: bc46ab62-9a4f-44c2-b483-2da1c1113946
-    jinja: 'Translate this from Brazilian Portuguese into Latin American Spanish:
-      {{ sentence_por }} ||| {{ sentence_spa }}'
+    id: c1aa2c68-58a0-4d34-a2e4-6b0012d441dc
+    jinja: 'Bengali: {{ sentence_ben }} = Zulu: ||| {{ sentence_zul }}'
     metadata: *id001
-    name: translate-this-por-spa
-    reference: Basic translation (Brazilian Portuguese into Latin American Spanish)
-  bce3396c-9038-4e7f-a98c-22f83d2c09b4: !Template
+    name: equals-translation-ben-zul
+    reference: Equals translation (Bengali into Zulu)
+  c2180838-e217-4efb-99a8-b3a57b81c1d1: !Template
     answer_choices: null
-    id: bce3396c-9038-4e7f-a98c-22f83d2c09b4
-    jinja: 'Translate this from Bengali into English: {{ sentence_ben }} ||| {{ sentence_eng
-      }}'
+    id: c2180838-e217-4efb-99a8-b3a57b81c1d1
+    jinja: 'Northern Sotho: {{ sentence_nso }} = Kannada: ||| {{ sentence_kan }}'
     metadata: *id001
-    name: translate-this-ben-eng
-    reference: Basic translation (Bengali into English)
-  bd7a1f62-dcf4-4551-89de-96ebcb177e7c: !Template
+    name: equals-translation-nso-kan
+    reference: Equals translation (Northern Sotho into Kannada)
+  c225472b-ec5b-47a3-862c-bb50c107989b: !Template
     answer_choices: null
-    id: bd7a1f62-dcf4-4551-89de-96ebcb177e7c
-    jinja: 'Translate this from Northern Sotho into Tamil: {{ sentence_nso }} |||
-      {{ sentence_tam }}'
-    metadata: *id001
-    name: translate-this-nso-tam
-    reference: Basic translation (Northern Sotho into Tamil)
-  bdf4b8d3-7bc5-4b20-81dd-f1acb52dbe39: !Template
-    answer_choices: null
-    id: bdf4b8d3-7bc5-4b20-81dd-f1acb52dbe39
-    jinja: 'Translate this from Latin American Spanish into Igbo: {{ sentence_spa
-      }} ||| {{ sentence_ibo }}'
+    id: c225472b-ec5b-47a3-862c-bb50c107989b
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Igbo: ||| {{ sentence_ibo
+      }}'
     metadata: *id001
-    name: translate-this-spa-ibo
-    reference: Basic translation (Latin American Spanish into Igbo)
-  be036e4e-fd96-4a92-844c-2534f1d81c1d: !Template
+    name: equals-translation-zho_trad-ibo
+    reference: Equals translation (traditional Chinese into Igbo)
+  c271466d-8ab8-471d-8b46-15ce08f101d4: !Template
     answer_choices: null
-    id: be036e4e-fd96-4a92-844c-2534f1d81c1d
-    jinja: 'Translate this from Marathi into simplified Chinese: {{ sentence_mar }}
-      ||| {{ sentence_zho_simpl }}'
+    id: c271466d-8ab8-471d-8b46-15ce08f101d4
+    jinja: 'Hindi: {{ sentence_hin }} = Oriya: ||| {{ sentence_ory }}'
     metadata: *id001
-    name: translate-this-mar-zho_simpl
-    reference: Basic translation (Marathi into simplified Chinese)
-  be65df16-a1c4-4eb2-9a14-35cfbb384b03: !Template
+    name: equals-translation-hin-ory
+    reference: Equals translation (Hindi into Oriya)
+  c299650c-a86c-44c4-8684-bac62fd066f7: !Template
     answer_choices: null
-    id: be65df16-a1c4-4eb2-9a14-35cfbb384b03
-    jinja: 'Translate this from Indonesian into Yoruba: {{ sentence_ind }} ||| {{
-      sentence_yor }}'
+    id: c299650c-a86c-44c4-8684-bac62fd066f7
+    jinja: 'Catalan: {{ sentence_cat }} = Igbo: ||| {{ sentence_ibo }}'
     metadata: *id001
-    name: translate-this-ind-yor
-    reference: Basic translation (Indonesian into Yoruba)
-  beacede1-a9d7-4f1a-a96a-2c0f44a39fa0: !Template
+    name: equals-translation-cat-ibo
+    reference: Equals translation (Catalan into Igbo)
+  c2a514a4-a3c5-47b0-8022-4235126bd4c4: !Template
     answer_choices: null
-    id: beacede1-a9d7-4f1a-a96a-2c0f44a39fa0
-    jinja: 'Translate this from Vietnamese into Swahili: {{ sentence_vie }} ||| {{
-      sentence_swh }}'
+    id: c2a514a4-a3c5-47b0-8022-4235126bd4c4
+    jinja: 'Hindi: {{ sentence_hin }} = Arabic: ||| {{ sentence_ara }}'
     metadata: *id001
-    name: translate-this-vie-swh
-    reference: Basic translation (Vietnamese into Swahili)
-  bedca7ca-3b69-4ab8-ae10-5d1c2f5b8a87: !Template
+    name: equals-translation-hin-ara
+    reference: Equals translation (Hindi into Arabic)
+  c2b18cfb-e37f-4667-9115-29435b0507fc: !Template
     answer_choices: null
-    id: bedca7ca-3b69-4ab8-ae10-5d1c2f5b8a87
-    jinja: 'Translate this from Igbo into Punjabi: {{ sentence_ibo }} ||| {{ sentence_pan
-      }}'
+    id: c2b18cfb-e37f-4667-9115-29435b0507fc
+    jinja: 'Assamese: {{ sentence_asm }} = Punjabi: ||| {{ sentence_pan }}'
     metadata: *id001
-    name: translate-this-ibo-pan
-    reference: Basic translation (Igbo into Punjabi)
-  bf4280c4-4c04-4de4-abeb-6349f8209591: !Template
+    name: equals-translation-asm-pan
+    reference: Equals translation (Assamese into Punjabi)
+  c2ea7894-834b-4cf4-a9fb-c24d0423ad84: !Template
     answer_choices: null
-    id: bf4280c4-4c04-4de4-abeb-6349f8209591
-    jinja: 'Translate this from Igbo into Latin American Spanish: {{ sentence_ibo
-      }} ||| {{ sentence_spa }}'
+    id: c2ea7894-834b-4cf4-a9fb-c24d0423ad84
+    jinja: 'Marathi: {{ sentence_mar }} = Malayalam: ||| {{ sentence_mal }}'
     metadata: *id001
-    name: translate-this-ibo-spa
-    reference: Basic translation (Igbo into Latin American Spanish)
-  bfd210c7-39f5-454b-bc8e-03649a0bf737: !Template
+    name: equals-translation-mar-mal
+    reference: Equals translation (Marathi into Malayalam)
+  c40e0d66-01e8-4863-8ae8-670b18a685e6: !Template
     answer_choices: null
-    id: bfd210c7-39f5-454b-bc8e-03649a0bf737
-    jinja: 'Translate this from Lingala into simplified Chinese: {{ sentence_lin }}
-      ||| {{ sentence_zho_simpl }}'
+    id: c40e0d66-01e8-4863-8ae8-670b18a685e6
+    jinja: 'Tamil: {{ sentence_tam }} = Vietnamese: ||| {{ sentence_vie }}'
     metadata: *id001
-    name: translate-this-lin-zho_simpl
-    reference: Basic translation (Lingala into simplified Chinese)
-  c0c4b5e9-3c60-4fa4-a696-27872dba0161: !Template
+    name: equals-translation-tam-vie
+    reference: Equals translation (Tamil into Vietnamese)
+  c42792ad-28b8-495e-91ff-d871d92972fa: !Template
     answer_choices: null
-    id: c0c4b5e9-3c60-4fa4-a696-27872dba0161
-    jinja: 'Translate this from Brazilian Portuguese into Urdu: {{ sentence_por }}
-      ||| {{ sentence_urd }}'
+    id: c42792ad-28b8-495e-91ff-d871d92972fa
+    jinja: 'Telugu: {{ sentence_tel }} = Brazilian Portuguese: ||| {{ sentence_por
+      }}'
     metadata: *id001
-    name: translate-this-por-urd
-    reference: Basic translation (Brazilian Portuguese into Urdu)
-  c0c78573-4524-4711-8e6b-915994dfaff8: !Template
+    name: equals-translation-tel-por
+    reference: Equals translation (Telugu into Brazilian Portuguese)
+  c42867e1-9922-4db6-b35c-a5bcd45dd43c: !Template
     answer_choices: null
-    id: c0c78573-4524-4711-8e6b-915994dfaff8
-    jinja: 'Translate this from Gujarati into traditional Chinese: {{ sentence_guj
-      }} ||| {{ sentence_zho_trad }}'
+    id: c42867e1-9922-4db6-b35c-a5bcd45dd43c
+    jinja: 'Assamese: {{ sentence_asm }} = Hindi: ||| {{ sentence_hin }}'
     metadata: *id001
-    name: translate-this-guj-zho_trad
-    reference: Basic translation (Gujarati into traditional Chinese)
-  c0d4e26f-4e97-4fa7-beab-e257bec4179f: !Template
+    name: equals-translation-asm-hin
+    reference: Equals translation (Assamese into Hindi)
+  c47e0673-e2be-42a8-862f-89502814924d: !Template
     answer_choices: null
-    id: c0d4e26f-4e97-4fa7-beab-e257bec4179f
-    jinja: 'Translate this from Telugu into Marathi: {{ sentence_tel }} ||| {{ sentence_mar
-      }}'
+    id: c47e0673-e2be-42a8-862f-89502814924d
+    jinja: 'Urdu: {{ sentence_urd }} = French: ||| {{ sentence_fra }}'
     metadata: *id001
-    name: translate-this-tel-mar
-    reference: Basic translation (Telugu into Marathi)
-  c158c963-7b17-4504-ba56-2ddec521d886: !Template
+    name: equals-translation-urd-fra
+    reference: Equals translation (Urdu into French)
+  c4c114f8-41bf-4b6c-8061-1087eda6ae31: !Template
     answer_choices: null
-    id: c158c963-7b17-4504-ba56-2ddec521d886
-    jinja: 'Translate this from Oriya into Marathi: {{ sentence_ory }} ||| {{ sentence_mar
-      }}'
+    id: c4c114f8-41bf-4b6c-8061-1087eda6ae31
+    jinja: 'English: {{ sentence_eng }} = Igbo: ||| {{ sentence_ibo }}'
     metadata: *id001
-    name: translate-this-ory-mar
-    reference: Basic translation (Oriya into Marathi)
-  c15d63ff-9c70-49ef-a512-74e1fdd92739: !Template
+    name: equals-translation-eng-ibo
+    reference: Equals translation (English into Igbo)
+  c5852b14-0d8a-438f-8714-95fa200a41f2: !Template
     answer_choices: null
-    id: c15d63ff-9c70-49ef-a512-74e1fdd92739
-    jinja: 'Translate this from French into Marathi: {{ sentence_fra }} ||| {{ sentence_mar
-      }}'
+    id: c5852b14-0d8a-438f-8714-95fa200a41f2
+    jinja: 'Hindi: {{ sentence_hin }} = Nepali: ||| {{ sentence_npi }}'
     metadata: *id001
-    name: translate-this-fra-mar
-    reference: Basic translation (French into Marathi)
-  c17183e9-0d17-40f7-9b61-aeb55d2e5fbd: !Template
+    name: equals-translation-hin-npi
+    reference: Equals translation (Hindi into Nepali)
+  c590140a-c316-4165-a64b-c4e3ab7755b0: !Template
     answer_choices: null
-    id: c17183e9-0d17-40f7-9b61-aeb55d2e5fbd
-    jinja: 'Translate this from Xhosa into Latin American Spanish: {{ sentence_xho
-      }} ||| {{ sentence_spa }}'
+    id: c590140a-c316-4165-a64b-c4e3ab7755b0
+    jinja: 'Malayalam: {{ sentence_mal }} = Urdu: ||| {{ sentence_urd }}'
     metadata: *id001
-    name: translate-this-xho-spa
-    reference: Basic translation (Xhosa into Latin American Spanish)
-  c1bfb0a6-1921-48bc-a80d-2c09287adfd6: !Template
+    name: equals-translation-mal-urd
+    reference: Equals translation (Malayalam into Urdu)
+  c5c74175-19b2-4c18-ab8d-a8977deb62c1: !Template
     answer_choices: null
-    id: c1bfb0a6-1921-48bc-a80d-2c09287adfd6
-    jinja: 'Translate this from traditional Chinese into Zulu: {{ sentence_zho_trad
-      }} ||| {{ sentence_zul }}'
+    id: c5c74175-19b2-4c18-ab8d-a8977deb62c1
+    jinja: 'Lingala: {{ sentence_lin }} = Wolof: ||| {{ sentence_wol }}'
     metadata: *id001
-    name: translate-this-zho_trad-zul
-    reference: Basic translation (traditional Chinese into Zulu)
-  c2038cbc-10cd-40c6-bf38-d30593036785: !Template
+    name: equals-translation-lin-wol
+    reference: Equals translation (Lingala into Wolof)
+  c6435d14-b2f4-4a4b-b47f-187975fb063f: !Template
     answer_choices: null
-    id: c2038cbc-10cd-40c6-bf38-d30593036785
-    jinja: 'Translate this from Zulu into Hindi: {{ sentence_zul }} ||| {{ sentence_hin
+    id: c6435d14-b2f4-4a4b-b47f-187975fb063f
+    jinja: 'Hindi: {{ sentence_hin }} = Latin American Spanish: ||| {{ sentence_spa
       }}'
     metadata: *id001
-    name: translate-this-zul-hin
-    reference: Basic translation (Zulu into Hindi)
-  c29ed127-e7ae-448a-9eee-7ea5a1a979a0: !Template
+    name: equals-translation-hin-spa
+    reference: Equals translation (Hindi into Latin American Spanish)
+  c6b39020-8efd-46c4-a07f-64b3021a0178: !Template
     answer_choices: null
-    id: c29ed127-e7ae-448a-9eee-7ea5a1a979a0
-    jinja: 'Translate this from Indonesian into Lingala: {{ sentence_ind }} ||| {{
-      sentence_lin }}'
+    id: c6b39020-8efd-46c4-a07f-64b3021a0178
+    jinja: 'Xhosa: {{ sentence_xho }} = Yoruba: ||| {{ sentence_yor }}'
     metadata: *id001
-    name: translate-this-ind-lin
-    reference: Basic translation (Indonesian into Lingala)
-  c2bb50d0-eb90-4ec7-9790-b3924007a5c6: !Template
+    name: equals-translation-xho-yor
+    reference: Equals translation (Xhosa into Yoruba)
+  c6e35be4-3628-4ee2-9f7f-fc93673710da: !Template
     answer_choices: null
-    id: c2bb50d0-eb90-4ec7-9790-b3924007a5c6
-    jinja: 'Translate this from Zulu into Wolof: {{ sentence_zul }} ||| {{ sentence_wol
+    id: c6e35be4-3628-4ee2-9f7f-fc93673710da
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = English: ||| {{ sentence_eng
       }}'
     metadata: *id001
-    name: translate-this-zul-wol
-    reference: Basic translation (Zulu into Wolof)
-  c3407856-1aee-4e24-b3b3-34ad7dbaa6ba: !Template
+    name: equals-translation-spa-eng
+    reference: Equals translation (Latin American Spanish into English)
+  c728b795-3d41-4008-88bd-59a8d878521f: !Template
     answer_choices: null
-    id: c3407856-1aee-4e24-b3b3-34ad7dbaa6ba
-    jinja: 'Translate this from Kannada into Lingala: {{ sentence_kan }} ||| {{ sentence_lin
-      }}'
+    id: c728b795-3d41-4008-88bd-59a8d878521f
+    jinja: 'Marathi: {{ sentence_mar }} = Catalan: ||| {{ sentence_cat }}'
     metadata: *id001
-    name: translate-this-kan-lin
-    reference: Basic translation (Kannada into Lingala)
-  c35a3467-a4a8-4d3a-997e-185e9023b16e: !Template
+    name: equals-translation-mar-cat
+    reference: Equals translation (Marathi into Catalan)
+  c7bf4782-1f56-4aeb-a630-9f9d3b6a3ceb: !Template
     answer_choices: null
-    id: c35a3467-a4a8-4d3a-997e-185e9023b16e
-    jinja: 'Translate this from Wolof into English: {{ sentence_wol }} ||| {{ sentence_eng
-      }}'
+    id: c7bf4782-1f56-4aeb-a630-9f9d3b6a3ceb
+    jinja: 'French: {{ sentence_fra }} = Catalan: ||| {{ sentence_cat }}'
     metadata: *id001
-    name: translate-this-wol-eng
-    reference: Basic translation (Wolof into English)
-  c36d1b36-6906-49ff-9239-d6c5c4f70cae: !Template
+    name: equals-translation-fra-cat
+    reference: Equals translation (French into Catalan)
+  c7db0d37-f0e4-4a0e-944d-887354473c7e: !Template
     answer_choices: null
-    id: c36d1b36-6906-49ff-9239-d6c5c4f70cae
-    jinja: 'Translate this from Urdu into Hindi: {{ sentence_urd }} ||| {{ sentence_hin
+    id: c7db0d37-f0e4-4a0e-944d-887354473c7e
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Arabic: ||| {{ sentence_ara
       }}'
     metadata: *id001
-    name: translate-this-urd-hin
-    reference: Basic translation (Urdu into Hindi)
-  c43eaca1-e7fd-4610-a197-b2244fc74841: !Template
+    name: equals-translation-zho_trad-ara
+    reference: Equals translation (traditional Chinese into Arabic)
+  c889f318-d4c4-41f8-9a8a-d1a560f98c61: !Template
     answer_choices: null
-    id: c43eaca1-e7fd-4610-a197-b2244fc74841
-    jinja: 'Translate this from Wolof into traditional Chinese: {{ sentence_wol }}
-      ||| {{ sentence_zho_trad }}'
+    id: c889f318-d4c4-41f8-9a8a-d1a560f98c61
+    jinja: 'Gujarati: {{ sentence_guj }} = Hindi: ||| {{ sentence_hin }}'
     metadata: *id001
-    name: translate-this-wol-zho_trad
-    reference: Basic translation (Wolof into traditional Chinese)
-  c442ec8f-4565-4e71-8f1b-c47be4a7470d: !Template
+    name: equals-translation-guj-hin
+    reference: Equals translation (Gujarati into Hindi)
+  c908acda-dd90-48eb-aaea-6d24f2c1cefa: !Template
     answer_choices: null
-    id: c442ec8f-4565-4e71-8f1b-c47be4a7470d
-    jinja: 'Translate this from Punjabi into Zulu: {{ sentence_pan }} ||| {{ sentence_zul
+    id: c908acda-dd90-48eb-aaea-6d24f2c1cefa
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = Vietnamese: ||| {{ sentence_vie
       }}'
     metadata: *id001
-    name: translate-this-pan-zul
-    reference: Basic translation (Punjabi into Zulu)
-  c46b9164-a9fe-48df-a69a-fb780be56b24: !Template
+    name: equals-translation-spa-vie
+    reference: Equals translation (Latin American Spanish into Vietnamese)
+  c90e675f-f852-4a45-a123-dac6c8b61bd1: !Template
     answer_choices: null
-    id: c46b9164-a9fe-48df-a69a-fb780be56b24
-    jinja: 'Translate this from Oriya into Hindi: {{ sentence_ory }} ||| {{ sentence_hin
+    id: c90e675f-f852-4a45-a123-dac6c8b61bd1
+    jinja: 'Yoruba: {{ sentence_yor }} = Latin American Spanish: ||| {{ sentence_spa
       }}'
     metadata: *id001
-    name: translate-this-ory-hin
-    reference: Basic translation (Oriya into Hindi)
-  c47cd1fe-8d77-4fb5-89e4-fe2609cf05ae: !Template
+    name: equals-translation-yor-spa
+    reference: Equals translation (Yoruba into Latin American Spanish)
+  c9372803-6fe9-4f52-85b8-7aabd22c0fe0: !Template
     answer_choices: null
-    id: c47cd1fe-8d77-4fb5-89e4-fe2609cf05ae
-    jinja: 'Translate this from Lingala into Xhosa: {{ sentence_lin }} ||| {{ sentence_xho
-      }}'
+    id: c9372803-6fe9-4f52-85b8-7aabd22c0fe0
+    jinja: 'Nepali: {{ sentence_npi }} = Northern Sotho: ||| {{ sentence_nso }}'
     metadata: *id001
-    name: translate-this-lin-xho
-    reference: Basic translation (Lingala into Xhosa)
-  c4c6ca8f-ba83-43cf-a981-4a4c531d903b: !Template
+    name: equals-translation-npi-nso
+    reference: Equals translation (Nepali into Northern Sotho)
+  c946955e-c0f5-49a7-99c1-c56d53c2d4df: !Template
     answer_choices: null
-    id: c4c6ca8f-ba83-43cf-a981-4a4c531d903b
-    jinja: 'Translate this from Vietnamese into Bengali: {{ sentence_vie }} ||| {{
-      sentence_ben }}'
+    id: c946955e-c0f5-49a7-99c1-c56d53c2d4df
+    jinja: 'Marathi: {{ sentence_mar }} = Nepali: ||| {{ sentence_npi }}'
     metadata: *id001
-    name: translate-this-vie-ben
-    reference: Basic translation (Vietnamese into Bengali)
-  c51e78a5-9884-4580-9ea0-bc74cd690662: !Template
+    name: equals-translation-mar-npi
+    reference: Equals translation (Marathi into Nepali)
+  c9540193-fc2d-48b4-be01-c0e8790a4e22: !Template
     answer_choices: null
-    id: c51e78a5-9884-4580-9ea0-bc74cd690662
-    jinja: 'Translate this from Arabic into Kannada: {{ sentence_ara }} ||| {{ sentence_kan
+    id: c9540193-fc2d-48b4-be01-c0e8790a4e22
+    jinja: 'Kannada: {{ sentence_kan }} = Latin American Spanish: ||| {{ sentence_spa
       }}'
     metadata: *id001
-    name: translate-this-ara-kan
-    reference: Basic translation (Arabic into Kannada)
-  c568f6ec-30a1-4b62-ab3b-d070866ea042: !Template
+    name: equals-translation-kan-spa
+    reference: Equals translation (Kannada into Latin American Spanish)
+  c98e2ae0-ed1c-427a-9917-1e5f655701c4: !Template
     answer_choices: null
-    id: c568f6ec-30a1-4b62-ab3b-d070866ea042
-    jinja: 'Translate this from Tamil into English: {{ sentence_tam }} ||| {{ sentence_eng
-      }}'
+    id: c98e2ae0-ed1c-427a-9917-1e5f655701c4
+    jinja: 'Nepali: {{ sentence_npi }} = Malayalam: ||| {{ sentence_mal }}'
     metadata: *id001
-    name: translate-this-tam-eng
-    reference: Basic translation (Tamil into English)
-  c5e3ecb2-17c1-4716-a583-7b11f84fd726: !Template
+    name: equals-translation-npi-mal
+    reference: Equals translation (Nepali into Malayalam)
+  c99521b0-b76c-4e90-86fe-ab6533131f94: !Template
     answer_choices: null
-    id: c5e3ecb2-17c1-4716-a583-7b11f84fd726
-    jinja: 'Translate this from English into Wolof: {{ sentence_eng }} ||| {{ sentence_wol
+    id: c99521b0-b76c-4e90-86fe-ab6533131f94
+    jinja: 'English: {{ sentence_eng }} = simplified Chinese: ||| {{ sentence_zho_simpl
       }}'
     metadata: *id001
-    name: translate-this-eng-wol
-    reference: Basic translation (English into Wolof)
-  c5ee7b2c-b3fe-4d8e-9727-514bc7a4a966: !Template
+    name: equals-translation-eng-zho_simpl
+    reference: Equals translation (English into simplified Chinese)
+  c99e054c-58b4-42fa-b0de-bcc4d8143711: !Template
     answer_choices: null
-    id: c5ee7b2c-b3fe-4d8e-9727-514bc7a4a966
-    jinja: 'Translate this from Assamese into traditional Chinese: {{ sentence_asm
-      }} ||| {{ sentence_zho_trad }}'
+    id: c99e054c-58b4-42fa-b0de-bcc4d8143711
+    jinja: 'Nepali: {{ sentence_npi }} = Marathi: ||| {{ sentence_mar }}'
     metadata: *id001
-    name: translate-this-asm-zho_trad
-    reference: Basic translation (Assamese into traditional Chinese)
-  c5f29674-b447-420d-83a3-af5a26fc0f5b: !Template
+    name: equals-translation-npi-mar
+    reference: Equals translation (Nepali into Marathi)
+  c9c368bd-6353-462d-9c14-24309adfc1e7: !Template
     answer_choices: null
-    id: c5f29674-b447-420d-83a3-af5a26fc0f5b
-    jinja: 'Translate this from Catalan into Urdu: {{ sentence_cat }} ||| {{ sentence_urd
+    id: c9c368bd-6353-462d-9c14-24309adfc1e7
+    jinja: 'Arabic: {{ sentence_ara }} = Brazilian Portuguese: ||| {{ sentence_por
       }}'
     metadata: *id001
-    name: translate-this-cat-urd
-    reference: Basic translation (Catalan into Urdu)
-  c632c8b4-70ab-45d8-9a51-10964f836ef1: !Template
+    name: equals-translation-ara-por
+    reference: Equals translation (Arabic into Brazilian Portuguese)
+  c9e8b6e4-bfac-40ef-b92a-39c0debcfa86: !Template
     answer_choices: null
-    id: c632c8b4-70ab-45d8-9a51-10964f836ef1
-    jinja: 'Translate this from Xhosa into Indonesian: {{ sentence_xho }} ||| {{ sentence_ind
+    id: c9e8b6e4-bfac-40ef-b92a-39c0debcfa86
+    jinja: 'Kannada: {{ sentence_kan }} = traditional Chinese: ||| {{ sentence_zho_trad
       }}'
     metadata: *id001
-    name: translate-this-xho-ind
-    reference: Basic translation (Xhosa into Indonesian)
-  c6984a76-0f10-4abe-a8d9-ca64fd69eb8e: !Template
+    name: equals-translation-kan-zho_trad
+    reference: Equals translation (Kannada into traditional Chinese)
+  ca0dd0c1-44bc-40d8-99b9-1a4433a538a7: !Template
     answer_choices: null
-    id: c6984a76-0f10-4abe-a8d9-ca64fd69eb8e
-    jinja: 'Translate this from Vietnamese into Xhosa: {{ sentence_vie }} ||| {{ sentence_xho
-      }}'
+    id: ca0dd0c1-44bc-40d8-99b9-1a4433a538a7
+    jinja: 'Igbo: {{ sentence_ibo }} = Punjabi: ||| {{ sentence_pan }}'
     metadata: *id001
-    name: translate-this-vie-xho
-    reference: Basic translation (Vietnamese into Xhosa)
-  c6c8e59f-8b97-40e6-8ed3-255dc40aa5c0: !Template
+    name: equals-translation-ibo-pan
+    reference: Equals translation (Igbo into Punjabi)
+  ca9f7d9c-6681-4e62-b956-43a871806a5f: !Template
     answer_choices: null
-    id: c6c8e59f-8b97-40e6-8ed3-255dc40aa5c0
-    jinja: 'Translate this from Bengali into Assamese: {{ sentence_ben }} ||| {{ sentence_asm
+    id: ca9f7d9c-6681-4e62-b956-43a871806a5f
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Igbo: ||| {{ sentence_ibo
       }}'
     metadata: *id001
-    name: translate-this-ben-asm
-    reference: Basic translation (Bengali into Assamese)
-  c74e1106-bb5b-49a2-b36e-cc190395ebf2: !Template
+    name: equals-translation-zho_simpl-ibo
+    reference: Equals translation (simplified Chinese into Igbo)
+  cac00a10-c7bc-48ed-8ad3-e0d9442e1232: !Template
     answer_choices: null
-    id: c74e1106-bb5b-49a2-b36e-cc190395ebf2
-    jinja: 'Translate this from French into Brazilian Portuguese: {{ sentence_fra
-      }} ||| {{ sentence_por }}'
+    id: cac00a10-c7bc-48ed-8ad3-e0d9442e1232
+    jinja: 'Marathi: {{ sentence_mar }} = Telugu: ||| {{ sentence_tel }}'
     metadata: *id001
-    name: translate-this-fra-por
-    reference: Basic translation (French into Brazilian Portuguese)
-  c7646f81-e475-4702-ac92-c549a1a43d40: !Template
+    name: equals-translation-mar-tel
+    reference: Equals translation (Marathi into Telugu)
+  cb0c7b10-d7df-4020-98c8-dccc37f2e381: !Template
     answer_choices: null
-    id: c7646f81-e475-4702-ac92-c549a1a43d40
-    jinja: 'Translate this from English into Catalan: {{ sentence_eng }} ||| {{ sentence_cat
-      }}'
+    id: cb0c7b10-d7df-4020-98c8-dccc37f2e381
+    jinja: 'Indonesian: {{ sentence_ind }} = Xhosa: ||| {{ sentence_xho }}'
     metadata: *id001
-    name: translate-this-eng-cat
-    reference: Basic translation (English into Catalan)
-  c7cc7b76-6fed-4cd5-b09d-7646108af5bc: !Template
+    name: equals-translation-ind-xho
+    reference: Equals translation (Indonesian into Xhosa)
+  cb483723-bcaf-4aec-813a-2f4aff35772d: !Template
     answer_choices: null
-    id: c7cc7b76-6fed-4cd5-b09d-7646108af5bc
-    jinja: 'Translate this from Zulu into Indonesian: {{ sentence_zul }} ||| {{ sentence_ind
-      }}'
+    id: cb483723-bcaf-4aec-813a-2f4aff35772d
+    jinja: 'Bengali: {{ sentence_ben }} = Oriya: ||| {{ sentence_ory }}'
     metadata: *id001
-    name: translate-this-zul-ind
-    reference: Basic translation (Zulu into Indonesian)
-  c7efe1d6-41b6-402d-b3bd-bf6243f76d14: !Template
+    name: equals-translation-ben-ory
+    reference: Equals translation (Bengali into Oriya)
+  cb994647-dcf1-467e-a948-50a9b599bc91: !Template
     answer_choices: null
-    id: c7efe1d6-41b6-402d-b3bd-bf6243f76d14
-    jinja: 'Translate this from Bengali into Kannada: {{ sentence_ben }} ||| {{ sentence_kan
-      }}'
+    id: cb994647-dcf1-467e-a948-50a9b599bc91
+    jinja: 'Xhosa: {{ sentence_xho }} = Punjabi: ||| {{ sentence_pan }}'
     metadata: *id001
-    name: translate-this-ben-kan
-    reference: Basic translation (Bengali into Kannada)
-  c86526b8-2822-4376-88e6-7f6f70a54d6e: !Template
+    name: equals-translation-xho-pan
+    reference: Equals translation (Xhosa into Punjabi)
+  cbaa1587-7f01-4016-8834-2f72f8ebb2ac: !Template
     answer_choices: null
-    id: c86526b8-2822-4376-88e6-7f6f70a54d6e
-    jinja: 'Translate this from French into Gujarati: {{ sentence_fra }} ||| {{ sentence_guj
-      }}'
+    id: cbaa1587-7f01-4016-8834-2f72f8ebb2ac
+    jinja: 'Xhosa: {{ sentence_xho }} = Gujarati: ||| {{ sentence_guj }}'
     metadata: *id001
-    name: translate-this-fra-guj
-    reference: Basic translation (French into Gujarati)
-  c88d7ee5-b89d-4aaf-b2e9-5fd8b5e42fea: !Template
+    name: equals-translation-xho-guj
+    reference: Equals translation (Xhosa into Gujarati)
+  cc084ffb-7cc5-4d1f-acf3-f049c4b39a56: !Template
     answer_choices: null
-    id: c88d7ee5-b89d-4aaf-b2e9-5fd8b5e42fea
-    jinja: 'Translate this from Igbo into Assamese: {{ sentence_ibo }} ||| {{ sentence_asm
-      }}'
+    id: cc084ffb-7cc5-4d1f-acf3-f049c4b39a56
+    jinja: 'Urdu: {{ sentence_urd }} = Vietnamese: ||| {{ sentence_vie }}'
     metadata: *id001
-    name: translate-this-ibo-asm
-    reference: Basic translation (Igbo into Assamese)
-  c896186d-4041-4445-9cac-11956b7d96f6: !Template
+    name: equals-translation-urd-vie
+    reference: Equals translation (Urdu into Vietnamese)
+  cc4eb279-4ef4-4c44-8fde-49d398be7b8b: !Template
     answer_choices: null
-    id: c896186d-4041-4445-9cac-11956b7d96f6
-    jinja: 'Translate this from Kannada into Nepali: {{ sentence_kan }} ||| {{ sentence_npi
-      }}'
+    id: cc4eb279-4ef4-4c44-8fde-49d398be7b8b
+    jinja: 'French: {{ sentence_fra }} = Punjabi: ||| {{ sentence_pan }}'
     metadata: *id001
-    name: translate-this-kan-npi
-    reference: Basic translation (Kannada into Nepali)
-  c9755628-2cde-4984-a570-762eb6fb3f50: !Template
+    name: equals-translation-fra-pan
+    reference: Equals translation (French into Punjabi)
+  cc6e5466-26ae-4efa-a38c-cef389dd71cb: !Template
     answer_choices: null
-    id: c9755628-2cde-4984-a570-762eb6fb3f50
-    jinja: 'Translate this from Latin American Spanish into Oriya: {{ sentence_spa
-      }} ||| {{ sentence_ory }}'
+    id: cc6e5466-26ae-4efa-a38c-cef389dd71cb
+    jinja: 'Vietnamese: {{ sentence_vie }} = Swahili: ||| {{ sentence_swh }}'
     metadata: *id001
-    name: translate-this-spa-ory
-    reference: Basic translation (Latin American Spanish into Oriya)
-  c9a9f908-3f4e-4e10-be91-51ae6a65e460: !Template
+    name: equals-translation-vie-swh
+    reference: Equals translation (Vietnamese into Swahili)
+  ccd7a710-d083-4c85-beaf-fce6fa945886: !Template
     answer_choices: null
-    id: c9a9f908-3f4e-4e10-be91-51ae6a65e460
-    jinja: 'Translate this from Vietnamese into Yoruba: {{ sentence_vie }} ||| {{
-      sentence_yor }}'
+    id: ccd7a710-d083-4c85-beaf-fce6fa945886
+    jinja: 'French: {{ sentence_fra }} = Zulu: ||| {{ sentence_zul }}'
     metadata: *id001
-    name: translate-this-vie-yor
-    reference: Basic translation (Vietnamese into Yoruba)
-  c9b071c0-3e6f-4db2-bd12-56c5be43249d: !Template
+    name: equals-translation-fra-zul
+    reference: Equals translation (French into Zulu)
+  ccdc7483-8d40-4414-a6a7-886b5f3b84da: !Template
     answer_choices: null
-    id: c9b071c0-3e6f-4db2-bd12-56c5be43249d
-    jinja: 'Translate this from Gujarati into Assamese: {{ sentence_guj }} ||| {{
-      sentence_asm }}'
+    id: ccdc7483-8d40-4414-a6a7-886b5f3b84da
+    jinja: 'Gujarati: {{ sentence_guj }} = French: ||| {{ sentence_fra }}'
     metadata: *id001
-    name: translate-this-guj-asm
-    reference: Basic translation (Gujarati into Assamese)
-  c9e6a767-896e-4c5f-b039-b9b087daefc4: !Template
+    name: equals-translation-guj-fra
+    reference: Equals translation (Gujarati into French)
+  cd7d8a2a-bea7-4417-90a6-1646900fa39f: !Template
     answer_choices: null
-    id: c9e6a767-896e-4c5f-b039-b9b087daefc4
-    jinja: 'Translate this from Northern Sotho into Catalan: {{ sentence_nso }} |||
-      {{ sentence_cat }}'
+    id: cd7d8a2a-bea7-4417-90a6-1646900fa39f
+    jinja: 'Zulu: {{ sentence_zul }} = Catalan: ||| {{ sentence_cat }}'
     metadata: *id001
-    name: translate-this-nso-cat
-    reference: Basic translation (Northern Sotho into Catalan)
-  ca93e868-3722-46af-88b4-3ca69fd36a52: !Template
+    name: equals-translation-zul-cat
+    reference: Equals translation (Zulu into Catalan)
+  cd81f22b-9c45-4c66-994c-3dd52bd700a1: !Template
     answer_choices: null
-    id: ca93e868-3722-46af-88b4-3ca69fd36a52
-    jinja: 'Translate this from Igbo into French: {{ sentence_ibo }} ||| {{ sentence_fra
+    id: cd81f22b-9c45-4c66-994c-3dd52bd700a1
+    jinja: 'Telugu: {{ sentence_tel }} = simplified Chinese: ||| {{ sentence_zho_simpl
       }}'
     metadata: *id001
-    name: translate-this-ibo-fra
-    reference: Basic translation (Igbo into French)
-  cac9ac5c-bff2-48fc-8fbe-bb25cf940488: !Template
+    name: equals-translation-tel-zho_simpl
+    reference: Equals translation (Telugu into simplified Chinese)
+  cd97fbab-186d-4153-a1b5-ad86ff40426e: !Template
     answer_choices: null
-    id: cac9ac5c-bff2-48fc-8fbe-bb25cf940488
-    jinja: 'Translate this from Northern Sotho into Marathi: {{ sentence_nso }} |||
-      {{ sentence_mar }}'
+    id: cd97fbab-186d-4153-a1b5-ad86ff40426e
+    jinja: 'Tamil: {{ sentence_tam }} = Punjabi: ||| {{ sentence_pan }}'
     metadata: *id001
-    name: translate-this-nso-mar
-    reference: Basic translation (Northern Sotho into Marathi)
-  cadd6b39-2047-4f4f-82ff-e4e157784ba0: !Template
+    name: equals-translation-tam-pan
+    reference: Equals translation (Tamil into Punjabi)
+  cdb4aeab-0f4b-4a54-b6e1-60a062fe7c21: !Template
     answer_choices: null
-    id: cadd6b39-2047-4f4f-82ff-e4e157784ba0
-    jinja: 'Translate this from Kannada into Northern Sotho: {{ sentence_kan }} |||
-      {{ sentence_nso }}'
+    id: cdb4aeab-0f4b-4a54-b6e1-60a062fe7c21
+    jinja: 'Zulu: {{ sentence_zul }} = English: ||| {{ sentence_eng }}'
     metadata: *id001
-    name: translate-this-kan-nso
-    reference: Basic translation (Kannada into Northern Sotho)
-  cba625aa-c144-407c-a4ff-1abe087e9416: !Template
+    name: equals-translation-zul-eng
+    reference: Equals translation (Zulu into English)
+  ce139326-89eb-424e-bdba-ff8f36b7a840: !Template
     answer_choices: null
-    id: cba625aa-c144-407c-a4ff-1abe087e9416
-    jinja: 'Translate this from Nepali into Tamil: {{ sentence_npi }} ||| {{ sentence_tam
-      }}'
+    id: ce139326-89eb-424e-bdba-ff8f36b7a840
+    jinja: 'Hindi: {{ sentence_hin }} = Yoruba: ||| {{ sentence_yor }}'
     metadata: *id001
-    name: translate-this-npi-tam
-    reference: Basic translation (Nepali into Tamil)
-  cbb0f7f6-e9bf-4190-b51c-dc811bb356e6: !Template
+    name: equals-translation-hin-yor
+    reference: Equals translation (Hindi into Yoruba)
+  ce30dace-b242-4787-89f4-d4712f6d29b1: !Template
     answer_choices: null
-    id: cbb0f7f6-e9bf-4190-b51c-dc811bb356e6
-    jinja: 'Translate this from traditional Chinese into simplified Chinese: {{ sentence_zho_trad
-      }} ||| {{ sentence_zho_simpl }}'
+    id: ce30dace-b242-4787-89f4-d4712f6d29b1
+    jinja: 'Xhosa: {{ sentence_xho }} = Telugu: ||| {{ sentence_tel }}'
     metadata: *id001
-    name: translate-this-zho_trad-zho_simpl
-    reference: Basic translation (traditional Chinese into simplified Chinese)
-  cc2ac865-346c-4cb2-bad5-836ed9940e28: !Template
+    name: equals-translation-xho-tel
+    reference: Equals translation (Xhosa into Telugu)
+  ce5382f7-06cb-4a5d-8f1b-5578c9d06049: !Template
     answer_choices: null
-    id: cc2ac865-346c-4cb2-bad5-836ed9940e28
-    jinja: 'Translate this from Xhosa into traditional Chinese: {{ sentence_xho }}
-      ||| {{ sentence_zho_trad }}'
+    id: ce5382f7-06cb-4a5d-8f1b-5578c9d06049
+    jinja: 'Swahili: {{ sentence_swh }} = French: ||| {{ sentence_fra }}'
     metadata: *id001
-    name: translate-this-xho-zho_trad
-    reference: Basic translation (Xhosa into traditional Chinese)
-  cc7b757d-907b-400d-bfe9-45a696355279: !Template
+    name: equals-translation-swh-fra
+    reference: Equals translation (Swahili into French)
+  ce7d2401-4198-4f1f-bf73-64d759864679: !Template
     answer_choices: null
-    id: cc7b757d-907b-400d-bfe9-45a696355279
-    jinja: 'Translate this from traditional Chinese into Brazilian Portuguese: {{
-      sentence_zho_trad }} ||| {{ sentence_por }}'
+    id: ce7d2401-4198-4f1f-bf73-64d759864679
+    jinja: 'Telugu: {{ sentence_tel }} = Bengali: ||| {{ sentence_ben }}'
     metadata: *id001
-    name: translate-this-zho_trad-por
-    reference: Basic translation (traditional Chinese into Brazilian Portuguese)
-  cc9e3e9b-5285-45b6-a96c-8262d74e249a: !Template
+    name: equals-translation-tel-ben
+    reference: Equals translation (Telugu into Bengali)
+  ce89e7a3-edf4-4694-8e69-b9f574057b9c: !Template
     answer_choices: null
-    id: cc9e3e9b-5285-45b6-a96c-8262d74e249a
-    jinja: 'Translate this from Malayalam into Hindi: {{ sentence_mal }} ||| {{ sentence_hin
+    id: ce89e7a3-edf4-4694-8e69-b9f574057b9c
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = Punjabi: ||| {{ sentence_pan
       }}'
     metadata: *id001
-    name: translate-this-mal-hin
-    reference: Basic translation (Malayalam into Hindi)
-  ccbcd6e7-a3fe-48be-a206-d526128336b4: !Template
+    name: equals-translation-spa-pan
+    reference: Equals translation (Latin American Spanish into Punjabi)
+  ce953ddd-9b53-424c-8687-a194c1477265: !Template
     answer_choices: null
-    id: ccbcd6e7-a3fe-48be-a206-d526128336b4
-    jinja: 'Translate this from Lingala into Nepali: {{ sentence_lin }} ||| {{ sentence_npi
+    id: ce953ddd-9b53-424c-8687-a194c1477265
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Arabic: ||| {{ sentence_ara
       }}'
     metadata: *id001
-    name: translate-this-lin-npi
-    reference: Basic translation (Lingala into Nepali)
-  ccd6110b-26d5-4c7a-a406-f0315a633712: !Template
+    name: equals-translation-zho_simpl-ara
+    reference: Equals translation (simplified Chinese into Arabic)
+  ceb42835-8618-4a54-b7de-78a5f5d74020: !Template
     answer_choices: null
-    id: ccd6110b-26d5-4c7a-a406-f0315a633712
-    jinja: 'Translate this from Vietnamese into Arabic: {{ sentence_vie }} ||| {{
-      sentence_ara }}'
+    id: ceb42835-8618-4a54-b7de-78a5f5d74020
+    jinja: 'Arabic: {{ sentence_ara }} = Urdu: ||| {{ sentence_urd }}'
     metadata: *id001
-    name: translate-this-vie-ara
-    reference: Basic translation (Vietnamese into Arabic)
-  ccf92322-0fe5-4991-a625-ed4c5e9f0e8b: !Template
+    name: equals-translation-ara-urd
+    reference: Equals translation (Arabic into Urdu)
+  cf71bd45-2502-4044-9210-41962ae0d231: !Template
     answer_choices: null
-    id: ccf92322-0fe5-4991-a625-ed4c5e9f0e8b
-    jinja: 'Translate this from Xhosa into Swahili: {{ sentence_xho }} ||| {{ sentence_swh
-      }}'
+    id: cf71bd45-2502-4044-9210-41962ae0d231
+    jinja: 'Assamese: {{ sentence_asm }} = Arabic: ||| {{ sentence_ara }}'
     metadata: *id001
-    name: translate-this-xho-swh
-    reference: Basic translation (Xhosa into Swahili)
-  ccfe64fd-1401-4463-9801-24f8fba8f125: !Template
+    name: equals-translation-asm-ara
+    reference: Equals translation (Assamese into Arabic)
+  cf76b738-c5d8-4c53-8a55-716238a8caaa: !Template
     answer_choices: null
-    id: ccfe64fd-1401-4463-9801-24f8fba8f125
-    jinja: 'Translate this from Xhosa into English: {{ sentence_xho }} ||| {{ sentence_eng
-      }}'
+    id: cf76b738-c5d8-4c53-8a55-716238a8caaa
+    jinja: 'Telugu: {{ sentence_tel }} = Xhosa: ||| {{ sentence_xho }}'
     metadata: *id001
-    name: translate-this-xho-eng
-    reference: Basic translation (Xhosa into English)
-  cd503ac2-7bd0-4614-a4e1-cb63b5e4c6cd: !Template
+    name: equals-translation-tel-xho
+    reference: Equals translation (Telugu into Xhosa)
+  cf7aef1e-5dad-4a70-a40d-1b369cc9efda: !Template
     answer_choices: null
-    id: cd503ac2-7bd0-4614-a4e1-cb63b5e4c6cd
-    jinja: 'Translate this from Hindi into simplified Chinese: {{ sentence_hin }}
-      ||| {{ sentence_zho_simpl }}'
+    id: cf7aef1e-5dad-4a70-a40d-1b369cc9efda
+    jinja: 'Catalan: {{ sentence_cat }} = Northern Sotho: ||| {{ sentence_nso }}'
     metadata: *id001
-    name: translate-this-hin-zho_simpl
-    reference: Basic translation (Hindi into simplified Chinese)
-  cdda08c7-d3a6-4ea6-a7db-c8175fdcafb5: !Template
+    name: equals-translation-cat-nso
+    reference: Equals translation (Catalan into Northern Sotho)
+  cfa20865-cf5c-4560-a208-9dddee10ed42: !Template
     answer_choices: null
-    id: cdda08c7-d3a6-4ea6-a7db-c8175fdcafb5
-    jinja: 'Translate this from simplified Chinese into Hindi: {{ sentence_zho_simpl
-      }} ||| {{ sentence_hin }}'
+    id: cfa20865-cf5c-4560-a208-9dddee10ed42
+    jinja: 'Indonesian: {{ sentence_ind }} = Telugu: ||| {{ sentence_tel }}'
     metadata: *id001
-    name: translate-this-zho_simpl-hin
-    reference: Basic translation (simplified Chinese into Hindi)
-  cea0ff6e-9041-410c-9f4c-556089c4b8e2: !Template
+    name: equals-translation-ind-tel
+    reference: Equals translation (Indonesian into Telugu)
+  d027c980-d6a3-4c54-82f4-1084b2612413: !Template
     answer_choices: null
-    id: cea0ff6e-9041-410c-9f4c-556089c4b8e2
-    jinja: 'Translate this from Wolof into Catalan: {{ sentence_wol }} ||| {{ sentence_cat
+    id: d027c980-d6a3-4c54-82f4-1084b2612413
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = English: ||| {{ sentence_eng
       }}'
     metadata: *id001
-    name: translate-this-wol-cat
-    reference: Basic translation (Wolof into Catalan)
-  cfb27058-d404-4c95-ba92-3163b8268ba4: !Template
+    name: equals-translation-por-eng
+    reference: Equals translation (Brazilian Portuguese into English)
+  d03dceb6-4d76-424e-bb10-26499425864e: !Template
     answer_choices: null
-    id: cfb27058-d404-4c95-ba92-3163b8268ba4
-    jinja: 'Translate this from Tamil into simplified Chinese: {{ sentence_tam }}
-      ||| {{ sentence_zho_simpl }}'
+    id: d03dceb6-4d76-424e-bb10-26499425864e
+    jinja: 'Indonesian: {{ sentence_ind }} = Gujarati: ||| {{ sentence_guj }}'
     metadata: *id001
-    name: translate-this-tam-zho_simpl
-    reference: Basic translation (Tamil into simplified Chinese)
-  d02a4449-4be5-4d8c-ab6d-631de87c688a: !Template
+    name: equals-translation-ind-guj
+    reference: Equals translation (Indonesian into Gujarati)
+  d05f995e-9bce-43fb-b260-4e98a0ef7e26: !Template
     answer_choices: null
-    id: d02a4449-4be5-4d8c-ab6d-631de87c688a
-    jinja: 'Translate this from Malayalam into Marathi: {{ sentence_mal }} ||| {{
-      sentence_mar }}'
+    id: d05f995e-9bce-43fb-b260-4e98a0ef7e26
+    jinja: 'Nepali: {{ sentence_npi }} = Assamese: ||| {{ sentence_asm }}'
     metadata: *id001
-    name: translate-this-mal-mar
-    reference: Basic translation (Malayalam into Marathi)
-  d060e5d5-d070-42dc-823c-75a5febd4def: !Template
+    name: equals-translation-npi-asm
+    reference: Equals translation (Nepali into Assamese)
+  d09268b1-4e9c-4923-9a1a-93f4c62b8374: !Template
     answer_choices: null
-    id: d060e5d5-d070-42dc-823c-75a5febd4def
-    jinja: 'Translate this from English into Northern Sotho: {{ sentence_eng }} |||
-      {{ sentence_nso }}'
+    id: d09268b1-4e9c-4923-9a1a-93f4c62b8374
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Xhosa: ||| {{ sentence_xho
+      }}'
     metadata: *id001
-    name: translate-this-eng-nso
-    reference: Basic translation (English into Northern Sotho)
-  d06e5c46-75c0-46df-b2b9-0c7c4c8eb687: !Template
+    name: equals-translation-por-xho
+    reference: Equals translation (Brazilian Portuguese into Xhosa)
+  d0ceb13a-b1b3-45c9-8941-985388280715: !Template
     answer_choices: null
-    id: d06e5c46-75c0-46df-b2b9-0c7c4c8eb687
-    jinja: 'Translate this from Yoruba into Kannada: {{ sentence_yor }} ||| {{ sentence_kan
-      }}'
+    id: d0ceb13a-b1b3-45c9-8941-985388280715
+    jinja: 'Arabic: {{ sentence_ara }} = Lingala: ||| {{ sentence_lin }}'
     metadata: *id001
-    name: translate-this-yor-kan
-    reference: Basic translation (Yoruba into Kannada)
-  d0820cbb-9b40-45b8-b6b6-637a1ea38eb5: !Template
+    name: equals-translation-ara-lin
+    reference: Equals translation (Arabic into Lingala)
+  d12ad39c-92bb-4b55-8dfd-0ac9c97597f4: !Template
     answer_choices: null
-    id: d0820cbb-9b40-45b8-b6b6-637a1ea38eb5
-    jinja: 'Translate this from simplified Chinese into Tamil: {{ sentence_zho_simpl
-      }} ||| {{ sentence_tam }}'
+    id: d12ad39c-92bb-4b55-8dfd-0ac9c97597f4
+    jinja: 'Wolof: {{ sentence_wol }} = Lingala: ||| {{ sentence_lin }}'
     metadata: *id001
-    name: translate-this-zho_simpl-tam
-    reference: Basic translation (simplified Chinese into Tamil)
-  d0d33eab-742a-46b5-b6de-30ea4ed2213a: !Template
+    name: equals-translation-wol-lin
+    reference: Equals translation (Wolof into Lingala)
+  d1303315-a172-4d9b-9b39-bcc180675a38: !Template
     answer_choices: null
-    id: d0d33eab-742a-46b5-b6de-30ea4ed2213a
-    jinja: 'Translate this from Punjabi into Indonesian: {{ sentence_pan }} ||| {{
-      sentence_ind }}'
+    id: d1303315-a172-4d9b-9b39-bcc180675a38
+    jinja: 'Swahili: {{ sentence_swh }} = Urdu: ||| {{ sentence_urd }}'
     metadata: *id001
-    name: translate-this-pan-ind
-    reference: Basic translation (Punjabi into Indonesian)
-  d0dcfe83-d422-4e5a-9c1a-41276330ff25: !Template
+    name: equals-translation-swh-urd
+    reference: Equals translation (Swahili into Urdu)
+  d1f4af20-e2b1-4125-8bba-f5dfe1eb1f97: !Template
     answer_choices: null
-    id: d0dcfe83-d422-4e5a-9c1a-41276330ff25
-    jinja: 'Translate this from Brazilian Portuguese into Lingala: {{ sentence_por
-      }} ||| {{ sentence_lin }}'
+    id: d1f4af20-e2b1-4125-8bba-f5dfe1eb1f97
+    jinja: 'Malayalam: {{ sentence_mal }} = Swahili: ||| {{ sentence_swh }}'
     metadata: *id001
-    name: translate-this-por-lin
-    reference: Basic translation (Brazilian Portuguese into Lingala)
-  d0e46ec7-70b2-42e0-a3ee-919484461784: !Template
+    name: equals-translation-mal-swh
+    reference: Equals translation (Malayalam into Swahili)
+  d1ff4122-bd55-45a6-8717-38c259071fdc: !Template
     answer_choices: null
-    id: d0e46ec7-70b2-42e0-a3ee-919484461784
-    jinja: 'Translate this from Arabic into Hindi: {{ sentence_ara }} ||| {{ sentence_hin
-      }}'
+    id: d1ff4122-bd55-45a6-8717-38c259071fdc
+    jinja: 'Bengali: {{ sentence_ben }} = Catalan: ||| {{ sentence_cat }}'
     metadata: *id001
-    name: translate-this-ara-hin
-    reference: Basic translation (Arabic into Hindi)
-  d1dcad6b-0221-4887-aa90-c6e0f7c64b25: !Template
+    name: equals-translation-ben-cat
+    reference: Equals translation (Bengali into Catalan)
+  d238479b-8711-4637-916d-f5103b1ec8f9: !Template
     answer_choices: null
-    id: d1dcad6b-0221-4887-aa90-c6e0f7c64b25
-    jinja: 'Translate this from Arabic into Assamese: {{ sentence_ara }} ||| {{ sentence_asm
-      }}'
+    id: d238479b-8711-4637-916d-f5103b1ec8f9
+    jinja: 'Tamil: {{ sentence_tam }} = Igbo: ||| {{ sentence_ibo }}'
     metadata: *id001
-    name: translate-this-ara-asm
-    reference: Basic translation (Arabic into Assamese)
-  d29ca5b2-ee46-4cac-b047-134fbec06b43: !Template
+    name: equals-translation-tam-ibo
+    reference: Equals translation (Tamil into Igbo)
+  d2a96ceb-5be1-49fa-96c5-bfa0931894ee: !Template
     answer_choices: null
-    id: d29ca5b2-ee46-4cac-b047-134fbec06b43
-    jinja: 'Translate this from Wolof into Hindi: {{ sentence_wol }} ||| {{ sentence_hin
+    id: d2a96ceb-5be1-49fa-96c5-bfa0931894ee
+    jinja: 'Vietnamese: {{ sentence_vie }} = Latin American Spanish: ||| {{ sentence_spa
       }}'
     metadata: *id001
-    name: translate-this-wol-hin
-    reference: Basic translation (Wolof into Hindi)
-  d2f3a6df-3f22-46c3-b1d5-78eff09b6a31: !Template
+    name: equals-translation-vie-spa
+    reference: Equals translation (Vietnamese into Latin American Spanish)
+  d2f9ccc0-0da7-4a8c-9959-d8a3f2291228: !Template
     answer_choices: null
-    id: d2f3a6df-3f22-46c3-b1d5-78eff09b6a31
-    jinja: 'Translate this from Assamese into Malayalam: {{ sentence_asm }} ||| {{
-      sentence_mal }}'
+    id: d2f9ccc0-0da7-4a8c-9959-d8a3f2291228
+    jinja: 'Yoruba: {{ sentence_yor }} = Assamese: ||| {{ sentence_asm }}'
     metadata: *id001
-    name: translate-this-asm-mal
-    reference: Basic translation (Assamese into Malayalam)
-  d33eb57f-b96c-4c79-b690-559a3a8b9ade: !Template
+    name: equals-translation-yor-asm
+    reference: Equals translation (Yoruba into Assamese)
+  d3101559-883c-45b7-8437-347c45d0e23b: !Template
     answer_choices: null
-    id: d33eb57f-b96c-4c79-b690-559a3a8b9ade
-    jinja: 'Translate this from Indonesian into Catalan: {{ sentence_ind }} ||| {{
-      sentence_cat }}'
+    id: d3101559-883c-45b7-8437-347c45d0e23b
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Brazilian Portuguese: |||
+      {{ sentence_por }}'
     metadata: *id001
-    name: translate-this-ind-cat
-    reference: Basic translation (Indonesian into Catalan)
-  d3a74891-9ee9-442b-b627-0e24186cd1d4: !Template
+    name: equals-translation-zho_trad-por
+    reference: Equals translation (traditional Chinese into Brazilian Portuguese)
+  d4224190-aa97-45df-9e53-4859e1595f92: !Template
     answer_choices: null
-    id: d3a74891-9ee9-442b-b627-0e24186cd1d4
-    jinja: 'Translate this from Oriya into French: {{ sentence_ory }} ||| {{ sentence_fra
-      }}'
+    id: d4224190-aa97-45df-9e53-4859e1595f92
+    jinja: 'Swahili: {{ sentence_swh }} = Arabic: ||| {{ sentence_ara }}'
     metadata: *id001
-    name: translate-this-ory-fra
-    reference: Basic translation (Oriya into French)
-  d3ab09dc-c803-4f4b-ba5c-8ff9f4711544: !Template
+    name: equals-translation-swh-ara
+    reference: Equals translation (Swahili into Arabic)
+  d4827771-b1db-4f86-9849-d86f2f984fba: !Template
     answer_choices: null
-    id: d3ab09dc-c803-4f4b-ba5c-8ff9f4711544
-    jinja: 'Translate this from Kannada into Igbo: {{ sentence_kan }} ||| {{ sentence_ibo
+    id: d4827771-b1db-4f86-9849-d86f2f984fba
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = Wolof: ||| {{ sentence_wol
       }}'
     metadata: *id001
-    name: translate-this-kan-ibo
-    reference: Basic translation (Kannada into Igbo)
-  d3c9dcaf-20ea-4a92-8560-f6ab81974d79: !Template
+    name: equals-translation-spa-wol
+    reference: Equals translation (Latin American Spanish into Wolof)
+  d614a5b1-27ef-494b-b59f-38699830ef33: !Template
     answer_choices: null
-    id: d3c9dcaf-20ea-4a92-8560-f6ab81974d79
-    jinja: 'Translate this from Brazilian Portuguese into Assamese: {{ sentence_por
-      }} ||| {{ sentence_asm }}'
+    id: d614a5b1-27ef-494b-b59f-38699830ef33
+    jinja: 'Punjabi: {{ sentence_pan }} = Kannada: ||| {{ sentence_kan }}'
     metadata: *id001
-    name: translate-this-por-asm
-    reference: Basic translation (Brazilian Portuguese into Assamese)
-  d3e5a6a0-3868-49ee-82a0-d383c69aeabb: !Template
+    name: equals-translation-pan-kan
+    reference: Equals translation (Punjabi into Kannada)
+  d6383305-cc11-44d3-8c8b-6ba89e0c43d3: !Template
     answer_choices: null
-    id: d3e5a6a0-3868-49ee-82a0-d383c69aeabb
-    jinja: 'Translate this from Bengali into Oriya: {{ sentence_ben }} ||| {{ sentence_ory
-      }}'
+    id: d6383305-cc11-44d3-8c8b-6ba89e0c43d3
+    jinja: 'Malayalam: {{ sentence_mal }} = Telugu: ||| {{ sentence_tel }}'
     metadata: *id001
-    name: translate-this-ben-ory
-    reference: Basic translation (Bengali into Oriya)
-  d41df3f0-ed04-42ff-94ca-f23f907ce640: !Template
+    name: equals-translation-mal-tel
+    reference: Equals translation (Malayalam into Telugu)
+  d64c77f1-c8b1-4f4c-b1e1-f1b742ee0186: !Template
     answer_choices: null
-    id: d41df3f0-ed04-42ff-94ca-f23f907ce640
-    jinja: 'Translate this from Brazilian Portuguese into Igbo: {{ sentence_por }}
-      ||| {{ sentence_ibo }}'
+    id: d64c77f1-c8b1-4f4c-b1e1-f1b742ee0186
+    jinja: 'Swahili: {{ sentence_swh }} = Assamese: ||| {{ sentence_asm }}'
     metadata: *id001
-    name: translate-this-por-ibo
-    reference: Basic translation (Brazilian Portuguese into Igbo)
-  d41e6450-48bf-4f6d-859f-4a5f7e3ae450: !Template
+    name: equals-translation-swh-asm
+    reference: Equals translation (Swahili into Assamese)
+  d6567145-03a3-409a-a6cd-ac42507eb523: !Template
     answer_choices: null
-    id: d41e6450-48bf-4f6d-859f-4a5f7e3ae450
-    jinja: 'Translate this from traditional Chinese into Vietnamese: {{ sentence_zho_trad
-      }} ||| {{ sentence_vie }}'
+    id: d6567145-03a3-409a-a6cd-ac42507eb523
+    jinja: 'Telugu: {{ sentence_tel }} = Kannada: ||| {{ sentence_kan }}'
     metadata: *id001
-    name: translate-this-zho_trad-vie
-    reference: Basic translation (traditional Chinese into Vietnamese)
-  d477848f-3809-409a-b486-3600a8c8547a: !Template
+    name: equals-translation-tel-kan
+    reference: Equals translation (Telugu into Kannada)
+  d65ec25d-5986-478f-b1d9-b00a29a9040a: !Template
     answer_choices: null
-    id: d477848f-3809-409a-b486-3600a8c8547a
-    jinja: 'Translate this from Telugu into Urdu: {{ sentence_tel }} ||| {{ sentence_urd
-      }}'
+    id: d65ec25d-5986-478f-b1d9-b00a29a9040a
+    jinja: 'Swahili: {{ sentence_swh }} = Igbo: ||| {{ sentence_ibo }}'
     metadata: *id001
-    name: translate-this-tel-urd
-    reference: Basic translation (Telugu into Urdu)
-  d4f12274-2e12-42b7-b336-82675eb77861: !Template
+    name: equals-translation-swh-ibo
+    reference: Equals translation (Swahili into Igbo)
+  d76cfbc6-5f7a-4ea5-82f1-36cf41774544: !Template
     answer_choices: null
-    id: d4f12274-2e12-42b7-b336-82675eb77861
-    jinja: 'Translate this from Lingala into Marathi: {{ sentence_lin }} ||| {{ sentence_mar
-      }}'
+    id: d76cfbc6-5f7a-4ea5-82f1-36cf41774544
+    jinja: 'Catalan: {{ sentence_cat }} = Arabic: ||| {{ sentence_ara }}'
     metadata: *id001
-    name: translate-this-lin-mar
-    reference: Basic translation (Lingala into Marathi)
-  d5a9aa66-3f17-483e-977c-79bfe6941cab: !Template
+    name: equals-translation-cat-ara
+    reference: Equals translation (Catalan into Arabic)
+  d79cd45b-3267-4923-9295-2fca8139acba: !Template
     answer_choices: null
-    id: d5a9aa66-3f17-483e-977c-79bfe6941cab
-    jinja: 'Translate this from Arabic into Nepali: {{ sentence_ara }} ||| {{ sentence_npi
-      }}'
+    id: d79cd45b-3267-4923-9295-2fca8139acba
+    jinja: 'Urdu: {{ sentence_urd }} = Marathi: ||| {{ sentence_mar }}'
     metadata: *id001
-    name: translate-this-ara-npi
-    reference: Basic translation (Arabic into Nepali)
-  d67f5563-6152-4aca-95a5-35216aa7959f: !Template
+    name: equals-translation-urd-mar
+    reference: Equals translation (Urdu into Marathi)
+  d7a62521-af75-4104-b212-4c787b8bff7b: !Template
     answer_choices: null
-    id: d67f5563-6152-4aca-95a5-35216aa7959f
-    jinja: 'Translate this from Gujarati into Urdu: {{ sentence_guj }} ||| {{ sentence_urd
+    id: d7a62521-af75-4104-b212-4c787b8bff7b
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Marathi: ||| {{ sentence_mar
       }}'
     metadata: *id001
-    name: translate-this-guj-urd
-    reference: Basic translation (Gujarati into Urdu)
-  d68cd205-45b0-4d28-adfe-d49b783638bf: !Template
+    name: equals-translation-por-mar
+    reference: Equals translation (Brazilian Portuguese into Marathi)
+  d7e12858-0939-446c-9cd6-183d864c6bec: !Template
     answer_choices: null
-    id: d68cd205-45b0-4d28-adfe-d49b783638bf
-    jinja: 'Translate this from Lingala into Punjabi: {{ sentence_lin }} ||| {{ sentence_pan
-      }}'
+    id: d7e12858-0939-446c-9cd6-183d864c6bec
+    jinja: 'Indonesian: {{ sentence_ind }} = Hindi: ||| {{ sentence_hin }}'
+    metadata: *id001
+    name: equals-translation-ind-hin
+    reference: Equals translation (Indonesian into Hindi)
+  d8476518-a4ca-457a-a9cb-ab6340ae8cd0: !Template
+    answer_choices: null
+    id: d8476518-a4ca-457a-a9cb-ab6340ae8cd0
+    jinja: 'Malayalam: {{ sentence_mal }} = Xhosa: ||| {{ sentence_xho }}'
     metadata: *id001
-    name: translate-this-lin-pan
-    reference: Basic translation (Lingala into Punjabi)
-  d724fd0e-fb7b-4e65-b5dd-df2987440af6: !Template
+    name: equals-translation-mal-xho
+    reference: Equals translation (Malayalam into Xhosa)
+  d87e13eb-f72d-4a76-b46a-d4cc2d024469: !Template
     answer_choices: null
-    id: d724fd0e-fb7b-4e65-b5dd-df2987440af6
-    jinja: 'Translate this from Tamil into Punjabi: {{ sentence_tam }} ||| {{ sentence_pan
+    id: d87e13eb-f72d-4a76-b46a-d4cc2d024469
+    jinja: 'Vietnamese: {{ sentence_vie }} = simplified Chinese: ||| {{ sentence_zho_simpl
       }}'
     metadata: *id001
-    name: translate-this-tam-pan
-    reference: Basic translation (Tamil into Punjabi)
-  d7333b10-b19f-43ac-8164-40b0e709b1be: !Template
+    name: equals-translation-vie-zho_simpl
+    reference: Equals translation (Vietnamese into simplified Chinese)
+  d90d134a-58e8-4f11-af56-d8a7a76983e8: !Template
     answer_choices: null
-    id: d7333b10-b19f-43ac-8164-40b0e709b1be
-    jinja: 'Translate this from Xhosa into Northern Sotho: {{ sentence_xho }} |||
-      {{ sentence_nso }}'
+    id: d90d134a-58e8-4f11-af56-d8a7a76983e8
+    jinja: 'Marathi: {{ sentence_mar }} = Swahili: ||| {{ sentence_swh }}'
     metadata: *id001
-    name: translate-this-xho-nso
-    reference: Basic translation (Xhosa into Northern Sotho)
-  d761d04f-704e-4b8b-a192-6bf432bedb36: !Template
+    name: equals-translation-mar-swh
+    reference: Equals translation (Marathi into Swahili)
+  d92b5ed0-4ced-455d-9ebd-9ed03da19e47: !Template
     answer_choices: null
-    id: d761d04f-704e-4b8b-a192-6bf432bedb36
-    jinja: 'Translate this from simplified Chinese into Gujarati: {{ sentence_zho_simpl
-      }} ||| {{ sentence_guj }}'
+    id: d92b5ed0-4ced-455d-9ebd-9ed03da19e47
+    jinja: 'Northern Sotho: {{ sentence_nso }} = Nepali: ||| {{ sentence_npi }}'
     metadata: *id001
-    name: translate-this-zho_simpl-guj
-    reference: Basic translation (simplified Chinese into Gujarati)
-  d7635610-0dff-49d2-a087-0fe16400ee29: !Template
+    name: equals-translation-nso-npi
+    reference: Equals translation (Northern Sotho into Nepali)
+  d942147a-ea06-4074-966a-1a8d02172774: !Template
     answer_choices: null
-    id: d7635610-0dff-49d2-a087-0fe16400ee29
-    jinja: 'Translate this from Oriya into Wolof: {{ sentence_ory }} ||| {{ sentence_wol
+    id: d942147a-ea06-4074-966a-1a8d02172774
+    jinja: 'Malayalam: {{ sentence_mal }} = Brazilian Portuguese: ||| {{ sentence_por
       }}'
     metadata: *id001
-    name: translate-this-ory-wol
-    reference: Basic translation (Oriya into Wolof)
-  d91b2e05-5271-405a-99fd-e08c8d1166ce: !Template
+    name: equals-translation-mal-por
+    reference: Equals translation (Malayalam into Brazilian Portuguese)
+  d9793174-c209-4715-899b-54d5dabac3ca: !Template
     answer_choices: null
-    id: d91b2e05-5271-405a-99fd-e08c8d1166ce
-    jinja: 'Translate this from Nepali into Malayalam: {{ sentence_npi }} ||| {{ sentence_mal
-      }}'
+    id: d9793174-c209-4715-899b-54d5dabac3ca
+    jinja: 'Tamil: {{ sentence_tam }} = Yoruba: ||| {{ sentence_yor }}'
     metadata: *id001
-    name: translate-this-npi-mal
-    reference: Basic translation (Nepali into Malayalam)
-  d97281e8-c94b-41ed-828d-2ad32b91157a: !Template
+    name: equals-translation-tam-yor
+    reference: Equals translation (Tamil into Yoruba)
+  d987c9f2-2078-4752-8130-d6c54ec58cf8: !Template
     answer_choices: null
-    id: d97281e8-c94b-41ed-828d-2ad32b91157a
-    jinja: 'Translate this from traditional Chinese into Bengali: {{ sentence_zho_trad
-      }} ||| {{ sentence_ben }}'
+    id: d987c9f2-2078-4752-8130-d6c54ec58cf8
+    jinja: 'Arabic: {{ sentence_ara }} = Igbo: ||| {{ sentence_ibo }}'
     metadata: *id001
-    name: translate-this-zho_trad-ben
-    reference: Basic translation (traditional Chinese into Bengali)
-  d98bca9d-7aca-44b9-b5c7-8c296a9a78f5: !Template
+    name: equals-translation-ara-ibo
+    reference: Equals translation (Arabic into Igbo)
+  d99b3b68-017f-4cbf-97b3-e209b260f0b2: !Template
     answer_choices: null
-    id: d98bca9d-7aca-44b9-b5c7-8c296a9a78f5
-    jinja: 'Translate this from Igbo into Telugu: {{ sentence_ibo }} ||| {{ sentence_tel
-      }}'
+    id: d99b3b68-017f-4cbf-97b3-e209b260f0b2
+    jinja: 'Marathi: {{ sentence_mar }} = French: ||| {{ sentence_fra }}'
     metadata: *id001
-    name: translate-this-ibo-tel
-    reference: Basic translation (Igbo into Telugu)
-  d9965106-27d3-45f8-93f1-c3362430a089: !Template
+    name: equals-translation-mar-fra
+    reference: Equals translation (Marathi into French)
+  d9cb8f4b-41d8-4a65-9937-5d1cb6835483: !Template
     answer_choices: null
-    id: d9965106-27d3-45f8-93f1-c3362430a089
-    jinja: 'Translate this from Tamil into Nepali: {{ sentence_tam }} ||| {{ sentence_npi
-      }}'
+    id: d9cb8f4b-41d8-4a65-9937-5d1cb6835483
+    jinja: 'Igbo: {{ sentence_ibo }} = Nepali: ||| {{ sentence_npi }}'
     metadata: *id001
-    name: translate-this-tam-npi
-    reference: Basic translation (Tamil into Nepali)
-  d99ae956-ef16-4e21-9956-43e005249b86: !Template
+    name: equals-translation-ibo-npi
+    reference: Equals translation (Igbo into Nepali)
+  d9f6e431-e95d-49b8-8d69-3481a8f55794: !Template
     answer_choices: null
-    id: d99ae956-ef16-4e21-9956-43e005249b86
-    jinja: 'Translate this from Yoruba into Nepali: {{ sentence_yor }} ||| {{ sentence_npi
+    id: d9f6e431-e95d-49b8-8d69-3481a8f55794
+    jinja: 'English: {{ sentence_eng }} = Lingala: ||| {{ sentence_lin }}'
+    metadata: *id001
+    name: equals-translation-eng-lin
+    reference: Equals translation (English into Lingala)
+  da7f3949-aef9-4919-bbf7-41e09efa171e: !Template
+    answer_choices: null
+    id: da7f3949-aef9-4919-bbf7-41e09efa171e
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = Igbo: ||| {{ sentence_ibo
       }}'
     metadata: *id001
-    name: translate-this-yor-npi
-    reference: Basic translation (Yoruba into Nepali)
-  d9a7a977-96ad-43c3-936e-1aad92375033: !Template
+    name: equals-translation-spa-ibo
+    reference: Equals translation (Latin American Spanish into Igbo)
+  dab5a0f3-0f8d-4bfd-99bb-96ee4bc8487c: !Template
     answer_choices: null
-    id: d9a7a977-96ad-43c3-936e-1aad92375033
-    jinja: 'Translate this from Vietnamese into Malayalam: {{ sentence_vie }} |||
-      {{ sentence_mal }}'
+    id: dab5a0f3-0f8d-4bfd-99bb-96ee4bc8487c
+    jinja: 'English: {{ sentence_eng }} = Marathi: ||| {{ sentence_mar }}'
     metadata: *id001
-    name: translate-this-vie-mal
-    reference: Basic translation (Vietnamese into Malayalam)
-  d9d3678c-b3af-4158-8c26-b85cdc755d8b: !Template
+    name: equals-translation-eng-mar
+    reference: Equals translation (English into Marathi)
+  dac78e0d-2a2c-4295-972b-92a68a9d22bb: !Template
     answer_choices: null
-    id: d9d3678c-b3af-4158-8c26-b85cdc755d8b
-    jinja: 'Translate this from Nepali into Latin American Spanish: {{ sentence_npi
-      }} ||| {{ sentence_spa }}'
+    id: dac78e0d-2a2c-4295-972b-92a68a9d22bb
+    jinja: 'Vietnamese: {{ sentence_vie }} = French: ||| {{ sentence_fra }}'
     metadata: *id001
-    name: translate-this-npi-spa
-    reference: Basic translation (Nepali into Latin American Spanish)
-  d9fc4986-f4b7-4727-8820-9b0b97bf44ed: !Template
+    name: equals-translation-vie-fra
+    reference: Equals translation (Vietnamese into French)
+  dadd7d6a-8c87-4725-9fe8-fb57448c84c2: !Template
     answer_choices: null
-    id: d9fc4986-f4b7-4727-8820-9b0b97bf44ed
-    jinja: 'Translate this from Catalan into Lingala: {{ sentence_cat }} ||| {{ sentence_lin
-      }}'
+    id: dadd7d6a-8c87-4725-9fe8-fb57448c84c2
+    jinja: 'Yoruba: {{ sentence_yor }} = Lingala: ||| {{ sentence_lin }}'
     metadata: *id001
-    name: translate-this-cat-lin
-    reference: Basic translation (Catalan into Lingala)
-  d9fd38fd-e703-4c5d-a4f3-1d155adaec5b: !Template
+    name: equals-translation-yor-lin
+    reference: Equals translation (Yoruba into Lingala)
+  db5f1ad8-ae8f-4c06-8f7e-13b4c3febc1e: !Template
     answer_choices: null
-    id: d9fd38fd-e703-4c5d-a4f3-1d155adaec5b
-    jinja: 'Translate this from Swahili into Arabic: {{ sentence_swh }} ||| {{ sentence_ara
-      }}'
+    id: db5f1ad8-ae8f-4c06-8f7e-13b4c3febc1e
+    jinja: 'Tamil: {{ sentence_tam }} = Bengali: ||| {{ sentence_ben }}'
     metadata: *id001
-    name: translate-this-swh-ara
-    reference: Basic translation (Swahili into Arabic)
-  da333679-87af-4139-ad1b-1616daae2aba: !Template
+    name: equals-translation-tam-ben
+    reference: Equals translation (Tamil into Bengali)
+  dbc6517a-4e2b-4971-9fe9-fab31dd85560: !Template
     answer_choices: null
-    id: da333679-87af-4139-ad1b-1616daae2aba
-    jinja: 'Translate this from Marathi into Zulu: {{ sentence_mar }} ||| {{ sentence_zul
+    id: dbc6517a-4e2b-4971-9fe9-fab31dd85560
+    jinja: 'Zulu: {{ sentence_zul }} = Latin American Spanish: ||| {{ sentence_spa
       }}'
     metadata: *id001
-    name: translate-this-mar-zul
-    reference: Basic translation (Marathi into Zulu)
-  daa4b29d-9bf3-425a-9f79-2c7040ed90d5: !Template
+    name: equals-translation-zul-spa
+    reference: Equals translation (Zulu into Latin American Spanish)
+  dbc7f834-4cef-4bba-9375-0ce631d9bb10: !Template
     answer_choices: null
-    id: daa4b29d-9bf3-425a-9f79-2c7040ed90d5
-    jinja: 'Translate this from Igbo into Arabic: {{ sentence_ibo }} ||| {{ sentence_ara
-      }}'
+    id: dbc7f834-4cef-4bba-9375-0ce631d9bb10
+    jinja: 'Tamil: {{ sentence_tam }} = English: ||| {{ sentence_eng }}'
     metadata: *id001
-    name: translate-this-ibo-ara
-    reference: Basic translation (Igbo into Arabic)
-  db042597-f21f-44b0-9b69-8e27f71a27d9: !Template
+    name: equals-translation-tam-eng
+    reference: Equals translation (Tamil into English)
+  dbd33409-c9d3-437a-a800-64ce3668f6eb: !Template
     answer_choices: null
-    id: db042597-f21f-44b0-9b69-8e27f71a27d9
-    jinja: 'Translate this from Punjabi into Wolof: {{ sentence_pan }} ||| {{ sentence_wol
-      }}'
+    id: dbd33409-c9d3-437a-a800-64ce3668f6eb
+    jinja: 'Northern Sotho: {{ sentence_nso }} = Arabic: ||| {{ sentence_ara }}'
     metadata: *id001
-    name: translate-this-pan-wol
-    reference: Basic translation (Punjabi into Wolof)
-  db623e67-90ba-4c54-ac3d-54d5b965d9ca: !Template
+    name: equals-translation-nso-ara
+    reference: Equals translation (Northern Sotho into Arabic)
+  dbd816ee-7346-427e-ace8-dd4afc5ed0d7: !Template
     answer_choices: null
-    id: db623e67-90ba-4c54-ac3d-54d5b965d9ca
-    jinja: 'Translate this from simplified Chinese into Urdu: {{ sentence_zho_simpl
-      }} ||| {{ sentence_urd }}'
+    id: dbd816ee-7346-427e-ace8-dd4afc5ed0d7
+    jinja: 'Nepali: {{ sentence_npi }} = Brazilian Portuguese: ||| {{ sentence_por
+      }}'
     metadata: *id001
-    name: translate-this-zho_simpl-urd
-    reference: Basic translation (simplified Chinese into Urdu)
-  dbefa5f5-356c-41cd-b64d-a278a350d7b0: !Template
+    name: equals-translation-npi-por
+    reference: Equals translation (Nepali into Brazilian Portuguese)
+  dbe9e1a9-8c79-4f20-bec8-bc572b52c77c: !Template
     answer_choices: null
-    id: dbefa5f5-356c-41cd-b64d-a278a350d7b0
-    jinja: 'Translate this from Catalan into traditional Chinese: {{ sentence_cat
-      }} ||| {{ sentence_zho_trad }}'
+    id: dbe9e1a9-8c79-4f20-bec8-bc572b52c77c
+    jinja: 'Punjabi: {{ sentence_pan }} = Marathi: ||| {{ sentence_mar }}'
     metadata: *id001
-    name: translate-this-cat-zho_trad
-    reference: Basic translation (Catalan into traditional Chinese)
-  dbf085ef-15c8-4a75-b580-88d399333f06: !Template
+    name: equals-translation-pan-mar
+    reference: Equals translation (Punjabi into Marathi)
+  dc4682c8-0d93-4f33-a160-dc6c345582f4: !Template
     answer_choices: null
-    id: dbf085ef-15c8-4a75-b580-88d399333f06
-    jinja: 'Translate this from Arabic into Tamil: {{ sentence_ara }} ||| {{ sentence_tam
-      }}'
+    id: dc4682c8-0d93-4f33-a160-dc6c345582f4
+    jinja: 'Yoruba: {{ sentence_yor }} = Arabic: ||| {{ sentence_ara }}'
     metadata: *id001
-    name: translate-this-ara-tam
-    reference: Basic translation (Arabic into Tamil)
-  dc5c16e0-7d47-4c10-8c8a-6ccd84f63412: !Template
+    name: equals-translation-yor-ara
+    reference: Equals translation (Yoruba into Arabic)
+  dcbf557c-d0cb-4b36-ba38-82d7e3e2f56f: !Template
     answer_choices: null
-    id: dc5c16e0-7d47-4c10-8c8a-6ccd84f63412
-    jinja: 'Translate this from Urdu into Bengali: {{ sentence_urd }} ||| {{ sentence_ben
-      }}'
+    id: dcbf557c-d0cb-4b36-ba38-82d7e3e2f56f
+    jinja: 'Xhosa: {{ sentence_xho }} = Igbo: ||| {{ sentence_ibo }}'
     metadata: *id001
-    name: translate-this-urd-ben
-    reference: Basic translation (Urdu into Bengali)
-  dc8df1ac-982e-43f5-8c4b-f1dda96f6b59: !Template
+    name: equals-translation-xho-ibo
+    reference: Equals translation (Xhosa into Igbo)
+  dcce44de-5d4f-4fed-be2e-98e5cddb6dff: !Template
     answer_choices: null
-    id: dc8df1ac-982e-43f5-8c4b-f1dda96f6b59
-    jinja: 'Translate this from traditional Chinese into Xhosa: {{ sentence_zho_trad
-      }} ||| {{ sentence_xho }}'
+    id: dcce44de-5d4f-4fed-be2e-98e5cddb6dff
+    jinja: 'Assamese: {{ sentence_asm }} = Xhosa: ||| {{ sentence_xho }}'
     metadata: *id001
-    name: translate-this-zho_trad-xho
-    reference: Basic translation (traditional Chinese into Xhosa)
-  dd0c4557-c90a-4f07-b683-f3dcb4831778: !Template
+    name: equals-translation-asm-xho
+    reference: Equals translation (Assamese into Xhosa)
+  dce44d28-7896-47d3-a14e-f31f861e9f33: !Template
     answer_choices: null
-    id: dd0c4557-c90a-4f07-b683-f3dcb4831778
-    jinja: 'Translate this from Swahili into Hindi: {{ sentence_swh }} ||| {{ sentence_hin
-      }}'
+    id: dce44d28-7896-47d3-a14e-f31f861e9f33
+    jinja: 'Zulu: {{ sentence_zul }} = Lingala: ||| {{ sentence_lin }}'
     metadata: *id001
-    name: translate-this-swh-hin
-    reference: Basic translation (Swahili into Hindi)
-  dd7a8978-15f6-42d5-bdfd-067ae1616181: !Template
+    name: equals-translation-zul-lin
+    reference: Equals translation (Zulu into Lingala)
+  dcfd96d3-4c70-4dcc-8a1d-190e6252edae: !Template
     answer_choices: null
-    id: dd7a8978-15f6-42d5-bdfd-067ae1616181
-    jinja: 'Translate this from Nepali into Zulu: {{ sentence_npi }} ||| {{ sentence_zul
-      }}'
+    id: dcfd96d3-4c70-4dcc-8a1d-190e6252edae
+    jinja: 'Malayalam: {{ sentence_mal }} = Assamese: ||| {{ sentence_asm }}'
     metadata: *id001
-    name: translate-this-npi-zul
-    reference: Basic translation (Nepali into Zulu)
-  dde28436-87c3-40f8-955a-2afdf7bb1174: !Template
+    name: equals-translation-mal-asm
+    reference: Equals translation (Malayalam into Assamese)
+  dd1d953c-7cc1-4609-a4c2-0296ca735c66: !Template
     answer_choices: null
-    id: dde28436-87c3-40f8-955a-2afdf7bb1174
-    jinja: 'Translate this from Gujarati into Catalan: {{ sentence_guj }} ||| {{ sentence_cat
-      }}'
+    id: dd1d953c-7cc1-4609-a4c2-0296ca735c66
+    jinja: 'Zulu: {{ sentence_zul }} = Swahili: ||| {{ sentence_swh }}'
     metadata: *id001
-    name: translate-this-guj-cat
-    reference: Basic translation (Gujarati into Catalan)
-  de410903-d330-4cda-b96e-7c78e7ab76d3: !Template
+    name: equals-translation-zul-swh
+    reference: Equals translation (Zulu into Swahili)
+  dd42edc9-7fde-445f-a44e-7e7a13cbebaa: !Template
     answer_choices: null
-    id: de410903-d330-4cda-b96e-7c78e7ab76d3
-    jinja: 'Translate this from Northern Sotho into Punjabi: {{ sentence_nso }} |||
-      {{ sentence_pan }}'
+    id: dd42edc9-7fde-445f-a44e-7e7a13cbebaa
+    jinja: 'Bengali: {{ sentence_ben }} = Kannada: ||| {{ sentence_kan }}'
     metadata: *id001
-    name: translate-this-nso-pan
-    reference: Basic translation (Northern Sotho into Punjabi)
-  de5b053c-c875-4c35-8b93-c8943d20febe: !Template
+    name: equals-translation-ben-kan
+    reference: Equals translation (Bengali into Kannada)
+  dd4ae7bc-3ea1-4cb3-b4aa-922ccfc6365e: !Template
     answer_choices: null
-    id: de5b053c-c875-4c35-8b93-c8943d20febe
-    jinja: 'Translate this from Urdu into Oriya: {{ sentence_urd }} ||| {{ sentence_ory
-      }}'
+    id: dd4ae7bc-3ea1-4cb3-b4aa-922ccfc6365e
+    jinja: 'Gujarati: {{ sentence_guj }} = Vietnamese: ||| {{ sentence_vie }}'
     metadata: *id001
-    name: translate-this-urd-ory
-    reference: Basic translation (Urdu into Oriya)
-  de5deb5c-b303-4188-b2ef-d74e61552bbe: !Template
+    name: equals-translation-guj-vie
+    reference: Equals translation (Gujarati into Vietnamese)
+  ddb2ac4a-c4e4-4564-8fc3-ae033293af66: !Template
     answer_choices: null
-    id: de5deb5c-b303-4188-b2ef-d74e61552bbe
-    jinja: 'Translate this from simplified Chinese into Bengali: {{ sentence_zho_simpl
-      }} ||| {{ sentence_ben }}'
+    id: ddb2ac4a-c4e4-4564-8fc3-ae033293af66
+    jinja: 'English: {{ sentence_eng }} = French: ||| {{ sentence_fra }}'
     metadata: *id001
-    name: translate-this-zho_simpl-ben
-    reference: Basic translation (simplified Chinese into Bengali)
-  de7e93cf-84ac-4e95-9ff7-2b1beabd7556: !Template
+    name: equals-translation-eng-fra
+    reference: Equals translation (English into French)
+  de2b9f79-057e-4407-a10f-6dff4c532c0b: !Template
     answer_choices: null
-    id: de7e93cf-84ac-4e95-9ff7-2b1beabd7556
-    jinja: 'Translate this from Malayalam into Telugu: {{ sentence_mal }} ||| {{ sentence_tel
-      }}'
+    id: de2b9f79-057e-4407-a10f-6dff4c532c0b
+    jinja: 'Xhosa: {{ sentence_xho }} = Swahili: ||| {{ sentence_swh }}'
     metadata: *id001
-    name: translate-this-mal-tel
-    reference: Basic translation (Malayalam into Telugu)
-  de9f9e46-2a9c-4a82-99f9-82db9441a23a: !Template
+    name: equals-translation-xho-swh
+    reference: Equals translation (Xhosa into Swahili)
+  de38bfdb-43ff-4aff-a04a-44c43850f210: !Template
     answer_choices: null
-    id: de9f9e46-2a9c-4a82-99f9-82db9441a23a
-    jinja: 'Translate this from Malayalam into Urdu: {{ sentence_mal }} ||| {{ sentence_urd
-      }}'
+    id: de38bfdb-43ff-4aff-a04a-44c43850f210
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = simplified Chinese: ||| {{
+      sentence_zho_simpl }}'
     metadata: *id001
-    name: translate-this-mal-urd
-    reference: Basic translation (Malayalam into Urdu)
-  dea223f2-5cbf-4823-abdb-a69616a2845d: !Template
+    name: equals-translation-spa-zho_simpl
+    reference: Equals translation (Latin American Spanish into simplified Chinese)
+  de749ef7-8541-4d04-9da5-faaf526a77c1: !Template
     answer_choices: null
-    id: dea223f2-5cbf-4823-abdb-a69616a2845d
-    jinja: 'Translate this from Punjabi into Marathi: {{ sentence_pan }} ||| {{ sentence_mar
-      }}'
+    id: de749ef7-8541-4d04-9da5-faaf526a77c1
+    jinja: 'Tamil: {{ sentence_tam }} = Hindi: ||| {{ sentence_hin }}'
     metadata: *id001
-    name: translate-this-pan-mar
-    reference: Basic translation (Punjabi into Marathi)
-  dec7b24c-312b-4027-81a4-0a2f33b4e846: !Template
+    name: equals-translation-tam-hin
+    reference: Equals translation (Tamil into Hindi)
+  de7fd562-7a37-4465-b9c4-213a2b17479e: !Template
     answer_choices: null
-    id: dec7b24c-312b-4027-81a4-0a2f33b4e846
-    jinja: 'Translate this from simplified Chinese into Brazilian Portuguese: {{ sentence_zho_simpl
-      }} ||| {{ sentence_por }}'
+    id: de7fd562-7a37-4465-b9c4-213a2b17479e
+    jinja: 'Swahili: {{ sentence_swh }} = Northern Sotho: ||| {{ sentence_nso }}'
     metadata: *id001
-    name: translate-this-zho_simpl-por
-    reference: Basic translation (simplified Chinese into Brazilian Portuguese)
-  decbc79b-fdf3-4c76-854e-d631240efc34: !Template
+    name: equals-translation-swh-nso
+    reference: Equals translation (Swahili into Northern Sotho)
+  df0da838-f3a4-4367-b54c-35325cf5ff88: !Template
     answer_choices: null
-    id: decbc79b-fdf3-4c76-854e-d631240efc34
-    jinja: 'Translate this from French into Igbo: {{ sentence_fra }} ||| {{ sentence_ibo
+    id: df0da838-f3a4-4367-b54c-35325cf5ff88
+    jinja: 'Yoruba: {{ sentence_yor }} = Brazilian Portuguese: ||| {{ sentence_por
       }}'
     metadata: *id001
-    name: translate-this-fra-ibo
-    reference: Basic translation (French into Igbo)
-  ded7ac46-cab2-4324-9bd9-8f89a83b85f6: !Template
+    name: equals-translation-yor-por
+    reference: Equals translation (Yoruba into Brazilian Portuguese)
+  df5336dc-10ff-414c-852b-82d5bb47b57b: !Template
     answer_choices: null
-    id: ded7ac46-cab2-4324-9bd9-8f89a83b85f6
-    jinja: 'Translate this from Igbo into Indonesian: {{ sentence_ibo }} ||| {{ sentence_ind
+    id: df5336dc-10ff-414c-852b-82d5bb47b57b
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Malayalam: ||| {{ sentence_mal
       }}'
     metadata: *id001
-    name: translate-this-ibo-ind
-    reference: Basic translation (Igbo into Indonesian)
-  df461028-7943-43f8-afdd-a4f3d13e6ef0: !Template
+    name: equals-translation-por-mal
+    reference: Equals translation (Brazilian Portuguese into Malayalam)
+  df80b93c-951d-44ed-9f84-fe315b7910b5: !Template
     answer_choices: null
-    id: df461028-7943-43f8-afdd-a4f3d13e6ef0
-    jinja: 'Translate this from Lingala into Brazilian Portuguese: {{ sentence_lin
-      }} ||| {{ sentence_por }}'
+    id: df80b93c-951d-44ed-9f84-fe315b7910b5
+    jinja: 'Oriya: {{ sentence_ory }} = Assamese: ||| {{ sentence_asm }}'
     metadata: *id001
-    name: translate-this-lin-por
-    reference: Basic translation (Lingala into Brazilian Portuguese)
-  df5c1371-3e8e-4169-9fdd-c0c3aa34b11b: !Template
+    name: equals-translation-ory-asm
+    reference: Equals translation (Oriya into Assamese)
+  dfd65400-0337-454a-a947-3626f92ba3e5: !Template
     answer_choices: null
-    id: df5c1371-3e8e-4169-9fdd-c0c3aa34b11b
-    jinja: 'Translate this from Brazilian Portuguese into Malayalam: {{ sentence_por
-      }} ||| {{ sentence_mal }}'
+    id: dfd65400-0337-454a-a947-3626f92ba3e5
+    jinja: 'Yoruba: {{ sentence_yor }} = Swahili: ||| {{ sentence_swh }}'
     metadata: *id001
-    name: translate-this-por-mal
-    reference: Basic translation (Brazilian Portuguese into Malayalam)
-  df6981f0-902a-4873-a9e7-985b9db93032: !Template
+    name: equals-translation-yor-swh
+    reference: Equals translation (Yoruba into Swahili)
+  e0b26f49-42f7-4214-94b1-a325df9439a6: !Template
     answer_choices: null
-    id: df6981f0-902a-4873-a9e7-985b9db93032
-    jinja: 'Translate this from Wolof into Oriya: {{ sentence_wol }} ||| {{ sentence_ory
-      }}'
+    id: e0b26f49-42f7-4214-94b1-a325df9439a6
+    jinja: 'Swahili: {{ sentence_swh }} = Hindi: ||| {{ sentence_hin }}'
     metadata: *id001
-    name: translate-this-wol-ory
-    reference: Basic translation (Wolof into Oriya)
-  dfa9df88-cbe6-4798-8679-9511f6e33e74: !Template
+    name: equals-translation-swh-hin
+    reference: Equals translation (Swahili into Hindi)
+  e1022cba-e707-4893-b7fe-6165937e9a7e: !Template
     answer_choices: null
-    id: dfa9df88-cbe6-4798-8679-9511f6e33e74
-    jinja: 'Translate this from Yoruba into Punjabi: {{ sentence_yor }} ||| {{ sentence_pan
-      }}'
+    id: e1022cba-e707-4893-b7fe-6165937e9a7e
+    jinja: 'Zulu: {{ sentence_zul }} = Kannada: ||| {{ sentence_kan }}'
     metadata: *id001
-    name: translate-this-yor-pan
-    reference: Basic translation (Yoruba into Punjabi)
-  e0706d69-fd3a-4962-8b87-4d109bf604e3: !Template
+    name: equals-translation-zul-kan
+    reference: Equals translation (Zulu into Kannada)
+  e1085b1f-5c93-4669-ad5a-640265ef375a: !Template
     answer_choices: null
-    id: e0706d69-fd3a-4962-8b87-4d109bf604e3
-    jinja: 'Translate this from Xhosa into Catalan: {{ sentence_xho }} ||| {{ sentence_cat
-      }}'
+    id: e1085b1f-5c93-4669-ad5a-640265ef375a
+    jinja: 'Nepali: {{ sentence_npi }} = Hindi: ||| {{ sentence_hin }}'
     metadata: *id001
-    name: translate-this-xho-cat
-    reference: Basic translation (Xhosa into Catalan)
-  e0a7707d-e00e-490f-99da-640b895b1279: !Template
+    name: equals-translation-npi-hin
+    reference: Equals translation (Nepali into Hindi)
+  e13dc516-db78-4d89-a5e3-25532dabe98a: !Template
     answer_choices: null
-    id: e0a7707d-e00e-490f-99da-640b895b1279
-    jinja: 'Translate this from Yoruba into English: {{ sentence_yor }} ||| {{ sentence_eng
-      }}'
+    id: e13dc516-db78-4d89-a5e3-25532dabe98a
+    jinja: 'Tamil: {{ sentence_tam }} = Oriya: ||| {{ sentence_ory }}'
     metadata: *id001
-    name: translate-this-yor-eng
-    reference: Basic translation (Yoruba into English)
-  e0c2c3b1-8bdc-4a93-8152-9667ed2c7833: !Template
+    name: equals-translation-tam-ory
+    reference: Equals translation (Tamil into Oriya)
+  e16c3fd3-b424-481a-929e-d39509fe32a2: !Template
     answer_choices: null
-    id: e0c2c3b1-8bdc-4a93-8152-9667ed2c7833
-    jinja: 'Translate this from Gujarati into Indonesian: {{ sentence_guj }} ||| {{
-      sentence_ind }}'
+    id: e16c3fd3-b424-481a-929e-d39509fe32a2
+    jinja: 'English: {{ sentence_eng }} = Catalan: ||| {{ sentence_cat }}'
     metadata: *id001
-    name: translate-this-guj-ind
-    reference: Basic translation (Gujarati into Indonesian)
-  e0febda5-c769-4617-b97a-96e1a163389c: !Template
+    name: equals-translation-eng-cat
+    reference: Equals translation (English into Catalan)
+  e1af09f5-28bf-4fff-9124-1b1ae848fdc2: !Template
     answer_choices: null
-    id: e0febda5-c769-4617-b97a-96e1a163389c
-    jinja: 'Translate this from Arabic into Brazilian Portuguese: {{ sentence_ara
-      }} ||| {{ sentence_por }}'
+    id: e1af09f5-28bf-4fff-9124-1b1ae848fdc2
+    jinja: 'English: {{ sentence_eng }} = Urdu: ||| {{ sentence_urd }}'
     metadata: *id001
-    name: translate-this-ara-por
-    reference: Basic translation (Arabic into Brazilian Portuguese)
-  e147d3a2-44b4-4686-a7ba-b68296606009: !Template
+    name: equals-translation-eng-urd
+    reference: Equals translation (English into Urdu)
+  e20cf970-3bce-4d9c-bdfe-7f7c7d8772a7: !Template
     answer_choices: null
-    id: e147d3a2-44b4-4686-a7ba-b68296606009
-    jinja: 'Translate this from Malayalam into Igbo: {{ sentence_mal }} ||| {{ sentence_ibo
+    id: e20cf970-3bce-4d9c-bdfe-7f7c7d8772a7
+    jinja: 'Assamese: {{ sentence_asm }} = simplified Chinese: ||| {{ sentence_zho_simpl
       }}'
     metadata: *id001
-    name: translate-this-mal-ibo
-    reference: Basic translation (Malayalam into Igbo)
-  e1d6fb46-129c-41d2-9c79-887565d5ddb6: !Template
+    name: equals-translation-asm-zho_simpl
+    reference: Equals translation (Assamese into simplified Chinese)
+  e284ceb2-215f-4076-9cbc-a29d1c42aac0: !Template
     answer_choices: null
-    id: e1d6fb46-129c-41d2-9c79-887565d5ddb6
-    jinja: 'Translate this from Zulu into Latin American Spanish: {{ sentence_zul
-      }} ||| {{ sentence_spa }}'
+    id: e284ceb2-215f-4076-9cbc-a29d1c42aac0
+    jinja: 'Catalan: {{ sentence_cat }} = Xhosa: ||| {{ sentence_xho }}'
     metadata: *id001
-    name: translate-this-zul-spa
-    reference: Basic translation (Zulu into Latin American Spanish)
-  e1d75396-a96b-4258-bde7-845734092a90: !Template
+    name: equals-translation-cat-xho
+    reference: Equals translation (Catalan into Xhosa)
+  e30e82c7-4793-438a-8ce3-7bdfe922a535: !Template
     answer_choices: null
-    id: e1d75396-a96b-4258-bde7-845734092a90
-    jinja: 'Translate this from Hindi into Catalan: {{ sentence_hin }} ||| {{ sentence_cat
-      }}'
+    id: e30e82c7-4793-438a-8ce3-7bdfe922a535
+    jinja: 'Lingala: {{ sentence_lin }} = Marathi: ||| {{ sentence_mar }}'
     metadata: *id001
-    name: translate-this-hin-cat
-    reference: Basic translation (Hindi into Catalan)
-  e21f80b3-0c40-4063-a4d7-b66892d80ee1: !Template
+    name: equals-translation-lin-mar
+    reference: Equals translation (Lingala into Marathi)
+  e3152014-1ea9-40f3-a330-7c2db346294b: !Template
     answer_choices: null
-    id: e21f80b3-0c40-4063-a4d7-b66892d80ee1
-    jinja: 'Translate this from Malayalam into Northern Sotho: {{ sentence_mal }}
-      ||| {{ sentence_nso }}'
+    id: e3152014-1ea9-40f3-a330-7c2db346294b
+    jinja: 'Catalan: {{ sentence_cat }} = Swahili: ||| {{ sentence_swh }}'
     metadata: *id001
-    name: translate-this-mal-nso
-    reference: Basic translation (Malayalam into Northern Sotho)
-  e2312252-0c82-4b6f-ad75-5302e6aaa2bf: !Template
+    name: equals-translation-cat-swh
+    reference: Equals translation (Catalan into Swahili)
+  e31dfd99-8f8a-4192-bb8f-453e067eddcd: !Template
     answer_choices: null
-    id: e2312252-0c82-4b6f-ad75-5302e6aaa2bf
-    jinja: 'Translate this from Punjabi into Lingala: {{ sentence_pan }} ||| {{ sentence_lin
-      }}'
+    id: e31dfd99-8f8a-4192-bb8f-453e067eddcd
+    jinja: 'Lingala: {{ sentence_lin }} = Xhosa: ||| {{ sentence_xho }}'
     metadata: *id001
-    name: translate-this-pan-lin
-    reference: Basic translation (Punjabi into Lingala)
-  e23d3aec-b9c1-43d6-a80d-3c961ef6268f: !Template
+    name: equals-translation-lin-xho
+    reference: Equals translation (Lingala into Xhosa)
+  e32cf900-6b5a-4c13-a391-02e1fe648b19: !Template
     answer_choices: null
-    id: e23d3aec-b9c1-43d6-a80d-3c961ef6268f
-    jinja: 'Translate this from Kannada into French: {{ sentence_kan }} ||| {{ sentence_fra
-      }}'
+    id: e32cf900-6b5a-4c13-a391-02e1fe648b19
+    jinja: 'Assamese: {{ sentence_asm }} = Zulu: ||| {{ sentence_zul }}'
     metadata: *id001
-    name: translate-this-kan-fra
-    reference: Basic translation (Kannada into French)
-  e23d6d7d-d1f4-4330-a61d-10f71a794044: !Template
+    name: equals-translation-asm-zul
+    reference: Equals translation (Assamese into Zulu)
+  e34fb8a8-3c3f-423b-8d35-90aadfa75fc2: !Template
     answer_choices: null
-    id: e23d6d7d-d1f4-4330-a61d-10f71a794044
-    jinja: 'Translate this from Vietnamese into Urdu: {{ sentence_vie }} ||| {{ sentence_urd
-      }}'
+    id: e34fb8a8-3c3f-423b-8d35-90aadfa75fc2
+    jinja: 'Punjabi: {{ sentence_pan }} = Malayalam: ||| {{ sentence_mal }}'
     metadata: *id001
-    name: translate-this-vie-urd
-    reference: Basic translation (Vietnamese into Urdu)
-  e23eb7d1-7aad-46f4-82d4-0801f4222089: !Template
+    name: equals-translation-pan-mal
+    reference: Equals translation (Punjabi into Malayalam)
+  e35a8f3f-a069-4e31-8684-4030774e1521: !Template
     answer_choices: null
-    id: e23eb7d1-7aad-46f4-82d4-0801f4222089
-    jinja: 'Translate this from Urdu into Igbo: {{ sentence_urd }} ||| {{ sentence_ibo
-      }}'
+    id: e35a8f3f-a069-4e31-8684-4030774e1521
+    jinja: 'Arabic: {{ sentence_ara }} = Nepali: ||| {{ sentence_npi }}'
     metadata: *id001
-    name: translate-this-urd-ibo
-    reference: Basic translation (Urdu into Igbo)
-  e245e844-c7cd-47ea-ac0c-9ef317fff6c0: !Template
+    name: equals-translation-ara-npi
+    reference: Equals translation (Arabic into Nepali)
+  e3952c62-16c6-4f5d-a500-5ed9d53c395d: !Template
     answer_choices: null
-    id: e245e844-c7cd-47ea-ac0c-9ef317fff6c0
-    jinja: 'Translate this from Northern Sotho into Arabic: {{ sentence_nso }} |||
-      {{ sentence_ara }}'
+    id: e3952c62-16c6-4f5d-a500-5ed9d53c395d
+    jinja: 'Oriya: {{ sentence_ory }} = Malayalam: ||| {{ sentence_mal }}'
     metadata: *id001
-    name: translate-this-nso-ara
-    reference: Basic translation (Northern Sotho into Arabic)
-  e264ec02-e439-4c23-b11d-1fd46f4308a2: !Template
+    name: equals-translation-ory-mal
+    reference: Equals translation (Oriya into Malayalam)
+  e3c2bfa2-1596-4f31-af9c-2358133e7271: !Template
     answer_choices: null
-    id: e264ec02-e439-4c23-b11d-1fd46f4308a2
-    jinja: 'Translate this from Igbo into Lingala: {{ sentence_ibo }} ||| {{ sentence_lin
-      }}'
+    id: e3c2bfa2-1596-4f31-af9c-2358133e7271
+    jinja: 'Marathi: {{ sentence_mar }} = Vietnamese: ||| {{ sentence_vie }}'
     metadata: *id001
-    name: translate-this-ibo-lin
-    reference: Basic translation (Igbo into Lingala)
-  e2938095-47c6-46bc-86c2-4656fc496dee: !Template
+    name: equals-translation-mar-vie
+    reference: Equals translation (Marathi into Vietnamese)
+  e46c14e3-db70-48f6-9351-02a58ba2b1a8: !Template
     answer_choices: null
-    id: e2938095-47c6-46bc-86c2-4656fc496dee
-    jinja: 'Translate this from Wolof into Indonesian: {{ sentence_wol }} ||| {{ sentence_ind
-      }}'
+    id: e46c14e3-db70-48f6-9351-02a58ba2b1a8
+    jinja: 'Gujarati: {{ sentence_guj }} = Kannada: ||| {{ sentence_kan }}'
     metadata: *id001
-    name: translate-this-wol-ind
-    reference: Basic translation (Wolof into Indonesian)
-  e2a8aaaa-70ca-4ca7-b1d6-5b9714efdfdf: !Template
+    name: equals-translation-guj-kan
+    reference: Equals translation (Gujarati into Kannada)
+  e51cf0c5-6d08-4690-b6b0-92762d024ad9: !Template
     answer_choices: null
-    id: e2a8aaaa-70ca-4ca7-b1d6-5b9714efdfdf
-    jinja: 'Translate this from Telugu into Lingala: {{ sentence_tel }} ||| {{ sentence_lin
-      }}'
+    id: e51cf0c5-6d08-4690-b6b0-92762d024ad9
+    jinja: 'Yoruba: {{ sentence_yor }} = Malayalam: ||| {{ sentence_mal }}'
     metadata: *id001
-    name: translate-this-tel-lin
-    reference: Basic translation (Telugu into Lingala)
-  e2aacd50-9b9b-47d2-b82f-db8a2b609930: !Template
+    name: equals-translation-yor-mal
+    reference: Equals translation (Yoruba into Malayalam)
+  e53a297c-32cb-495d-8953-7e338882259e: !Template
     answer_choices: null
-    id: e2aacd50-9b9b-47d2-b82f-db8a2b609930
-    jinja: 'Translate this from Zulu into French: {{ sentence_zul }} ||| {{ sentence_fra
-      }}'
+    id: e53a297c-32cb-495d-8953-7e338882259e
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Zulu: ||| {{ sentence_zul }}'
     metadata: *id001
-    name: translate-this-zul-fra
-    reference: Basic translation (Zulu into French)
-  e30f5c85-4b82-49f0-a716-f32d422c0709: !Template
+    name: equals-translation-por-zul
+    reference: Equals translation (Brazilian Portuguese into Zulu)
+  e54043d5-1af1-486f-b27d-8dfbf2b8d203: !Template
     answer_choices: null
-    id: e30f5c85-4b82-49f0-a716-f32d422c0709
-    jinja: 'Translate this from Malayalam into Yoruba: {{ sentence_mal }} ||| {{ sentence_yor
-      }}'
+    id: e54043d5-1af1-486f-b27d-8dfbf2b8d203
+    jinja: 'Kannada: {{ sentence_kan }} = Yoruba: ||| {{ sentence_yor }}'
     metadata: *id001
-    name: translate-this-mal-yor
-    reference: Basic translation (Malayalam into Yoruba)
-  e3302779-8c72-4247-b613-d97c4e455f16: !Template
+    name: equals-translation-kan-yor
+    reference: Equals translation (Kannada into Yoruba)
+  e550f2a1-3bbf-47e1-a743-12b1aec6746b: !Template
     answer_choices: null
-    id: e3302779-8c72-4247-b613-d97c4e455f16
-    jinja: 'Translate this from Tamil into Wolof: {{ sentence_tam }} ||| {{ sentence_wol
+    id: e550f2a1-3bbf-47e1-a743-12b1aec6746b
+    jinja: 'Telugu: {{ sentence_tel }} = Latin American Spanish: ||| {{ sentence_spa
       }}'
     metadata: *id001
-    name: translate-this-tam-wol
-    reference: Basic translation (Tamil into Wolof)
-  e3e2fa73-a747-4667-a7bc-a886bf57f873: !Template
+    name: equals-translation-tel-spa
+    reference: Equals translation (Telugu into Latin American Spanish)
+  e58f4ea4-07bb-4605-9310-709b1d300293: !Template
     answer_choices: null
-    id: e3e2fa73-a747-4667-a7bc-a886bf57f873
-    jinja: 'Translate this from Catalan into Swahili: {{ sentence_cat }} ||| {{ sentence_swh
+    id: e58f4ea4-07bb-4605-9310-709b1d300293
+    jinja: 'Malayalam: {{ sentence_mal }} = traditional Chinese: ||| {{ sentence_zho_trad
       }}'
     metadata: *id001
-    name: translate-this-cat-swh
-    reference: Basic translation (Catalan into Swahili)
-  e4097362-162c-4188-9d16-fe8df06f5bf4: !Template
+    name: equals-translation-mal-zho_trad
+    reference: Equals translation (Malayalam into traditional Chinese)
+  e63d7f33-ba3c-450b-b292-9ea833833870: !Template
     answer_choices: null
-    id: e4097362-162c-4188-9d16-fe8df06f5bf4
-    jinja: 'Translate this from Zulu into Malayalam: {{ sentence_zul }} ||| {{ sentence_mal
-      }}'
+    id: e63d7f33-ba3c-450b-b292-9ea833833870
+    jinja: 'Vietnamese: {{ sentence_vie }} = Gujarati: ||| {{ sentence_guj }}'
     metadata: *id001
-    name: translate-this-zul-mal
-    reference: Basic translation (Zulu into Malayalam)
-  e4583c88-3973-4a0e-8939-27a78c786704: !Template
+    name: equals-translation-vie-guj
+    reference: Equals translation (Vietnamese into Gujarati)
+  e69c9823-a749-4c88-9178-5c6a8fd9fa26: !Template
     answer_choices: null
-    id: e4583c88-3973-4a0e-8939-27a78c786704
-    jinja: 'Translate this from Zulu into traditional Chinese: {{ sentence_zul }}
-      ||| {{ sentence_zho_trad }}'
+    id: e69c9823-a749-4c88-9178-5c6a8fd9fa26
+    jinja: 'Urdu: {{ sentence_urd }} = English: ||| {{ sentence_eng }}'
     metadata: *id001
-    name: translate-this-zul-zho_trad
-    reference: Basic translation (Zulu into traditional Chinese)
-  e45ade2f-f009-452c-a863-25b5dad8d8ed: !Template
+    name: equals-translation-urd-eng
+    reference: Equals translation (Urdu into English)
+  e7412fbd-c17e-45a5-b153-fe1714222ae1: !Template
     answer_choices: null
-    id: e45ade2f-f009-452c-a863-25b5dad8d8ed
-    jinja: 'Translate this from Nepali into Punjabi: {{ sentence_npi }} ||| {{ sentence_pan
+    id: e7412fbd-c17e-45a5-b153-fe1714222ae1
+    jinja: 'Bengali: {{ sentence_ben }} = simplified Chinese: ||| {{ sentence_zho_simpl
       }}'
     metadata: *id001
-    name: translate-this-npi-pan
-    reference: Basic translation (Nepali into Punjabi)
-  e4686c7c-40a1-453c-a2b5-9dbe39c833d7: !Template
+    name: equals-translation-ben-zho_simpl
+    reference: Equals translation (Bengali into simplified Chinese)
+  e7a3ceb1-4119-4157-9a64-1a2f1886752b: !Template
     answer_choices: null
-    id: e4686c7c-40a1-453c-a2b5-9dbe39c833d7
-    jinja: 'Translate this from Catalan into Igbo: {{ sentence_cat }} ||| {{ sentence_ibo
-      }}'
+    id: e7a3ceb1-4119-4157-9a64-1a2f1886752b
+    jinja: 'Catalan: {{ sentence_cat }} = Malayalam: ||| {{ sentence_mal }}'
     metadata: *id001
-    name: translate-this-cat-ibo
-    reference: Basic translation (Catalan into Igbo)
-  e4b8f9af-a571-48fe-9f80-a4142e66f964: !Template
+    name: equals-translation-cat-mal
+    reference: Equals translation (Catalan into Malayalam)
+  e833bd7e-0f92-42b0-a358-7c8e3bf5b419: !Template
     answer_choices: null
-    id: e4b8f9af-a571-48fe-9f80-a4142e66f964
-    jinja: 'Translate this from traditional Chinese into Punjabi: {{ sentence_zho_trad
-      }} ||| {{ sentence_pan }}'
+    id: e833bd7e-0f92-42b0-a358-7c8e3bf5b419
+    jinja: 'Vietnamese: {{ sentence_vie }} = Marathi: ||| {{ sentence_mar }}'
     metadata: *id001
-    name: translate-this-zho_trad-pan
-    reference: Basic translation (traditional Chinese into Punjabi)
-  e505973c-8150-4f8b-986b-45b0e481ccff: !Template
+    name: equals-translation-vie-mar
+    reference: Equals translation (Vietnamese into Marathi)
+  e8451e06-a02f-413d-a629-ac897f09861e: !Template
     answer_choices: null
-    id: e505973c-8150-4f8b-986b-45b0e481ccff
-    jinja: 'Translate this from Xhosa into Vietnamese: {{ sentence_xho }} ||| {{ sentence_vie
-      }}'
+    id: e8451e06-a02f-413d-a629-ac897f09861e
+    jinja: 'Swahili: {{ sentence_swh }} = Bengali: ||| {{ sentence_ben }}'
     metadata: *id001
-    name: translate-this-xho-vie
-    reference: Basic translation (Xhosa into Vietnamese)
-  e602935e-d0be-41b3-9616-05f642695d7a: !Template
+    name: equals-translation-swh-ben
+    reference: Equals translation (Swahili into Bengali)
+  e8f1fd32-ad63-4794-987f-6408f2650223: !Template
     answer_choices: null
-    id: e602935e-d0be-41b3-9616-05f642695d7a
-    jinja: 'Translate this from Telugu into Oriya: {{ sentence_tel }} ||| {{ sentence_ory
-      }}'
+    id: e8f1fd32-ad63-4794-987f-6408f2650223
+    jinja: 'Wolof: {{ sentence_wol }} = Igbo: ||| {{ sentence_ibo }}'
     metadata: *id001
-    name: translate-this-tel-ory
-    reference: Basic translation (Telugu into Oriya)
-  e6a7e520-a3db-47fa-942c-42d6402323de: !Template
+    name: equals-translation-wol-ibo
+    reference: Equals translation (Wolof into Igbo)
+  e91c6272-19d0-4128-8911-f955946839c7: !Template
     answer_choices: null
-    id: e6a7e520-a3db-47fa-942c-42d6402323de
-    jinja: 'Translate this from traditional Chinese into Swahili: {{ sentence_zho_trad
-      }} ||| {{ sentence_swh }}'
+    id: e91c6272-19d0-4128-8911-f955946839c7
+    jinja: 'Kannada: {{ sentence_kan }} = Oriya: ||| {{ sentence_ory }}'
     metadata: *id001
-    name: translate-this-zho_trad-swh
-    reference: Basic translation (traditional Chinese into Swahili)
-  e7069fe1-b63e-4157-a5a7-580ee24c32ac: !Template
+    name: equals-translation-kan-ory
+    reference: Equals translation (Kannada into Oriya)
+  e93b73fd-b3ec-4ea6-8efd-62f9099b8285: !Template
     answer_choices: null
-    id: e7069fe1-b63e-4157-a5a7-580ee24c32ac
-    jinja: 'Translate this from Punjabi into English: {{ sentence_pan }} ||| {{ sentence_eng
+    id: e93b73fd-b3ec-4ea6-8efd-62f9099b8285
+    jinja: 'Xhosa: {{ sentence_xho }} = traditional Chinese: ||| {{ sentence_zho_trad
       }}'
     metadata: *id001
-    name: translate-this-pan-eng
-    reference: Basic translation (Punjabi into English)
-  e811d6ba-90c7-4fd8-8baa-31af9e68f3d1: !Template
+    name: equals-translation-xho-zho_trad
+    reference: Equals translation (Xhosa into traditional Chinese)
+  e9432d91-367e-47b9-b16b-af7183189ba0: !Template
     answer_choices: null
-    id: e811d6ba-90c7-4fd8-8baa-31af9e68f3d1
-    jinja: 'Translate this from Urdu into traditional Chinese: {{ sentence_urd }}
-      ||| {{ sentence_zho_trad }}'
+    id: e9432d91-367e-47b9-b16b-af7183189ba0
+    jinja: 'Xhosa: {{ sentence_xho }} = Latin American Spanish: ||| {{ sentence_spa
+      }}'
     metadata: *id001
-    name: translate-this-urd-zho_trad
-    reference: Basic translation (Urdu into traditional Chinese)
-  e839d120-4eeb-482f-a6e0-18c776dcb391: !Template
+    name: equals-translation-xho-spa
+    reference: Equals translation (Xhosa into Latin American Spanish)
+  e971dced-05fb-448b-8ffb-1e5feda8c550: !Template
     answer_choices: null
-    id: e839d120-4eeb-482f-a6e0-18c776dcb391
-    jinja: 'Translate this from Swahili into Bengali: {{ sentence_swh }} ||| {{ sentence_ben
-      }}'
+    id: e971dced-05fb-448b-8ffb-1e5feda8c550
+    jinja: 'Oriya: {{ sentence_ory }} = Catalan: ||| {{ sentence_cat }}'
     metadata: *id001
-    name: translate-this-swh-ben
-    reference: Basic translation (Swahili into Bengali)
-  e84bb935-af82-48a6-b6ba-86e46ddb973b: !Template
+    name: equals-translation-ory-cat
+    reference: Equals translation (Oriya into Catalan)
+  e9c27fac-c40b-49ae-822a-6f4983566280: !Template
     answer_choices: null
-    id: e84bb935-af82-48a6-b6ba-86e46ddb973b
-    jinja: 'Translate this from Yoruba into Swahili: {{ sentence_yor }} ||| {{ sentence_swh
-      }}'
+    id: e9c27fac-c40b-49ae-822a-6f4983566280
+    jinja: 'Marathi: {{ sentence_mar }} = Indonesian: ||| {{ sentence_ind }}'
     metadata: *id001
-    name: translate-this-yor-swh
-    reference: Basic translation (Yoruba into Swahili)
-  e8b701cd-c990-4ffc-89f5-023b2ba99dad: !Template
+    name: equals-translation-mar-ind
+    reference: Equals translation (Marathi into Indonesian)
+  ea0acf9d-c1e9-4a21-a9b5-8b1c839c7b10: !Template
     answer_choices: null
-    id: e8b701cd-c990-4ffc-89f5-023b2ba99dad
-    jinja: 'Translate this from simplified Chinese into Oriya: {{ sentence_zho_simpl
-      }} ||| {{ sentence_ory }}'
+    id: ea0acf9d-c1e9-4a21-a9b5-8b1c839c7b10
+    jinja: 'Nepali: {{ sentence_npi }} = Lingala: ||| {{ sentence_lin }}'
     metadata: *id001
-    name: translate-this-zho_simpl-ory
-    reference: Basic translation (simplified Chinese into Oriya)
-  e8c5b7fb-5321-4062-b8db-9c1827d5ca09: !Template
+    name: equals-translation-npi-lin
+    reference: Equals translation (Nepali into Lingala)
+  ea3b1a7a-4a97-48ec-bcd2-7ee532036a5d: !Template
     answer_choices: null
-    id: e8c5b7fb-5321-4062-b8db-9c1827d5ca09
-    jinja: 'Translate this from Wolof into Tamil: {{ sentence_wol }} ||| {{ sentence_tam
+    id: ea3b1a7a-4a97-48ec-bcd2-7ee532036a5d
+    jinja: 'Arabic: {{ sentence_ara }} = Hindi: ||| {{ sentence_hin }}'
+    metadata: *id001
+    name: equals-translation-ara-hin
+    reference: Equals translation (Arabic into Hindi)
+  ea4a0c1e-1b19-4bbb-80f4-7bbfbb562ffe: !Template
+    answer_choices: null
+    id: ea4a0c1e-1b19-4bbb-80f4-7bbfbb562ffe
+    jinja: 'Lingala: {{ sentence_lin }} = Brazilian Portuguese: ||| {{ sentence_por
       }}'
     metadata: *id001
-    name: translate-this-wol-tam
-    reference: Basic translation (Wolof into Tamil)
-  e8cf9d0f-1a91-4664-8530-f0101a4e12fd: !Template
+    name: equals-translation-lin-por
+    reference: Equals translation (Lingala into Brazilian Portuguese)
+  ea7bdfa6-f321-4fe5-bca4-89738343499b: !Template
     answer_choices: null
-    id: e8cf9d0f-1a91-4664-8530-f0101a4e12fd
-    jinja: 'Translate this from Brazilian Portuguese into Catalan: {{ sentence_por
-      }} ||| {{ sentence_cat }}'
+    id: ea7bdfa6-f321-4fe5-bca4-89738343499b
+    jinja: 'Igbo: {{ sentence_ibo }} = Northern Sotho: ||| {{ sentence_nso }}'
     metadata: *id001
-    name: translate-this-por-cat
-    reference: Basic translation (Brazilian Portuguese into Catalan)
-  e8d0a8ae-5c8d-4962-9471-c3b7627626ff: !Template
+    name: equals-translation-ibo-nso
+    reference: Equals translation (Igbo into Northern Sotho)
+  eb999ed9-7227-42a7-945d-916fb8e731f2: !Template
     answer_choices: null
-    id: e8d0a8ae-5c8d-4962-9471-c3b7627626ff
-    jinja: 'Translate this from Bengali into French: {{ sentence_ben }} ||| {{ sentence_fra
-      }}'
+    id: eb999ed9-7227-42a7-945d-916fb8e731f2
+    jinja: 'Telugu: {{ sentence_tel }} = Swahili: ||| {{ sentence_swh }}'
     metadata: *id001
-    name: translate-this-ben-fra
-    reference: Basic translation (Bengali into French)
-  e8e68220-88a6-4107-973a-71d415ce9dbb: !Template
+    name: equals-translation-tel-swh
+    reference: Equals translation (Telugu into Swahili)
+  ebc88c2d-d1c7-4c88-9efa-b759cd22b3b5: !Template
     answer_choices: null
-    id: e8e68220-88a6-4107-973a-71d415ce9dbb
-    jinja: 'Translate this from Malayalam into Arabic: {{ sentence_mal }} ||| {{ sentence_ara
+    id: ebc88c2d-d1c7-4c88-9efa-b759cd22b3b5
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Catalan: ||| {{ sentence_cat
       }}'
     metadata: *id001
-    name: translate-this-mal-ara
-    reference: Basic translation (Malayalam into Arabic)
-  e9050002-e740-4bbf-9a91-8337317a1ff7: !Template
+    name: equals-translation-por-cat
+    reference: Equals translation (Brazilian Portuguese into Catalan)
+  ebde914b-8b60-47be-a202-f98aaa683842: !Template
     answer_choices: null
-    id: e9050002-e740-4bbf-9a91-8337317a1ff7
-    jinja: 'Translate this from Vietnamese into Tamil: {{ sentence_vie }} ||| {{ sentence_tam
+    id: ebde914b-8b60-47be-a202-f98aaa683842
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Kannada: ||| {{ sentence_kan
       }}'
     metadata: *id001
-    name: translate-this-vie-tam
-    reference: Basic translation (Vietnamese into Tamil)
-  e979db17-9b90-4b48-9eb8-f8eeaeec7c31: !Template
+    name: equals-translation-zho_simpl-kan
+    reference: Equals translation (simplified Chinese into Kannada)
+  ec29bab4-36db-4019-9864-c093b4246f90: !Template
     answer_choices: null
-    id: e979db17-9b90-4b48-9eb8-f8eeaeec7c31
-    jinja: 'Translate this from Arabic into Igbo: {{ sentence_ara }} ||| {{ sentence_ibo
+    id: ec29bab4-36db-4019-9864-c093b4246f90
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Yoruba: ||| {{ sentence_yor
       }}'
     metadata: *id001
-    name: translate-this-ara-ibo
-    reference: Basic translation (Arabic into Igbo)
-  ea0997d5-d539-4433-90f0-30605ebbdc64: !Template
+    name: equals-translation-zho_simpl-yor
+    reference: Equals translation (simplified Chinese into Yoruba)
+  ec57f00c-ec46-435a-93dc-f179eb7a415d: !Template
     answer_choices: null
-    id: ea0997d5-d539-4433-90f0-30605ebbdc64
-    jinja: 'Translate this from Hindi into Punjabi: {{ sentence_hin }} ||| {{ sentence_pan
-      }}'
+    id: ec57f00c-ec46-435a-93dc-f179eb7a415d
+    jinja: 'Xhosa: {{ sentence_xho }} = Kannada: ||| {{ sentence_kan }}'
     metadata: *id001
-    name: translate-this-hin-pan
-    reference: Basic translation (Hindi into Punjabi)
-  eaa45319-ed3d-4546-abbd-a95cce60b390: !Template
+    name: equals-translation-xho-kan
+    reference: Equals translation (Xhosa into Kannada)
+  ec668fa7-f1cd-4694-956b-e9d0c05a998c: !Template
     answer_choices: null
-    id: eaa45319-ed3d-4546-abbd-a95cce60b390
-    jinja: 'Translate this from Bengali into Vietnamese: {{ sentence_ben }} ||| {{
-      sentence_vie }}'
+    id: ec668fa7-f1cd-4694-956b-e9d0c05a998c
+    jinja: 'Zulu: {{ sentence_zul }} = Gujarati: ||| {{ sentence_guj }}'
     metadata: *id001
-    name: translate-this-ben-vie
-    reference: Basic translation (Bengali into Vietnamese)
-  eabc6c08-9dc1-4ce6-9532-86e2ea6b2cea: !Template
+    name: equals-translation-zul-guj
+    reference: Equals translation (Zulu into Gujarati)
+  ec6f10b3-e616-4a19-aa2d-52ba61bf1ef2: !Template
     answer_choices: null
-    id: eabc6c08-9dc1-4ce6-9532-86e2ea6b2cea
-    jinja: 'Translate this from Telugu into Indonesian: {{ sentence_tel }} ||| {{
-      sentence_ind }}'
+    id: ec6f10b3-e616-4a19-aa2d-52ba61bf1ef2
+    jinja: 'Urdu: {{ sentence_urd }} = Oriya: ||| {{ sentence_ory }}'
     metadata: *id001
-    name: translate-this-tel-ind
-    reference: Basic translation (Telugu into Indonesian)
-  eae8f9a5-02b7-42a8-81b8-1179ee449abe: !Template
+    name: equals-translation-urd-ory
+    reference: Equals translation (Urdu into Oriya)
+  ecfd58dc-08df-45d0-87c4-8433d1865c4a: !Template
     answer_choices: null
-    id: eae8f9a5-02b7-42a8-81b8-1179ee449abe
-    jinja: 'Translate this from Brazilian Portuguese into Yoruba: {{ sentence_por
-      }} ||| {{ sentence_yor }}'
+    id: ecfd58dc-08df-45d0-87c4-8433d1865c4a
+    jinja: 'Wolof: {{ sentence_wol }} = Marathi: ||| {{ sentence_mar }}'
     metadata: *id001
-    name: translate-this-por-yor
-    reference: Basic translation (Brazilian Portuguese into Yoruba)
-  eb7840c1-a94f-4a77-b0ee-78b7fde429e1: !Template
+    name: equals-translation-wol-mar
+    reference: Equals translation (Wolof into Marathi)
+  ed23d7a5-758e-4b5c-86ec-2d6faaba783b: !Template
     answer_choices: null
-    id: eb7840c1-a94f-4a77-b0ee-78b7fde429e1
-    jinja: 'Translate this from Lingala into Yoruba: {{ sentence_lin }} ||| {{ sentence_yor
-      }}'
+    id: ed23d7a5-758e-4b5c-86ec-2d6faaba783b
+    jinja: 'Telugu: {{ sentence_tel }} = English: ||| {{ sentence_eng }}'
     metadata: *id001
-    name: translate-this-lin-yor
-    reference: Basic translation (Lingala into Yoruba)
-  ebe07f58-bb5c-4c98-ab53-691b6eb8f80f: !Template
+    name: equals-translation-tel-eng
+    reference: Equals translation (Telugu into English)
+  ed3996c8-45a6-47a6-971b-85652505697c: !Template
     answer_choices: null
-    id: ebe07f58-bb5c-4c98-ab53-691b6eb8f80f
-    jinja: 'Translate this from Lingala into Wolof: {{ sentence_lin }} ||| {{ sentence_wol
+    id: ed3996c8-45a6-47a6-971b-85652505697c
+    jinja: 'Northern Sotho: {{ sentence_nso }} = Latin American Spanish: ||| {{ sentence_spa
       }}'
     metadata: *id001
-    name: translate-this-lin-wol
-    reference: Basic translation (Lingala into Wolof)
-  ec98fa23-7e17-44cf-9b6e-ea19a16568cd: !Template
+    name: equals-translation-nso-spa
+    reference: Equals translation (Northern Sotho into Latin American Spanish)
+  ed56187c-cdb7-4eef-b6d9-7a22b8d9bd97: !Template
     answer_choices: null
-    id: ec98fa23-7e17-44cf-9b6e-ea19a16568cd
-    jinja: 'Translate this from Kannada into Brazilian Portuguese: {{ sentence_kan
-      }} ||| {{ sentence_por }}'
+    id: ed56187c-cdb7-4eef-b6d9-7a22b8d9bd97
+    jinja: 'Malayalam: {{ sentence_mal }} = Yoruba: ||| {{ sentence_yor }}'
     metadata: *id001
-    name: translate-this-kan-por
-    reference: Basic translation (Kannada into Brazilian Portuguese)
-  ecd7bf4e-3de2-403a-a687-d5167588d252: !Template
+    name: equals-translation-mal-yor
+    reference: Equals translation (Malayalam into Yoruba)
+  eddc41e0-1d42-48c9-88a6-2699b877714d: !Template
     answer_choices: null
-    id: ecd7bf4e-3de2-403a-a687-d5167588d252
-    jinja: 'Translate this from simplified Chinese into Arabic: {{ sentence_zho_simpl
-      }} ||| {{ sentence_ara }}'
+    id: eddc41e0-1d42-48c9-88a6-2699b877714d
+    jinja: 'Hindi: {{ sentence_hin }} = Lingala: ||| {{ sentence_lin }}'
     metadata: *id001
-    name: translate-this-zho_simpl-ara
-    reference: Basic translation (simplified Chinese into Arabic)
-  ed1b49b0-d5e9-4b58-8f18-5e837f8f549f: !Template
+    name: equals-translation-hin-lin
+    reference: Equals translation (Hindi into Lingala)
+  ee388a36-cd92-4214-9953-22ea09abbc97: !Template
     answer_choices: null
-    id: ed1b49b0-d5e9-4b58-8f18-5e837f8f549f
-    jinja: 'Translate this from Bengali into Brazilian Portuguese: {{ sentence_ben
-      }} ||| {{ sentence_por }}'
+    id: ee388a36-cd92-4214-9953-22ea09abbc97
+    jinja: 'Urdu: {{ sentence_urd }} = Hindi: ||| {{ sentence_hin }}'
     metadata: *id001
-    name: translate-this-ben-por
-    reference: Basic translation (Bengali into Brazilian Portuguese)
-  ed8908cc-db66-41a6-8bc6-567f55ad0d64: !Template
+    name: equals-translation-urd-hin
+    reference: Equals translation (Urdu into Hindi)
+  ef515427-5b62-4cbb-a2ec-91540d7207fc: !Template
     answer_choices: null
-    id: ed8908cc-db66-41a6-8bc6-567f55ad0d64
-    jinja: 'Translate this from Marathi into Swahili: {{ sentence_mar }} ||| {{ sentence_swh
+    id: ef515427-5b62-4cbb-a2ec-91540d7207fc
+    jinja: 'Punjabi: {{ sentence_pan }} = traditional Chinese: ||| {{ sentence_zho_trad
       }}'
     metadata: *id001
-    name: translate-this-mar-swh
-    reference: Basic translation (Marathi into Swahili)
-  edfd3a85-c602-4a02-bfe2-2b8c798b8b4e: !Template
+    name: equals-translation-pan-zho_trad
+    reference: Equals translation (Punjabi into traditional Chinese)
+  ef5ca22f-e188-49da-81b2-b93a0d97da49: !Template
     answer_choices: null
-    id: edfd3a85-c602-4a02-bfe2-2b8c798b8b4e
-    jinja: 'Translate this from Urdu into Zulu: {{ sentence_urd }} ||| {{ sentence_zul
+    id: ef5ca22f-e188-49da-81b2-b93a0d97da49
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Indonesian: ||| {{ sentence_ind
       }}'
     metadata: *id001
-    name: translate-this-urd-zul
-    reference: Basic translation (Urdu into Zulu)
-  ee066521-c19b-4260-b16d-58c779570027: !Template
+    name: equals-translation-zho_trad-ind
+    reference: Equals translation (traditional Chinese into Indonesian)
+  ef63119e-4c07-4c3e-9f91-6d80464da7e0: !Template
     answer_choices: null
-    id: ee066521-c19b-4260-b16d-58c779570027
-    jinja: 'Translate this from Xhosa into French: {{ sentence_xho }} ||| {{ sentence_fra
+    id: ef63119e-4c07-4c3e-9f91-6d80464da7e0
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Xhosa: ||| {{ sentence_xho
       }}'
     metadata: *id001
-    name: translate-this-xho-fra
-    reference: Basic translation (Xhosa into French)
-  ee188aac-d6be-4c45-bdcc-169dd661b282: !Template
+    name: equals-translation-zho_simpl-xho
+    reference: Equals translation (simplified Chinese into Xhosa)
+  ef6395ca-2137-4fd8-ab39-d22770d16aa9: !Template
     answer_choices: null
-    id: ee188aac-d6be-4c45-bdcc-169dd661b282
-    jinja: 'Translate this from French into Catalan: {{ sentence_fra }} ||| {{ sentence_cat
-      }}'
+    id: ef6395ca-2137-4fd8-ab39-d22770d16aa9
+    jinja: 'Zulu: {{ sentence_zul }} = Northern Sotho: ||| {{ sentence_nso }}'
     metadata: *id001
-    name: translate-this-fra-cat
-    reference: Basic translation (French into Catalan)
-  ee1dc287-5c35-478b-8262-384096257184: !Template
+    name: equals-translation-zul-nso
+    reference: Equals translation (Zulu into Northern Sotho)
+  ef8277bc-7fc6-4ebe-997e-94e94a78f880: !Template
     answer_choices: null
-    id: ee1dc287-5c35-478b-8262-384096257184
-    jinja: 'Translate this from traditional Chinese into Igbo: {{ sentence_zho_trad
-      }} ||| {{ sentence_ibo }}'
+    id: ef8277bc-7fc6-4ebe-997e-94e94a78f880
+    jinja: 'Swahili: {{ sentence_swh }} = Xhosa: ||| {{ sentence_xho }}'
     metadata: *id001
-    name: translate-this-zho_trad-ibo
-    reference: Basic translation (traditional Chinese into Igbo)
-  ee201d32-c5dc-4e2a-995a-03465a627745: !Template
+    name: equals-translation-swh-xho
+    reference: Equals translation (Swahili into Xhosa)
+  ef8cbfd9-e8e2-4911-b298-5ca0dddf21ed: !Template
     answer_choices: null
-    id: ee201d32-c5dc-4e2a-995a-03465a627745
-    jinja: 'Translate this from Zulu into Catalan: {{ sentence_zul }} ||| {{ sentence_cat
-      }}'
+    id: ef8cbfd9-e8e2-4911-b298-5ca0dddf21ed
+    jinja: 'Vietnamese: {{ sentence_vie }} = English: ||| {{ sentence_eng }}'
     metadata: *id001
-    name: translate-this-zul-cat
-    reference: Basic translation (Zulu into Catalan)
-  ee35f6d1-0a8b-418b-b47c-99f1391e434a: !Template
+    name: equals-translation-vie-eng
+    reference: Equals translation (Vietnamese into English)
+  f0df1e2c-7cf7-479c-a7e7-3a7d7f6c702b: !Template
     answer_choices: null
-    id: ee35f6d1-0a8b-418b-b47c-99f1391e434a
-    jinja: 'Translate this from Igbo into Swahili: {{ sentence_ibo }} ||| {{ sentence_swh
-      }}'
+    id: f0df1e2c-7cf7-479c-a7e7-3a7d7f6c702b
+    jinja: 'Malayalam: {{ sentence_mal }} = Nepali: ||| {{ sentence_npi }}'
     metadata: *id001
-    name: translate-this-ibo-swh
-    reference: Basic translation (Igbo into Swahili)
-  ee5c9a97-0e57-4131-8776-ba0ca1419791: !Template
+    name: equals-translation-mal-npi
+    reference: Equals translation (Malayalam into Nepali)
+  f157fe01-063a-41b1-8244-4119a12e5b14: !Template
     answer_choices: null
-    id: ee5c9a97-0e57-4131-8776-ba0ca1419791
-    jinja: 'Translate this from English into Marathi: {{ sentence_eng }} ||| {{ sentence_mar
+    id: f157fe01-063a-41b1-8244-4119a12e5b14
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = Arabic: ||| {{ sentence_ara
       }}'
     metadata: *id001
-    name: translate-this-eng-mar
-    reference: Basic translation (English into Marathi)
-  ee77955e-b7e4-4cb2-86b1-8f0b13f66b04: !Template
+    name: equals-translation-spa-ara
+    reference: Equals translation (Latin American Spanish into Arabic)
+  f1d83c9c-1751-4e52-a5a3-29f3bc568ce3: !Template
     answer_choices: null
-    id: ee77955e-b7e4-4cb2-86b1-8f0b13f66b04
-    jinja: 'Translate this from Indonesian into Kannada: {{ sentence_ind }} ||| {{
-      sentence_kan }}'
+    id: f1d83c9c-1751-4e52-a5a3-29f3bc568ce3
+    jinja: 'Bengali: {{ sentence_ben }} = Gujarati: ||| {{ sentence_guj }}'
     metadata: *id001
-    name: translate-this-ind-kan
-    reference: Basic translation (Indonesian into Kannada)
-  ee8e51fb-0b9b-46e3-b1cf-0ebcee688fa9: !Template
+    name: equals-translation-ben-guj
+    reference: Equals translation (Bengali into Gujarati)
+  f1f5bf39-8184-4245-a815-345891e7d5e8: !Template
     answer_choices: null
-    id: ee8e51fb-0b9b-46e3-b1cf-0ebcee688fa9
-    jinja: 'Translate this from Latin American Spanish into Wolof: {{ sentence_spa
-      }} ||| {{ sentence_wol }}'
+    id: f1f5bf39-8184-4245-a815-345891e7d5e8
+    jinja: 'Indonesian: {{ sentence_ind }} = Tamil: ||| {{ sentence_tam }}'
     metadata: *id001
-    name: translate-this-spa-wol
-    reference: Basic translation (Latin American Spanish into Wolof)
-  ef2f7b3e-e3e6-4146-81ca-bdcaf79b04cf: !Template
+    name: equals-translation-ind-tam
+    reference: Equals translation (Indonesian into Tamil)
+  f270c087-e402-4cde-b94d-73060cf71c8f: !Template
     answer_choices: null
-    id: ef2f7b3e-e3e6-4146-81ca-bdcaf79b04cf
-    jinja: 'Translate this from Swahili into Latin American Spanish: {{ sentence_swh
-      }} ||| {{ sentence_spa }}'
+    id: f270c087-e402-4cde-b94d-73060cf71c8f
+    jinja: 'Lingala: {{ sentence_lin }} = traditional Chinese: ||| {{ sentence_zho_trad
+      }}'
     metadata: *id001
-    name: translate-this-swh-spa
-    reference: Basic translation (Swahili into Latin American Spanish)
-  ef56588b-9d0c-42f0-8cd7-03d6c17fcd76: !Template
+    name: equals-translation-lin-zho_trad
+    reference: Equals translation (Lingala into traditional Chinese)
+  f2c15a7d-d17c-4e18-b472-ee7ef120ac56: !Template
     answer_choices: null
-    id: ef56588b-9d0c-42f0-8cd7-03d6c17fcd76
-    jinja: 'Translate this from Northern Sotho into French: {{ sentence_nso }} |||
-      {{ sentence_fra }}'
+    id: f2c15a7d-d17c-4e18-b472-ee7ef120ac56
+    jinja: 'French: {{ sentence_fra }} = Tamil: ||| {{ sentence_tam }}'
     metadata: *id001
-    name: translate-this-nso-fra
-    reference: Basic translation (Northern Sotho into French)
-  ef84728b-e254-49eb-bff3-ca9820181c2a: !Template
+    name: equals-translation-fra-tam
+    reference: Equals translation (French into Tamil)
+  f2c17768-5777-49a9-aa63-a8ee1856f9f4: !Template
     answer_choices: null
-    id: ef84728b-e254-49eb-bff3-ca9820181c2a
-    jinja: 'Translate this from Tamil into French: {{ sentence_tam }} ||| {{ sentence_fra
+    id: f2c17768-5777-49a9-aa63-a8ee1856f9f4
+    jinja: 'Urdu: {{ sentence_urd }} = Latin American Spanish: ||| {{ sentence_spa
       }}'
     metadata: *id001
-    name: translate-this-tam-fra
-    reference: Basic translation (Tamil into French)
-  efba6685-d032-421f-9ff6-2c93d8aba6d7: !Template
+    name: equals-translation-urd-spa
+    reference: Equals translation (Urdu into Latin American Spanish)
+  f2d3ea8c-c0b8-4961-bfcd-a3922fb7b3b3: !Template
     answer_choices: null
-    id: efba6685-d032-421f-9ff6-2c93d8aba6d7
-    jinja: 'Translate this from Punjabi into traditional Chinese: {{ sentence_pan
-      }} ||| {{ sentence_zho_trad }}'
+    id: f2d3ea8c-c0b8-4961-bfcd-a3922fb7b3b3
+    jinja: 'Igbo: {{ sentence_ibo }} = French: ||| {{ sentence_fra }}'
     metadata: *id001
-    name: translate-this-pan-zho_trad
-    reference: Basic translation (Punjabi into traditional Chinese)
-  f01e7fd2-0161-4ec9-9ad6-aac8054642c2: !Template
+    name: equals-translation-ibo-fra
+    reference: Equals translation (Igbo into French)
+  f305a44c-dffd-4133-bf4f-421c558a45ca: !Template
     answer_choices: null
-    id: f01e7fd2-0161-4ec9-9ad6-aac8054642c2
-    jinja: 'Translate this from French into simplified Chinese: {{ sentence_fra }}
-      ||| {{ sentence_zho_simpl }}'
+    id: f305a44c-dffd-4133-bf4f-421c558a45ca
+    jinja: 'Catalan: {{ sentence_cat }} = Urdu: ||| {{ sentence_urd }}'
     metadata: *id001
-    name: translate-this-fra-zho_simpl
-    reference: Basic translation (French into simplified Chinese)
-  f0ce751b-580a-4081-80d9-55b8cfb82abd: !Template
+    name: equals-translation-cat-urd
+    reference: Equals translation (Catalan into Urdu)
+  f30afdf9-1557-4b58-866f-6a078c573830: !Template
     answer_choices: null
-    id: f0ce751b-580a-4081-80d9-55b8cfb82abd
-    jinja: 'Translate this from Hindi into Yoruba: {{ sentence_hin }} ||| {{ sentence_yor
-      }}'
+    id: f30afdf9-1557-4b58-866f-6a078c573830
+    jinja: 'Kannada: {{ sentence_kan }} = Arabic: ||| {{ sentence_ara }}'
     metadata: *id001
-    name: translate-this-hin-yor
-    reference: Basic translation (Hindi into Yoruba)
-  f0f74a44-0396-4f09-97b7-f785c6aa7002: !Template
+    name: equals-translation-kan-ara
+    reference: Equals translation (Kannada into Arabic)
+  f38c8749-62b5-4ccc-b88e-58d819bdc08c: !Template
     answer_choices: null
-    id: f0f74a44-0396-4f09-97b7-f785c6aa7002
-    jinja: 'Translate this from Assamese into Oriya: {{ sentence_asm }} ||| {{ sentence_ory
-      }}'
+    id: f38c8749-62b5-4ccc-b88e-58d819bdc08c
+    jinja: 'Yoruba: {{ sentence_yor }} = Bengali: ||| {{ sentence_ben }}'
     metadata: *id001
-    name: translate-this-asm-ory
-    reference: Basic translation (Assamese into Oriya)
-  f145e0a5-7b9e-4de5-ad3a-a95be295c2d4: !Template
+    name: equals-translation-yor-ben
+    reference: Equals translation (Yoruba into Bengali)
+  f3ef5d1f-7cc6-4622-83e7-a6cc1e28af83: !Template
     answer_choices: null
-    id: f145e0a5-7b9e-4de5-ad3a-a95be295c2d4
-    jinja: 'Translate this from Indonesian into Arabic: {{ sentence_ind }} ||| {{
-      sentence_ara }}'
+    id: f3ef5d1f-7cc6-4622-83e7-a6cc1e28af83
+    jinja: 'Malayalam: {{ sentence_mal }} = Hindi: ||| {{ sentence_hin }}'
     metadata: *id001
-    name: translate-this-ind-ara
-    reference: Basic translation (Indonesian into Arabic)
-  f1549179-7cfe-41e2-bc26-7108e79c6691: !Template
+    name: equals-translation-mal-hin
+    reference: Equals translation (Malayalam into Hindi)
+  f3ef6ab4-142a-41e0-a876-bf14fd0ddfa0: !Template
     answer_choices: null
-    id: f1549179-7cfe-41e2-bc26-7108e79c6691
-    jinja: 'Translate this from Marathi into Bengali: {{ sentence_mar }} ||| {{ sentence_ben
-      }}'
+    id: f3ef6ab4-142a-41e0-a876-bf14fd0ddfa0
+    jinja: 'Kannada: {{ sentence_kan }} = Xhosa: ||| {{ sentence_xho }}'
     metadata: *id001
-    name: translate-this-mar-ben
-    reference: Basic translation (Marathi into Bengali)
-  f15759eb-6c9f-4f43-935a-86962719db04: !Template
+    name: equals-translation-kan-xho
+    reference: Equals translation (Kannada into Xhosa)
+  f4a14f5b-e80c-45ab-ab4f-02d3d86b4e47: !Template
     answer_choices: null
-    id: f15759eb-6c9f-4f43-935a-86962719db04
-    jinja: 'Translate this from Nepali into Telugu: {{ sentence_npi }} ||| {{ sentence_tel
-      }}'
+    id: f4a14f5b-e80c-45ab-ab4f-02d3d86b4e47
+    jinja: 'Urdu: {{ sentence_urd }} = Xhosa: ||| {{ sentence_xho }}'
     metadata: *id001
-    name: translate-this-npi-tel
-    reference: Basic translation (Nepali into Telugu)
-  f17db1a9-ed89-45ff-b531-1e5030cec369: !Template
+    name: equals-translation-urd-xho
+    reference: Equals translation (Urdu into Xhosa)
+  f5ac60a3-0bc6-4330-9d06-6bff8b50adcd: !Template
     answer_choices: null
-    id: f17db1a9-ed89-45ff-b531-1e5030cec369
-    jinja: 'Translate this from Assamese into Arabic: {{ sentence_asm }} ||| {{ sentence_ara
+    id: f5ac60a3-0bc6-4330-9d06-6bff8b50adcd
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = French: ||| {{ sentence_fra
       }}'
     metadata: *id001
-    name: translate-this-asm-ara
-    reference: Basic translation (Assamese into Arabic)
-  f1f173bb-9f76-4e70-b8e5-8bfd0df1267d: !Template
+    name: equals-translation-zho_simpl-fra
+    reference: Equals translation (simplified Chinese into French)
+  f5bf5f13-4112-4656-8e37-4ea6e2bdeeb7: !Template
+    answer_choices: null
+    id: f5bf5f13-4112-4656-8e37-4ea6e2bdeeb7
+    jinja: 'Arabic: {{ sentence_ara }} = Vietnamese: ||| {{ sentence_vie }}'
+    metadata: *id001
+    name: equals-translation-ara-vie
+    reference: Equals translation (Arabic into Vietnamese)
+  f5df7c86-5cef-4d86-ab41-027a6ddc3b34: !Template
     answer_choices: null
-    id: f1f173bb-9f76-4e70-b8e5-8bfd0df1267d
-    jinja: 'Translate this from Bengali into Igbo: {{ sentence_ben }} ||| {{ sentence_ibo
+    id: f5df7c86-5cef-4d86-ab41-027a6ddc3b34
+    jinja: 'Urdu: {{ sentence_urd }} = traditional Chinese: ||| {{ sentence_zho_trad
       }}'
     metadata: *id001
-    name: translate-this-ben-ibo
-    reference: Basic translation (Bengali into Igbo)
-  f2438150-2ab5-470a-a005-3f27bfd8dd2c: !Template
+    name: equals-translation-urd-zho_trad
+    reference: Equals translation (Urdu into traditional Chinese)
+  f5e609dd-a026-4d0f-86f3-5558988fd294: !Template
     answer_choices: null
-    id: f2438150-2ab5-470a-a005-3f27bfd8dd2c
-    jinja: 'Translate this from Swahili into Malayalam: {{ sentence_swh }} ||| {{
-      sentence_mal }}'
+    id: f5e609dd-a026-4d0f-86f3-5558988fd294
+    jinja: 'Oriya: {{ sentence_ory }} = Indonesian: ||| {{ sentence_ind }}'
     metadata: *id001
-    name: translate-this-swh-mal
-    reference: Basic translation (Swahili into Malayalam)
-  f2723207-177f-416b-acfd-24d621a6aaad: !Template
+    name: equals-translation-ory-ind
+    reference: Equals translation (Oriya into Indonesian)
+  f5f03820-705d-478d-944d-141900ee6049: !Template
     answer_choices: null
-    id: f2723207-177f-416b-acfd-24d621a6aaad
-    jinja: 'Translate this from Marathi into Wolof: {{ sentence_mar }} ||| {{ sentence_wol
-      }}'
+    id: f5f03820-705d-478d-944d-141900ee6049
+    jinja: 'Igbo: {{ sentence_ibo }} = Brazilian Portuguese: ||| {{ sentence_por }}'
     metadata: *id001
-    name: translate-this-mar-wol
-    reference: Basic translation (Marathi into Wolof)
-  f291cf5f-502c-456e-aa5b-dfba11859531: !Template
+    name: equals-translation-ibo-por
+    reference: Equals translation (Igbo into Brazilian Portuguese)
+  f5fec6af-0684-4dd0-91ff-16aa0bb3d993: !Template
     answer_choices: null
-    id: f291cf5f-502c-456e-aa5b-dfba11859531
-    jinja: 'Translate this from Tamil into Igbo: {{ sentence_tam }} ||| {{ sentence_ibo
-      }}'
+    id: f5fec6af-0684-4dd0-91ff-16aa0bb3d993
+    jinja: 'Malayalam: {{ sentence_mal }} = Oriya: ||| {{ sentence_ory }}'
     metadata: *id001
-    name: translate-this-tam-ibo
-    reference: Basic translation (Tamil into Igbo)
-  f2bf1f79-52a1-48eb-a86c-debb4effa082: !Template
+    name: equals-translation-mal-ory
+    reference: Equals translation (Malayalam into Oriya)
+  f6119abb-2511-4f5d-b750-b7680ac668ec: !Template
     answer_choices: null
-    id: f2bf1f79-52a1-48eb-a86c-debb4effa082
-    jinja: 'Translate this from Wolof into Bengali: {{ sentence_wol }} ||| {{ sentence_ben
-      }}'
+    id: f6119abb-2511-4f5d-b750-b7680ac668ec
+    jinja: 'Kannada: {{ sentence_kan }} = Marathi: ||| {{ sentence_mar }}'
     metadata: *id001
-    name: translate-this-wol-ben
-    reference: Basic translation (Wolof into Bengali)
-  f2c6ee80-16f7-45e3-a68d-1d4e11b24134: !Template
+    name: equals-translation-kan-mar
+    reference: Equals translation (Kannada into Marathi)
+  f614de9d-e359-4aa7-a28f-7c10d9c15119: !Template
     answer_choices: null
-    id: f2c6ee80-16f7-45e3-a68d-1d4e11b24134
-    jinja: 'Translate this from English into Xhosa: {{ sentence_eng }} ||| {{ sentence_xho
-      }}'
+    id: f614de9d-e359-4aa7-a28f-7c10d9c15119
+    jinja: 'Urdu: {{ sentence_urd }} = Punjabi: ||| {{ sentence_pan }}'
     metadata: *id001
-    name: translate-this-eng-xho
-    reference: Basic translation (English into Xhosa)
-  f2f63218-01d0-4310-bb4b-be36d4890200: !Template
+    name: equals-translation-urd-pan
+    reference: Equals translation (Urdu into Punjabi)
+  f6b58c96-022f-4cb3-972c-65c5819d8317: !Template
     answer_choices: null
-    id: f2f63218-01d0-4310-bb4b-be36d4890200
-    jinja: 'Translate this from simplified Chinese into Indonesian: {{ sentence_zho_simpl
-      }} ||| {{ sentence_ind }}'
+    id: f6b58c96-022f-4cb3-972c-65c5819d8317
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Telugu: ||| {{ sentence_tel
+      }}'
     metadata: *id001
-    name: translate-this-zho_simpl-ind
-    reference: Basic translation (simplified Chinese into Indonesian)
-  f42e82d8-dea9-461f-b236-a8567d1ff256: !Template
+    name: equals-translation-por-tel
+    reference: Equals translation (Brazilian Portuguese into Telugu)
+  f6c76ce7-7447-4da9-aa76-9b815220452a: !Template
     answer_choices: null
-    id: f42e82d8-dea9-461f-b236-a8567d1ff256
-    jinja: 'Translate this from Kannada into Arabic: {{ sentence_kan }} ||| {{ sentence_ara
+    id: f6c76ce7-7447-4da9-aa76-9b815220452a
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = Xhosa: ||| {{ sentence_xho
       }}'
     metadata: *id001
-    name: translate-this-kan-ara
-    reference: Basic translation (Kannada into Arabic)
-  f5e76f4a-1331-4e9c-95ba-1a903ab2d532: !Template
+    name: equals-translation-spa-xho
+    reference: Equals translation (Latin American Spanish into Xhosa)
+  f6dcf25b-b761-42c1-97d5-7f21de854f98: !Template
     answer_choices: null
-    id: f5e76f4a-1331-4e9c-95ba-1a903ab2d532
-    jinja: 'Translate this from Hindi into Marathi: {{ sentence_hin }} ||| {{ sentence_mar
+    id: f6dcf25b-b761-42c1-97d5-7f21de854f98
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Bengali: ||| {{ sentence_ben
       }}'
     metadata: *id001
-    name: translate-this-hin-mar
-    reference: Basic translation (Hindi into Marathi)
-  f5eeccb4-7d79-494a-9f47-d56c74765834: !Template
+    name: equals-translation-zho_trad-ben
+    reference: Equals translation (traditional Chinese into Bengali)
+  f7504594-a588-4e15-8bd5-660d64128e59: !Template
     answer_choices: null
-    id: f5eeccb4-7d79-494a-9f47-d56c74765834
-    jinja: 'Translate this from Brazilian Portuguese into Telugu: {{ sentence_por
-      }} ||| {{ sentence_tel }}'
+    id: f7504594-a588-4e15-8bd5-660d64128e59
+    jinja: 'Oriya: {{ sentence_ory }} = English: ||| {{ sentence_eng }}'
     metadata: *id001
-    name: translate-this-por-tel
-    reference: Basic translation (Brazilian Portuguese into Telugu)
-  f602ec66-4282-41fb-8755-102985a7a4e2: !Template
+    name: equals-translation-ory-eng
+    reference: Equals translation (Oriya into English)
+  f7695da3-0fa9-4b83-b7a2-8824ff089ffa: !Template
     answer_choices: null
-    id: f602ec66-4282-41fb-8755-102985a7a4e2
-    jinja: 'Translate this from French into Kannada: {{ sentence_fra }} ||| {{ sentence_kan
-      }}'
+    id: f7695da3-0fa9-4b83-b7a2-8824ff089ffa
+    jinja: 'Arabic: {{ sentence_ara }} = Kannada: ||| {{ sentence_kan }}'
     metadata: *id001
-    name: translate-this-fra-kan
-    reference: Basic translation (French into Kannada)
-  f64eb6f0-e763-4a8b-8500-ce3e765c1639: !Template
+    name: equals-translation-ara-kan
+    reference: Equals translation (Arabic into Kannada)
+  f77d8296-92e9-4550-83c5-adcd5d90b791: !Template
     answer_choices: null
-    id: f64eb6f0-e763-4a8b-8500-ce3e765c1639
-    jinja: 'Translate this from Indonesian into Xhosa: {{ sentence_ind }} ||| {{ sentence_xho
+    id: f77d8296-92e9-4550-83c5-adcd5d90b791
+    jinja: 'Bengali: {{ sentence_ben }} = Brazilian Portuguese: ||| {{ sentence_por
       }}'
     metadata: *id001
-    name: translate-this-ind-xho
-    reference: Basic translation (Indonesian into Xhosa)
-  f6826b9f-6350-4e07-90ad-e40880b91bbd: !Template
+    name: equals-translation-ben-por
+    reference: Equals translation (Bengali into Brazilian Portuguese)
+  f81d894c-d4b5-4624-a8d3-53eef2174451: !Template
     answer_choices: null
-    id: f6826b9f-6350-4e07-90ad-e40880b91bbd
-    jinja: 'Translate this from Latin American Spanish into Lingala: {{ sentence_spa
-      }} ||| {{ sentence_lin }}'
+    id: f81d894c-d4b5-4624-a8d3-53eef2174451
+    jinja: 'English: {{ sentence_eng }} = Zulu: ||| {{ sentence_zul }}'
     metadata: *id001
-    name: translate-this-spa-lin
-    reference: Basic translation (Latin American Spanish into Lingala)
-  f7126d7a-ed42-46e8-a56c-3589b0d698f9: !Template
+    name: equals-translation-eng-zul
+    reference: Equals translation (English into Zulu)
+  f8489544-8d94-41a8-b25b-49eec69b353b: !Template
     answer_choices: null
-    id: f7126d7a-ed42-46e8-a56c-3589b0d698f9
-    jinja: 'Translate this from Nepali into Swahili: {{ sentence_npi }} ||| {{ sentence_swh
+    id: f8489544-8d94-41a8-b25b-49eec69b353b
+    jinja: 'French: {{ sentence_fra }} = traditional Chinese: ||| {{ sentence_zho_trad
       }}'
     metadata: *id001
-    name: translate-this-npi-swh
-    reference: Basic translation (Nepali into Swahili)
-  f7226a1f-24fc-43a3-8817-d1307608cf87: !Template
+    name: equals-translation-fra-zho_trad
+    reference: Equals translation (French into traditional Chinese)
+  f8b473be-cf7d-483b-84d1-424f5c87b53c: !Template
     answer_choices: null
-    id: f7226a1f-24fc-43a3-8817-d1307608cf87
-    jinja: 'Translate this from Lingala into Malayalam: {{ sentence_lin }} ||| {{
-      sentence_mal }}'
+    id: f8b473be-cf7d-483b-84d1-424f5c87b53c
+    jinja: 'Xhosa: {{ sentence_xho }} = English: ||| {{ sentence_eng }}'
     metadata: *id001
-    name: translate-this-lin-mal
-    reference: Basic translation (Lingala into Malayalam)
-  f7658bdd-0119-4fc0-981b-696d8ed7b7ed: !Template
+    name: equals-translation-xho-eng
+    reference: Equals translation (Xhosa into English)
+  f8e9f632-80e1-4f86-aadd-db1cb81af476: !Template
     answer_choices: null
-    id: f7658bdd-0119-4fc0-981b-696d8ed7b7ed
-    jinja: 'Translate this from Zulu into Assamese: {{ sentence_zul }} ||| {{ sentence_asm
-      }}'
+    id: f8e9f632-80e1-4f86-aadd-db1cb81af476
+    jinja: 'Punjabi: {{ sentence_pan }} = Telugu: ||| {{ sentence_tel }}'
     metadata: *id001
-    name: translate-this-zul-asm
-    reference: Basic translation (Zulu into Assamese)
-  f7661d38-c4d0-4da0-b43a-edd4d210b38f: !Template
+    name: equals-translation-pan-tel
+    reference: Equals translation (Punjabi into Telugu)
+  f98ff40f-acb4-45d7-968a-b59c56239d4f: !Template
     answer_choices: null
-    id: f7661d38-c4d0-4da0-b43a-edd4d210b38f
-    jinja: 'Translate this from Urdu into simplified Chinese: {{ sentence_urd }} |||
-      {{ sentence_zho_simpl }}'
+    id: f98ff40f-acb4-45d7-968a-b59c56239d4f
+    jinja: 'Hindi: {{ sentence_hin }} = Swahili: ||| {{ sentence_swh }}'
     metadata: *id001
-    name: translate-this-urd-zho_simpl
-    reference: Basic translation (Urdu into simplified Chinese)
-  f7ee981d-0a6e-4550-9c68-d442ab363519: !Template
+    name: equals-translation-hin-swh
+    reference: Equals translation (Hindi into Swahili)
+  fa36a027-5eb8-4fd6-a5f3-f330389fc712: !Template
     answer_choices: null
-    id: f7ee981d-0a6e-4550-9c68-d442ab363519
-    jinja: 'Translate this from Lingala into Arabic: {{ sentence_lin }} ||| {{ sentence_ara
-      }}'
+    id: fa36a027-5eb8-4fd6-a5f3-f330389fc712
+    jinja: 'Swahili: {{ sentence_swh }} = Zulu: ||| {{ sentence_zul }}'
     metadata: *id001
-    name: translate-this-lin-ara
-    reference: Basic translation (Lingala into Arabic)
-  f7fbc1bb-5029-46df-994f-276493ae5840: !Template
+    name: equals-translation-swh-zul
+    reference: Equals translation (Swahili into Zulu)
+  fa753fe3-6a2e-423d-b76c-7830783599dd: !Template
     answer_choices: null
-    id: f7fbc1bb-5029-46df-994f-276493ae5840
-    jinja: 'Translate this from Urdu into Kannada: {{ sentence_urd }} ||| {{ sentence_kan
-      }}'
+    id: fa753fe3-6a2e-423d-b76c-7830783599dd
+    jinja: 'Northern Sotho: {{ sentence_nso }} = Telugu: ||| {{ sentence_tel }}'
     metadata: *id001
-    name: translate-this-urd-kan
-    reference: Basic translation (Urdu into Kannada)
-  f80285c0-5c5a-4c26-842f-98485fea996f: !Template
+    name: equals-translation-nso-tel
+    reference: Equals translation (Northern Sotho into Telugu)
+  fa7e3219-05b2-46bb-8824-28bb0e539b76: !Template
     answer_choices: null
-    id: f80285c0-5c5a-4c26-842f-98485fea996f
-    jinja: 'Translate this from Wolof into Punjabi: {{ sentence_wol }} ||| {{ sentence_pan
-      }}'
+    id: fa7e3219-05b2-46bb-8824-28bb0e539b76
+    jinja: 'Bengali: {{ sentence_ben }} = Northern Sotho: ||| {{ sentence_nso }}'
     metadata: *id001
-    name: translate-this-wol-pan
-    reference: Basic translation (Wolof into Punjabi)
-  f82de6d9-2d52-43bb-9e9c-9613ebf8f179: !Template
+    name: equals-translation-ben-nso
+    reference: Equals translation (Bengali into Northern Sotho)
+  faed7f34-4698-4f67-afe8-1d6205396617: !Template
     answer_choices: null
-    id: f82de6d9-2d52-43bb-9e9c-9613ebf8f179
-    jinja: 'Translate this from English into Oriya: {{ sentence_eng }} ||| {{ sentence_ory
-      }}'
+    id: faed7f34-4698-4f67-afe8-1d6205396617
+    jinja: 'Vietnamese: {{ sentence_vie }} = Urdu: ||| {{ sentence_urd }}'
     metadata: *id001
-    name: translate-this-eng-ory
-    reference: Basic translation (English into Oriya)
-  f87772f2-0a05-48d2-83c7-8733f645ebf2: !Template
+    name: equals-translation-vie-urd
+    reference: Equals translation (Vietnamese into Urdu)
+  fb21891e-c877-4afa-8dea-b573ce3611fa: !Template
     answer_choices: null
-    id: f87772f2-0a05-48d2-83c7-8733f645ebf2
-    jinja: 'Translate this from Urdu into Wolof: {{ sentence_urd }} ||| {{ sentence_wol
-      }}'
+    id: fb21891e-c877-4afa-8dea-b573ce3611fa
+    jinja: 'Xhosa: {{ sentence_xho }} = Lingala: ||| {{ sentence_lin }}'
     metadata: *id001
-    name: translate-this-urd-wol
-    reference: Basic translation (Urdu into Wolof)
-  f8a22446-1976-4149-99fd-4432e1d1247b: !Template
+    name: equals-translation-xho-lin
+    reference: Equals translation (Xhosa into Lingala)
+  fb520452-3303-48c5-b7d4-c27c66cde9be: !Template
     answer_choices: null
-    id: f8a22446-1976-4149-99fd-4432e1d1247b
-    jinja: 'Translate this from Wolof into Gujarati: {{ sentence_wol }} ||| {{ sentence_guj
-      }}'
+    id: fb520452-3303-48c5-b7d4-c27c66cde9be
+    jinja: 'Vietnamese: {{ sentence_vie }} = Igbo: ||| {{ sentence_ibo }}'
     metadata: *id001
-    name: translate-this-wol-guj
-    reference: Basic translation (Wolof into Gujarati)
-  f8b6bd68-52c9-4cf1-8f78-1ce164a32887: !Template
+    name: equals-translation-vie-ibo
+    reference: Equals translation (Vietnamese into Igbo)
+  fb64a78a-4bb3-49d9-871c-193ea0fbe3cc: !Template
     answer_choices: null
-    id: f8b6bd68-52c9-4cf1-8f78-1ce164a32887
-    jinja: 'Translate this from Nepali into traditional Chinese: {{ sentence_npi }}
-      ||| {{ sentence_zho_trad }}'
+    id: fb64a78a-4bb3-49d9-871c-193ea0fbe3cc
+    jinja: 'Northern Sotho: {{ sentence_nso }} = Tamil: ||| {{ sentence_tam }}'
     metadata: *id001
-    name: translate-this-npi-zho_trad
-    reference: Basic translation (Nepali into traditional Chinese)
-  f91b6339-6390-4871-8675-65ad58ba27b0: !Template
+    name: equals-translation-nso-tam
+    reference: Equals translation (Northern Sotho into Tamil)
+  fbac54ea-b62c-4d9b-97b3-1fd738d9a2fb: !Template
     answer_choices: null
-    id: f91b6339-6390-4871-8675-65ad58ba27b0
-    jinja: 'Translate this from Oriya into Indonesian: {{ sentence_ory }} ||| {{ sentence_ind
-      }}'
+    id: fbac54ea-b62c-4d9b-97b3-1fd738d9a2fb
+    jinja: 'Yoruba: {{ sentence_yor }} = Catalan: ||| {{ sentence_cat }}'
     metadata: *id001
-    name: translate-this-ory-ind
-    reference: Basic translation (Oriya into Indonesian)
-  f976fdf3-ec3f-4d5f-a64d-c1b2482bc54b: !Template
+    name: equals-translation-yor-cat
+    reference: Equals translation (Yoruba into Catalan)
+  fbffaa37-a842-4559-97fa-67e19825f3e3: !Template
     answer_choices: null
-    id: f976fdf3-ec3f-4d5f-a64d-c1b2482bc54b
-    jinja: 'Translate this from Lingala into English: {{ sentence_lin }} ||| {{ sentence_eng
-      }}'
+    id: fbffaa37-a842-4559-97fa-67e19825f3e3
+    jinja: 'Indonesian: {{ sentence_ind }} = Punjabi: ||| {{ sentence_pan }}'
     metadata: *id001
-    name: translate-this-lin-eng
-    reference: Basic translation (Lingala into English)
-  f9846b99-3f83-4e11-9fc3-2870154e1c0d: !Template
+    name: equals-translation-ind-pan
+    reference: Equals translation (Indonesian into Punjabi)
+  fc9ac44c-d56d-4e88-8c1b-4dcf10ed2be6: !Template
     answer_choices: null
-    id: f9846b99-3f83-4e11-9fc3-2870154e1c0d
-    jinja: 'Translate this from Malayalam into Punjabi: {{ sentence_mal }} ||| {{
-      sentence_pan }}'
+    id: fc9ac44c-d56d-4e88-8c1b-4dcf10ed2be6
+    jinja: 'Yoruba: {{ sentence_yor }} = Xhosa: ||| {{ sentence_xho }}'
     metadata: *id001
-    name: translate-this-mal-pan
-    reference: Basic translation (Malayalam into Punjabi)
-  fa64d9a9-7dab-4a0e-9eb0-13c3d58bf356: !Template
+    name: equals-translation-yor-xho
+    reference: Equals translation (Yoruba into Xhosa)
+  fcdf3c65-460c-4e86-a875-b8c39cc8c320: !Template
     answer_choices: null
-    id: fa64d9a9-7dab-4a0e-9eb0-13c3d58bf356
-    jinja: 'Translate this from Zulu into Brazilian Portuguese: {{ sentence_zul }}
-      ||| {{ sentence_por }}'
+    id: fcdf3c65-460c-4e86-a875-b8c39cc8c320
+    jinja: 'Indonesian: {{ sentence_ind }} = Yoruba: ||| {{ sentence_yor }}'
     metadata: *id001
-    name: translate-this-zul-por
-    reference: Basic translation (Zulu into Brazilian Portuguese)
-  faf86f4b-d77f-403d-ab03-774659a36781: !Template
+    name: equals-translation-ind-yor
+    reference: Equals translation (Indonesian into Yoruba)
+  fd036427-12f1-4e95-84fa-2bb07fce17cd: !Template
     answer_choices: null
-    id: faf86f4b-d77f-403d-ab03-774659a36781
-    jinja: 'Translate this from Northern Sotho into Kannada: {{ sentence_nso }} |||
-      {{ sentence_kan }}'
+    id: fd036427-12f1-4e95-84fa-2bb07fce17cd
+    jinja: 'English: {{ sentence_eng }} = Brazilian Portuguese: ||| {{ sentence_por
+      }}'
     metadata: *id001
-    name: translate-this-nso-kan
-    reference: Basic translation (Northern Sotho into Kannada)
-  fceee8bf-33f8-4098-91c3-a69444ed9697: !Template
+    name: equals-translation-eng-por
+    reference: Equals translation (English into Brazilian Portuguese)
+  fd1e1370-1920-499c-8503-943fa9b88347: !Template
     answer_choices: null
-    id: fceee8bf-33f8-4098-91c3-a69444ed9697
-    jinja: 'Translate this from Assamese into Tamil: {{ sentence_asm }} ||| {{ sentence_tam
+    id: fd1e1370-1920-499c-8503-943fa9b88347
+    jinja: 'Wolof: {{ sentence_wol }} = Latin American Spanish: ||| {{ sentence_spa
       }}'
     metadata: *id001
-    name: translate-this-asm-tam
-    reference: Basic translation (Assamese into Tamil)
-  fe2624bb-342f-4997-af6a-3b943628883d: !Template
+    name: equals-translation-wol-spa
+    reference: Equals translation (Wolof into Latin American Spanish)
+  fd5a1cec-8a53-4bc9-a577-c4afdc8a6d3f: !Template
     answer_choices: null
-    id: fe2624bb-342f-4997-af6a-3b943628883d
-    jinja: 'Translate this from Northern Sotho into Indonesian: {{ sentence_nso }}
-      ||| {{ sentence_ind }}'
+    id: fd5a1cec-8a53-4bc9-a577-c4afdc8a6d3f
+    jinja: 'Northern Sotho: {{ sentence_nso }} = English: ||| {{ sentence_eng }}'
     metadata: *id001
-    name: translate-this-nso-ind
-    reference: Basic translation (Northern Sotho into Indonesian)
-  fe370421-c1f2-4759-82f7-6bd488427d3f: !Template
+    name: equals-translation-nso-eng
+    reference: Equals translation (Northern Sotho into English)
+  fe6d226e-ef74-4173-a3df-fcb27f33b254: !Template
     answer_choices: null
-    id: fe370421-c1f2-4759-82f7-6bd488427d3f
-    jinja: 'Translate this from Lingala into Indonesian: {{ sentence_lin }} ||| {{
-      sentence_ind }}'
+    id: fe6d226e-ef74-4173-a3df-fcb27f33b254
+    jinja: 'Urdu: {{ sentence_urd }} = Catalan: ||| {{ sentence_cat }}'
     metadata: *id001
-    name: translate-this-lin-ind
-    reference: Basic translation (Lingala into Indonesian)
-  fed34e44-76c0-45a5-b49d-7b8ca6cdcb38: !Template
+    name: equals-translation-urd-cat
+    reference: Equals translation (Urdu into Catalan)
+  fe753e50-d0f3-4dc3-9264-1675cde47880: !Template
     answer_choices: null
-    id: fed34e44-76c0-45a5-b49d-7b8ca6cdcb38
-    jinja: 'Translate this from Indonesian into Latin American Spanish: {{ sentence_ind
-      }} ||| {{ sentence_spa }}'
+    id: fe753e50-d0f3-4dc3-9264-1675cde47880
+    jinja: 'Indonesian: {{ sentence_ind }} = Bengali: ||| {{ sentence_ben }}'
     metadata: *id001
-    name: translate-this-ind-spa
-    reference: Basic translation (Indonesian into Latin American Spanish)
-  fef417de-47a9-4913-b5d0-b61bff7655fd: !Template
+    name: equals-translation-ind-ben
+    reference: Equals translation (Indonesian into Bengali)
+  fe7d959a-a243-43de-951b-43fa9a893d79: !Template
     answer_choices: null
-    id: fef417de-47a9-4913-b5d0-b61bff7655fd
-    jinja: 'Translate this from Kannada into Assamese: {{ sentence_kan }} ||| {{ sentence_asm
+    id: fe7d959a-a243-43de-951b-43fa9a893d79
+    jinja: 'Northern Sotho: {{ sentence_nso }} = simplified Chinese: ||| {{ sentence_zho_simpl
       }}'
     metadata: *id001
-    name: translate-this-kan-asm
-    reference: Basic translation (Kannada into Assamese)
-  fefce4a4-8882-4b40-89f2-444be618eb53: !Template
+    name: equals-translation-nso-zho_simpl
+    reference: Equals translation (Northern Sotho into simplified Chinese)
+  ff1a8a5a-85bb-4fde-a416-5114f0fca1db: !Template
+    answer_choices: null
+    id: ff1a8a5a-85bb-4fde-a416-5114f0fca1db
+    jinja: 'Kannada: {{ sentence_kan }} = Assamese: ||| {{ sentence_asm }}'
+    metadata: *id001
+    name: equals-translation-kan-asm
+    reference: Equals translation (Kannada into Assamese)
+  fffd1ef8-c28c-4aa6-84b8-5e2b785a285f: !Template
     answer_choices: null
-    id: fefce4a4-8882-4b40-89f2-444be618eb53
-    jinja: 'Translate this from Yoruba into Zulu: {{ sentence_yor }} ||| {{ sentence_zul
+    id: fffd1ef8-c28c-4aa6-84b8-5e2b785a285f
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Malayalam: ||| {{ sentence_mal
       }}'
     metadata: *id001
-    name: translate-this-yor-zul
-    reference: Basic translation (Yoruba into Zulu)
+    name: equals-translation-zho_trad-mal
+    reference: Equals translation (traditional Chinese into Malayalam)

From 23da32f81d8686a2c39ad752b73a6673274ebd3e Mon Sep 17 00:00:00 2001
From: Victor Sanh <victorsanh@gmail.com>
Date: Sat, 25 Jun 2022 20:29:05 +0000
Subject: [PATCH 26/31] style and format

---
 promptsource/templates.py | 12 +-----------
 1 file changed, 1 insertion(+), 11 deletions(-)

diff --git a/promptsource/templates.py b/promptsource/templates.py
index 5436cb560..31a9c1789 100644
--- a/promptsource/templates.py
+++ b/promptsource/templates.py
@@ -27,17 +27,7 @@
 # These are users whose datasets should be included in the results returned by
 # filter_english_datasets (regardless of their metadata)
 
-INCLUDED_USERS = {
-    "Zaid",
-    "craffel",
-    "GEM",
-    "aps",
-    "khalidalt",
-    "shanya",
-    "rbawden",
-    "BigScienceBiasEval",
-    "gsarti"
-}
+INCLUDED_USERS = {"Zaid", "craffel", "GEM", "aps", "khalidalt", "shanya", "rbawden", "BigScienceBiasEval", "gsarti"}
 
 
 def highlight(input):

From 9adcf6c3a05fa5bf5e4ec7dbb616d168ae08ac35 Mon Sep 17 00:00:00 2001
From: Rachel Bawden <rachel.bawden@inria.fr@users.noreply.github.com>
Date: Wed, 29 Jun 2022 20:25:30 +0200
Subject: [PATCH 27/31] update with new prompt

---
 .../gsarti/flores_101/all/templates.yaml      | 10157 +++++++++-------
 1 file changed, 5435 insertions(+), 4722 deletions(-)

diff --git a/promptsource/templates/gsarti/flores_101/all/templates.yaml b/promptsource/templates/gsarti/flores_101/all/templates.yaml
index 0929a39fd..2aa4aa6a1 100644
--- a/promptsource/templates/gsarti/flores_101/all/templates.yaml
+++ b/promptsource/templates/gsarti/flores_101/all/templates.yaml
@@ -1,6746 +1,7459 @@
 dataset: gsarti/flores_101/all
 templates:
-  00ebe80a-69a5-4330-aeb5-5b6c53acb923: !Template
+  001f35c4-803b-4e45-9f44-db9c572e82a3: !Template
     answer_choices: null
-    id: 00ebe80a-69a5-4330-aeb5-5b6c53acb923
-    jinja: 'Catalan: {{ sentence_cat }} = English: ||| {{ sentence_eng }}'
+    id: 001f35c4-803b-4e45-9f44-db9c572e82a3
+    jinja: 'Translate this from Kannada into Malayalam: {{ sentence_kan }} ||| {{
+      sentence_mal }}'
     metadata: &id001 !TemplateMetadata
       choices_in_prompt: false
       metrics:
       - BLEU
       original_task: true
-    name: equals-translation-cat-eng
-    reference: Equals translation (Catalan into English)
-  01495c35-ccf9-4f16-9c47-a096c6d42d4e: !Template
+    name: translate-this-kan-mal
+    reference: Translate this from X to Y (Kannada into Malayalam)
+  00515c6e-9875-4490-92fe-ae32c25c8ac6: !Template
     answer_choices: null
-    id: 01495c35-ccf9-4f16-9c47-a096c6d42d4e
-    jinja: 'Punjabi: {{ sentence_pan }} = simplified Chinese: ||| {{ sentence_zho_simpl
+    id: 00515c6e-9875-4490-92fe-ae32c25c8ac6
+    jinja: 'Translate this from Gujarati into Latin American Spanish: {{ sentence_guj
+      }} ||| {{ sentence_spa }}'
+    metadata: *id001
+    name: translate-this-guj-spa
+    reference: Translate this from X to Y (Gujarati into Latin American Spanish)
+  0054f41e-3dae-4e97-9e00-5c304e46c77f: !Template
+    answer_choices: null
+    id: 0054f41e-3dae-4e97-9e00-5c304e46c77f
+    jinja: 'Translate this from Igbo into Malayalam: {{ sentence_ibo }} ||| {{ sentence_mal
       }}'
     metadata: *id001
-    name: equals-translation-pan-zho_simpl
-    reference: Equals translation (Punjabi into simplified Chinese)
-  01a2e45b-7099-4475-9aae-118d96caa5bc: !Template
+    name: translate-this-ibo-mal
+    reference: Translate this from X to Y (Igbo into Malayalam)
+  01cc2fb1-a912-48b3-ae4c-93a35fedd2b5: !Template
     answer_choices: null
-    id: 01a2e45b-7099-4475-9aae-118d96caa5bc
-    jinja: 'Telugu: {{ sentence_tel }} = Yoruba: ||| {{ sentence_yor }}'
+    id: 01cc2fb1-a912-48b3-ae4c-93a35fedd2b5
+    jinja: 'Translate this from Punjabi into Tamil: {{ sentence_pan }} ||| {{ sentence_tam
+      }}'
     metadata: *id001
-    name: equals-translation-tel-yor
-    reference: Equals translation (Telugu into Yoruba)
-  02753690-66ce-48f2-8283-4741fc111397: !Template
+    name: translate-this-pan-tam
+    reference: Translate this from X to Y (Punjabi into Tamil)
+  01d563f6-6e8f-4772-8809-716752041e7f: !Template
     answer_choices: null
-    id: 02753690-66ce-48f2-8283-4741fc111397
-    jinja: 'Kannada: {{ sentence_kan }} = French: ||| {{ sentence_fra }}'
+    id: 01d563f6-6e8f-4772-8809-716752041e7f
+    jinja: 'Translate this from Swahili into Tamil: {{ sentence_swh }} ||| {{ sentence_tam
+      }}'
     metadata: *id001
-    name: equals-translation-kan-fra
-    reference: Equals translation (Kannada into French)
-  02f89823-e75e-4a8c-878a-498b2493c862: !Template
+    name: translate-this-swh-tam
+    reference: Translate this from X to Y (Swahili into Tamil)
+  01e07968-fea7-401c-a9c2-ebe5db45c21b: !Template
     answer_choices: null
-    id: 02f89823-e75e-4a8c-878a-498b2493c862
-    jinja: 'Northern Sotho: {{ sentence_nso }} = Brazilian Portuguese: ||| {{ sentence_por
+    id: 01e07968-fea7-401c-a9c2-ebe5db45c21b
+    jinja: 'Translate this from French into Zulu: {{ sentence_fra }} ||| {{ sentence_zul
       }}'
     metadata: *id001
-    name: equals-translation-nso-por
-    reference: Equals translation (Northern Sotho into Brazilian Portuguese)
-  038d1610-f288-4cdb-b12d-0daac917e004: !Template
+    name: translate-this-fra-zul
+    reference: Translate this from X to Y (French into Zulu)
+  021bbacb-93a7-465e-a53f-880b08b7eb4b: !Template
     answer_choices: null
-    id: 038d1610-f288-4cdb-b12d-0daac917e004
-    jinja: 'Indonesian: {{ sentence_ind }} = Malayalam: ||| {{ sentence_mal }}'
+    id: 021bbacb-93a7-465e-a53f-880b08b7eb4b
+    jinja: 'Translate this from Yoruba into Bengali: {{ sentence_yor }} ||| {{ sentence_ben
+      }}'
     metadata: *id001
-    name: equals-translation-ind-mal
-    reference: Equals translation (Indonesian into Malayalam)
-  03de5f59-31c6-4cc0-82ee-42916a2b3a6d: !Template
+    name: translate-this-yor-ben
+    reference: Translate this from X to Y (Yoruba into Bengali)
+  0232d41d-1bf4-4319-9550-2391ae9eed39: !Template
     answer_choices: null
-    id: 03de5f59-31c6-4cc0-82ee-42916a2b3a6d
-    jinja: 'Wolof: {{ sentence_wol }} = Xhosa: ||| {{ sentence_xho }}'
+    id: 0232d41d-1bf4-4319-9550-2391ae9eed39
+    jinja: 'Translate this from Arabic into Assamese: {{ sentence_ara }} ||| {{ sentence_asm
+      }}'
     metadata: *id001
-    name: equals-translation-wol-xho
-    reference: Equals translation (Wolof into Xhosa)
-  0429410b-a5de-4009-8fc1-b5eeebffa2b5: !Template
+    name: translate-this-ara-asm
+    reference: Translate this from X to Y (Arabic into Assamese)
+  024df579-251e-4c51-8a7a-77e96478d522: !Template
     answer_choices: null
-    id: 0429410b-a5de-4009-8fc1-b5eeebffa2b5
-    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Kannada: ||| {{ sentence_kan
+    id: 024df579-251e-4c51-8a7a-77e96478d522
+    jinja: 'Translate this from Catalan into Kannada: {{ sentence_cat }} ||| {{ sentence_kan
       }}'
     metadata: *id001
-    name: equals-translation-zho_trad-kan
-    reference: Equals translation (traditional Chinese into Kannada)
-  045e0065-344f-4d06-abe2-9f94ab99c9c7: !Template
+    name: translate-this-cat-kan
+    reference: Translate this from X to Y (Catalan into Kannada)
+  026c6bd5-c385-46c0-8d9c-84d51bacbf8a: !Template
     answer_choices: null
-    id: 045e0065-344f-4d06-abe2-9f94ab99c9c7
-    jinja: 'French: {{ sentence_fra }} = Hindi: ||| {{ sentence_hin }}'
+    id: 026c6bd5-c385-46c0-8d9c-84d51bacbf8a
+    jinja: 'Translate this from Brazilian Portuguese into Vietnamese: {{ sentence_por
+      }} ||| {{ sentence_vie }}'
     metadata: *id001
-    name: equals-translation-fra-hin
-    reference: Equals translation (French into Hindi)
-  04c9483c-5823-4e35-a846-e06dc45101d0: !Template
+    name: translate-this-por-vie
+    reference: Translate this from X to Y (Brazilian Portuguese into Vietnamese)
+  02ce19f9-7cc0-41b1-aa6c-55c7253f3869: !Template
     answer_choices: null
-    id: 04c9483c-5823-4e35-a846-e06dc45101d0
-    jinja: 'Catalan: {{ sentence_cat }} = simplified Chinese: ||| {{ sentence_zho_simpl
-      }}'
+    id: 02ce19f9-7cc0-41b1-aa6c-55c7253f3869
+    jinja: 'Translate this from Malayalam into Bengali: {{ sentence_mal }} ||| {{
+      sentence_ben }}'
     metadata: *id001
-    name: equals-translation-cat-zho_simpl
-    reference: Equals translation (Catalan into simplified Chinese)
-  050fba5c-fdd4-4ee8-89b6-b2ba1f016a1e: !Template
+    name: translate-this-mal-ben
+    reference: Translate this from X to Y (Malayalam into Bengali)
+  034c9811-d2d5-4e1a-bb1f-1e0d12431e86: !Template
     answer_choices: null
-    id: 050fba5c-fdd4-4ee8-89b6-b2ba1f016a1e
-    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Wolof: ||| {{ sentence_wol
+    id: 034c9811-d2d5-4e1a-bb1f-1e0d12431e86
+    jinja: 'Translate this from Punjabi into French: {{ sentence_pan }} ||| {{ sentence_fra
       }}'
     metadata: *id001
-    name: equals-translation-zho_trad-wol
-    reference: Equals translation (traditional Chinese into Wolof)
-  051fb4a8-9a11-410b-bd08-934b1b0bf011: !Template
+    name: translate-this-pan-fra
+    reference: Translate this from X to Y (Punjabi into French)
+  03b919e1-d8dd-4ef1-bbf3-e4deeef43715: !Template
     answer_choices: null
-    id: 051fb4a8-9a11-410b-bd08-934b1b0bf011
-    jinja: 'Catalan: {{ sentence_cat }} = Telugu: ||| {{ sentence_tel }}'
+    id: 03b919e1-d8dd-4ef1-bbf3-e4deeef43715
+    jinja: 'Translate this from English into Arabic: {{ sentence_eng }} ||| {{ sentence_ara
+      }}'
     metadata: *id001
-    name: equals-translation-cat-tel
-    reference: Equals translation (Catalan into Telugu)
-  0538ec42-1e9d-4fe0-9cea-f30859fa38f6: !Template
+    name: translate-this-eng-ara
+    reference: Translate this from X to Y (English into Arabic)
+  04b4d534-7a72-4680-875b-e33177f2ddc7: !Template
     answer_choices: null
-    id: 0538ec42-1e9d-4fe0-9cea-f30859fa38f6
-    jinja: 'Igbo: {{ sentence_ibo }} = traditional Chinese: ||| {{ sentence_zho_trad
+    id: 04b4d534-7a72-4680-875b-e33177f2ddc7
+    jinja: 'Translate this from Malayalam into Urdu: {{ sentence_mal }} ||| {{ sentence_urd
       }}'
     metadata: *id001
-    name: equals-translation-ibo-zho_trad
-    reference: Equals translation (Igbo into traditional Chinese)
-  0563ecc8-59e3-4e2f-bec1-17c3b590b981: !Template
+    name: translate-this-mal-urd
+    reference: Translate this from X to Y (Malayalam into Urdu)
+  052bf69b-45e0-45c4-bf51-9b298f6a2918: !Template
     answer_choices: null
-    id: 0563ecc8-59e3-4e2f-bec1-17c3b590b981
-    jinja: 'Lingala: {{ sentence_lin }} = Gujarati: ||| {{ sentence_guj }}'
+    id: 052bf69b-45e0-45c4-bf51-9b298f6a2918
+    jinja: 'Translate this from Gujarati into Igbo: {{ sentence_guj }} ||| {{ sentence_ibo
+      }}'
     metadata: *id001
-    name: equals-translation-lin-guj
-    reference: Equals translation (Lingala into Gujarati)
-  05c132e8-d0bb-43f9-89ef-fe18a1afc633: !Template
+    name: translate-this-guj-ibo
+    reference: Translate this from X to Y (Gujarati into Igbo)
+  052e70a0-fb78-431a-804e-dabe3597f006: !Template
     answer_choices: null
-    id: 05c132e8-d0bb-43f9-89ef-fe18a1afc633
-    jinja: 'Oriya: {{ sentence_ory }} = traditional Chinese: ||| {{ sentence_zho_trad
+    id: 052e70a0-fb78-431a-804e-dabe3597f006
+    jinja: 'Translate this from Oriya into Bengali: {{ sentence_ory }} ||| {{ sentence_ben
       }}'
     metadata: *id001
-    name: equals-translation-ory-zho_trad
-    reference: Equals translation (Oriya into traditional Chinese)
-  05f87742-c6ef-4bca-9dcd-b1cb1dc05ecd: !Template
+    name: translate-this-ory-ben
+    reference: Translate this from X to Y (Oriya into Bengali)
+  05673e56-d8d7-4418-b7af-3d9da89c0123: !Template
     answer_choices: null
-    id: 05f87742-c6ef-4bca-9dcd-b1cb1dc05ecd
-    jinja: 'Gujarati: {{ sentence_guj }} = Assamese: ||| {{ sentence_asm }}'
+    id: 05673e56-d8d7-4418-b7af-3d9da89c0123
+    jinja: 'Translate this from Assamese into Yoruba: {{ sentence_asm }} ||| {{ sentence_yor
+      }}'
     metadata: *id001
-    name: equals-translation-guj-asm
-    reference: Equals translation (Gujarati into Assamese)
-  0698793e-5e79-4789-8fb7-74d0e3880dc4: !Template
+    name: translate-this-asm-yor
+    reference: Translate this from X to Y (Assamese into Yoruba)
+  0589bb4b-88ce-4d44-9c7d-40a0451ffd9f: !Template
     answer_choices: null
-    id: 0698793e-5e79-4789-8fb7-74d0e3880dc4
-    jinja: 'Marathi: {{ sentence_mar }} = Yoruba: ||| {{ sentence_yor }}'
+    id: 0589bb4b-88ce-4d44-9c7d-40a0451ffd9f
+    jinja: 'Translate this from Arabic into Swahili: {{ sentence_ara }} ||| {{ sentence_swh
+      }}'
     metadata: *id001
-    name: equals-translation-mar-yor
-    reference: Equals translation (Marathi into Yoruba)
-  06cb92f2-7f48-405d-917c-d79d2a2544b6: !Template
+    name: translate-this-ara-swh
+    reference: Translate this from X to Y (Arabic into Swahili)
+  05c80379-9513-4c65-a58d-b0dbbb81cf7b: !Template
     answer_choices: null
-    id: 06cb92f2-7f48-405d-917c-d79d2a2544b6
-    jinja: 'Vietnamese: {{ sentence_vie }} = Northern Sotho: ||| {{ sentence_nso }}'
+    id: 05c80379-9513-4c65-a58d-b0dbbb81cf7b
+    jinja: 'Translate this from Northern Sotho into Zulu: {{ sentence_nso }} ||| {{
+      sentence_zul }}'
     metadata: *id001
-    name: equals-translation-vie-nso
-    reference: Equals translation (Vietnamese into Northern Sotho)
-  0705ac65-6dab-4e37-9738-bb5b5a2a54b2: !Template
+    name: translate-this-nso-zul
+    reference: Translate this from X to Y (Northern Sotho into Zulu)
+  05d66472-473b-45f6-8efc-aab26991ca83: !Template
     answer_choices: null
-    id: 0705ac65-6dab-4e37-9738-bb5b5a2a54b2
-    jinja: 'Assamese: {{ sentence_asm }} = traditional Chinese: ||| {{ sentence_zho_trad
+    id: 05d66472-473b-45f6-8efc-aab26991ca83
+    jinja: 'Translate this from Oriya into Assamese: {{ sentence_ory }} ||| {{ sentence_asm
       }}'
     metadata: *id001
-    name: equals-translation-asm-zho_trad
-    reference: Equals translation (Assamese into traditional Chinese)
-  076fc402-5c90-4f2e-895d-c734147f7896: !Template
+    name: translate-this-ory-asm
+    reference: Translate this from X to Y (Oriya into Assamese)
+  05f353b8-f572-449d-a746-d6c7d75b1460: !Template
     answer_choices: null
-    id: 076fc402-5c90-4f2e-895d-c734147f7896
-    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Tamil: ||| {{ sentence_tam
+    id: 05f353b8-f572-449d-a746-d6c7d75b1460
+    jinja: 'Translate this from Lingala into Oriya: {{ sentence_lin }} ||| {{ sentence_ory
       }}'
     metadata: *id001
-    name: equals-translation-por-tam
-    reference: Equals translation (Brazilian Portuguese into Tamil)
-  07b886bd-9f31-4619-a777-c0a9b9f5d736: !Template
+    name: translate-this-lin-ory
+    reference: Translate this from X to Y (Lingala into Oriya)
+  0655d7ae-932e-476d-b4c0-6b37fa08b863: !Template
     answer_choices: null
-    id: 07b886bd-9f31-4619-a777-c0a9b9f5d736
-    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Wolof: ||| {{ sentence_wol
+    id: 0655d7ae-932e-476d-b4c0-6b37fa08b863
+    jinja: 'Translate this from Telugu into Wolof: {{ sentence_tel }} ||| {{ sentence_wol
       }}'
     metadata: *id001
-    name: equals-translation-por-wol
-    reference: Equals translation (Brazilian Portuguese into Wolof)
-  07fc0ee4-6b52-4148-babd-3e1c24266a5e: !Template
+    name: translate-this-tel-wol
+    reference: Translate this from X to Y (Telugu into Wolof)
+  06633612-5fc3-47e4-9bdb-9979ec2a906a: !Template
     answer_choices: null
-    id: 07fc0ee4-6b52-4148-babd-3e1c24266a5e
-    jinja: 'Catalan: {{ sentence_cat }} = Lingala: ||| {{ sentence_lin }}'
+    id: 06633612-5fc3-47e4-9bdb-9979ec2a906a
+    jinja: 'Translate this from Brazilian Portuguese into Northern Sotho: {{ sentence_por
+      }} ||| {{ sentence_nso }}'
     metadata: *id001
-    name: equals-translation-cat-lin
-    reference: Equals translation (Catalan into Lingala)
-  080b5ec0-7ecc-462a-b40d-bab3994e3225: !Template
+    name: translate-this-por-nso
+    reference: Translate this from X to Y (Brazilian Portuguese into Northern Sotho)
+  0688b325-b9f5-46be-885f-8d50870a4796: !Template
     answer_choices: null
-    id: 080b5ec0-7ecc-462a-b40d-bab3994e3225
-    jinja: 'Bengali: {{ sentence_ben }} = Telugu: ||| {{ sentence_tel }}'
+    id: 0688b325-b9f5-46be-885f-8d50870a4796
+    jinja: 'Translate this from Yoruba into traditional Chinese: {{ sentence_yor }}
+      ||| {{ sentence_zho_trad }}'
     metadata: *id001
-    name: equals-translation-ben-tel
-    reference: Equals translation (Bengali into Telugu)
-  08149cf8-0dd1-4240-9c6f-008bb4cb9a5f: !Template
+    name: translate-this-yor-zho_trad
+    reference: Translate this from X to Y (Yoruba into traditional Chinese)
+  06b52db2-5f52-48bf-b691-0743c53dca05: !Template
     answer_choices: null
-    id: 08149cf8-0dd1-4240-9c6f-008bb4cb9a5f
-    jinja: 'Catalan: {{ sentence_cat }} = Oriya: ||| {{ sentence_ory }}'
+    id: 06b52db2-5f52-48bf-b691-0743c53dca05
+    jinja: 'Translate this from Urdu into traditional Chinese: {{ sentence_urd }}
+      ||| {{ sentence_zho_trad }}'
     metadata: *id001
-    name: equals-translation-cat-ory
-    reference: Equals translation (Catalan into Oriya)
-  0890c6a1-f479-4130-a638-e6ab60a93bce: !Template
+    name: translate-this-urd-zho_trad
+    reference: Translate this from X to Y (Urdu into traditional Chinese)
+  0733c1a2-af3b-44c8-bcb2-249573583c19: !Template
     answer_choices: null
-    id: 0890c6a1-f479-4130-a638-e6ab60a93bce
-    jinja: 'Latin American Spanish: {{ sentence_spa }} = Assamese: ||| {{ sentence_asm
+    id: 0733c1a2-af3b-44c8-bcb2-249573583c19
+    jinja: 'Translate this from Oriya into Nepali: {{ sentence_ory }} ||| {{ sentence_npi
       }}'
     metadata: *id001
-    name: equals-translation-spa-asm
-    reference: Equals translation (Latin American Spanish into Assamese)
-  08d917d8-4287-4b55-82af-7fba1b2c2290: !Template
+    name: translate-this-ory-npi
+    reference: Translate this from X to Y (Oriya into Nepali)
+  076f4692-4fbb-4250-8b53-faded47498bd: !Template
+    answer_choices: null
+    id: 076f4692-4fbb-4250-8b53-faded47498bd
+    jinja: 'Translate this from Punjabi into Vietnamese: {{ sentence_pan }} ||| {{
+      sentence_vie }}'
+    metadata: *id001
+    name: translate-this-pan-vie
+    reference: Translate this from X to Y (Punjabi into Vietnamese)
+  0771d683-74a8-4d90-91ba-846c34370b1e: !Template
     answer_choices: null
-    id: 08d917d8-4287-4b55-82af-7fba1b2c2290
-    jinja: 'Kannada: {{ sentence_kan }} = Brazilian Portuguese: ||| {{ sentence_por
+    id: 0771d683-74a8-4d90-91ba-846c34370b1e
+    jinja: 'Translate this from Hindi into Catalan: {{ sentence_hin }} ||| {{ sentence_cat
       }}'
     metadata: *id001
-    name: equals-translation-kan-por
-    reference: Equals translation (Kannada into Brazilian Portuguese)
-  08e37dff-3540-4bc8-9288-b6bfb4df32c2: !Template
+    name: translate-this-hin-cat
+    reference: Translate this from X to Y (Hindi into Catalan)
+  07db41a3-d393-4a80-bfac-901510404e24: !Template
     answer_choices: null
-    id: 08e37dff-3540-4bc8-9288-b6bfb4df32c2
-    jinja: 'Malayalam: {{ sentence_mal }} = Bengali: ||| {{ sentence_ben }}'
+    id: 07db41a3-d393-4a80-bfac-901510404e24
+    jinja: 'Translate this from Telugu into French: {{ sentence_tel }} ||| {{ sentence_fra
+      }}'
     metadata: *id001
-    name: equals-translation-mal-ben
-    reference: Equals translation (Malayalam into Bengali)
-  092134e8-579c-4ceb-b5b2-c12f4ed64e1f: !Template
+    name: translate-this-tel-fra
+    reference: Translate this from X to Y (Telugu into French)
+  07dcce5a-8a45-411a-b76e-082fb29a1c0e: !Template
     answer_choices: null
-    id: 092134e8-579c-4ceb-b5b2-c12f4ed64e1f
-    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Punjabi: ||| {{ sentence_pan
+    id: 07dcce5a-8a45-411a-b76e-082fb29a1c0e
+    jinja: 'Translate this from Xhosa into Oriya: {{ sentence_xho }} ||| {{ sentence_ory
       }}'
     metadata: *id001
-    name: equals-translation-zho_trad-pan
-    reference: Equals translation (traditional Chinese into Punjabi)
-  09c26b2e-2d8e-48c8-9aea-e79f5a2ddd32: !Template
+    name: translate-this-xho-ory
+    reference: Translate this from X to Y (Xhosa into Oriya)
+  07fa19bb-93cf-4a9d-9056-a3e7b082ccb6: !Template
     answer_choices: null
-    id: 09c26b2e-2d8e-48c8-9aea-e79f5a2ddd32
-    jinja: 'French: {{ sentence_fra }} = Marathi: ||| {{ sentence_mar }}'
+    id: 07fa19bb-93cf-4a9d-9056-a3e7b082ccb6
+    jinja: 'Translate this from Arabic into Zulu: {{ sentence_ara }} ||| {{ sentence_zul
+      }}'
     metadata: *id001
-    name: equals-translation-fra-mar
-    reference: Equals translation (French into Marathi)
-  09cab085-799b-4de1-9d21-091d1136ae4a: !Template
+    name: translate-this-ara-zul
+    reference: Translate this from X to Y (Arabic into Zulu)
+  08aefda0-a815-4c05-82a0-98606a411095: !Template
     answer_choices: null
-    id: 09cab085-799b-4de1-9d21-091d1136ae4a
-    jinja: 'Marathi: {{ sentence_mar }} = Lingala: ||| {{ sentence_lin }}'
+    id: 08aefda0-a815-4c05-82a0-98606a411095
+    jinja: 'Translate this from Punjabi into Catalan: {{ sentence_pan }} ||| {{ sentence_cat
+      }}'
     metadata: *id001
-    name: equals-translation-mar-lin
-    reference: Equals translation (Marathi into Lingala)
-  09fbdf2b-4ce8-4f91-b5f5-64d9840a86cc: !Template
+    name: translate-this-pan-cat
+    reference: Translate this from X to Y (Punjabi into Catalan)
+  092c5a74-aca0-404e-9028-a65760814ae5: !Template
     answer_choices: null
-    id: 09fbdf2b-4ce8-4f91-b5f5-64d9840a86cc
-    jinja: 'Indonesian: {{ sentence_ind }} = French: ||| {{ sentence_fra }}'
+    id: 092c5a74-aca0-404e-9028-a65760814ae5
+    jinja: 'Translate this from Zulu into Marathi: {{ sentence_zul }} ||| {{ sentence_mar
+      }}'
     metadata: *id001
-    name: equals-translation-ind-fra
-    reference: Equals translation (Indonesian into French)
-  0a2c9d2a-2aed-462e-8985-d18d717b9ae4: !Template
+    name: translate-this-zul-mar
+    reference: Translate this from X to Y (Zulu into Marathi)
+  093345cc-bba4-4bec-89f5-b851cd738200: !Template
     answer_choices: null
-    id: 0a2c9d2a-2aed-462e-8985-d18d717b9ae4
-    jinja: 'Kannada: {{ sentence_kan }} = English: ||| {{ sentence_eng }}'
+    id: 093345cc-bba4-4bec-89f5-b851cd738200
+    jinja: 'Translate this from Swahili into Hindi: {{ sentence_swh }} ||| {{ sentence_hin
+      }}'
     metadata: *id001
-    name: equals-translation-kan-eng
-    reference: Equals translation (Kannada into English)
-  0a4bebff-50e5-447e-9bc1-907760cca671: !Template
+    name: translate-this-swh-hin
+    reference: Translate this from X to Y (Swahili into Hindi)
+  095967e5-4b72-44db-8b8a-055804f82f4d: !Template
     answer_choices: null
-    id: 0a4bebff-50e5-447e-9bc1-907760cca671
-    jinja: 'English: {{ sentence_eng }} = Northern Sotho: ||| {{ sentence_nso }}'
+    id: 095967e5-4b72-44db-8b8a-055804f82f4d
+    jinja: 'Translate this from Kannada into Nepali: {{ sentence_kan }} ||| {{ sentence_npi
+      }}'
     metadata: *id001
-    name: equals-translation-eng-nso
-    reference: Equals translation (English into Northern Sotho)
-  0ad21930-48c2-4ca8-aa83-e3c76833f248: !Template
+    name: translate-this-kan-npi
+    reference: Translate this from X to Y (Kannada into Nepali)
+  0966cd67-8bf8-434a-8f04-2d4d7148e02b: !Template
     answer_choices: null
-    id: 0ad21930-48c2-4ca8-aa83-e3c76833f248
-    jinja: 'Yoruba: {{ sentence_yor }} = Indonesian: ||| {{ sentence_ind }}'
+    id: 0966cd67-8bf8-434a-8f04-2d4d7148e02b
+    jinja: 'Translate this from Gujarati into Marathi: {{ sentence_guj }} ||| {{ sentence_mar
+      }}'
     metadata: *id001
-    name: equals-translation-yor-ind
-    reference: Equals translation (Yoruba into Indonesian)
-  0afa1f24-5138-4634-a768-178453fd1a68: !Template
+    name: translate-this-guj-mar
+    reference: Translate this from X to Y (Gujarati into Marathi)
+  097b6d08-0162-4cec-81b2-efcba008f86e: !Template
     answer_choices: null
-    id: 0afa1f24-5138-4634-a768-178453fd1a68
-    jinja: 'Nepali: {{ sentence_npi }} = Catalan: ||| {{ sentence_cat }}'
+    id: 097b6d08-0162-4cec-81b2-efcba008f86e
+    jinja: 'Translate this from Latin American Spanish into Kannada: {{ sentence_spa
+      }} ||| {{ sentence_kan }}'
     metadata: *id001
-    name: equals-translation-npi-cat
-    reference: Equals translation (Nepali into Catalan)
-  0b6688b3-434d-49f1-af89-7f5efcf13486: !Template
+    name: translate-this-spa-kan
+    reference: Translate this from X to Y (Latin American Spanish into Kannada)
+  09d2d1b0-a7f9-43b0-99bc-1a096eb02b7b: !Template
     answer_choices: null
-    id: 0b6688b3-434d-49f1-af89-7f5efcf13486
-    jinja: 'Swahili: {{ sentence_swh }} = Indonesian: ||| {{ sentence_ind }}'
+    id: 09d2d1b0-a7f9-43b0-99bc-1a096eb02b7b
+    jinja: 'Translate this from Igbo into Vietnamese: {{ sentence_ibo }} ||| {{ sentence_vie
+      }}'
     metadata: *id001
-    name: equals-translation-swh-ind
-    reference: Equals translation (Swahili into Indonesian)
-  0be791d4-bc27-4708-b70f-9930e35f6d76: !Template
+    name: translate-this-ibo-vie
+    reference: Translate this from X to Y (Igbo into Vietnamese)
+  0a7de7bd-5344-4b30-becb-d22cb1cd5049: !Template
     answer_choices: null
-    id: 0be791d4-bc27-4708-b70f-9930e35f6d76
-    jinja: 'Hindi: {{ sentence_hin }} = Urdu: ||| {{ sentence_urd }}'
+    id: 0a7de7bd-5344-4b30-becb-d22cb1cd5049
+    jinja: 'Translate this from Wolof into Northern Sotho: {{ sentence_wol }} |||
+      {{ sentence_nso }}'
     metadata: *id001
-    name: equals-translation-hin-urd
-    reference: Equals translation (Hindi into Urdu)
-  0c547cc0-dfa3-4c8c-b7a0-ebfdd9345d30: !Template
+    name: translate-this-wol-nso
+    reference: Translate this from X to Y (Wolof into Northern Sotho)
+  0a7f058f-5347-43f8-84d8-b125b92f919e: !Template
     answer_choices: null
-    id: 0c547cc0-dfa3-4c8c-b7a0-ebfdd9345d30
-    jinja: 'Latin American Spanish: {{ sentence_spa }} = Hindi: ||| {{ sentence_hin
+    id: 0a7f058f-5347-43f8-84d8-b125b92f919e
+    jinja: 'Translate this from Indonesian into Zulu: {{ sentence_ind }} ||| {{ sentence_zul
       }}'
     metadata: *id001
-    name: equals-translation-spa-hin
-    reference: Equals translation (Latin American Spanish into Hindi)
-  0c6551b3-3c94-46bd-877a-6a082303c308: !Template
+    name: translate-this-ind-zul
+    reference: Translate this from X to Y (Indonesian into Zulu)
+  0ac78754-ea53-41ed-bffb-b7e0900d7312: !Template
     answer_choices: null
-    id: 0c6551b3-3c94-46bd-877a-6a082303c308
-    jinja: 'Arabic: {{ sentence_ara }} = Malayalam: ||| {{ sentence_mal }}'
+    id: 0ac78754-ea53-41ed-bffb-b7e0900d7312
+    jinja: 'Translate this from Zulu into Arabic: {{ sentence_zul }} ||| {{ sentence_ara
+      }}'
     metadata: *id001
-    name: equals-translation-ara-mal
-    reference: Equals translation (Arabic into Malayalam)
-  0cc5cc05-82db-4e77-9bbf-577e40d78f75: !Template
+    name: translate-this-zul-ara
+    reference: Translate this from X to Y (Zulu into Arabic)
+  0af3e0f1-2360-4afb-b4af-023ed6d995be: !Template
     answer_choices: null
-    id: 0cc5cc05-82db-4e77-9bbf-577e40d78f75
-    jinja: 'Nepali: {{ sentence_npi }} = Gujarati: ||| {{ sentence_guj }}'
+    id: 0af3e0f1-2360-4afb-b4af-023ed6d995be
+    jinja: 'Translate this from Brazilian Portuguese into Tamil: {{ sentence_por }}
+      ||| {{ sentence_tam }}'
     metadata: *id001
-    name: equals-translation-npi-guj
-    reference: Equals translation (Nepali into Gujarati)
-  0d209454-3f58-4f0c-9ae9-cc4aca784c17: !Template
+    name: translate-this-por-tam
+    reference: Translate this from X to Y (Brazilian Portuguese into Tamil)
+  0b0c374e-ab5e-49e8-91bd-dcb42df8ffef: !Template
     answer_choices: null
-    id: 0d209454-3f58-4f0c-9ae9-cc4aca784c17
-    jinja: 'Punjabi: {{ sentence_pan }} = Oriya: ||| {{ sentence_ory }}'
+    id: 0b0c374e-ab5e-49e8-91bd-dcb42df8ffef
+    jinja: 'Translate this from Bengali into Kannada: {{ sentence_ben }} ||| {{ sentence_kan
+      }}'
     metadata: *id001
-    name: equals-translation-pan-ory
-    reference: Equals translation (Punjabi into Oriya)
-  0da3b66f-c7ca-48aa-83fb-c8190c4110db: !Template
+    name: translate-this-ben-kan
+    reference: Translate this from X to Y (Bengali into Kannada)
+  0b31cb20-9fa8-44fb-8ad3-2d12a6270933: !Template
     answer_choices: null
-    id: 0da3b66f-c7ca-48aa-83fb-c8190c4110db
-    jinja: 'Gujarati: {{ sentence_guj }} = Wolof: ||| {{ sentence_wol }}'
+    id: 0b31cb20-9fa8-44fb-8ad3-2d12a6270933
+    jinja: 'Translate this from Swahili into English: {{ sentence_swh }} ||| {{ sentence_eng
+      }}'
     metadata: *id001
-    name: equals-translation-guj-wol
-    reference: Equals translation (Gujarati into Wolof)
-  0e13ff85-33a0-44d1-8cd0-b7b47b95d0bd: !Template
+    name: translate-this-swh-eng
+    reference: Translate this from X to Y (Swahili into English)
+  0b41045f-dfdb-4601-91cf-24167e601af0: !Template
     answer_choices: null
-    id: 0e13ff85-33a0-44d1-8cd0-b7b47b95d0bd
-    jinja: 'Malayalam: {{ sentence_mal }} = French: ||| {{ sentence_fra }}'
+    id: 0b41045f-dfdb-4601-91cf-24167e601af0
+    jinja: 'Translate this from English into Punjabi: {{ sentence_eng }} ||| {{ sentence_pan
+      }}'
     metadata: *id001
-    name: equals-translation-mal-fra
-    reference: Equals translation (Malayalam into French)
-  0e41bebe-0c58-4b83-8ef4-19d1614f4033: !Template
+    name: translate-this-eng-pan
+    reference: Translate this from X to Y (English into Punjabi)
+  0bf007f5-8c77-4346-b6eb-511ffe543e91: !Template
     answer_choices: null
-    id: 0e41bebe-0c58-4b83-8ef4-19d1614f4033
-    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Yoruba: ||| {{ sentence_yor
+    id: 0bf007f5-8c77-4346-b6eb-511ffe543e91
+    jinja: 'Translate this from Urdu into English: {{ sentence_urd }} ||| {{ sentence_eng
       }}'
     metadata: *id001
-    name: equals-translation-zho_trad-yor
-    reference: Equals translation (traditional Chinese into Yoruba)
-  1033c70e-29f5-4dc3-9f18-fa9701b0a42e: !Template
+    name: translate-this-urd-eng
+    reference: Translate this from X to Y (Urdu into English)
+  0c0fd64b-3117-4898-b7a9-28905679eadb: !Template
     answer_choices: null
-    id: 1033c70e-29f5-4dc3-9f18-fa9701b0a42e
-    jinja: 'Oriya: {{ sentence_ory }} = Bengali: ||| {{ sentence_ben }}'
+    id: 0c0fd64b-3117-4898-b7a9-28905679eadb
+    jinja: 'Translate this from Igbo into Indonesian: {{ sentence_ibo }} ||| {{ sentence_ind
+      }}'
     metadata: *id001
-    name: equals-translation-ory-ben
-    reference: Equals translation (Oriya into Bengali)
-  105bf1aa-cc85-4d30-a63f-3add1b1884b8: !Template
+    name: translate-this-ibo-ind
+    reference: Translate this from X to Y (Igbo into Indonesian)
+  0caa450d-fcab-4c63-99de-be23dce00ea9: !Template
     answer_choices: null
-    id: 105bf1aa-cc85-4d30-a63f-3add1b1884b8
-    jinja: 'Northern Sotho: {{ sentence_nso }} = Swahili: ||| {{ sentence_swh }}'
+    id: 0caa450d-fcab-4c63-99de-be23dce00ea9
+    jinja: 'Translate this from Assamese into Catalan: {{ sentence_asm }} ||| {{ sentence_cat
+      }}'
     metadata: *id001
-    name: equals-translation-nso-swh
-    reference: Equals translation (Northern Sotho into Swahili)
-  11b67b3f-1ec8-41f3-8741-5e5e0c95941b: !Template
+    name: translate-this-asm-cat
+    reference: Translate this from X to Y (Assamese into Catalan)
+  0ccf060e-7c7a-451d-923a-95607d4ffa05: !Template
     answer_choices: null
-    id: 11b67b3f-1ec8-41f3-8741-5e5e0c95941b
-    jinja: 'Kannada: {{ sentence_kan }} = Telugu: ||| {{ sentence_tel }}'
+    id: 0ccf060e-7c7a-451d-923a-95607d4ffa05
+    jinja: 'Translate this from Wolof into Brazilian Portuguese: {{ sentence_wol }}
+      ||| {{ sentence_por }}'
     metadata: *id001
-    name: equals-translation-kan-tel
-    reference: Equals translation (Kannada into Telugu)
-  123f6644-9f39-4087-8af5-40a5f6ade7e3: !Template
+    name: translate-this-wol-por
+    reference: Translate this from X to Y (Wolof into Brazilian Portuguese)
+  0cd546c4-7b6f-46fa-a090-2cb3a8132aed: !Template
     answer_choices: null
-    id: 123f6644-9f39-4087-8af5-40a5f6ade7e3
-    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Swahili: ||| {{ sentence_swh
-      }}'
+    id: 0cd546c4-7b6f-46fa-a090-2cb3a8132aed
+    jinja: 'Translate this from Marathi into Vietnamese: {{ sentence_mar }} ||| {{
+      sentence_vie }}'
     metadata: *id001
-    name: equals-translation-por-swh
-    reference: Equals translation (Brazilian Portuguese into Swahili)
-  12828299-afa7-49e8-975e-310f1f06198c: !Template
+    name: translate-this-mar-vie
+    reference: Translate this from X to Y (Marathi into Vietnamese)
+  0cf979ef-a218-4368-898b-6028eb87c11f: !Template
     answer_choices: null
-    id: 12828299-afa7-49e8-975e-310f1f06198c
-    jinja: 'Bengali: {{ sentence_ben }} = Latin American Spanish: ||| {{ sentence_spa
+    id: 0cf979ef-a218-4368-898b-6028eb87c11f
+    jinja: 'Translate this from Wolof into Kannada: {{ sentence_wol }} ||| {{ sentence_kan
       }}'
     metadata: *id001
-    name: equals-translation-ben-spa
-    reference: Equals translation (Bengali into Latin American Spanish)
-  1303cd6a-474a-4f13-901b-b2241ef8ec2a: !Template
+    name: translate-this-wol-kan
+    reference: Translate this from X to Y (Wolof into Kannada)
+  0d5043dc-9bff-4b5f-b033-d690cbb36703: !Template
     answer_choices: null
-    id: 1303cd6a-474a-4f13-901b-b2241ef8ec2a
-    jinja: 'Assamese: {{ sentence_asm }} = Indonesian: ||| {{ sentence_ind }}'
+    id: 0d5043dc-9bff-4b5f-b033-d690cbb36703
+    jinja: 'Translate this from Lingala into Assamese: {{ sentence_lin }} ||| {{ sentence_asm
+      }}'
     metadata: *id001
-    name: equals-translation-asm-ind
-    reference: Equals translation (Assamese into Indonesian)
-  134f1cda-b7e5-4972-bf46-8f3ef1def3d7: !Template
+    name: translate-this-lin-asm
+    reference: Translate this from X to Y (Lingala into Assamese)
+  0d8284fb-92cb-4b7b-8ec0-c247d07f3f14: !Template
     answer_choices: null
-    id: 134f1cda-b7e5-4972-bf46-8f3ef1def3d7
-    jinja: 'Marathi: {{ sentence_mar }} = Assamese: ||| {{ sentence_asm }}'
+    id: 0d8284fb-92cb-4b7b-8ec0-c247d07f3f14
+    jinja: 'Translate this from Hindi into Indonesian: {{ sentence_hin }} ||| {{ sentence_ind
+      }}'
     metadata: *id001
-    name: equals-translation-mar-asm
-    reference: Equals translation (Marathi into Assamese)
-  13df24e5-3165-45fa-a3f2-1d946e921823: !Template
+    name: translate-this-hin-ind
+    reference: Translate this from X to Y (Hindi into Indonesian)
+  0e82e83e-29e4-44a8-9743-2ddaf9ecbaf6: !Template
     answer_choices: null
-    id: 13df24e5-3165-45fa-a3f2-1d946e921823
-    jinja: 'Northern Sotho: {{ sentence_nso }} = Bengali: ||| {{ sentence_ben }}'
+    id: 0e82e83e-29e4-44a8-9743-2ddaf9ecbaf6
+    jinja: 'Translate this from Assamese into simplified Chinese: {{ sentence_asm
+      }} ||| {{ sentence_zho_simpl }}'
     metadata: *id001
-    name: equals-translation-nso-ben
-    reference: Equals translation (Northern Sotho into Bengali)
-  13f08813-63f6-4f7a-bf1d-a3bd98f9d9c0: !Template
+    name: translate-this-asm-zho_simpl
+    reference: Translate this from X to Y (Assamese into simplified Chinese)
+  0ea71c68-99ec-404e-a6c1-1a8c733ec22d: !Template
     answer_choices: null
-    id: 13f08813-63f6-4f7a-bf1d-a3bd98f9d9c0
-    jinja: 'Telugu: {{ sentence_tel }} = Zulu: ||| {{ sentence_zul }}'
+    id: 0ea71c68-99ec-404e-a6c1-1a8c733ec22d
+    jinja: 'Translate this from Telugu into Tamil: {{ sentence_tel }} ||| {{ sentence_tam
+      }}'
     metadata: *id001
-    name: equals-translation-tel-zul
-    reference: Equals translation (Telugu into Zulu)
-  14869ddf-5978-4013-b41e-a738f2660af5: !Template
+    name: translate-this-tel-tam
+    reference: Translate this from X to Y (Telugu into Tamil)
+  0ec14075-6c63-4e7c-b2f5-74e87cb30a51: !Template
     answer_choices: null
-    id: 14869ddf-5978-4013-b41e-a738f2660af5
-    jinja: 'Zulu: {{ sentence_zul }} = Arabic: ||| {{ sentence_ara }}'
+    id: 0ec14075-6c63-4e7c-b2f5-74e87cb30a51
+    jinja: 'Translate this from simplified Chinese into Malayalam: {{ sentence_zho_simpl
+      }} ||| {{ sentence_mal }}'
     metadata: *id001
-    name: equals-translation-zul-ara
-    reference: Equals translation (Zulu into Arabic)
-  14a96e71-99d8-4760-82b2-f8067bae14b2: !Template
+    name: translate-this-zho_simpl-mal
+    reference: Translate this from X to Y (simplified Chinese into Malayalam)
+  0ec7d1df-fd0c-4e8a-8345-fcc67866a1e4: !Template
     answer_choices: null
-    id: 14a96e71-99d8-4760-82b2-f8067bae14b2
-    jinja: 'Lingala: {{ sentence_lin }} = Urdu: ||| {{ sentence_urd }}'
+    id: 0ec7d1df-fd0c-4e8a-8345-fcc67866a1e4
+    jinja: 'Translate this from Arabic into Marathi: {{ sentence_ara }} ||| {{ sentence_mar
+      }}'
     metadata: *id001
-    name: equals-translation-lin-urd
-    reference: Equals translation (Lingala into Urdu)
-  14f8a089-252c-4864-9833-2b7d45291a30: !Template
+    name: translate-this-ara-mar
+    reference: Translate this from X to Y (Arabic into Marathi)
+  0f0569af-dffb-4d52-83ee-65cf0ffb2115: !Template
     answer_choices: null
-    id: 14f8a089-252c-4864-9833-2b7d45291a30
-    jinja: 'Nepali: {{ sentence_npi }} = Oriya: ||| {{ sentence_ory }}'
+    id: 0f0569af-dffb-4d52-83ee-65cf0ffb2115
+    jinja: 'Translate this from Brazilian Portuguese into Nepali: {{ sentence_por
+      }} ||| {{ sentence_npi }}'
     metadata: *id001
-    name: equals-translation-npi-ory
-    reference: Equals translation (Nepali into Oriya)
-  15331449-29c9-43fe-bcef-72d829dadc3c: !Template
+    name: translate-this-por-npi
+    reference: Translate this from X to Y (Brazilian Portuguese into Nepali)
+  0f7582ba-2432-4a51-b765-1ed575bdabfa: !Template
     answer_choices: null
-    id: 15331449-29c9-43fe-bcef-72d829dadc3c
-    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Malayalam: ||| {{ sentence_mal
+    id: 0f7582ba-2432-4a51-b765-1ed575bdabfa
+    jinja: 'Translate this from Malayalam into Wolof: {{ sentence_mal }} ||| {{ sentence_wol
       }}'
     metadata: *id001
-    name: equals-translation-zho_simpl-mal
-    reference: Equals translation (simplified Chinese into Malayalam)
-  153d9480-5ce0-48f9-b981-bb7d6465abaf: !Template
+    name: translate-this-mal-wol
+    reference: Translate this from X to Y (Malayalam into Wolof)
+  0f901e7c-69cb-4283-8e71-a3d5c8a26f3a: !Template
     answer_choices: null
-    id: 153d9480-5ce0-48f9-b981-bb7d6465abaf
-    jinja: 'Yoruba: {{ sentence_yor }} = Wolof: ||| {{ sentence_wol }}'
+    id: 0f901e7c-69cb-4283-8e71-a3d5c8a26f3a
+    jinja: 'Translate this from Lingala into traditional Chinese: {{ sentence_lin
+      }} ||| {{ sentence_zho_trad }}'
     metadata: *id001
-    name: equals-translation-yor-wol
-    reference: Equals translation (Yoruba into Wolof)
-  15e194c6-9af8-42cb-b8e6-1f53b745801e: !Template
+    name: translate-this-lin-zho_trad
+    reference: Translate this from X to Y (Lingala into traditional Chinese)
+  10220cbd-deb0-4dd0-a74a-4a84b72ac7a0: !Template
     answer_choices: null
-    id: 15e194c6-9af8-42cb-b8e6-1f53b745801e
-    jinja: 'Malayalam: {{ sentence_mal }} = Marathi: ||| {{ sentence_mar }}'
+    id: 10220cbd-deb0-4dd0-a74a-4a84b72ac7a0
+    jinja: 'Translate this from Wolof into traditional Chinese: {{ sentence_wol }}
+      ||| {{ sentence_zho_trad }}'
     metadata: *id001
-    name: equals-translation-mal-mar
-    reference: Equals translation (Malayalam into Marathi)
-  16679fa1-6c7f-498a-9fc4-b1ee8029fbfc: !Template
+    name: translate-this-wol-zho_trad
+    reference: Translate this from X to Y (Wolof into traditional Chinese)
+  107cc328-d74a-4838-9493-d2214f43c0bc: !Template
     answer_choices: null
-    id: 16679fa1-6c7f-498a-9fc4-b1ee8029fbfc
-    jinja: 'Marathi: {{ sentence_mar }} = Igbo: ||| {{ sentence_ibo }}'
+    id: 107cc328-d74a-4838-9493-d2214f43c0bc
+    jinja: 'Translate this from Hindi into Punjabi: {{ sentence_hin }} ||| {{ sentence_pan
+      }}'
     metadata: *id001
-    name: equals-translation-mar-ibo
-    reference: Equals translation (Marathi into Igbo)
-  16c41742-3ca3-496d-980c-0416ce230267: !Template
+    name: translate-this-hin-pan
+    reference: Translate this from X to Y (Hindi into Punjabi)
+  10c302e0-6fe1-4b14-be43-1890eb1dec38: !Template
     answer_choices: null
-    id: 16c41742-3ca3-496d-980c-0416ce230267
-    jinja: 'Zulu: {{ sentence_zul }} = Igbo: ||| {{ sentence_ibo }}'
+    id: 10c302e0-6fe1-4b14-be43-1890eb1dec38
+    jinja: 'Translate this from Telugu into Northern Sotho: {{ sentence_tel }} |||
+      {{ sentence_nso }}'
     metadata: *id001
-    name: equals-translation-zul-ibo
-    reference: Equals translation (Zulu into Igbo)
-  16ef2aac-2100-4bd0-82a6-148e34bcde29: !Template
+    name: translate-this-tel-nso
+    reference: Translate this from X to Y (Telugu into Northern Sotho)
+  110b9e69-ce7c-40c3-a902-2f0178fee510: !Template
     answer_choices: null
-    id: 16ef2aac-2100-4bd0-82a6-148e34bcde29
-    jinja: 'Indonesian: {{ sentence_ind }} = Brazilian Portuguese: ||| {{ sentence_por
+    id: 110b9e69-ce7c-40c3-a902-2f0178fee510
+    jinja: 'Translate this from English into Swahili: {{ sentence_eng }} ||| {{ sentence_swh
       }}'
     metadata: *id001
-    name: equals-translation-ind-por
-    reference: Equals translation (Indonesian into Brazilian Portuguese)
-  1701ee6a-5a37-4e3e-ac0f-a4868afbcd4c: !Template
+    name: translate-this-eng-swh
+    reference: Translate this from X to Y (English into Swahili)
+  110d90af-b345-4042-8b12-4ff73a543f68: !Template
     answer_choices: null
-    id: 1701ee6a-5a37-4e3e-ac0f-a4868afbcd4c
-    jinja: 'Swahili: {{ sentence_swh }} = traditional Chinese: ||| {{ sentence_zho_trad
+    id: 110d90af-b345-4042-8b12-4ff73a543f68
+    jinja: 'Translate this from Gujarati into Catalan: {{ sentence_guj }} ||| {{ sentence_cat
       }}'
     metadata: *id001
-    name: equals-translation-swh-zho_trad
-    reference: Equals translation (Swahili into traditional Chinese)
-  171ed03a-794a-45bd-b806-3751b9f9a5ea: !Template
+    name: translate-this-guj-cat
+    reference: Translate this from X to Y (Gujarati into Catalan)
+  1140d648-0765-44a1-8517-70012aa27ffc: !Template
     answer_choices: null
-    id: 171ed03a-794a-45bd-b806-3751b9f9a5ea
-    jinja: 'Tamil: {{ sentence_tam }} = Catalan: ||| {{ sentence_cat }}'
+    id: 1140d648-0765-44a1-8517-70012aa27ffc
+    jinja: 'Translate this from Punjabi into Nepali: {{ sentence_pan }} ||| {{ sentence_npi
+      }}'
     metadata: *id001
-    name: equals-translation-tam-cat
-    reference: Equals translation (Tamil into Catalan)
-  1754b7b6-2890-4360-a807-5549ea13b95d: !Template
+    name: translate-this-pan-npi
+    reference: Translate this from X to Y (Punjabi into Nepali)
+  115f8db1-0269-493d-bd58-4515dfe4925e: !Template
     answer_choices: null
-    id: 1754b7b6-2890-4360-a807-5549ea13b95d
-    jinja: 'Lingala: {{ sentence_lin }} = Punjabi: ||| {{ sentence_pan }}'
+    id: 115f8db1-0269-493d-bd58-4515dfe4925e
+    jinja: 'Translate this from Tamil into Arabic: {{ sentence_tam }} ||| {{ sentence_ara
+      }}'
     metadata: *id001
-    name: equals-translation-lin-pan
-    reference: Equals translation (Lingala into Punjabi)
-  17f71b93-54c2-472a-b056-f514b5a5a34c: !Template
+    name: translate-this-tam-ara
+    reference: Translate this from X to Y (Tamil into Arabic)
+  116d5e63-1d3e-4beb-8ec1-581a646d894f: !Template
     answer_choices: null
-    id: 17f71b93-54c2-472a-b056-f514b5a5a34c
-    jinja: 'Assamese: {{ sentence_asm }} = Latin American Spanish: ||| {{ sentence_spa
+    id: 116d5e63-1d3e-4beb-8ec1-581a646d894f
+    jinja: 'Translate this from Nepali into Urdu: {{ sentence_npi }} ||| {{ sentence_urd
       }}'
     metadata: *id001
-    name: equals-translation-asm-spa
-    reference: Equals translation (Assamese into Latin American Spanish)
-  180375bc-b40d-443a-b9d0-584da93894a9: !Template
+    name: translate-this-npi-urd
+    reference: Translate this from X to Y (Nepali into Urdu)
+  12e8c597-db86-44c6-9366-8a123e6a2473: !Template
     answer_choices: null
-    id: 180375bc-b40d-443a-b9d0-584da93894a9
-    jinja: 'Telugu: {{ sentence_tel }} = Oriya: ||| {{ sentence_ory }}'
+    id: 12e8c597-db86-44c6-9366-8a123e6a2473
+    jinja: 'Translate this from Catalan into Yoruba: {{ sentence_cat }} ||| {{ sentence_yor
+      }}'
     metadata: *id001
-    name: equals-translation-tel-ory
-    reference: Equals translation (Telugu into Oriya)
-  184226ba-a1d5-40fd-b8bb-9ad13348cf4e: !Template
+    name: translate-this-cat-yor
+    reference: Translate this from X to Y (Catalan into Yoruba)
+  130f4ac9-c7bd-416c-b0de-16aff884367c: !Template
     answer_choices: null
-    id: 184226ba-a1d5-40fd-b8bb-9ad13348cf4e
-    jinja: 'Swahili: {{ sentence_swh }} = Lingala: ||| {{ sentence_lin }}'
+    id: 130f4ac9-c7bd-416c-b0de-16aff884367c
+    jinja: 'Translate this from Swahili into Punjabi: {{ sentence_swh }} ||| {{ sentence_pan
+      }}'
     metadata: *id001
-    name: equals-translation-swh-lin
-    reference: Equals translation (Swahili into Lingala)
-  188f6545-0a32-49eb-8b33-12cf2cb272fe: !Template
+    name: translate-this-swh-pan
+    reference: Translate this from X to Y (Swahili into Punjabi)
+  1311aaf3-1c33-4a9e-8704-c6b847b23824: !Template
     answer_choices: null
-    id: 188f6545-0a32-49eb-8b33-12cf2cb272fe
-    jinja: 'Vietnamese: {{ sentence_vie }} = Assamese: ||| {{ sentence_asm }}'
+    id: 1311aaf3-1c33-4a9e-8704-c6b847b23824
+    jinja: 'Translate this from Nepali into Marathi: {{ sentence_npi }} ||| {{ sentence_mar
+      }}'
     metadata: *id001
-    name: equals-translation-vie-asm
-    reference: Equals translation (Vietnamese into Assamese)
-  18c34d87-f144-4a0b-b686-cfa56f9387c7: !Template
+    name: translate-this-npi-mar
+    reference: Translate this from X to Y (Nepali into Marathi)
+  13317eb7-5d5d-4b10-96a8-8816b1e78804: !Template
     answer_choices: null
-    id: 18c34d87-f144-4a0b-b686-cfa56f9387c7
-    jinja: 'Kannada: {{ sentence_kan }} = Vietnamese: ||| {{ sentence_vie }}'
+    id: 13317eb7-5d5d-4b10-96a8-8816b1e78804
+    jinja: 'Translate this from Igbo into Yoruba: {{ sentence_ibo }} ||| {{ sentence_yor
+      }}'
     metadata: *id001
-    name: equals-translation-kan-vie
-    reference: Equals translation (Kannada into Vietnamese)
-  18f4fdcb-801e-466e-bdc1-6bda0ae18ced: !Template
+    name: translate-this-ibo-yor
+    reference: Translate this from X to Y (Igbo into Yoruba)
+  13337391-74eb-46f2-a51e-79ef655e7ef5: !Template
     answer_choices: null
-    id: 18f4fdcb-801e-466e-bdc1-6bda0ae18ced
-    jinja: 'Oriya: {{ sentence_ory }} = Gujarati: ||| {{ sentence_guj }}'
+    id: 13337391-74eb-46f2-a51e-79ef655e7ef5
+    jinja: 'Translate this from simplified Chinese into Vietnamese: {{ sentence_zho_simpl
+      }} ||| {{ sentence_vie }}'
     metadata: *id001
-    name: equals-translation-ory-guj
-    reference: Equals translation (Oriya into Gujarati)
-  191cf73c-904e-49b1-93f1-da902dc03cb5: !Template
+    name: translate-this-zho_simpl-vie
+    reference: Translate this from X to Y (simplified Chinese into Vietnamese)
+  135cfef3-2812-44e2-81e8-51508d5978e5: !Template
     answer_choices: null
-    id: 191cf73c-904e-49b1-93f1-da902dc03cb5
-    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Igbo: ||| {{ sentence_ibo }}'
+    id: 135cfef3-2812-44e2-81e8-51508d5978e5
+    jinja: 'Translate this from Telugu into Nepali: {{ sentence_tel }} ||| {{ sentence_npi
+      }}'
     metadata: *id001
-    name: equals-translation-por-ibo
-    reference: Equals translation (Brazilian Portuguese into Igbo)
-  19b47676-dc36-4ebe-bb41-7a9823989a8d: !Template
+    name: translate-this-tel-npi
+    reference: Translate this from X to Y (Telugu into Nepali)
+  1389dc7b-42b9-47b8-8c4a-ae6c6270615a: !Template
     answer_choices: null
-    id: 19b47676-dc36-4ebe-bb41-7a9823989a8d
-    jinja: 'Igbo: {{ sentence_ibo }} = Indonesian: ||| {{ sentence_ind }}'
+    id: 1389dc7b-42b9-47b8-8c4a-ae6c6270615a
+    jinja: 'Translate this from Zulu into Northern Sotho: {{ sentence_zul }} ||| {{
+      sentence_nso }}'
     metadata: *id001
-    name: equals-translation-ibo-ind
-    reference: Equals translation (Igbo into Indonesian)
-  1ada2b6e-e096-42f6-948d-b829cd75f8b2: !Template
+    name: translate-this-zul-nso
+    reference: Translate this from X to Y (Zulu into Northern Sotho)
+  13a2c229-1087-4774-8dc9-807c02506da0: !Template
     answer_choices: null
-    id: 1ada2b6e-e096-42f6-948d-b829cd75f8b2
-    jinja: 'Assamese: {{ sentence_asm }} = Marathi: ||| {{ sentence_mar }}'
+    id: 13a2c229-1087-4774-8dc9-807c02506da0
+    jinja: 'Translate this from Kannada into Indonesian: {{ sentence_kan }} ||| {{
+      sentence_ind }}'
     metadata: *id001
-    name: equals-translation-asm-mar
-    reference: Equals translation (Assamese into Marathi)
-  1b18f26e-c308-4ad0-89e2-ad385fac742a: !Template
+    name: translate-this-kan-ind
+    reference: Translate this from X to Y (Kannada into Indonesian)
+  147306da-18ca-4a56-9ada-621e45cb4497: !Template
     answer_choices: null
-    id: 1b18f26e-c308-4ad0-89e2-ad385fac742a
-    jinja: 'Igbo: {{ sentence_ibo }} = Marathi: ||| {{ sentence_mar }}'
+    id: 147306da-18ca-4a56-9ada-621e45cb4497
+    jinja: 'Translate this from traditional Chinese into Oriya: {{ sentence_zho_trad
+      }} ||| {{ sentence_ory }}'
     metadata: *id001
-    name: equals-translation-ibo-mar
-    reference: Equals translation (Igbo into Marathi)
-  1b556dbd-4331-4fe6-b709-43a597b90245: !Template
+    name: translate-this-zho_trad-ory
+    reference: Translate this from X to Y (traditional Chinese into Oriya)
+  14818e49-b74a-4659-976b-0904135d9c81: !Template
     answer_choices: null
-    id: 1b556dbd-4331-4fe6-b709-43a597b90245
-    jinja: 'Lingala: {{ sentence_lin }} = Bengali: ||| {{ sentence_ben }}'
+    id: 14818e49-b74a-4659-976b-0904135d9c81
+    jinja: 'Translate this from Northern Sotho into Yoruba: {{ sentence_nso }} |||
+      {{ sentence_yor }}'
     metadata: *id001
-    name: equals-translation-lin-ben
-    reference: Equals translation (Lingala into Bengali)
-  1b677491-f5bd-43a9-a372-28a87ba68fe1: !Template
+    name: translate-this-nso-yor
+    reference: Translate this from X to Y (Northern Sotho into Yoruba)
+  14a79036-bcfa-477e-b037-1706b2528dd7: !Template
     answer_choices: null
-    id: 1b677491-f5bd-43a9-a372-28a87ba68fe1
-    jinja: 'Assamese: {{ sentence_asm }} = Catalan: ||| {{ sentence_cat }}'
+    id: 14a79036-bcfa-477e-b037-1706b2528dd7
+    jinja: 'Translate this from Gujarati into Arabic: {{ sentence_guj }} ||| {{ sentence_ara
+      }}'
     metadata: *id001
-    name: equals-translation-asm-cat
-    reference: Equals translation (Assamese into Catalan)
-  1b7486a0-d7f4-4b55-95cb-8fff6ccc43c5: !Template
+    name: translate-this-guj-ara
+    reference: Translate this from X to Y (Gujarati into Arabic)
+  14bdcf3b-9aa5-4923-a04b-e6a58ed2317a: !Template
     answer_choices: null
-    id: 1b7486a0-d7f4-4b55-95cb-8fff6ccc43c5
-    jinja: 'Marathi: {{ sentence_mar }} = Arabic: ||| {{ sentence_ara }}'
+    id: 14bdcf3b-9aa5-4923-a04b-e6a58ed2317a
+    jinja: 'Translate this from Bengali into Xhosa: {{ sentence_ben }} ||| {{ sentence_xho
+      }}'
     metadata: *id001
-    name: equals-translation-mar-ara
-    reference: Equals translation (Marathi into Arabic)
-  1bcc7b6d-aa10-438f-9cda-f81b8d11dc15: !Template
+    name: translate-this-ben-xho
+    reference: Translate this from X to Y (Bengali into Xhosa)
+  1503a0bc-470e-48d1-8373-ad545b997837: !Template
     answer_choices: null
-    id: 1bcc7b6d-aa10-438f-9cda-f81b8d11dc15
-    jinja: 'Vietnamese: {{ sentence_vie }} = Hindi: ||| {{ sentence_hin }}'
+    id: 1503a0bc-470e-48d1-8373-ad545b997837
+    jinja: 'Translate this from simplified Chinese into Yoruba: {{ sentence_zho_simpl
+      }} ||| {{ sentence_yor }}'
     metadata: *id001
-    name: equals-translation-vie-hin
-    reference: Equals translation (Vietnamese into Hindi)
-  1be26707-e89a-442d-9b58-7a3a44807239: !Template
+    name: translate-this-zho_simpl-yor
+    reference: Translate this from X to Y (simplified Chinese into Yoruba)
+  15860579-484d-41cc-848a-166e091d3225: !Template
     answer_choices: null
-    id: 1be26707-e89a-442d-9b58-7a3a44807239
-    jinja: 'Translate this from Swahili into English: {{ sentence_swh }} ||| {{ sentence_eng
+    id: 15860579-484d-41cc-848a-166e091d3225
+    jinja: 'Translate this from Urdu into Arabic: {{ sentence_urd }} ||| {{ sentence_ara
       }}'
     metadata: *id001
-    name: translate-this-swh-eng
-    reference: Basic translate (Swahili into English)
-  1c461c53-06cf-4ffc-8477-3fc89ef17117: !Template
+    name: translate-this-urd-ara
+    reference: Translate this from X to Y (Urdu into Arabic)
+  159d3e86-b5fd-47bc-8054-d92d6d59a962: !Template
     answer_choices: null
-    id: 1c461c53-06cf-4ffc-8477-3fc89ef17117
-    jinja: 'Vietnamese: {{ sentence_vie }} = Lingala: ||| {{ sentence_lin }}'
+    id: 159d3e86-b5fd-47bc-8054-d92d6d59a962
+    jinja: 'Translate this from Igbo into French: {{ sentence_ibo }} ||| {{ sentence_fra
+      }}'
     metadata: *id001
-    name: equals-translation-vie-lin
-    reference: Equals translation (Vietnamese into Lingala)
-  1c6affef-bad9-4bf6-a656-02f4a720c44a: !Template
+    name: translate-this-ibo-fra
+    reference: Translate this from X to Y (Igbo into French)
+  163916e9-26b8-4ffa-9d76-20bda69855a1: !Template
     answer_choices: null
-    id: 1c6affef-bad9-4bf6-a656-02f4a720c44a
-    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Tamil: ||| {{ sentence_tam
+    id: 163916e9-26b8-4ffa-9d76-20bda69855a1
+    jinja: 'Translate this from Telugu into Arabic: {{ sentence_tel }} ||| {{ sentence_ara
       }}'
     metadata: *id001
-    name: equals-translation-zho_trad-tam
-    reference: Equals translation (traditional Chinese into Tamil)
-  1ca31a1a-1a8c-4ee5-8387-0eca04409c1e: !Template
+    name: translate-this-tel-ara
+    reference: Translate this from X to Y (Telugu into Arabic)
+  16393805-de51-47d7-a518-5de076cec320: !Template
     answer_choices: null
-    id: 1ca31a1a-1a8c-4ee5-8387-0eca04409c1e
-    jinja: 'Wolof: {{ sentence_wol }} = Oriya: ||| {{ sentence_ory }}'
+    id: 16393805-de51-47d7-a518-5de076cec320
+    jinja: 'Translate this from Swahili into Indonesian: {{ sentence_swh }} ||| {{
+      sentence_ind }}'
     metadata: *id001
-    name: equals-translation-wol-ory
-    reference: Equals translation (Wolof into Oriya)
-  1ca77013-60ad-4520-a8e2-1f4d3a6b9663: !Template
+    name: translate-this-swh-ind
+    reference: Translate this from X to Y (Swahili into Indonesian)
+  1652753f-8945-4a09-99da-79842caee4e7: !Template
     answer_choices: null
-    id: 1ca77013-60ad-4520-a8e2-1f4d3a6b9663
-    jinja: 'Tamil: {{ sentence_tam }} = Kannada: ||| {{ sentence_kan }}'
+    id: 1652753f-8945-4a09-99da-79842caee4e7
+    jinja: 'Translate this from Kannada into English: {{ sentence_kan }} ||| {{ sentence_eng
+      }}'
     metadata: *id001
-    name: equals-translation-tam-kan
-    reference: Equals translation (Tamil into Kannada)
-  1cbeb172-bfc6-43ca-8a07-2c17a2021702: !Template
+    name: translate-this-kan-eng
+    reference: Translate this from X to Y (Kannada into English)
+  166df24b-f5c7-4b97-a703-71f70a8a7eb6: !Template
     answer_choices: null
-    id: 1cbeb172-bfc6-43ca-8a07-2c17a2021702
-    jinja: 'Wolof: {{ sentence_wol }} = Catalan: ||| {{ sentence_cat }}'
+    id: 166df24b-f5c7-4b97-a703-71f70a8a7eb6
+    jinja: 'Translate this from Kannada into Northern Sotho: {{ sentence_kan }} |||
+      {{ sentence_nso }}'
     metadata: *id001
-    name: equals-translation-wol-cat
-    reference: Equals translation (Wolof into Catalan)
-  1cfcd48c-33e0-414b-ba27-d4d488d9d2e9: !Template
+    name: translate-this-kan-nso
+    reference: Translate this from X to Y (Kannada into Northern Sotho)
+  1674fec7-5c6c-40d2-8629-6015f0c7c4e6: !Template
     answer_choices: null
-    id: 1cfcd48c-33e0-414b-ba27-d4d488d9d2e9
-    jinja: 'Northern Sotho: {{ sentence_nso }} = Wolof: ||| {{ sentence_wol }}'
+    id: 1674fec7-5c6c-40d2-8629-6015f0c7c4e6
+    jinja: 'Translate this from Indonesian into French: {{ sentence_ind }} ||| {{
+      sentence_fra }}'
     metadata: *id001
-    name: equals-translation-nso-wol
-    reference: Equals translation (Northern Sotho into Wolof)
-  1d35bc3e-0abc-4065-9f57-36ab8fa21321: !Template
+    name: translate-this-ind-fra
+    reference: Translate this from X to Y (Indonesian into French)
+  169b6e1c-1fe2-49b6-bac5-f51a296770f6: !Template
     answer_choices: null
-    id: 1d35bc3e-0abc-4065-9f57-36ab8fa21321
-    jinja: 'Malayalam: {{ sentence_mal }} = Kannada: ||| {{ sentence_kan }}'
+    id: 169b6e1c-1fe2-49b6-bac5-f51a296770f6
+    jinja: 'Translate this from Kannada into Lingala: {{ sentence_kan }} ||| {{ sentence_lin
+      }}'
     metadata: *id001
-    name: equals-translation-mal-kan
-    reference: Equals translation (Malayalam into Kannada)
-  1d409257-1140-4ff9-98ee-02858783ff8e: !Template
+    name: translate-this-kan-lin
+    reference: Translate this from X to Y (Kannada into Lingala)
+  16ce03a0-84bb-4f5f-ae79-fa33ba58ccd7: !Template
     answer_choices: null
-    id: 1d409257-1140-4ff9-98ee-02858783ff8e
-    jinja: 'Gujarati: {{ sentence_guj }} = traditional Chinese: ||| {{ sentence_zho_trad
+    id: 16ce03a0-84bb-4f5f-ae79-fa33ba58ccd7
+    jinja: 'Translate this from Indonesian into Wolof: {{ sentence_ind }} ||| {{ sentence_wol
       }}'
     metadata: *id001
-    name: equals-translation-guj-zho_trad
-    reference: Equals translation (Gujarati into traditional Chinese)
-  1d723e5a-4f54-4c7e-9fc6-eb8b0c544a06: !Template
+    name: translate-this-ind-wol
+    reference: Translate this from X to Y (Indonesian into Wolof)
+  17993474-0ae9-49d4-b87d-d2ceabdacd11: !Template
     answer_choices: null
-    id: 1d723e5a-4f54-4c7e-9fc6-eb8b0c544a06
-    jinja: 'Malayalam: {{ sentence_mal }} = Latin American Spanish: ||| {{ sentence_spa
+    id: 17993474-0ae9-49d4-b87d-d2ceabdacd11
+    jinja: 'Translate this from Latin American Spanish into French: {{ sentence_spa
+      }} ||| {{ sentence_fra }}'
+    metadata: *id001
+    name: translate-this-spa-fra
+    reference: Translate this from X to Y (Latin American Spanish into French)
+  17c98210-51f9-4c07-85a9-4dd950a7806c: !Template
+    answer_choices: null
+    id: 17c98210-51f9-4c07-85a9-4dd950a7806c
+    jinja: 'Translate this from Hindi into Gujarati: {{ sentence_hin }} ||| {{ sentence_guj
       }}'
     metadata: *id001
-    name: equals-translation-mal-spa
-    reference: Equals translation (Malayalam into Latin American Spanish)
-  1d7704eb-0631-4bd1-a965-ad612883e287: !Template
+    name: translate-this-hin-guj
+    reference: Translate this from X to Y (Hindi into Gujarati)
+  17dc11cb-b83a-4917-98fb-55b5b02bdf11: !Template
     answer_choices: null
-    id: 1d7704eb-0631-4bd1-a965-ad612883e287
-    jinja: 'Telugu: {{ sentence_tel }} = Hindi: ||| {{ sentence_hin }}'
+    id: 17dc11cb-b83a-4917-98fb-55b5b02bdf11
+    jinja: 'Translate this from Punjabi into Wolof: {{ sentence_pan }} ||| {{ sentence_wol
+      }}'
     metadata: *id001
-    name: equals-translation-tel-hin
-    reference: Equals translation (Telugu into Hindi)
-  1e068580-d229-4695-a19e-575a4cfda94d: !Template
+    name: translate-this-pan-wol
+    reference: Translate this from X to Y (Punjabi into Wolof)
+  1818067d-9f73-4c42-a893-86b5c61a250e: !Template
     answer_choices: null
-    id: 1e068580-d229-4695-a19e-575a4cfda94d
-    jinja: 'Bengali: {{ sentence_ben }} = Xhosa: ||| {{ sentence_xho }}'
+    id: 1818067d-9f73-4c42-a893-86b5c61a250e
+    jinja: 'Translate this from Zulu into Indonesian: {{ sentence_zul }} ||| {{ sentence_ind
+      }}'
     metadata: *id001
-    name: equals-translation-ben-xho
-    reference: Equals translation (Bengali into Xhosa)
-  1e3d486b-4e1a-4deb-986b-4589c25f8cbc: !Template
+    name: translate-this-zul-ind
+    reference: Translate this from X to Y (Zulu into Indonesian)
+  185043f9-280d-40c1-bf86-c20a09ac2a2e: !Template
     answer_choices: null
-    id: 1e3d486b-4e1a-4deb-986b-4589c25f8cbc
-    jinja: 'Vietnamese: {{ sentence_vie }} = Xhosa: ||| {{ sentence_xho }}'
+    id: 185043f9-280d-40c1-bf86-c20a09ac2a2e
+    jinja: 'Translate this from Xhosa into traditional Chinese: {{ sentence_xho }}
+      ||| {{ sentence_zho_trad }}'
     metadata: *id001
-    name: equals-translation-vie-xho
-    reference: Equals translation (Vietnamese into Xhosa)
-  1e423659-ff8f-4cb2-90f5-dba4d293abbc: !Template
+    name: translate-this-xho-zho_trad
+    reference: Translate this from X to Y (Xhosa into traditional Chinese)
+  1870794a-8e55-45ee-be94-12f5c8312bb9: !Template
     answer_choices: null
-    id: 1e423659-ff8f-4cb2-90f5-dba4d293abbc
-    jinja: 'French: {{ sentence_fra }} = Kannada: ||| {{ sentence_kan }}'
+    id: 1870794a-8e55-45ee-be94-12f5c8312bb9
+    jinja: 'Translate this from Malayalam into Brazilian Portuguese: {{ sentence_mal
+      }} ||| {{ sentence_por }}'
     metadata: *id001
-    name: equals-translation-fra-kan
-    reference: Equals translation (French into Kannada)
-  1e83a9c1-5120-4f9a-a342-4448876f446e: !Template
+    name: translate-this-mal-por
+    reference: Translate this from X to Y (Malayalam into Brazilian Portuguese)
+  1882ee4b-b246-4088-934b-1fa7c22dc0f8: !Template
     answer_choices: null
-    id: 1e83a9c1-5120-4f9a-a342-4448876f446e
-    jinja: 'Northern Sotho: {{ sentence_nso }} = Indonesian: ||| {{ sentence_ind }}'
+    id: 1882ee4b-b246-4088-934b-1fa7c22dc0f8
+    jinja: 'Translate this from Brazilian Portuguese into Xhosa: {{ sentence_por }}
+      ||| {{ sentence_xho }}'
     metadata: *id001
-    name: equals-translation-nso-ind
-    reference: Equals translation (Northern Sotho into Indonesian)
-  1e89aa51-cf4e-4917-982d-7135e6dcfdad: !Template
+    name: translate-this-por-xho
+    reference: Translate this from X to Y (Brazilian Portuguese into Xhosa)
+  18b08067-f5d5-4969-ad6b-de7244a10b36: !Template
     answer_choices: null
-    id: 1e89aa51-cf4e-4917-982d-7135e6dcfdad
-    jinja: 'Nepali: {{ sentence_npi }} = Kannada: ||| {{ sentence_kan }}'
+    id: 18b08067-f5d5-4969-ad6b-de7244a10b36
+    jinja: 'Translate this from Zulu into Bengali: {{ sentence_zul }} ||| {{ sentence_ben
+      }}'
     metadata: *id001
-    name: equals-translation-npi-kan
-    reference: Equals translation (Nepali into Kannada)
-  1eb60010-df1e-4220-ab5b-bfd34ad6a2da: !Template
+    name: translate-this-zul-ben
+    reference: Translate this from X to Y (Zulu into Bengali)
+  190de4f8-f74a-4282-85c7-2afb1116e74e: !Template
     answer_choices: null
-    id: 1eb60010-df1e-4220-ab5b-bfd34ad6a2da
-    jinja: 'Northern Sotho: {{ sentence_nso }} = Hindi: ||| {{ sentence_hin }}'
+    id: 190de4f8-f74a-4282-85c7-2afb1116e74e
+    jinja: 'Translate this from Bengali into Indonesian: {{ sentence_ben }} ||| {{
+      sentence_ind }}'
     metadata: *id001
-    name: equals-translation-nso-hin
-    reference: Equals translation (Northern Sotho into Hindi)
-  1ed2dac3-49e1-4bf3-b39e-20f9025a4891: !Template
+    name: translate-this-ben-ind
+    reference: Translate this from X to Y (Bengali into Indonesian)
+  193cacf5-82de-4c84-8736-220697270b5d: !Template
     answer_choices: null
-    id: 1ed2dac3-49e1-4bf3-b39e-20f9025a4891
-    jinja: 'Punjabi: {{ sentence_pan }} = Xhosa: ||| {{ sentence_xho }}'
+    id: 193cacf5-82de-4c84-8736-220697270b5d
+    jinja: 'Translate this from Oriya into Wolof: {{ sentence_ory }} ||| {{ sentence_wol
+      }}'
     metadata: *id001
-    name: equals-translation-pan-xho
-    reference: Equals translation (Punjabi into Xhosa)
-  1f480473-1374-448f-b1bb-09ee409c92d3: !Template
+    name: translate-this-ory-wol
+    reference: Translate this from X to Y (Oriya into Wolof)
+  19ea9a97-438c-492e-bb22-997a0951550d: !Template
     answer_choices: null
-    id: 1f480473-1374-448f-b1bb-09ee409c92d3
-    jinja: 'Zulu: {{ sentence_zul }} = Punjabi: ||| {{ sentence_pan }}'
+    id: 19ea9a97-438c-492e-bb22-997a0951550d
+    jinja: 'Translate this from Xhosa into Lingala: {{ sentence_xho }} ||| {{ sentence_lin
+      }}'
     metadata: *id001
-    name: equals-translation-zul-pan
-    reference: Equals translation (Zulu into Punjabi)
-  1fa0f4b5-99aa-4faa-8777-8ac8f8d5063c: !Template
+    name: translate-this-xho-lin
+    reference: Translate this from X to Y (Xhosa into Lingala)
+  19ec789e-db60-4509-a4d4-5c4fd46b1595: !Template
     answer_choices: null
-    id: 1fa0f4b5-99aa-4faa-8777-8ac8f8d5063c
-    jinja: 'French: {{ sentence_fra }} = Bengali: ||| {{ sentence_ben }}'
+    id: 19ec789e-db60-4509-a4d4-5c4fd46b1595
+    jinja: 'Translate this from English into Catalan: {{ sentence_eng }} ||| {{ sentence_cat
+      }}'
     metadata: *id001
-    name: equals-translation-fra-ben
-    reference: Equals translation (French into Bengali)
-  1fc3ee53-2347-43f0-add3-457c9b1f9c18: !Template
+    name: translate-this-eng-cat
+    reference: Translate this from X to Y (English into Catalan)
+  19f3e2e1-6b5e-40cb-92e3-425d55386618: !Template
     answer_choices: null
-    id: 1fc3ee53-2347-43f0-add3-457c9b1f9c18
-    jinja: 'Urdu: {{ sentence_urd }} = Kannada: ||| {{ sentence_kan }}'
+    id: 19f3e2e1-6b5e-40cb-92e3-425d55386618
+    jinja: 'Translate this from Kannada into Vietnamese: {{ sentence_kan }} ||| {{
+      sentence_vie }}'
     metadata: *id001
-    name: equals-translation-urd-kan
-    reference: Equals translation (Urdu into Kannada)
-  200c2aee-14b9-459d-b8db-6a1d73449492: !Template
+    name: translate-this-kan-vie
+    reference: Translate this from X to Y (Kannada into Vietnamese)
+  19f859d8-6b0b-4e58-861a-385f3c0706a6: !Template
     answer_choices: null
-    id: 200c2aee-14b9-459d-b8db-6a1d73449492
-    jinja: 'Oriya: {{ sentence_ory }} = Zulu: ||| {{ sentence_zul }}'
+    id: 19f859d8-6b0b-4e58-861a-385f3c0706a6
+    jinja: 'Translate this from Arabic into Lingala: {{ sentence_ara }} ||| {{ sentence_lin
+      }}'
     metadata: *id001
-    name: equals-translation-ory-zul
-    reference: Equals translation (Oriya into Zulu)
-  20a5f3fb-fd61-43dc-8da2-8269a311fe00: !Template
+    name: translate-this-ara-lin
+    reference: Translate this from X to Y (Arabic into Lingala)
+  1a3cad9d-1cf7-40b1-9a04-52165f60f4f7: !Template
     answer_choices: null
-    id: 20a5f3fb-fd61-43dc-8da2-8269a311fe00
-    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Oriya: ||| {{ sentence_ory
+    id: 1a3cad9d-1cf7-40b1-9a04-52165f60f4f7
+    jinja: 'Translate this from Punjabi into Marathi: {{ sentence_pan }} ||| {{ sentence_mar
       }}'
     metadata: *id001
-    name: equals-translation-zho_trad-ory
-    reference: Equals translation (traditional Chinese into Oriya)
-  2175f6b7-cc85-48e1-8a6e-b40f0fadf359: !Template
+    name: translate-this-pan-mar
+    reference: Translate this from X to Y (Punjabi into Marathi)
+  1a785463-beae-4fd4-a0f3-412fd1e352c3: !Template
     answer_choices: null
-    id: 2175f6b7-cc85-48e1-8a6e-b40f0fadf359
-    jinja: 'Telugu: {{ sentence_tel }} = Igbo: ||| {{ sentence_ibo }}'
+    id: 1a785463-beae-4fd4-a0f3-412fd1e352c3
+    jinja: 'Translate this from Arabic into Hindi: {{ sentence_ara }} ||| {{ sentence_hin
+      }}'
     metadata: *id001
-    name: equals-translation-tel-ibo
-    reference: Equals translation (Telugu into Igbo)
-  21914c22-f416-46b6-9067-2e5f3dd7894d: !Template
+    name: translate-this-ara-hin
+    reference: Translate this from X to Y (Arabic into Hindi)
+  1b0532eb-bc81-45dd-be55-edf5392e3a0b: !Template
     answer_choices: null
-    id: 21914c22-f416-46b6-9067-2e5f3dd7894d
-    jinja: 'Catalan: {{ sentence_cat }} = Zulu: ||| {{ sentence_zul }}'
+    id: 1b0532eb-bc81-45dd-be55-edf5392e3a0b
+    jinja: 'Translate this from Gujarati into Punjabi: {{ sentence_guj }} ||| {{ sentence_pan
+      }}'
     metadata: *id001
-    name: equals-translation-cat-zul
-    reference: Equals translation (Catalan into Zulu)
-  219e694d-b47e-47a5-9b73-633430aed8ad: !Template
+    name: translate-this-guj-pan
+    reference: Translate this from X to Y (Gujarati into Punjabi)
+  1b1db2d8-5050-48f5-b2fe-cd1b2c381747: !Template
     answer_choices: null
-    id: 219e694d-b47e-47a5-9b73-633430aed8ad
-    jinja: 'Northern Sotho: {{ sentence_nso }} = Urdu: ||| {{ sentence_urd }}'
+    id: 1b1db2d8-5050-48f5-b2fe-cd1b2c381747
+    jinja: 'Translate this from Igbo into Northern Sotho: {{ sentence_ibo }} ||| {{
+      sentence_nso }}'
     metadata: *id001
-    name: equals-translation-nso-urd
-    reference: Equals translation (Northern Sotho into Urdu)
-  21e0a4a4-0f49-4bf7-ad5f-57807b9d6392: !Template
+    name: translate-this-ibo-nso
+    reference: Translate this from X to Y (Igbo into Northern Sotho)
+  1b46ca1f-89f1-4510-bb89-1dd928e566fc: !Template
     answer_choices: null
-    id: 21e0a4a4-0f49-4bf7-ad5f-57807b9d6392
-    jinja: 'Swahili: {{ sentence_swh }} = Yoruba: ||| {{ sentence_yor }}'
+    id: 1b46ca1f-89f1-4510-bb89-1dd928e566fc
+    jinja: 'Translate this from Punjabi into Oriya: {{ sentence_pan }} ||| {{ sentence_ory
+      }}'
     metadata: *id001
-    name: equals-translation-swh-yor
-    reference: Equals translation (Swahili into Yoruba)
-  21e14faf-a4d8-4f68-a852-5f2fda6c0cf3: !Template
+    name: translate-this-pan-ory
+    reference: Translate this from X to Y (Punjabi into Oriya)
+  1b5112ea-46eb-4f38-977d-e752b87101cf: !Template
     answer_choices: null
-    id: 21e14faf-a4d8-4f68-a852-5f2fda6c0cf3
-    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Oriya: ||| {{ sentence_ory
+    id: 1b5112ea-46eb-4f38-977d-e752b87101cf
+    jinja: 'Translate this from Gujarati into French: {{ sentence_guj }} ||| {{ sentence_fra
       }}'
     metadata: *id001
-    name: equals-translation-zho_simpl-ory
-    reference: Equals translation (simplified Chinese into Oriya)
-  2228d3e0-8b2a-48d3-8d87-c41e3419d0aa: !Template
+    name: translate-this-guj-fra
+    reference: Translate this from X to Y (Gujarati into French)
+  1b804921-b9fa-4dca-ae0f-830d482265e7: !Template
     answer_choices: null
-    id: 2228d3e0-8b2a-48d3-8d87-c41e3419d0aa
-    jinja: 'Assamese: {{ sentence_asm }} = Lingala: ||| {{ sentence_lin }}'
+    id: 1b804921-b9fa-4dca-ae0f-830d482265e7
+    jinja: 'Translate this from Tamil into Urdu: {{ sentence_tam }} ||| {{ sentence_urd
+      }}'
     metadata: *id001
-    name: equals-translation-asm-lin
-    reference: Equals translation (Assamese into Lingala)
-  22638a76-afee-4a5c-b59b-2100560325d1: !Template
+    name: translate-this-tam-urd
+    reference: Translate this from X to Y (Tamil into Urdu)
+  1bd2c4a5-593a-40bb-aceb-975925fab443: !Template
     answer_choices: null
-    id: 22638a76-afee-4a5c-b59b-2100560325d1
-    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Xhosa: ||| {{ sentence_xho
+    id: 1bd2c4a5-593a-40bb-aceb-975925fab443
+    jinja: 'Translate this from Xhosa into Bengali: {{ sentence_xho }} ||| {{ sentence_ben
       }}'
     metadata: *id001
-    name: equals-translation-zho_trad-xho
-    reference: Equals translation (traditional Chinese into Xhosa)
-  22a39de6-bd30-4f87-9175-a61a8d302856: !Template
+    name: translate-this-xho-ben
+    reference: Translate this from X to Y (Xhosa into Bengali)
+  1be26707-e89a-442d-9b58-7a3a44807239: !Template
     answer_choices: null
-    id: 22a39de6-bd30-4f87-9175-a61a8d302856
-    jinja: 'Catalan: {{ sentence_cat }} = Yoruba: ||| {{ sentence_yor }}'
+    id: 1be26707-e89a-442d-9b58-7a3a44807239
+    jinja: 'Translate this from Swahili into English: {{ sentence_swh }} ||| {{ sentence_eng
+      }}'
     metadata: *id001
-    name: equals-translation-cat-yor
-    reference: Equals translation (Catalan into Yoruba)
-  22e8d100-0f5f-41e8-bf3a-fa6f2a5a68f6: !Template
+    name: translate-this-swh-eng
+    reference: Basic translate (Swahili into English)
+  1c026e1a-edea-40f4-b345-792eee944933: !Template
     answer_choices: null
-    id: 22e8d100-0f5f-41e8-bf3a-fa6f2a5a68f6
-    jinja: 'Marathi: {{ sentence_mar }} = Gujarati: ||| {{ sentence_guj }}'
+    id: 1c026e1a-edea-40f4-b345-792eee944933
+    jinja: 'Translate this from Yoruba into Indonesian: {{ sentence_yor }} ||| {{
+      sentence_ind }}'
     metadata: *id001
-    name: equals-translation-mar-guj
-    reference: Equals translation (Marathi into Gujarati)
-  234b69d3-efbf-4cf3-8cbe-232d2497adf9: !Template
+    name: translate-this-yor-ind
+    reference: Translate this from X to Y (Yoruba into Indonesian)
+  1c48c468-e5c1-4f3f-b690-e4826af29628: !Template
     answer_choices: null
-    id: 234b69d3-efbf-4cf3-8cbe-232d2497adf9
-    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Lingala: ||| {{ sentence_lin
-      }}'
+    id: 1c48c468-e5c1-4f3f-b690-e4826af29628
+    jinja: 'Translate this from Bengali into Northern Sotho: {{ sentence_ben }} |||
+      {{ sentence_nso }}'
     metadata: *id001
-    name: equals-translation-por-lin
-    reference: Equals translation (Brazilian Portuguese into Lingala)
-  240212ed-b98c-4a9e-a066-45822188bdfb: !Template
+    name: translate-this-ben-nso
+    reference: Translate this from X to Y (Bengali into Northern Sotho)
+  1c8a1da9-2f9c-4f60-9338-0b32e745d741: !Template
     answer_choices: null
-    id: 240212ed-b98c-4a9e-a066-45822188bdfb
-    jinja: 'Oriya: {{ sentence_ory }} = Hindi: ||| {{ sentence_hin }}'
+    id: 1c8a1da9-2f9c-4f60-9338-0b32e745d741
+    jinja: 'Translate this from Gujarati into Tamil: {{ sentence_guj }} ||| {{ sentence_tam
+      }}'
     metadata: *id001
-    name: equals-translation-ory-hin
-    reference: Equals translation (Oriya into Hindi)
-  24034d20-af6d-4fc2-ae85-7cf42a8f22c1: !Template
+    name: translate-this-guj-tam
+    reference: Translate this from X to Y (Gujarati into Tamil)
+  1c99636a-8164-4702-bd66-bc95f926a2d5: !Template
     answer_choices: null
-    id: 24034d20-af6d-4fc2-ae85-7cf42a8f22c1
-    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Oriya: ||| {{ sentence_ory
+    id: 1c99636a-8164-4702-bd66-bc95f926a2d5
+    jinja: 'Translate this from Assamese into Arabic: {{ sentence_asm }} ||| {{ sentence_ara
       }}'
     metadata: *id001
-    name: equals-translation-por-ory
-    reference: Equals translation (Brazilian Portuguese into Oriya)
-  24219c18-e72b-4700-9ee4-a150ab6c9cee: !Template
+    name: translate-this-asm-ara
+    reference: Translate this from X to Y (Assamese into Arabic)
+  1cd77509-f943-4d03-a890-63d9e5a6d078: !Template
     answer_choices: null
-    id: 24219c18-e72b-4700-9ee4-a150ab6c9cee
-    jinja: 'Igbo: {{ sentence_ibo }} = Xhosa: ||| {{ sentence_xho }}'
+    id: 1cd77509-f943-4d03-a890-63d9e5a6d078
+    jinja: 'Translate this from simplified Chinese into French: {{ sentence_zho_simpl
+      }} ||| {{ sentence_fra }}'
     metadata: *id001
-    name: equals-translation-ibo-xho
-    reference: Equals translation (Igbo into Xhosa)
-  247b1a70-2b1f-4a3b-96f9-6bcf11aea6c8: !Template
+    name: translate-this-zho_simpl-fra
+    reference: Translate this from X to Y (simplified Chinese into French)
+  1d57fe30-d284-4f47-8970-7b418905168c: !Template
     answer_choices: null
-    id: 247b1a70-2b1f-4a3b-96f9-6bcf11aea6c8
-    jinja: 'Hindi: {{ sentence_hin }} = simplified Chinese: ||| {{ sentence_zho_simpl
+    id: 1d57fe30-d284-4f47-8970-7b418905168c
+    jinja: 'Translate this from Bengali into Nepali: {{ sentence_ben }} ||| {{ sentence_npi
       }}'
     metadata: *id001
-    name: equals-translation-hin-zho_simpl
-    reference: Equals translation (Hindi into simplified Chinese)
-  249514f4-109c-4bfd-bc48-2c48afe6ccec: !Template
+    name: translate-this-ben-npi
+    reference: Translate this from X to Y (Bengali into Nepali)
+  1d94da1e-ae31-4267-a409-1dfe830a9065: !Template
     answer_choices: null
-    id: 249514f4-109c-4bfd-bc48-2c48afe6ccec
-    jinja: 'Catalan: {{ sentence_cat }} = Gujarati: ||| {{ sentence_guj }}'
+    id: 1d94da1e-ae31-4267-a409-1dfe830a9065
+    jinja: 'Translate this from Swahili into Latin American Spanish: {{ sentence_swh
+      }} ||| {{ sentence_spa }}'
     metadata: *id001
-    name: equals-translation-cat-guj
-    reference: Equals translation (Catalan into Gujarati)
-  24f3b10f-720a-4174-97ec-09e1142b7fdb: !Template
+    name: translate-this-swh-spa
+    reference: Translate this from X to Y (Swahili into Latin American Spanish)
+  1da2a120-68fb-4497-b85c-b7070cbdd8fd: !Template
     answer_choices: null
-    id: 24f3b10f-720a-4174-97ec-09e1142b7fdb
-    jinja: 'Oriya: {{ sentence_ory }} = Vietnamese: ||| {{ sentence_vie }}'
+    id: 1da2a120-68fb-4497-b85c-b7070cbdd8fd
+    jinja: 'Translate this from Yoruba into Zulu: {{ sentence_yor }} ||| {{ sentence_zul
+      }}'
     metadata: *id001
-    name: equals-translation-ory-vie
-    reference: Equals translation (Oriya into Vietnamese)
-  250eb7ee-8bc2-4064-8647-bc6b364fc82f: !Template
+    name: translate-this-yor-zul
+    reference: Translate this from X to Y (Yoruba into Zulu)
+  1da963cd-0eaa-404c-9472-8048ac8c2d0f: !Template
     answer_choices: null
-    id: 250eb7ee-8bc2-4064-8647-bc6b364fc82f
-    jinja: 'English: {{ sentence_eng }} = Tamil: ||| {{ sentence_tam }}'
+    id: 1da963cd-0eaa-404c-9472-8048ac8c2d0f
+    jinja: 'Translate this from Nepali into Catalan: {{ sentence_npi }} ||| {{ sentence_cat
+      }}'
     metadata: *id001
-    name: equals-translation-eng-tam
-    reference: Equals translation (English into Tamil)
-  253372ee-78aa-485a-81cd-2046a6eda893: !Template
+    name: translate-this-npi-cat
+    reference: Translate this from X to Y (Nepali into Catalan)
+  1db7247a-fa42-42cc-8f7b-454e58fbc321: !Template
     answer_choices: null
-    id: 253372ee-78aa-485a-81cd-2046a6eda893
-    jinja: 'Punjabi: {{ sentence_pan }} = Catalan: ||| {{ sentence_cat }}'
+    id: 1db7247a-fa42-42cc-8f7b-454e58fbc321
+    jinja: 'Translate this from Vietnamese into Yoruba: {{ sentence_vie }} ||| {{
+      sentence_yor }}'
     metadata: *id001
-    name: equals-translation-pan-cat
-    reference: Equals translation (Punjabi into Catalan)
-  25342279-379e-48af-996e-bd77dc95c957: !Template
+    name: translate-this-vie-yor
+    reference: Translate this from X to Y (Vietnamese into Yoruba)
+  1dfde017-a35e-4990-879d-4b51cee4268f: !Template
     answer_choices: null
-    id: 25342279-379e-48af-996e-bd77dc95c957
-    jinja: 'Gujarati: {{ sentence_guj }} = Tamil: ||| {{ sentence_tam }}'
+    id: 1dfde017-a35e-4990-879d-4b51cee4268f
+    jinja: 'Translate this from Latin American Spanish into Oriya: {{ sentence_spa
+      }} ||| {{ sentence_ory }}'
     metadata: *id001
-    name: equals-translation-guj-tam
-    reference: Equals translation (Gujarati into Tamil)
-  253c002a-a17e-4080-8df3-9dbf0da879c0: !Template
+    name: translate-this-spa-ory
+    reference: Translate this from X to Y (Latin American Spanish into Oriya)
+  1e06a528-3d70-41c9-a29e-00ed496812e5: !Template
     answer_choices: null
-    id: 253c002a-a17e-4080-8df3-9dbf0da879c0
-    jinja: 'Tamil: {{ sentence_tam }} = Assamese: ||| {{ sentence_asm }}'
+    id: 1e06a528-3d70-41c9-a29e-00ed496812e5
+    jinja: 'Translate this from Punjabi into Kannada: {{ sentence_pan }} ||| {{ sentence_kan
+      }}'
     metadata: *id001
-    name: equals-translation-tam-asm
-    reference: Equals translation (Tamil into Assamese)
-  254ba0d6-de21-4141-8e3e-abd944338da9: !Template
+    name: translate-this-pan-kan
+    reference: Translate this from X to Y (Punjabi into Kannada)
+  1e199736-1a4e-4d7e-8e7b-4cebeb61baff: !Template
     answer_choices: null
-    id: 254ba0d6-de21-4141-8e3e-abd944338da9
-    jinja: 'Vietnamese: {{ sentence_vie }} = Oriya: ||| {{ sentence_ory }}'
+    id: 1e199736-1a4e-4d7e-8e7b-4cebeb61baff
+    jinja: 'Translate this from Assamese into Indonesian: {{ sentence_asm }} ||| {{
+      sentence_ind }}'
     metadata: *id001
-    name: equals-translation-vie-ory
-    reference: Equals translation (Vietnamese into Oriya)
-  255b4506-7a3c-4652-8219-d3886ceaefee: !Template
+    name: translate-this-asm-ind
+    reference: Translate this from X to Y (Assamese into Indonesian)
+  1eb9c5d8-ca5b-4cec-826b-2dace629f4ea: !Template
     answer_choices: null
-    id: 255b4506-7a3c-4652-8219-d3886ceaefee
-    jinja: 'Latin American Spanish: {{ sentence_spa }} = Malayalam: ||| {{ sentence_mal
+    id: 1eb9c5d8-ca5b-4cec-826b-2dace629f4ea
+    jinja: 'Translate this from Arabic into Malayalam: {{ sentence_ara }} ||| {{ sentence_mal
       }}'
     metadata: *id001
-    name: equals-translation-spa-mal
-    reference: Equals translation (Latin American Spanish into Malayalam)
-  25fc4997-404e-41f7-8c4b-e95eb63c2a78: !Template
-    answer_choices: null
-    id: 25fc4997-404e-41f7-8c4b-e95eb63c2a78
-    jinja: 'Nepali: {{ sentence_npi }} = Igbo: ||| {{ sentence_ibo }}'
-    metadata: *id001
-    name: equals-translation-npi-ibo
-    reference: Equals translation (Nepali into Igbo)
-  2646dc8b-65d0-4464-8a31-4bae6a89ecb9: !Template
+    name: translate-this-ara-mal
+    reference: Translate this from X to Y (Arabic into Malayalam)
+  1ec53eb3-95c0-4bfd-a338-afb936b017d5: !Template
     answer_choices: null
-    id: 2646dc8b-65d0-4464-8a31-4bae6a89ecb9
-    jinja: 'Gujarati: {{ sentence_guj }} = English: ||| {{ sentence_eng }}'
+    id: 1ec53eb3-95c0-4bfd-a338-afb936b017d5
+    jinja: 'Translate this from Northern Sotho into Brazilian Portuguese: {{ sentence_nso
+      }} ||| {{ sentence_por }}'
     metadata: *id001
-    name: equals-translation-guj-eng
-    reference: Equals translation (Gujarati into English)
-  26780a8e-568c-419e-a0bd-73a3d1824aee: !Template
+    name: translate-this-nso-por
+    reference: Translate this from X to Y (Northern Sotho into Brazilian Portuguese)
+  1ee9458a-fc7d-4709-9635-c673565d4d1d: !Template
     answer_choices: null
-    id: 26780a8e-568c-419e-a0bd-73a3d1824aee
-    jinja: 'Zulu: {{ sentence_zul }} = Marathi: ||| {{ sentence_mar }}'
+    id: 1ee9458a-fc7d-4709-9635-c673565d4d1d
+    jinja: 'Translate this from Assamese into Gujarati: {{ sentence_asm }} ||| {{
+      sentence_guj }}'
     metadata: *id001
-    name: equals-translation-zul-mar
-    reference: Equals translation (Zulu into Marathi)
-  27d6f2fe-1799-4504-b45a-b77d2e9e04e1: !Template
+    name: translate-this-asm-guj
+    reference: Translate this from X to Y (Assamese into Gujarati)
+  1f192952-e827-42e6-998d-a9bdf77d10f0: !Template
     answer_choices: null
-    id: 27d6f2fe-1799-4504-b45a-b77d2e9e04e1
-    jinja: 'Latin American Spanish: {{ sentence_spa }} = Urdu: ||| {{ sentence_urd
+    id: 1f192952-e827-42e6-998d-a9bdf77d10f0
+    jinja: 'Translate this from French into Xhosa: {{ sentence_fra }} ||| {{ sentence_xho
       }}'
     metadata: *id001
-    name: equals-translation-spa-urd
-    reference: Equals translation (Latin American Spanish into Urdu)
-  28571522-2487-4f59-a579-b272e9c4999c: !Template
+    name: translate-this-fra-xho
+    reference: Translate this from X to Y (French into Xhosa)
+  1f758a9d-5b92-4d83-b585-86e91ee9f4c0: !Template
     answer_choices: null
-    id: 28571522-2487-4f59-a579-b272e9c4999c
-    jinja: 'English: {{ sentence_eng }} = Assamese: ||| {{ sentence_asm }}'
+    id: 1f758a9d-5b92-4d83-b585-86e91ee9f4c0
+    jinja: 'Translate this from Swahili into Vietnamese: {{ sentence_swh }} ||| {{
+      sentence_vie }}'
     metadata: *id001
-    name: equals-translation-eng-asm
-    reference: Equals translation (English into Assamese)
-  286003bf-6628-41bb-b960-eebaa8cad9cc: !Template
+    name: translate-this-swh-vie
+    reference: Translate this from X to Y (Swahili into Vietnamese)
+  1faf05e9-20d2-4be9-8bfa-ea424851ad14: !Template
     answer_choices: null
-    id: 286003bf-6628-41bb-b960-eebaa8cad9cc
-    jinja: 'Lingala: {{ sentence_lin }} = Arabic: ||| {{ sentence_ara }}'
+    id: 1faf05e9-20d2-4be9-8bfa-ea424851ad14
+    jinja: 'Translate this from Oriya into Tamil: {{ sentence_ory }} ||| {{ sentence_tam
+      }}'
     metadata: *id001
-    name: equals-translation-lin-ara
-    reference: Equals translation (Lingala into Arabic)
-  28a02b64-ab42-494c-a1c8-11fbe024e955: !Template
+    name: translate-this-ory-tam
+    reference: Translate this from X to Y (Oriya into Tamil)
+  1fd99b2f-2e66-44fe-9a99-bd2c2d5577e6: !Template
     answer_choices: null
-    id: 28a02b64-ab42-494c-a1c8-11fbe024e955
-    jinja: 'Punjabi: {{ sentence_pan }} = Assamese: ||| {{ sentence_asm }}'
+    id: 1fd99b2f-2e66-44fe-9a99-bd2c2d5577e6
+    jinja: 'Translate this from Nepali into Vietnamese: {{ sentence_npi }} ||| {{
+      sentence_vie }}'
     metadata: *id001
-    name: equals-translation-pan-asm
-    reference: Equals translation (Punjabi into Assamese)
-  28b5b4ca-481b-4373-9f31-f0c0e60410cf: !Template
+    name: translate-this-npi-vie
+    reference: Translate this from X to Y (Nepali into Vietnamese)
+  2002f881-95c0-4c70-854c-97f4ba3bb7e9: !Template
     answer_choices: null
-    id: 28b5b4ca-481b-4373-9f31-f0c0e60410cf
-    jinja: 'Indonesian: {{ sentence_ind }} = Wolof: ||| {{ sentence_wol }}'
+    id: 2002f881-95c0-4c70-854c-97f4ba3bb7e9
+    jinja: 'Translate this from Marathi into Wolof: {{ sentence_mar }} ||| {{ sentence_wol
+      }}'
     metadata: *id001
-    name: equals-translation-ind-wol
-    reference: Equals translation (Indonesian into Wolof)
-  28b8f1e9-3481-439c-9348-bd6e474884be: !Template
+    name: translate-this-mar-wol
+    reference: Translate this from X to Y (Marathi into Wolof)
+  2013c774-365f-424f-8f46-f9f98d748445: !Template
     answer_choices: null
-    id: 28b8f1e9-3481-439c-9348-bd6e474884be
-    jinja: 'Swahili: {{ sentence_swh }} = Gujarati: ||| {{ sentence_guj }}'
+    id: 2013c774-365f-424f-8f46-f9f98d748445
+    jinja: 'Translate this from Malayalam into Xhosa: {{ sentence_mal }} ||| {{ sentence_xho
+      }}'
     metadata: *id001
-    name: equals-translation-swh-guj
-    reference: Equals translation (Swahili into Gujarati)
-  28c7363d-0406-414d-80f3-48f9fff24b5d: !Template
+    name: translate-this-mal-xho
+    reference: Translate this from X to Y (Malayalam into Xhosa)
+  2067f3a4-e8ae-4ed5-b190-f3c48a8c1555: !Template
     answer_choices: null
-    id: 28c7363d-0406-414d-80f3-48f9fff24b5d
-    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Zulu: ||| {{ sentence_zul
+    id: 2067f3a4-e8ae-4ed5-b190-f3c48a8c1555
+    jinja: 'Translate this from Kannada into Swahili: {{ sentence_kan }} ||| {{ sentence_swh
       }}'
     metadata: *id001
-    name: equals-translation-zho_simpl-zul
-    reference: Equals translation (simplified Chinese into Zulu)
-  28f0aadd-6c74-4271-97f0-88a24ef5c63d: !Template
+    name: translate-this-kan-swh
+    reference: Translate this from X to Y (Kannada into Swahili)
+  2100e746-fe40-4785-a417-311b1e30843d: !Template
     answer_choices: null
-    id: 28f0aadd-6c74-4271-97f0-88a24ef5c63d
-    jinja: 'Bengali: {{ sentence_ben }} = English: ||| {{ sentence_eng }}'
+    id: 2100e746-fe40-4785-a417-311b1e30843d
+    jinja: 'Translate this from Malayalam into Tamil: {{ sentence_mal }} ||| {{ sentence_tam
+      }}'
     metadata: *id001
-    name: equals-translation-ben-eng
-    reference: Equals translation (Bengali into English)
-  290b1030-b9e1-44d6-a1c9-1d64fc8abde6: !Template
+    name: translate-this-mal-tam
+    reference: Translate this from X to Y (Malayalam into Tamil)
+  219ee43d-b7e6-410a-b311-0ed98e6dc1ee: !Template
     answer_choices: null
-    id: 290b1030-b9e1-44d6-a1c9-1d64fc8abde6
-    jinja: 'Hindi: {{ sentence_hin }} = Gujarati: ||| {{ sentence_guj }}'
+    id: 219ee43d-b7e6-410a-b311-0ed98e6dc1ee
+    jinja: 'Translate this from Indonesian into Hindi: {{ sentence_ind }} ||| {{ sentence_hin
+      }}'
     metadata: *id001
-    name: equals-translation-hin-guj
-    reference: Equals translation (Hindi into Gujarati)
-  292e4ece-bd77-4f04-9789-5edac6aa2a74: !Template
+    name: translate-this-ind-hin
+    reference: Translate this from X to Y (Indonesian into Hindi)
+  21c441f8-5d88-46e8-b8b1-8bdc985bb290: !Template
     answer_choices: null
-    id: 292e4ece-bd77-4f04-9789-5edac6aa2a74
-    jinja: 'Hindi: {{ sentence_hin }} = Zulu: ||| {{ sentence_zul }}'
+    id: 21c441f8-5d88-46e8-b8b1-8bdc985bb290
+    jinja: 'Translate this from Yoruba into Wolof: {{ sentence_yor }} ||| {{ sentence_wol
+      }}'
     metadata: *id001
-    name: equals-translation-hin-zul
-    reference: Equals translation (Hindi into Zulu)
-  2938dcb8-d0a8-4814-920a-39c390c0e51b: !Template
+    name: translate-this-yor-wol
+    reference: Translate this from X to Y (Yoruba into Wolof)
+  23c8ebae-0208-4885-bb5a-4d62296f53fb: !Template
     answer_choices: null
-    id: 2938dcb8-d0a8-4814-920a-39c390c0e51b
-    jinja: 'Gujarati: {{ sentence_guj }} = Zulu: ||| {{ sentence_zul }}'
+    id: 23c8ebae-0208-4885-bb5a-4d62296f53fb
+    jinja: 'Translate this from simplified Chinese into Assamese: {{ sentence_zho_simpl
+      }} ||| {{ sentence_asm }}'
     metadata: *id001
-    name: equals-translation-guj-zul
-    reference: Equals translation (Gujarati into Zulu)
-  296edf9b-7fe7-4a4a-9060-42ba5d8cc435: !Template
+    name: translate-this-zho_simpl-asm
+    reference: Translate this from X to Y (simplified Chinese into Assamese)
+  23dba84e-4c9f-42e5-8ee3-04f226e5b0eb: !Template
     answer_choices: null
-    id: 296edf9b-7fe7-4a4a-9060-42ba5d8cc435
-    jinja: 'Hindi: {{ sentence_hin }} = Punjabi: ||| {{ sentence_pan }}'
+    id: 23dba84e-4c9f-42e5-8ee3-04f226e5b0eb
+    jinja: 'Translate this from Tamil into Nepali: {{ sentence_tam }} ||| {{ sentence_npi
+      }}'
     metadata: *id001
-    name: equals-translation-hin-pan
-    reference: Equals translation (Hindi into Punjabi)
-  29709cf9-8d7e-4c30-82dd-0eb2b34265a9: !Template
+    name: translate-this-tam-npi
+    reference: Translate this from X to Y (Tamil into Nepali)
+  23e37cc6-85e4-4e8f-8a01-464e17b92fb6: !Template
     answer_choices: null
-    id: 29709cf9-8d7e-4c30-82dd-0eb2b34265a9
-    jinja: 'French: {{ sentence_fra }} = Nepali: ||| {{ sentence_npi }}'
+    id: 23e37cc6-85e4-4e8f-8a01-464e17b92fb6
+    jinja: 'Translate this from Zulu into Gujarati: {{ sentence_zul }} ||| {{ sentence_guj
+      }}'
     metadata: *id001
-    name: equals-translation-fra-npi
-    reference: Equals translation (French into Nepali)
-  297dd591-89da-4756-8c75-3550c440a670: !Template
+    name: translate-this-zul-guj
+    reference: Translate this from X to Y (Zulu into Gujarati)
+  2404b553-0bdd-4dc4-88a6-edf2e01a4042: !Template
     answer_choices: null
-    id: 297dd591-89da-4756-8c75-3550c440a670
-    jinja: 'Gujarati: {{ sentence_guj }} = Punjabi: ||| {{ sentence_pan }}'
+    id: 2404b553-0bdd-4dc4-88a6-edf2e01a4042
+    jinja: 'Translate this from Xhosa into Zulu: {{ sentence_xho }} ||| {{ sentence_zul
+      }}'
     metadata: *id001
-    name: equals-translation-guj-pan
-    reference: Equals translation (Gujarati into Punjabi)
-  29fa23ff-2e4a-42ff-8815-c4f272fbec6f: !Template
+    name: translate-this-xho-zul
+    reference: Translate this from X to Y (Xhosa into Zulu)
+  241c9607-8be1-4675-afe2-1e64efe0ed5a: !Template
     answer_choices: null
-    id: 29fa23ff-2e4a-42ff-8815-c4f272fbec6f
-    jinja: 'Xhosa: {{ sentence_xho }} = Tamil: ||| {{ sentence_tam }}'
+    id: 241c9607-8be1-4675-afe2-1e64efe0ed5a
+    jinja: 'Translate this from Lingala into Urdu: {{ sentence_lin }} ||| {{ sentence_urd
+      }}'
     metadata: *id001
-    name: equals-translation-xho-tam
-    reference: Equals translation (Xhosa into Tamil)
-  29ffaa4d-d2e3-4d7d-8377-535912b6d72b: !Template
+    name: translate-this-lin-urd
+    reference: Translate this from X to Y (Lingala into Urdu)
+  24bf6dcf-ba57-4597-b9c0-961cd59c8de1: !Template
     answer_choices: null
-    id: 29ffaa4d-d2e3-4d7d-8377-535912b6d72b
-    jinja: 'Zulu: {{ sentence_zul }} = Hindi: ||| {{ sentence_hin }}'
+    id: 24bf6dcf-ba57-4597-b9c0-961cd59c8de1
+    jinja: 'Translate this from Marathi into Punjabi: {{ sentence_mar }} ||| {{ sentence_pan
+      }}'
     metadata: *id001
-    name: equals-translation-zul-hin
-    reference: Equals translation (Zulu into Hindi)
-  2a245908-e7f4-4b81-a261-be08cef0dc8b: !Template
+    name: translate-this-mar-pan
+    reference: Translate this from X to Y (Marathi into Punjabi)
+  24c47820-3a64-4c03-9cc6-c27d881498a6: !Template
     answer_choices: null
-    id: 2a245908-e7f4-4b81-a261-be08cef0dc8b
-    jinja: 'Igbo: {{ sentence_ibo }} = Wolof: ||| {{ sentence_wol }}'
+    id: 24c47820-3a64-4c03-9cc6-c27d881498a6
+    jinja: 'Translate this from Swahili into Telugu: {{ sentence_swh }} ||| {{ sentence_tel
+      }}'
     metadata: *id001
-    name: equals-translation-ibo-wol
-    reference: Equals translation (Igbo into Wolof)
-  2ad2ac2c-eb6c-413e-afc0-a63af8a73f43: !Template
+    name: translate-this-swh-tel
+    reference: Translate this from X to Y (Swahili into Telugu)
+  2527702c-4ba3-45cf-a2b0-042296bb80fc: !Template
     answer_choices: null
-    id: 2ad2ac2c-eb6c-413e-afc0-a63af8a73f43
-    jinja: 'Arabic: {{ sentence_ara }} = Northern Sotho: ||| {{ sentence_nso }}'
+    id: 2527702c-4ba3-45cf-a2b0-042296bb80fc
+    jinja: 'Translate this from Igbo into Zulu: {{ sentence_ibo }} ||| {{ sentence_zul
+      }}'
     metadata: *id001
-    name: equals-translation-ara-nso
-    reference: Equals translation (Arabic into Northern Sotho)
-  2af09732-f984-4599-8141-44d4dc47c6ca: !Template
+    name: translate-this-ibo-zul
+    reference: Translate this from X to Y (Igbo into Zulu)
+  25561beb-bbe6-4ed0-a925-84c66249be43: !Template
     answer_choices: null
-    id: 2af09732-f984-4599-8141-44d4dc47c6ca
-    jinja: 'Indonesian: {{ sentence_ind }} = Swahili: ||| {{ sentence_swh }}'
+    id: 25561beb-bbe6-4ed0-a925-84c66249be43
+    jinja: 'Translate this from Marathi into Yoruba: {{ sentence_mar }} ||| {{ sentence_yor
+      }}'
     metadata: *id001
-    name: equals-translation-ind-swh
-    reference: Equals translation (Indonesian into Swahili)
-  2b0194a9-8ff4-4011-be7a-3ed6a2b18b9d: !Template
+    name: translate-this-mar-yor
+    reference: Translate this from X to Y (Marathi into Yoruba)
+  25a02e1c-508a-4e65-a227-44e92cc0aefb: !Template
     answer_choices: null
-    id: 2b0194a9-8ff4-4011-be7a-3ed6a2b18b9d
-    jinja: 'Swahili: {{ sentence_swh }} = Malayalam: ||| {{ sentence_mal }}'
+    id: 25a02e1c-508a-4e65-a227-44e92cc0aefb
+    jinja: 'Translate this from French into Arabic: {{ sentence_fra }} ||| {{ sentence_ara
+      }}'
     metadata: *id001
-    name: equals-translation-swh-mal
-    reference: Equals translation (Swahili into Malayalam)
-  2c10eea7-79b2-459b-a36a-6a3147b2264a: !Template
+    name: translate-this-fra-ara
+    reference: Translate this from X to Y (French into Arabic)
+  25abe5a3-c64e-462b-b94b-87138e83b9be: !Template
     answer_choices: null
-    id: 2c10eea7-79b2-459b-a36a-6a3147b2264a
-    jinja: 'Xhosa: {{ sentence_xho }} = Hindi: ||| {{ sentence_hin }}'
+    id: 25abe5a3-c64e-462b-b94b-87138e83b9be
+    jinja: 'Translate this from Igbo into Swahili: {{ sentence_ibo }} ||| {{ sentence_swh
+      }}'
     metadata: *id001
-    name: equals-translation-xho-hin
-    reference: Equals translation (Xhosa into Hindi)
-  2c1ba6e5-9741-4a70-83f4-92fbbfc59ff5: !Template
+    name: translate-this-ibo-swh
+    reference: Translate this from X to Y (Igbo into Swahili)
+  262e7428-28e6-4b13-b918-3da32d20278d: !Template
     answer_choices: null
-    id: 2c1ba6e5-9741-4a70-83f4-92fbbfc59ff5
-    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Indonesian: ||| {{ sentence_ind
+    id: 262e7428-28e6-4b13-b918-3da32d20278d
+    jinja: 'Translate this from Lingala into Arabic: {{ sentence_lin }} ||| {{ sentence_ara
       }}'
     metadata: *id001
-    name: equals-translation-por-ind
-    reference: Equals translation (Brazilian Portuguese into Indonesian)
-  2c30eca5-2ade-452b-bc10-e780a6add27c: !Template
+    name: translate-this-lin-ara
+    reference: Translate this from X to Y (Lingala into Arabic)
+  26975a8b-6685-406c-b867-3bf06a6f16f7: !Template
     answer_choices: null
-    id: 2c30eca5-2ade-452b-bc10-e780a6add27c
-    jinja: 'Assamese: {{ sentence_asm }} = Telugu: ||| {{ sentence_tel }}'
+    id: 26975a8b-6685-406c-b867-3bf06a6f16f7
+    jinja: 'Translate this from Catalan into Wolof: {{ sentence_cat }} ||| {{ sentence_wol
+      }}'
     metadata: *id001
-    name: equals-translation-asm-tel
-    reference: Equals translation (Assamese into Telugu)
-  2c3be937-dea1-4827-8dc0-fda749e973bf: !Template
+    name: translate-this-cat-wol
+    reference: Translate this from X to Y (Catalan into Wolof)
+  27611c76-4b91-4100-8c28-d554679c190f: !Template
     answer_choices: null
-    id: 2c3be937-dea1-4827-8dc0-fda749e973bf
-    jinja: 'Malayalam: {{ sentence_mal }} = Arabic: ||| {{ sentence_ara }}'
+    id: 27611c76-4b91-4100-8c28-d554679c190f
+    jinja: 'Translate this from Kannada into Gujarati: {{ sentence_kan }} ||| {{ sentence_guj
+      }}'
     metadata: *id001
-    name: equals-translation-mal-ara
-    reference: Equals translation (Malayalam into Arabic)
-  2c454d9a-6ec1-4c0d-af2a-67364d604415: !Template
+    name: translate-this-kan-guj
+    reference: Translate this from X to Y (Kannada into Gujarati)
+  27621fb6-56c8-43ee-b828-671291565912: !Template
     answer_choices: null
-    id: 2c454d9a-6ec1-4c0d-af2a-67364d604415
-    jinja: 'Urdu: {{ sentence_urd }} = Malayalam: ||| {{ sentence_mal }}'
+    id: 27621fb6-56c8-43ee-b828-671291565912
+    jinja: 'Translate this from Catalan into traditional Chinese: {{ sentence_cat
+      }} ||| {{ sentence_zho_trad }}'
     metadata: *id001
-    name: equals-translation-urd-mal
-    reference: Equals translation (Urdu into Malayalam)
-  2c7cc337-6d4e-46d2-9d64-272f794d7234: !Template
+    name: translate-this-cat-zho_trad
+    reference: Translate this from X to Y (Catalan into traditional Chinese)
+  27c54806-c7b5-4f2a-a2be-d2465a446795: !Template
     answer_choices: null
-    id: 2c7cc337-6d4e-46d2-9d64-272f794d7234
-    jinja: 'Igbo: {{ sentence_ibo }} = Yoruba: ||| {{ sentence_yor }}'
+    id: 27c54806-c7b5-4f2a-a2be-d2465a446795
+    jinja: 'Translate this from Lingala into Nepali: {{ sentence_lin }} ||| {{ sentence_npi
+      }}'
     metadata: *id001
-    name: equals-translation-ibo-yor
-    reference: Equals translation (Igbo into Yoruba)
-  2d1aa523-b4b3-46c8-9095-a7aea2676274: !Template
+    name: translate-this-lin-npi
+    reference: Translate this from X to Y (Lingala into Nepali)
+  27dad36b-5f7e-425f-b53d-91b7624d21dd: !Template
     answer_choices: null
-    id: 2d1aa523-b4b3-46c8-9095-a7aea2676274
-    jinja: 'Assamese: {{ sentence_asm }} = Nepali: ||| {{ sentence_npi }}'
+    id: 27dad36b-5f7e-425f-b53d-91b7624d21dd
+    jinja: 'Translate this from Bengali into Arabic: {{ sentence_ben }} ||| {{ sentence_ara
+      }}'
     metadata: *id001
-    name: equals-translation-asm-npi
-    reference: Equals translation (Assamese into Nepali)
-  2e4712df-9c4b-4d54-bc63-668e79b413f7: !Template
+    name: translate-this-ben-ara
+    reference: Translate this from X to Y (Bengali into Arabic)
+  280b1f9a-e8cb-4da9-823f-6935fbd17b75: !Template
     answer_choices: null
-    id: 2e4712df-9c4b-4d54-bc63-668e79b413f7
-    jinja: 'Brazilian Portuguese: {{ sentence_por }} = traditional Chinese: ||| {{
-      sentence_zho_trad }}'
+    id: 280b1f9a-e8cb-4da9-823f-6935fbd17b75
+    jinja: 'Translate this from Bengali into Gujarati: {{ sentence_ben }} ||| {{ sentence_guj
+      }}'
     metadata: *id001
-    name: equals-translation-por-zho_trad
-    reference: Equals translation (Brazilian Portuguese into traditional Chinese)
-  2e869729-23e4-41f2-8257-3d5e37eccfcc: !Template
+    name: translate-this-ben-guj
+    reference: Translate this from X to Y (Bengali into Gujarati)
+  28465f39-b955-4466-adc9-bf4dd689834e: !Template
     answer_choices: null
-    id: 2e869729-23e4-41f2-8257-3d5e37eccfcc
-    jinja: 'Northern Sotho: {{ sentence_nso }} = Igbo: ||| {{ sentence_ibo }}'
+    id: 28465f39-b955-4466-adc9-bf4dd689834e
+    jinja: 'Translate this from Urdu into Yoruba: {{ sentence_urd }} ||| {{ sentence_yor
+      }}'
     metadata: *id001
-    name: equals-translation-nso-ibo
-    reference: Equals translation (Northern Sotho into Igbo)
-  2f138410-0193-4251-aac8-357764af2fb0: !Template
+    name: translate-this-urd-yor
+    reference: Translate this from X to Y (Urdu into Yoruba)
+  290ff393-62e4-4620-88a5-f962067e04be: !Template
     answer_choices: null
-    id: 2f138410-0193-4251-aac8-357764af2fb0
-    jinja: 'Gujarati: {{ sentence_guj }} = Indonesian: ||| {{ sentence_ind }}'
+    id: 290ff393-62e4-4620-88a5-f962067e04be
+    jinja: 'Translate this from Hindi into Nepali: {{ sentence_hin }} ||| {{ sentence_npi
+      }}'
     metadata: *id001
-    name: equals-translation-guj-ind
-    reference: Equals translation (Gujarati into Indonesian)
-  2f15036e-4304-4591-9291-1ec47d7f67e7: !Template
+    name: translate-this-hin-npi
+    reference: Translate this from X to Y (Hindi into Nepali)
+  296881ff-cba0-4239-ad8d-8f1afd75e4e3: !Template
     answer_choices: null
-    id: 2f15036e-4304-4591-9291-1ec47d7f67e7
-    jinja: 'Punjabi: {{ sentence_pan }} = English: ||| {{ sentence_eng }}'
+    id: 296881ff-cba0-4239-ad8d-8f1afd75e4e3
+    jinja: 'Translate this from Northern Sotho into Hindi: {{ sentence_nso }} |||
+      {{ sentence_hin }}'
     metadata: *id001
-    name: equals-translation-pan-eng
-    reference: Equals translation (Punjabi into English)
-  2f5868a3-a33d-45e2-82f2-aff9318a8a7e: !Template
+    name: translate-this-nso-hin
+    reference: Translate this from X to Y (Northern Sotho into Hindi)
+  297998dd-c54e-4c71-a13f-c486ac901c7a: !Template
     answer_choices: null
-    id: 2f5868a3-a33d-45e2-82f2-aff9318a8a7e
-    jinja: 'Igbo: {{ sentence_ibo }} = Lingala: ||| {{ sentence_lin }}'
+    id: 297998dd-c54e-4c71-a13f-c486ac901c7a
+    jinja: 'Translate this from Hindi into French: {{ sentence_hin }} ||| {{ sentence_fra
+      }}'
     metadata: *id001
-    name: equals-translation-ibo-lin
-    reference: Equals translation (Igbo into Lingala)
-  2f5b1c9e-6110-4a18-ae49-6a35ec869c59: !Template
+    name: translate-this-hin-fra
+    reference: Translate this from X to Y (Hindi into French)
+  299ec5f1-e534-48bf-a90f-ee75319a1cf4: !Template
     answer_choices: null
-    id: 2f5b1c9e-6110-4a18-ae49-6a35ec869c59
-    jinja: 'Urdu: {{ sentence_urd }} = Arabic: ||| {{ sentence_ara }}'
+    id: 299ec5f1-e534-48bf-a90f-ee75319a1cf4
+    jinja: 'Translate this from Swahili into traditional Chinese: {{ sentence_swh
+      }} ||| {{ sentence_zho_trad }}'
     metadata: *id001
-    name: equals-translation-urd-ara
-    reference: Equals translation (Urdu into Arabic)
-  2ff8fb17-2d79-42dd-9716-6f2bd86fa67c: !Template
+    name: translate-this-swh-zho_trad
+    reference: Translate this from X to Y (Swahili into traditional Chinese)
+  29c57eea-4508-4984-a10f-ae37c684a18a: !Template
     answer_choices: null
-    id: 2ff8fb17-2d79-42dd-9716-6f2bd86fa67c
-    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Latin American Spanish:
-      ||| {{ sentence_spa }}'
+    id: 29c57eea-4508-4984-a10f-ae37c684a18a
+    jinja: 'Translate this from Telugu into Yoruba: {{ sentence_tel }} ||| {{ sentence_yor
+      }}'
     metadata: *id001
-    name: equals-translation-zho_simpl-spa
-    reference: Equals translation (simplified Chinese into Latin American Spanish)
-  30544283-9aba-47f4-921e-e5d5d20a34c7: !Template
+    name: translate-this-tel-yor
+    reference: Translate this from X to Y (Telugu into Yoruba)
+  2a221475-0a6e-4005-9891-54757e5f4053: !Template
     answer_choices: null
-    id: 30544283-9aba-47f4-921e-e5d5d20a34c7
-    jinja: 'Nepali: {{ sentence_npi }} = traditional Chinese: ||| {{ sentence_zho_trad
+    id: 2a221475-0a6e-4005-9891-54757e5f4053
+    jinja: 'Translate this from Oriya into Swahili: {{ sentence_ory }} ||| {{ sentence_swh
       }}'
     metadata: *id001
-    name: equals-translation-npi-zho_trad
-    reference: Equals translation (Nepali into traditional Chinese)
-  307c27f5-ee97-4ae2-adcb-4ca968c1a361: !Template
+    name: translate-this-ory-swh
+    reference: Translate this from X to Y (Oriya into Swahili)
+  2a288032-b05a-4a4e-aae4-276ff52a8f7b: !Template
     answer_choices: null
-    id: 307c27f5-ee97-4ae2-adcb-4ca968c1a361
-    jinja: 'Yoruba: {{ sentence_yor }} = Urdu: ||| {{ sentence_urd }}'
+    id: 2a288032-b05a-4a4e-aae4-276ff52a8f7b
+    jinja: 'Translate this from Telugu into Kannada: {{ sentence_tel }} ||| {{ sentence_kan
+      }}'
     metadata: *id001
-    name: equals-translation-yor-urd
-    reference: Equals translation (Yoruba into Urdu)
-  3081892f-975b-45db-ace2-3a071eb502f5: !Template
+    name: translate-this-tel-kan
+    reference: Translate this from X to Y (Telugu into Kannada)
+  2a6b28ea-e609-4c47-8151-f400ed06a734: !Template
     answer_choices: null
-    id: 3081892f-975b-45db-ace2-3a071eb502f5
-    jinja: 'Assamese: {{ sentence_asm }} = Northern Sotho: ||| {{ sentence_nso }}'
+    id: 2a6b28ea-e609-4c47-8151-f400ed06a734
+    jinja: 'Translate this from Malayalam into French: {{ sentence_mal }} ||| {{ sentence_fra
+      }}'
     metadata: *id001
-    name: equals-translation-asm-nso
-    reference: Equals translation (Assamese into Northern Sotho)
-  31805267-51cd-41ba-8d3f-d80495af01ff: !Template
+    name: translate-this-mal-fra
+    reference: Translate this from X to Y (Malayalam into French)
+  2aaa64f1-e471-4776-964b-55f1d45e2471: !Template
     answer_choices: null
-    id: 31805267-51cd-41ba-8d3f-d80495af01ff
-    jinja: 'Gujarati: {{ sentence_guj }} = Lingala: ||| {{ sentence_lin }}'
+    id: 2aaa64f1-e471-4776-964b-55f1d45e2471
+    jinja: 'Translate this from Xhosa into Telugu: {{ sentence_xho }} ||| {{ sentence_tel
+      }}'
     metadata: *id001
-    name: equals-translation-guj-lin
-    reference: Equals translation (Gujarati into Lingala)
-  31eb752d-42a4-40c8-a8f5-e3cd6c4ae5b3: !Template
+    name: translate-this-xho-tel
+    reference: Translate this from X to Y (Xhosa into Telugu)
+  2b6418d9-cdb1-488d-b43d-8518e06b3d23: !Template
     answer_choices: null
-    id: 31eb752d-42a4-40c8-a8f5-e3cd6c4ae5b3
-    jinja: 'English: {{ sentence_eng }} = Malayalam: ||| {{ sentence_mal }}'
+    id: 2b6418d9-cdb1-488d-b43d-8518e06b3d23
+    jinja: 'Translate this from Vietnamese into Telugu: {{ sentence_vie }} ||| {{
+      sentence_tel }}'
     metadata: *id001
-    name: equals-translation-eng-mal
-    reference: Equals translation (English into Malayalam)
-  320f1b05-6f12-45c3-be4b-5c2f1617fde3: !Template
+    name: translate-this-vie-tel
+    reference: Translate this from X to Y (Vietnamese into Telugu)
+  2b8d733c-f3f4-4580-b4ee-7ebeeefc294a: !Template
     answer_choices: null
-    id: 320f1b05-6f12-45c3-be4b-5c2f1617fde3
-    jinja: 'Arabic: {{ sentence_ara }} = Assamese: ||| {{ sentence_asm }}'
+    id: 2b8d733c-f3f4-4580-b4ee-7ebeeefc294a
+    jinja: 'Translate this from Urdu into Lingala: {{ sentence_urd }} ||| {{ sentence_lin
+      }}'
     metadata: *id001
-    name: equals-translation-ara-asm
-    reference: Equals translation (Arabic into Assamese)
-  322b096d-dc0d-418c-8950-38d3b4187728: !Template
+    name: translate-this-urd-lin
+    reference: Translate this from X to Y (Urdu into Lingala)
+  2b92f96b-7298-4c0d-acbb-12bff3a2d380: !Template
     answer_choices: null
-    id: 322b096d-dc0d-418c-8950-38d3b4187728
-    jinja: 'Catalan: {{ sentence_cat }} = Tamil: ||| {{ sentence_tam }}'
+    id: 2b92f96b-7298-4c0d-acbb-12bff3a2d380
+    jinja: 'Translate this from Urdu into Marathi: {{ sentence_urd }} ||| {{ sentence_mar
+      }}'
     metadata: *id001
-    name: equals-translation-cat-tam
-    reference: Equals translation (Catalan into Tamil)
-  323931b9-5ed9-466e-a16d-b0286b8c0ca9: !Template
+    name: translate-this-urd-mar
+    reference: Translate this from X to Y (Urdu into Marathi)
+  2c71f763-0f0b-4d60-bfe0-69bc50fe6b25: !Template
     answer_choices: null
-    id: 323931b9-5ed9-466e-a16d-b0286b8c0ca9
-    jinja: 'Catalan: {{ sentence_cat }} = Vietnamese: ||| {{ sentence_vie }}'
+    id: 2c71f763-0f0b-4d60-bfe0-69bc50fe6b25
+    jinja: 'Translate this from simplified Chinese into Kannada: {{ sentence_zho_simpl
+      }} ||| {{ sentence_kan }}'
     metadata: *id001
-    name: equals-translation-cat-vie
-    reference: Equals translation (Catalan into Vietnamese)
-  323a555f-40de-4799-97ef-6e87f4d95565: !Template
+    name: translate-this-zho_simpl-kan
+    reference: Translate this from X to Y (simplified Chinese into Kannada)
+  2d5750e4-1a8e-4306-8a84-9951f7384573: !Template
     answer_choices: null
-    id: 323a555f-40de-4799-97ef-6e87f4d95565
-    jinja: 'Urdu: {{ sentence_urd }} = Zulu: ||| {{ sentence_zul }}'
+    id: 2d5750e4-1a8e-4306-8a84-9951f7384573
+    jinja: 'Translate this from Zulu into Lingala: {{ sentence_zul }} ||| {{ sentence_lin
+      }}'
     metadata: *id001
-    name: equals-translation-urd-zul
-    reference: Equals translation (Urdu into Zulu)
-  327745a8-d5b9-41c8-9c94-f39446de2bac: !Template
+    name: translate-this-zul-lin
+    reference: Translate this from X to Y (Zulu into Lingala)
+  2e41de33-5e4a-4069-9922-20e79cd95026: !Template
     answer_choices: null
-    id: 327745a8-d5b9-41c8-9c94-f39446de2bac
-    jinja: 'French: {{ sentence_fra }} = Oriya: ||| {{ sentence_ory }}'
+    id: 2e41de33-5e4a-4069-9922-20e79cd95026
+    jinja: 'Translate this from Xhosa into Wolof: {{ sentence_xho }} ||| {{ sentence_wol
+      }}'
     metadata: *id001
-    name: equals-translation-fra-ory
-    reference: Equals translation (French into Oriya)
-  32eff7ac-64c3-4d30-b719-c0cd49301c57: !Template
+    name: translate-this-xho-wol
+    reference: Translate this from X to Y (Xhosa into Wolof)
+  2ea91d13-ebc7-40ad-a470-2cf6dfb3c86f: !Template
     answer_choices: null
-    id: 32eff7ac-64c3-4d30-b719-c0cd49301c57
-    jinja: 'Punjabi: {{ sentence_pan }} = French: ||| {{ sentence_fra }}'
+    id: 2ea91d13-ebc7-40ad-a470-2cf6dfb3c86f
+    jinja: 'Translate this from Catalan into Punjabi: {{ sentence_cat }} ||| {{ sentence_pan
+      }}'
     metadata: *id001
-    name: equals-translation-pan-fra
-    reference: Equals translation (Punjabi into French)
-  32f02376-56fb-4c44-b0e9-d865591cf8fa: !Template
+    name: translate-this-cat-pan
+    reference: Translate this from X to Y (Catalan into Punjabi)
+  2eea0581-9ec5-45f1-a9c8-ef5946ce8276: !Template
     answer_choices: null
-    id: 32f02376-56fb-4c44-b0e9-d865591cf8fa
-    jinja: 'Arabic: {{ sentence_ara }} = simplified Chinese: ||| {{ sentence_zho_simpl
+    id: 2eea0581-9ec5-45f1-a9c8-ef5946ce8276
+    jinja: 'Translate this from Kannada into Xhosa: {{ sentence_kan }} ||| {{ sentence_xho
       }}'
     metadata: *id001
-    name: equals-translation-ara-zho_simpl
-    reference: Equals translation (Arabic into simplified Chinese)
-  331151cf-29a5-47df-8034-77f2ba38ec4b: !Template
+    name: translate-this-kan-xho
+    reference: Translate this from X to Y (Kannada into Xhosa)
+  2f8930cb-6243-469f-b387-099a2a393272: !Template
     answer_choices: null
-    id: 331151cf-29a5-47df-8034-77f2ba38ec4b
-    jinja: 'Arabic: {{ sentence_ara }} = Bengali: ||| {{ sentence_ben }}'
+    id: 2f8930cb-6243-469f-b387-099a2a393272
+    jinja: 'Translate this from Yoruba into Xhosa: {{ sentence_yor }} ||| {{ sentence_xho
+      }}'
     metadata: *id001
-    name: equals-translation-ara-ben
-    reference: Equals translation (Arabic into Bengali)
-  33bd0b44-f1a3-4f05-8b1d-ac57ec903639: !Template
+    name: translate-this-yor-xho
+    reference: Translate this from X to Y (Yoruba into Xhosa)
+  2fb9afe2-68ae-4968-926b-370bced69e4e: !Template
     answer_choices: null
-    id: 33bd0b44-f1a3-4f05-8b1d-ac57ec903639
-    jinja: 'Arabic: {{ sentence_ara }} = Xhosa: ||| {{ sentence_xho }}'
+    id: 2fb9afe2-68ae-4968-926b-370bced69e4e
+    jinja: 'Translate this from Oriya into simplified Chinese: {{ sentence_ory }}
+      ||| {{ sentence_zho_simpl }}'
     metadata: *id001
-    name: equals-translation-ara-xho
-    reference: Equals translation (Arabic into Xhosa)
-  33f8b435-938c-4f3f-8247-0848242a33ad: !Template
+    name: translate-this-ory-zho_simpl
+    reference: Translate this from X to Y (Oriya into simplified Chinese)
+  2fef735f-65a1-45e4-87b3-2f2a4380ea6c: !Template
     answer_choices: null
-    id: 33f8b435-938c-4f3f-8247-0848242a33ad
-    jinja: 'Northern Sotho: {{ sentence_nso }} = Lingala: ||| {{ sentence_lin }}'
+    id: 2fef735f-65a1-45e4-87b3-2f2a4380ea6c
+    jinja: 'Translate this from Swahili into simplified Chinese: {{ sentence_swh }}
+      ||| {{ sentence_zho_simpl }}'
     metadata: *id001
-    name: equals-translation-nso-lin
-    reference: Equals translation (Northern Sotho into Lingala)
-  343896f8-b3bc-4e77-b521-efa290f7bfbc: !Template
+    name: translate-this-swh-zho_simpl
+    reference: Translate this from X to Y (Swahili into simplified Chinese)
+  2ff136e1-70d1-4cd5-a516-647d98387333: !Template
     answer_choices: null
-    id: 343896f8-b3bc-4e77-b521-efa290f7bfbc
-    jinja: 'Xhosa: {{ sentence_xho }} = Brazilian Portuguese: ||| {{ sentence_por
+    id: 2ff136e1-70d1-4cd5-a516-647d98387333
+    jinja: 'Translate this from Kannada into French: {{ sentence_kan }} ||| {{ sentence_fra
       }}'
     metadata: *id001
-    name: equals-translation-xho-por
-    reference: Equals translation (Xhosa into Brazilian Portuguese)
-  344cbfcc-b649-445f-ba40-138aa3848552: !Template
+    name: translate-this-kan-fra
+    reference: Translate this from X to Y (Kannada into French)
+  30414a5c-ed89-47fb-a95a-871fa42d2e71: !Template
     answer_choices: null
-    id: 344cbfcc-b649-445f-ba40-138aa3848552
-    jinja: 'English: {{ sentence_eng }} = Nepali: ||| {{ sentence_npi }}'
+    id: 30414a5c-ed89-47fb-a95a-871fa42d2e71
+    jinja: 'Translate this from Vietnamese into Gujarati: {{ sentence_vie }} ||| {{
+      sentence_guj }}'
     metadata: *id001
-    name: equals-translation-eng-npi
-    reference: Equals translation (English into Nepali)
-  34e8a530-36bb-4ca7-a679-e306b0d98a75: !Template
+    name: translate-this-vie-guj
+    reference: Translate this from X to Y (Vietnamese into Gujarati)
+  30f047ad-947b-4514-a629-9229150dce7f: !Template
     answer_choices: null
-    id: 34e8a530-36bb-4ca7-a679-e306b0d98a75
-    jinja: 'Lingala: {{ sentence_lin }} = English: ||| {{ sentence_eng }}'
+    id: 30f047ad-947b-4514-a629-9229150dce7f
+    jinja: 'Translate this from Wolof into Latin American Spanish: {{ sentence_wol
+      }} ||| {{ sentence_spa }}'
     metadata: *id001
-    name: equals-translation-lin-eng
-    reference: Equals translation (Lingala into English)
-  3508125b-4c52-44f9-bc48-21f43e21a6b7: !Template
+    name: translate-this-wol-spa
+    reference: Translate this from X to Y (Wolof into Latin American Spanish)
+  312c8f54-ba00-42ce-968d-8ba6f0eba95e: !Template
     answer_choices: null
-    id: 3508125b-4c52-44f9-bc48-21f43e21a6b7
-    jinja: 'Hindi: {{ sentence_hin }} = Assamese: ||| {{ sentence_asm }}'
-    metadata: *id001
-    name: equals-translation-hin-asm
-    reference: Equals translation (Hindi into Assamese)
-  351c4ba7-41ce-4ffc-a10d-36460aaceb54: !Template
-    answer_choices: null
-    id: 351c4ba7-41ce-4ffc-a10d-36460aaceb54
-    jinja: 'Oriya: {{ sentence_ory }} = Nepali: ||| {{ sentence_npi }}'
-    metadata: *id001
-    name: equals-translation-ory-npi
-    reference: Equals translation (Oriya into Nepali)
-  35a2cf96-eb36-47fa-ab2d-d06ba2739b10: !Template
-    answer_choices: null
-    id: 35a2cf96-eb36-47fa-ab2d-d06ba2739b10
-    jinja: 'Punjabi: {{ sentence_pan }} = Tamil: ||| {{ sentence_tam }}'
+    id: 312c8f54-ba00-42ce-968d-8ba6f0eba95e
+    jinja: 'Translate this from Telugu into Marathi: {{ sentence_tel }} ||| {{ sentence_mar
+      }}'
     metadata: *id001
-    name: equals-translation-pan-tam
-    reference: Equals translation (Punjabi into Tamil)
-  363b9a30-cce8-4165-8dbd-54c287d7f3db: !Template
+    name: translate-this-tel-mar
+    reference: Translate this from X to Y (Telugu into Marathi)
+  316b9162-5eed-4724-8e31-b1027b0dbcb3: !Template
     answer_choices: null
-    id: 363b9a30-cce8-4165-8dbd-54c287d7f3db
-    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Vietnamese: ||| {{ sentence_vie
+    id: 316b9162-5eed-4724-8e31-b1027b0dbcb3
+    jinja: 'Translate this from Kannada into Oriya: {{ sentence_kan }} ||| {{ sentence_ory
       }}'
     metadata: *id001
-    name: equals-translation-zho_simpl-vie
-    reference: Equals translation (simplified Chinese into Vietnamese)
-  3656855e-c94b-4aa3-886c-d850716caf65: !Template
+    name: translate-this-kan-ory
+    reference: Translate this from X to Y (Kannada into Oriya)
+  31a179a3-3218-4dcf-ac18-a0b353b2061c: !Template
     answer_choices: null
-    id: 3656855e-c94b-4aa3-886c-d850716caf65
-    jinja: 'Northern Sotho: {{ sentence_nso }} = Assamese: ||| {{ sentence_asm }}'
+    id: 31a179a3-3218-4dcf-ac18-a0b353b2061c
+    jinja: 'Translate this from Zulu into Hindi: {{ sentence_zul }} ||| {{ sentence_hin
+      }}'
     metadata: *id001
-    name: equals-translation-nso-asm
-    reference: Equals translation (Northern Sotho into Assamese)
-  36766259-80e7-43d6-801f-2605bf1c94b2: !Template
+    name: translate-this-zul-hin
+    reference: Translate this from X to Y (Zulu into Hindi)
+  31aa9a3b-e873-4e62-b79e-8c9e367fdc75: !Template
     answer_choices: null
-    id: 36766259-80e7-43d6-801f-2605bf1c94b2
-    jinja: 'Yoruba: {{ sentence_yor }} = Northern Sotho: ||| {{ sentence_nso }}'
+    id: 31aa9a3b-e873-4e62-b79e-8c9e367fdc75
+    jinja: 'Translate this from French into Marathi: {{ sentence_fra }} ||| {{ sentence_mar
+      }}'
     metadata: *id001
-    name: equals-translation-yor-nso
-    reference: Equals translation (Yoruba into Northern Sotho)
-  369a2659-8fe5-4b84-b37b-a1c8a88c09d9: !Template
+    name: translate-this-fra-mar
+    reference: Translate this from X to Y (French into Marathi)
+  31d2c373-908a-459b-8a55-90596af3dab0: !Template
     answer_choices: null
-    id: 369a2659-8fe5-4b84-b37b-a1c8a88c09d9
-    jinja: 'French: {{ sentence_fra }} = Telugu: ||| {{ sentence_tel }}'
+    id: 31d2c373-908a-459b-8a55-90596af3dab0
+    jinja: 'Translate this from Tamil into Malayalam: {{ sentence_tam }} ||| {{ sentence_mal
+      }}'
     metadata: *id001
-    name: equals-translation-fra-tel
-    reference: Equals translation (French into Telugu)
-  36dd77cc-c4ce-4ab1-8784-b01c3054879b: !Template
+    name: translate-this-tam-mal
+    reference: Translate this from X to Y (Tamil into Malayalam)
+  31dfa16f-c885-473a-8a8c-625e0424f956: !Template
     answer_choices: null
-    id: 36dd77cc-c4ce-4ab1-8784-b01c3054879b
-    jinja: 'Xhosa: {{ sentence_xho }} = Urdu: ||| {{ sentence_urd }}'
+    id: 31dfa16f-c885-473a-8a8c-625e0424f956
+    jinja: 'Translate this from Kannada into Punjabi: {{ sentence_kan }} ||| {{ sentence_pan
+      }}'
     metadata: *id001
-    name: equals-translation-xho-urd
-    reference: Equals translation (Xhosa into Urdu)
-  3705cee4-3f54-4c14-9d67-416da141348f: !Template
+    name: translate-this-kan-pan
+    reference: Translate this from X to Y (Kannada into Punjabi)
+  321789ba-70b2-48a9-818e-bb3dbc374c6f: !Template
     answer_choices: null
-    id: 3705cee4-3f54-4c14-9d67-416da141348f
-    jinja: 'Malayalam: {{ sentence_mal }} = Indonesian: ||| {{ sentence_ind }}'
+    id: 321789ba-70b2-48a9-818e-bb3dbc374c6f
+    jinja: 'Translate this from Malayalam into Telugu: {{ sentence_mal }} ||| {{ sentence_tel
+      }}'
     metadata: *id001
-    name: equals-translation-mal-ind
-    reference: Equals translation (Malayalam into Indonesian)
-  372ed731-45ca-4396-b894-8ac0b455192f: !Template
+    name: translate-this-mal-tel
+    reference: Translate this from X to Y (Malayalam into Telugu)
+  329221b2-a552-4621-9044-330866e31d0d: !Template
     answer_choices: null
-    id: 372ed731-45ca-4396-b894-8ac0b455192f
-    jinja: 'Marathi: {{ sentence_mar }} = traditional Chinese: ||| {{ sentence_zho_trad
+    id: 329221b2-a552-4621-9044-330866e31d0d
+    jinja: 'Translate this from Urdu into Malayalam: {{ sentence_urd }} ||| {{ sentence_mal
       }}'
     metadata: *id001
-    name: equals-translation-mar-zho_trad
-    reference: Equals translation (Marathi into traditional Chinese)
-  375a1f92-172d-419b-83af-8e9d3c680423: !Template
+    name: translate-this-urd-mal
+    reference: Translate this from X to Y (Urdu into Malayalam)
+  332eba4f-7450-4ef8-8043-55d2760d3438: !Template
     answer_choices: null
-    id: 375a1f92-172d-419b-83af-8e9d3c680423
-    jinja: 'Telugu: {{ sentence_tel }} = Assamese: ||| {{ sentence_asm }}'
+    id: 332eba4f-7450-4ef8-8043-55d2760d3438
+    jinja: 'Translate this from Northern Sotho into Kannada: {{ sentence_nso }} |||
+      {{ sentence_kan }}'
     metadata: *id001
-    name: equals-translation-tel-asm
-    reference: Equals translation (Telugu into Assamese)
-  3761cf5d-1295-4028-a2b0-a77d27936c91: !Template
+    name: translate-this-nso-kan
+    reference: Translate this from X to Y (Northern Sotho into Kannada)
+  334268dd-3037-4e7c-900e-95d1f9933672: !Template
     answer_choices: null
-    id: 3761cf5d-1295-4028-a2b0-a77d27936c91
-    jinja: 'Nepali: {{ sentence_npi }} = Wolof: ||| {{ sentence_wol }}'
+    id: 334268dd-3037-4e7c-900e-95d1f9933672
+    jinja: 'Translate this from French into simplified Chinese: {{ sentence_fra }}
+      ||| {{ sentence_zho_simpl }}'
     metadata: *id001
-    name: equals-translation-npi-wol
-    reference: Equals translation (Nepali into Wolof)
-  37718ab0-ec1a-48a4-afdb-67660db32096: !Template
+    name: translate-this-fra-zho_simpl
+    reference: Translate this from X to Y (French into simplified Chinese)
+  335738fd-bae8-42ca-b8e8-42c6d4c67486: !Template
     answer_choices: null
-    id: 37718ab0-ec1a-48a4-afdb-67660db32096
-    jinja: 'Lingala: {{ sentence_lin }} = Nepali: ||| {{ sentence_npi }}'
+    id: 335738fd-bae8-42ca-b8e8-42c6d4c67486
+    jinja: 'Translate this from Punjabi into Swahili: {{ sentence_pan }} ||| {{ sentence_swh
+      }}'
     metadata: *id001
-    name: equals-translation-lin-npi
-    reference: Equals translation (Lingala into Nepali)
-  37959101-6f56-4318-b0b5-8de6e8502457: !Template
+    name: translate-this-pan-swh
+    reference: Translate this from X to Y (Punjabi into Swahili)
+  340c0617-1eb6-4271-abb1-4951e2d788b5: !Template
     answer_choices: null
-    id: 37959101-6f56-4318-b0b5-8de6e8502457
-    jinja: 'Igbo: {{ sentence_ibo }} = Vietnamese: ||| {{ sentence_vie }}'
+    id: 340c0617-1eb6-4271-abb1-4951e2d788b5
+    jinja: 'Translate this from Marathi into Malayalam: {{ sentence_mar }} ||| {{
+      sentence_mal }}'
     metadata: *id001
-    name: equals-translation-ibo-vie
-    reference: Equals translation (Igbo into Vietnamese)
-  380350d1-af62-4b79-8ac7-06fb3b71135d: !Template
+    name: translate-this-mar-mal
+    reference: Translate this from X to Y (Marathi into Malayalam)
+  34245bfa-a59a-4fd6-ba51-5d75b699dbe8: !Template
     answer_choices: null
-    id: 380350d1-af62-4b79-8ac7-06fb3b71135d
-    jinja: 'Catalan: {{ sentence_cat }} = French: ||| {{ sentence_fra }}'
+    id: 34245bfa-a59a-4fd6-ba51-5d75b699dbe8
+    jinja: 'Translate this from Oriya into English: {{ sentence_ory }} ||| {{ sentence_eng
+      }}'
     metadata: *id001
-    name: equals-translation-cat-fra
-    reference: Equals translation (Catalan into French)
-  380e0776-5e39-49f7-8d35-1fa89ca60f4a: !Template
+    name: translate-this-ory-eng
+    reference: Translate this from X to Y (Oriya into English)
+  342b2e83-a2ce-48bb-af68-07c27f45df0d: !Template
     answer_choices: null
-    id: 380e0776-5e39-49f7-8d35-1fa89ca60f4a
-    jinja: 'French: {{ sentence_fra }} = simplified Chinese: ||| {{ sentence_zho_simpl
+    id: 342b2e83-a2ce-48bb-af68-07c27f45df0d
+    jinja: 'Translate this from Zulu into Nepali: {{ sentence_zul }} ||| {{ sentence_npi
       }}'
     metadata: *id001
-    name: equals-translation-fra-zho_simpl
-    reference: Equals translation (French into simplified Chinese)
-  38df746b-5633-4e91-912a-33eee80e5c32: !Template
+    name: translate-this-zul-npi
+    reference: Translate this from X to Y (Zulu into Nepali)
+  343af426-cf35-4573-af03-5b511214c228: !Template
     answer_choices: null
-    id: 38df746b-5633-4e91-912a-33eee80e5c32
-    jinja: 'Punjabi: {{ sentence_pan }} = Northern Sotho: ||| {{ sentence_nso }}'
+    id: 343af426-cf35-4573-af03-5b511214c228
+    jinja: 'Translate this from Catalan into Marathi: {{ sentence_cat }} ||| {{ sentence_mar
+      }}'
     metadata: *id001
-    name: equals-translation-pan-nso
-    reference: Equals translation (Punjabi into Northern Sotho)
-  39085c2d-0d67-4bf3-b56d-1d833a37d137: !Template
+    name: translate-this-cat-mar
+    reference: Translate this from X to Y (Catalan into Marathi)
+  34484e56-eb9b-40c4-905e-81502e3f572f: !Template
     answer_choices: null
-    id: 39085c2d-0d67-4bf3-b56d-1d833a37d137
-    jinja: 'Malayalam: {{ sentence_mal }} = Punjabi: ||| {{ sentence_pan }}'
+    id: 34484e56-eb9b-40c4-905e-81502e3f572f
+    jinja: 'Translate this from Malayalam into Latin American Spanish: {{ sentence_mal
+      }} ||| {{ sentence_spa }}'
     metadata: *id001
-    name: equals-translation-mal-pan
-    reference: Equals translation (Malayalam into Punjabi)
-  3939c33e-08a1-415e-a0ae-30028a954a1f: !Template
+    name: translate-this-mal-spa
+    reference: Translate this from X to Y (Malayalam into Latin American Spanish)
+  345ca784-292c-46b2-b7d0-630dd811a2bd: !Template
     answer_choices: null
-    id: 3939c33e-08a1-415e-a0ae-30028a954a1f
-    jinja: 'Assamese: {{ sentence_asm }} = Malayalam: ||| {{ sentence_mal }}'
+    id: 345ca784-292c-46b2-b7d0-630dd811a2bd
+    jinja: 'Translate this from Vietnamese into Arabic: {{ sentence_vie }} ||| {{
+      sentence_ara }}'
     metadata: *id001
-    name: equals-translation-asm-mal
-    reference: Equals translation (Assamese into Malayalam)
-  393d0f40-b1aa-4f00-b5a2-d43477f44f1b: !Template
+    name: translate-this-vie-ara
+    reference: Translate this from X to Y (Vietnamese into Arabic)
+  3488421b-64b2-4cb6-91b5-a87ff94c5fca: !Template
     answer_choices: null
-    id: 393d0f40-b1aa-4f00-b5a2-d43477f44f1b
-    jinja: 'Tamil: {{ sentence_tam }} = Northern Sotho: ||| {{ sentence_nso }}'
+    id: 3488421b-64b2-4cb6-91b5-a87ff94c5fca
+    jinja: 'Translate this from Lingala into Igbo: {{ sentence_lin }} ||| {{ sentence_ibo
+      }}'
     metadata: *id001
-    name: equals-translation-tam-nso
-    reference: Equals translation (Tamil into Northern Sotho)
-  397e8ff6-7489-4a38-962f-8cf758598121: !Template
+    name: translate-this-lin-ibo
+    reference: Translate this from X to Y (Lingala into Igbo)
+  34f82676-2894-46aa-9573-a6f72151ade5: !Template
     answer_choices: null
-    id: 397e8ff6-7489-4a38-962f-8cf758598121
-    jinja: 'Urdu: {{ sentence_urd }} = Yoruba: ||| {{ sentence_yor }}'
+    id: 34f82676-2894-46aa-9573-a6f72151ade5
+    jinja: 'Translate this from Vietnamese into Brazilian Portuguese: {{ sentence_vie
+      }} ||| {{ sentence_por }}'
     metadata: *id001
-    name: equals-translation-urd-yor
-    reference: Equals translation (Urdu into Yoruba)
-  39f66b4d-87e0-4c6f-9dd1-c9b212ee5f8c: !Template
+    name: translate-this-vie-por
+    reference: Translate this from X to Y (Vietnamese into Brazilian Portuguese)
+  35450008-fbcd-42b7-b29d-da2db101a989: !Template
     answer_choices: null
-    id: 39f66b4d-87e0-4c6f-9dd1-c9b212ee5f8c
-    jinja: 'Lingala: {{ sentence_lin }} = Latin American Spanish: ||| {{ sentence_spa
+    id: 35450008-fbcd-42b7-b29d-da2db101a989
+    jinja: 'Translate this from Nepali into Gujarati: {{ sentence_npi }} ||| {{ sentence_guj
       }}'
     metadata: *id001
-    name: equals-translation-lin-spa
-    reference: Equals translation (Lingala into Latin American Spanish)
-  3b214302-abf1-4476-b718-99faaf7de959: !Template
+    name: translate-this-npi-guj
+    reference: Translate this from X to Y (Nepali into Gujarati)
+  354965d8-cb27-4b7f-874f-ccc7c18704d5: !Template
     answer_choices: null
-    id: 3b214302-abf1-4476-b718-99faaf7de959
-    jinja: 'Zulu: {{ sentence_zul }} = Vietnamese: ||| {{ sentence_vie }}'
+    id: 354965d8-cb27-4b7f-874f-ccc7c18704d5
+    jinja: 'Translate this from Indonesian into Gujarati: {{ sentence_ind }} ||| {{
+      sentence_guj }}'
     metadata: *id001
-    name: equals-translation-zul-vie
-    reference: Equals translation (Zulu into Vietnamese)
-  3b40c32a-5d18-4472-833e-85c2aebb09b9: !Template
+    name: translate-this-ind-guj
+    reference: Translate this from X to Y (Indonesian into Gujarati)
+  357d0e4c-d65d-4867-aa06-0459c20cf4d3: !Template
     answer_choices: null
-    id: 3b40c32a-5d18-4472-833e-85c2aebb09b9
-    jinja: 'Arabic: {{ sentence_ara }} = traditional Chinese: ||| {{ sentence_zho_trad
-      }}'
+    id: 357d0e4c-d65d-4867-aa06-0459c20cf4d3
+    jinja: 'Translate this from simplified Chinese into Igbo: {{ sentence_zho_simpl
+      }} ||| {{ sentence_ibo }}'
     metadata: *id001
-    name: equals-translation-ara-zho_trad
-    reference: Equals translation (Arabic into traditional Chinese)
-  3ba51744-5c32-4742-a893-11cebc746a7f: !Template
+    name: translate-this-zho_simpl-ibo
+    reference: Translate this from X to Y (simplified Chinese into Igbo)
+  35f6cf6c-bd5d-411f-ae85-2e37dad81ecf: !Template
     answer_choices: null
-    id: 3ba51744-5c32-4742-a893-11cebc746a7f
-    jinja: 'Zulu: {{ sentence_zul }} = Nepali: ||| {{ sentence_npi }}'
+    id: 35f6cf6c-bd5d-411f-ae85-2e37dad81ecf
+    jinja: 'Translate this from Vietnamese into Northern Sotho: {{ sentence_vie }}
+      ||| {{ sentence_nso }}'
     metadata: *id001
-    name: equals-translation-zul-npi
-    reference: Equals translation (Zulu into Nepali)
-  3bf7ddec-d379-441c-81fc-4fa28141501f: !Template
+    name: translate-this-vie-nso
+    reference: Translate this from X to Y (Vietnamese into Northern Sotho)
+  3653c669-046e-4b85-b1a9-589550efc882: !Template
     answer_choices: null
-    id: 3bf7ddec-d379-441c-81fc-4fa28141501f
-    jinja: 'Tamil: {{ sentence_tam }} = simplified Chinese: ||| {{ sentence_zho_simpl
+    id: 3653c669-046e-4b85-b1a9-589550efc882
+    jinja: 'Translate this from Yoruba into Gujarati: {{ sentence_yor }} ||| {{ sentence_guj
       }}'
     metadata: *id001
-    name: equals-translation-tam-zho_simpl
-    reference: Equals translation (Tamil into simplified Chinese)
-  3c36bef0-d301-42a3-a13f-67c51decfe3c: !Template
+    name: translate-this-yor-guj
+    reference: Translate this from X to Y (Yoruba into Gujarati)
+  36c19d61-a33f-4ee1-8e02-3d6e44035be0: !Template
     answer_choices: null
-    id: 3c36bef0-d301-42a3-a13f-67c51decfe3c
-    jinja: 'French: {{ sentence_fra }} = Latin American Spanish: ||| {{ sentence_spa
+    id: 36c19d61-a33f-4ee1-8e02-3d6e44035be0
+    jinja: 'Translate this from Igbo into Kannada: {{ sentence_ibo }} ||| {{ sentence_kan
       }}'
     metadata: *id001
-    name: equals-translation-fra-spa
-    reference: Equals translation (French into Latin American Spanish)
-  3cd58bbf-b2bb-4c0e-9028-f4bac079f9ac: !Template
+    name: translate-this-ibo-kan
+    reference: Translate this from X to Y (Igbo into Kannada)
+  37374ee3-1885-4621-b013-2cd1e72d82e9: !Template
     answer_choices: null
-    id: 3cd58bbf-b2bb-4c0e-9028-f4bac079f9ac
-    jinja: 'Zulu: {{ sentence_zul }} = Xhosa: ||| {{ sentence_xho }}'
+    id: 37374ee3-1885-4621-b013-2cd1e72d82e9
+    jinja: 'Translate this from Brazilian Portuguese into Oriya: {{ sentence_por }}
+      ||| {{ sentence_ory }}'
     metadata: *id001
-    name: equals-translation-zul-xho
-    reference: Equals translation (Zulu into Xhosa)
-  3d0dbc1f-4f6e-4847-946e-1dd3e602b3fc: !Template
+    name: translate-this-por-ory
+    reference: Translate this from X to Y (Brazilian Portuguese into Oriya)
+  379d3096-f2fe-449f-b205-363fd989132e: !Template
     answer_choices: null
-    id: 3d0dbc1f-4f6e-4847-946e-1dd3e602b3fc
-    jinja: 'Vietnamese: {{ sentence_vie }} = Yoruba: ||| {{ sentence_yor }}'
+    id: 379d3096-f2fe-449f-b205-363fd989132e
+    jinja: 'Translate this from Latin American Spanish into Telugu: {{ sentence_spa
+      }} ||| {{ sentence_tel }}'
     metadata: *id001
-    name: equals-translation-vie-yor
-    reference: Equals translation (Vietnamese into Yoruba)
-  3d3ac306-e0be-439a-9d85-1b7c63533888: !Template
+    name: translate-this-spa-tel
+    reference: Translate this from X to Y (Latin American Spanish into Telugu)
+  37b2f096-998e-43b2-bbfb-2172de8133e6: !Template
     answer_choices: null
-    id: 3d3ac306-e0be-439a-9d85-1b7c63533888
-    jinja: 'Oriya: {{ sentence_ory }} = Wolof: ||| {{ sentence_wol }}'
+    id: 37b2f096-998e-43b2-bbfb-2172de8133e6
+    jinja: 'Translate this from traditional Chinese into Vietnamese: {{ sentence_zho_trad
+      }} ||| {{ sentence_vie }}'
     metadata: *id001
-    name: equals-translation-ory-wol
-    reference: Equals translation (Oriya into Wolof)
-  3d67b93b-ba74-48c6-9f59-19df89a7ec00: !Template
+    name: translate-this-zho_trad-vie
+    reference: Translate this from X to Y (traditional Chinese into Vietnamese)
+  37b81518-04b5-4042-8694-3bef0799a56d: !Template
     answer_choices: null
-    id: 3d67b93b-ba74-48c6-9f59-19df89a7ec00
-    jinja: 'Bengali: {{ sentence_ben }} = Tamil: ||| {{ sentence_tam }}'
+    id: 37b81518-04b5-4042-8694-3bef0799a56d
+    jinja: 'Translate this from Catalan into French: {{ sentence_cat }} ||| {{ sentence_fra
+      }}'
     metadata: *id001
-    name: equals-translation-ben-tam
-    reference: Equals translation (Bengali into Tamil)
-  3d77b729-379e-4098-9947-99bd5ed607cd: !Template
+    name: translate-this-cat-fra
+    reference: Translate this from X to Y (Catalan into French)
+  381faccd-e25c-4417-a3ab-b6b200478f6a: !Template
     answer_choices: null
-    id: 3d77b729-379e-4098-9947-99bd5ed607cd
-    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Telugu: ||| {{ sentence_tel
+    id: 381faccd-e25c-4417-a3ab-b6b200478f6a
+    jinja: 'Translate this from Tamil into Bengali: {{ sentence_tam }} ||| {{ sentence_ben
       }}'
     metadata: *id001
-    name: equals-translation-zho_simpl-tel
-    reference: Equals translation (simplified Chinese into Telugu)
-  3dcbab16-5ad1-440f-8eeb-3dabae9f59b6: !Template
+    name: translate-this-tam-ben
+    reference: Translate this from X to Y (Tamil into Bengali)
+  3845a21c-2db9-40b9-903f-878c8e8d9a6c: !Template
     answer_choices: null
-    id: 3dcbab16-5ad1-440f-8eeb-3dabae9f59b6
-    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Northern Sotho: ||| {{
-      sentence_nso }}'
+    id: 3845a21c-2db9-40b9-903f-878c8e8d9a6c
+    jinja: 'Translate this from Vietnamese into Malayalam: {{ sentence_vie }} |||
+      {{ sentence_mal }}'
     metadata: *id001
-    name: equals-translation-zho_simpl-nso
-    reference: Equals translation (simplified Chinese into Northern Sotho)
-  3dd98ba8-5fcc-42cd-9a17-ecbf6bcaaeed: !Template
+    name: translate-this-vie-mal
+    reference: Translate this from X to Y (Vietnamese into Malayalam)
+  38a522d9-2059-48e8-bcb3-e32cebb59e65: !Template
     answer_choices: null
-    id: 3dd98ba8-5fcc-42cd-9a17-ecbf6bcaaeed
-    jinja: 'Gujarati: {{ sentence_guj }} = simplified Chinese: ||| {{ sentence_zho_simpl
+    id: 38a522d9-2059-48e8-bcb3-e32cebb59e65
+    jinja: 'Translate this from Xhosa into Yoruba: {{ sentence_xho }} ||| {{ sentence_yor
       }}'
     metadata: *id001
-    name: equals-translation-guj-zho_simpl
-    reference: Equals translation (Gujarati into simplified Chinese)
-  3df808f2-d7f5-4c26-98ac-e9985ea09bef: !Template
+    name: translate-this-xho-yor
+    reference: Translate this from X to Y (Xhosa into Yoruba)
+  38b7ba72-c011-456c-ae6f-f43b0d79354b: !Template
+    answer_choices: null
+    id: 38b7ba72-c011-456c-ae6f-f43b0d79354b
+    jinja: 'Translate this from simplified Chinese into traditional Chinese: {{ sentence_zho_simpl
+      }} ||| {{ sentence_zho_trad }}'
+    metadata: *id001
+    name: translate-this-zho_simpl-zho_trad
+    reference: Translate this from X to Y (simplified Chinese into traditional Chinese)
+  38b7cbac-4a2a-423f-a069-8be28c2f854d: !Template
     answer_choices: null
-    id: 3df808f2-d7f5-4c26-98ac-e9985ea09bef
-    jinja: 'Arabic: {{ sentence_ara }} = Tamil: ||| {{ sentence_tam }}'
+    id: 38b7cbac-4a2a-423f-a069-8be28c2f854d
+    jinja: 'Translate this from Catalan into Latin American Spanish: {{ sentence_cat
+      }} ||| {{ sentence_spa }}'
     metadata: *id001
-    name: equals-translation-ara-tam
-    reference: Equals translation (Arabic into Tamil)
-  3e268eae-d3d2-453f-bd20-4375480ffb05: !Template
+    name: translate-this-cat-spa
+    reference: Translate this from X to Y (Catalan into Latin American Spanish)
+  38bee26a-2696-4fa6-baf6-66a94e5c8c1f: !Template
     answer_choices: null
-    id: 3e268eae-d3d2-453f-bd20-4375480ffb05
-    jinja: 'Latin American Spanish: {{ sentence_spa }} = Lingala: ||| {{ sentence_lin
+    id: 38bee26a-2696-4fa6-baf6-66a94e5c8c1f
+    jinja: 'Translate this from Hindi into Swahili: {{ sentence_hin }} ||| {{ sentence_swh
       }}'
     metadata: *id001
-    name: equals-translation-spa-lin
-    reference: Equals translation (Latin American Spanish into Lingala)
-  3edc4f0a-d0f4-4c78-92bf-510091629da7: !Template
+    name: translate-this-hin-swh
+    reference: Translate this from X to Y (Hindi into Swahili)
+  38ee45d8-125c-46b6-ac5c-531c769ddb1f: !Template
     answer_choices: null
-    id: 3edc4f0a-d0f4-4c78-92bf-510091629da7
-    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Catalan: ||| {{ sentence_cat
+    id: 38ee45d8-125c-46b6-ac5c-531c769ddb1f
+    jinja: 'Translate this from Igbo into Assamese: {{ sentence_ibo }} ||| {{ sentence_asm
       }}'
     metadata: *id001
-    name: equals-translation-zho_simpl-cat
-    reference: Equals translation (simplified Chinese into Catalan)
-  3fa44de6-a012-4ff2-8567-d2f0d3728b38: !Template
+    name: translate-this-ibo-asm
+    reference: Translate this from X to Y (Igbo into Assamese)
+  39963263-7b8d-47b9-ba6b-9896a900010a: !Template
     answer_choices: null
-    id: 3fa44de6-a012-4ff2-8567-d2f0d3728b38
-    jinja: 'Hindi: {{ sentence_hin }} = Xhosa: ||| {{ sentence_xho }}'
+    id: 39963263-7b8d-47b9-ba6b-9896a900010a
+    jinja: 'Translate this from Zulu into simplified Chinese: {{ sentence_zul }} |||
+      {{ sentence_zho_simpl }}'
     metadata: *id001
-    name: equals-translation-hin-xho
-    reference: Equals translation (Hindi into Xhosa)
-  40da0330-6f47-48ec-855b-304e375cb0c5: !Template
+    name: translate-this-zul-zho_simpl
+    reference: Translate this from X to Y (Zulu into simplified Chinese)
+  39d3a733-a5d1-436f-b84e-469c10653413: !Template
     answer_choices: null
-    id: 40da0330-6f47-48ec-855b-304e375cb0c5
-    jinja: 'Latin American Spanish: {{ sentence_spa }} = Gujarati: ||| {{ sentence_guj
+    id: 39d3a733-a5d1-436f-b84e-469c10653413
+    jinja: 'Translate this from Yoruba into Nepali: {{ sentence_yor }} ||| {{ sentence_npi
       }}'
     metadata: *id001
-    name: equals-translation-spa-guj
-    reference: Equals translation (Latin American Spanish into Gujarati)
-  40fe62aa-8830-4186-a979-54e5c9b5692b: !Template
+    name: translate-this-yor-npi
+    reference: Translate this from X to Y (Yoruba into Nepali)
+  39db63c0-0592-44fe-bbfe-a265b602bd6c: !Template
     answer_choices: null
-    id: 40fe62aa-8830-4186-a979-54e5c9b5692b
-    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Nepali: ||| {{ sentence_npi
+    id: 39db63c0-0592-44fe-bbfe-a265b602bd6c
+    jinja: 'Translate this from Zulu into French: {{ sentence_zul }} ||| {{ sentence_fra
       }}'
     metadata: *id001
-    name: equals-translation-por-npi
-    reference: Equals translation (Brazilian Portuguese into Nepali)
-  4134f495-1bb9-450d-9bac-1f6944d12266: !Template
+    name: translate-this-zul-fra
+    reference: Translate this from X to Y (Zulu into French)
+  3a172f2b-74af-4523-ba1e-2124158b725f: !Template
     answer_choices: null
-    id: 4134f495-1bb9-450d-9bac-1f6944d12266
-    jinja: 'Vietnamese: {{ sentence_vie }} = Catalan: ||| {{ sentence_cat }}'
+    id: 3a172f2b-74af-4523-ba1e-2124158b725f
+    jinja: 'Translate this from Telugu into Hindi: {{ sentence_tel }} ||| {{ sentence_hin
+      }}'
     metadata: *id001
-    name: equals-translation-vie-cat
-    reference: Equals translation (Vietnamese into Catalan)
-  41932377-5ffd-4523-bfca-308d34d892f2: !Template
+    name: translate-this-tel-hin
+    reference: Translate this from X to Y (Telugu into Hindi)
+  3a27a4ab-8023-4863-a557-dcf911e653a5: !Template
     answer_choices: null
-    id: 41932377-5ffd-4523-bfca-308d34d892f2
-    jinja: 'French: {{ sentence_fra }} = Urdu: ||| {{ sentence_urd }}'
+    id: 3a27a4ab-8023-4863-a557-dcf911e653a5
+    jinja: 'Translate this from Bengali into English: {{ sentence_ben }} ||| {{ sentence_eng
+      }}'
     metadata: *id001
-    name: equals-translation-fra-urd
-    reference: Equals translation (French into Urdu)
-  41bcc511-4f03-44b3-8613-200839cce312: !Template
+    name: translate-this-ben-eng
+    reference: Translate this from X to Y (Bengali into English)
+  3a9272ed-b11b-4f01-a24e-6cf719e6c312: !Template
     answer_choices: null
-    id: 41bcc511-4f03-44b3-8613-200839cce312
-    jinja: 'Gujarati: {{ sentence_guj }} = Yoruba: ||| {{ sentence_yor }}'
+    id: 3a9272ed-b11b-4f01-a24e-6cf719e6c312
+    jinja: 'Translate this from Wolof into simplified Chinese: {{ sentence_wol }}
+      ||| {{ sentence_zho_simpl }}'
     metadata: *id001
-    name: equals-translation-guj-yor
-    reference: Equals translation (Gujarati into Yoruba)
-  41d5e6fe-d4c1-4bab-b865-3ce6236334c3: !Template
+    name: translate-this-wol-zho_simpl
+    reference: Translate this from X to Y (Wolof into simplified Chinese)
+  3a92eb4b-ab1d-4ece-bbca-70e4dbccfed5: !Template
     answer_choices: null
-    id: 41d5e6fe-d4c1-4bab-b865-3ce6236334c3
-    jinja: 'Catalan: {{ sentence_cat }} = Nepali: ||| {{ sentence_npi }}'
+    id: 3a92eb4b-ab1d-4ece-bbca-70e4dbccfed5
+    jinja: 'Translate this from Vietnamese into Nepali: {{ sentence_vie }} ||| {{
+      sentence_npi }}'
     metadata: *id001
-    name: equals-translation-cat-npi
-    reference: Equals translation (Catalan into Nepali)
-  41f6026f-f23b-4149-a920-e2aa418982bf: !Template
+    name: translate-this-vie-npi
+    reference: Translate this from X to Y (Vietnamese into Nepali)
+  3b496a5b-678a-4ecc-a5fb-1c01e79413fb: !Template
     answer_choices: null
-    id: 41f6026f-f23b-4149-a920-e2aa418982bf
-    jinja: 'Hindi: {{ sentence_hin }} = Telugu: ||| {{ sentence_tel }}'
+    id: 3b496a5b-678a-4ecc-a5fb-1c01e79413fb
+    jinja: 'Translate this from Malayalam into Yoruba: {{ sentence_mal }} ||| {{ sentence_yor
+      }}'
     metadata: *id001
-    name: equals-translation-hin-tel
-    reference: Equals translation (Hindi into Telugu)
-  420416e9-6e1f-4aad-86b0-31d0923e8f5d: !Template
+    name: translate-this-mal-yor
+    reference: Translate this from X to Y (Malayalam into Yoruba)
+  3c51b4e9-b72d-45c1-adfc-0bb65c20f3d7: !Template
     answer_choices: null
-    id: 420416e9-6e1f-4aad-86b0-31d0923e8f5d
-    jinja: 'Gujarati: {{ sentence_guj }} = Swahili: ||| {{ sentence_swh }}'
+    id: 3c51b4e9-b72d-45c1-adfc-0bb65c20f3d7
+    jinja: 'Translate this from Latin American Spanish into Malayalam: {{ sentence_spa
+      }} ||| {{ sentence_mal }}'
     metadata: *id001
-    name: equals-translation-guj-swh
-    reference: Equals translation (Gujarati into Swahili)
-  420ce512-0222-4a46-8ba3-173f1040d660: !Template
+    name: translate-this-spa-mal
+    reference: Translate this from X to Y (Latin American Spanish into Malayalam)
+  3cd20a11-9e88-4fc7-908c-12bb9c39371f: !Template
     answer_choices: null
-    id: 420ce512-0222-4a46-8ba3-173f1040d660
-    jinja: 'English: {{ sentence_eng }} = Arabic: ||| {{ sentence_ara }}'
+    id: 3cd20a11-9e88-4fc7-908c-12bb9c39371f
+    jinja: 'Translate this from Hindi into Brazilian Portuguese: {{ sentence_hin }}
+      ||| {{ sentence_por }}'
     metadata: *id001
-    name: equals-translation-eng-ara
-    reference: Equals translation (English into Arabic)
-  422bc678-9138-4a29-af49-d62bf550accf: !Template
+    name: translate-this-hin-por
+    reference: Translate this from X to Y (Hindi into Brazilian Portuguese)
+  3d0bd5a0-6094-4f2b-a7fa-4a279b2432ca: !Template
     answer_choices: null
-    id: 422bc678-9138-4a29-af49-d62bf550accf
-    jinja: 'Oriya: {{ sentence_ory }} = simplified Chinese: ||| {{ sentence_zho_simpl
-      }}'
+    id: 3d0bd5a0-6094-4f2b-a7fa-4a279b2432ca
+    jinja: 'Translate this from simplified Chinese into Wolof: {{ sentence_zho_simpl
+      }} ||| {{ sentence_wol }}'
     metadata: *id001
-    name: equals-translation-ory-zho_simpl
-    reference: Equals translation (Oriya into simplified Chinese)
-  4231dd44-56bd-46ae-8d7e-ef9cf729a538: !Template
+    name: translate-this-zho_simpl-wol
+    reference: Translate this from X to Y (simplified Chinese into Wolof)
+  3d33b995-be66-41fc-b3f9-5a779b4b142b: !Template
     answer_choices: null
-    id: 4231dd44-56bd-46ae-8d7e-ef9cf729a538
-    jinja: 'Punjabi: {{ sentence_pan }} = Nepali: ||| {{ sentence_npi }}'
+    id: 3d33b995-be66-41fc-b3f9-5a779b4b142b
+    jinja: 'Translate this from Indonesian into Igbo: {{ sentence_ind }} ||| {{ sentence_ibo
+      }}'
     metadata: *id001
-    name: equals-translation-pan-npi
-    reference: Equals translation (Punjabi into Nepali)
-  4283a5ab-b8f2-448c-a08e-f66b7edfb407: !Template
+    name: translate-this-ind-ibo
+    reference: Translate this from X to Y (Indonesian into Igbo)
+  3dad4846-e466-4d2f-89a8-d7a77f138617: !Template
     answer_choices: null
-    id: 4283a5ab-b8f2-448c-a08e-f66b7edfb407
-    jinja: 'Igbo: {{ sentence_ibo }} = Arabic: ||| {{ sentence_ara }}'
+    id: 3dad4846-e466-4d2f-89a8-d7a77f138617
+    jinja: 'Translate this from Tamil into Northern Sotho: {{ sentence_tam }} |||
+      {{ sentence_nso }}'
     metadata: *id001
-    name: equals-translation-ibo-ara
-    reference: Equals translation (Igbo into Arabic)
-  42a2eca2-9dc4-454c-9db8-d9cd787ea3b4: !Template
+    name: translate-this-tam-nso
+    reference: Translate this from X to Y (Tamil into Northern Sotho)
+  3ddd05ca-a388-487f-b1ef-37feffb8c364: !Template
     answer_choices: null
-    id: 42a2eca2-9dc4-454c-9db8-d9cd787ea3b4
-    jinja: 'Indonesian: {{ sentence_ind }} = Kannada: ||| {{ sentence_kan }}'
+    id: 3ddd05ca-a388-487f-b1ef-37feffb8c364
+    jinja: 'Translate this from Indonesian into Tamil: {{ sentence_ind }} ||| {{ sentence_tam
+      }}'
     metadata: *id001
-    name: equals-translation-ind-kan
-    reference: Equals translation (Indonesian into Kannada)
-  42b68e18-d2a7-41e5-ab3d-d43000c78963: !Template
+    name: translate-this-ind-tam
+    reference: Translate this from X to Y (Indonesian into Tamil)
+  3e4f51cb-3705-4cb4-a864-566cefd21397: !Template
     answer_choices: null
-    id: 42b68e18-d2a7-41e5-ab3d-d43000c78963
-    jinja: 'Urdu: {{ sentence_urd }} = Wolof: ||| {{ sentence_wol }}'
+    id: 3e4f51cb-3705-4cb4-a864-566cefd21397
+    jinja: 'Translate this from English into Lingala: {{ sentence_eng }} ||| {{ sentence_lin
+      }}'
     metadata: *id001
-    name: equals-translation-urd-wol
-    reference: Equals translation (Urdu into Wolof)
-  4338d602-8ae5-4c77-8b8b-96ff42bb287d: !Template
+    name: translate-this-eng-lin
+    reference: Translate this from X to Y (English into Lingala)
+  3e948529-8793-4846-b57b-8cd66ef29780: !Template
     answer_choices: null
-    id: 4338d602-8ae5-4c77-8b8b-96ff42bb287d
-    jinja: 'Nepali: {{ sentence_npi }} = Zulu: ||| {{ sentence_zul }}'
+    id: 3e948529-8793-4846-b57b-8cd66ef29780
+    jinja: 'Translate this from Brazilian Portuguese into Hindi: {{ sentence_por }}
+      ||| {{ sentence_hin }}'
     metadata: *id001
-    name: equals-translation-npi-zul
-    reference: Equals translation (Nepali into Zulu)
-  434995fc-2356-4829-904f-a55d45091a9a: !Template
+    name: translate-this-por-hin
+    reference: Translate this from X to Y (Brazilian Portuguese into Hindi)
+  3e95fc83-b9b6-4198-aa90-67e5f157d365: !Template
     answer_choices: null
-    id: 434995fc-2356-4829-904f-a55d45091a9a
-    jinja: 'Telugu: {{ sentence_tel }} = Urdu: ||| {{ sentence_urd }}'
+    id: 3e95fc83-b9b6-4198-aa90-67e5f157d365
+    jinja: 'Translate this from traditional Chinese into Urdu: {{ sentence_zho_trad
+      }} ||| {{ sentence_urd }}'
     metadata: *id001
-    name: equals-translation-tel-urd
-    reference: Equals translation (Telugu into Urdu)
-  43786fec-70cc-4306-b56b-8c24421a8af9: !Template
+    name: translate-this-zho_trad-urd
+    reference: Translate this from X to Y (traditional Chinese into Urdu)
+  3f714327-f6aa-438b-b28e-2da107c89572: !Template
     answer_choices: null
-    id: 43786fec-70cc-4306-b56b-8c24421a8af9
-    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = traditional Chinese: |||
-      {{ sentence_zho_trad }}'
+    id: 3f714327-f6aa-438b-b28e-2da107c89572
+    jinja: 'Translate this from Xhosa into Arabic: {{ sentence_xho }} ||| {{ sentence_ara
+      }}'
     metadata: *id001
-    name: equals-translation-zho_simpl-zho_trad
-    reference: Equals translation (simplified Chinese into traditional Chinese)
-  43847177-7cbf-4667-90e3-306516f57ae3: !Template
+    name: translate-this-xho-ara
+    reference: Translate this from X to Y (Xhosa into Arabic)
+  3f7fd9f3-6e50-4507-96ad-7a364638bd97: !Template
     answer_choices: null
-    id: 43847177-7cbf-4667-90e3-306516f57ae3
-    jinja: 'Tamil: {{ sentence_tam }} = Telugu: ||| {{ sentence_tel }}'
+    id: 3f7fd9f3-6e50-4507-96ad-7a364638bd97
+    jinja: 'Translate this from French into Oriya: {{ sentence_fra }} ||| {{ sentence_ory
+      }}'
     metadata: *id001
-    name: equals-translation-tam-tel
-    reference: Equals translation (Tamil into Telugu)
-  43907742-da98-4258-9155-6c6e7d09e908: !Template
+    name: translate-this-fra-ory
+    reference: Translate this from X to Y (French into Oriya)
+  3fee64be-c6fe-4e04-8a71-eeaa3d3c9e83: !Template
     answer_choices: null
-    id: 43907742-da98-4258-9155-6c6e7d09e908
-    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Bengali: ||| {{ sentence_ben
-      }}'
+    id: 3fee64be-c6fe-4e04-8a71-eeaa3d3c9e83
+    jinja: 'Translate this from Telugu into Vietnamese: {{ sentence_tel }} ||| {{
+      sentence_vie }}'
     metadata: *id001
-    name: equals-translation-zho_simpl-ben
-    reference: Equals translation (simplified Chinese into Bengali)
-  43d7ff12-c48f-4ecc-8bfb-a7694eb4839b: !Template
+    name: translate-this-tel-vie
+    reference: Translate this from X to Y (Telugu into Vietnamese)
+  3fffeea8-4c30-4bba-b34e-e60817a367a0: !Template
     answer_choices: null
-    id: 43d7ff12-c48f-4ecc-8bfb-a7694eb4839b
-    jinja: 'Swahili: {{ sentence_swh }} = Nepali: ||| {{ sentence_npi }}'
+    id: 3fffeea8-4c30-4bba-b34e-e60817a367a0
+    jinja: 'Translate this from traditional Chinese into Wolof: {{ sentence_zho_trad
+      }} ||| {{ sentence_wol }}'
     metadata: *id001
-    name: equals-translation-swh-npi
-    reference: Equals translation (Swahili into Nepali)
-  444d439e-e63c-4349-951e-9033d28ef56e: !Template
+    name: translate-this-zho_trad-wol
+    reference: Translate this from X to Y (traditional Chinese into Wolof)
+  405156e2-cdff-4a28-8188-92afe053dc3d: !Template
     answer_choices: null
-    id: 444d439e-e63c-4349-951e-9033d28ef56e
-    jinja: 'Latin American Spanish: {{ sentence_spa }} = Zulu: ||| {{ sentence_zul
+    id: 405156e2-cdff-4a28-8188-92afe053dc3d
+    jinja: 'Translate this from Igbo into Urdu: {{ sentence_ibo }} ||| {{ sentence_urd
       }}'
     metadata: *id001
-    name: equals-translation-spa-zul
-    reference: Equals translation (Latin American Spanish into Zulu)
-  447e8bab-de9d-4163-8232-6621e76c922e: !Template
+    name: translate-this-ibo-urd
+    reference: Translate this from X to Y (Igbo into Urdu)
+  4079cb9e-f758-46b0-8dcc-24c2b819d796: !Template
     answer_choices: null
-    id: 447e8bab-de9d-4163-8232-6621e76c922e
-    jinja: 'Lingala: {{ sentence_lin }} = Igbo: ||| {{ sentence_ibo }}'
+    id: 4079cb9e-f758-46b0-8dcc-24c2b819d796
+    jinja: 'Translate this from Brazilian Portuguese into Telugu: {{ sentence_por
+      }} ||| {{ sentence_tel }}'
     metadata: *id001
-    name: equals-translation-lin-ibo
-    reference: Equals translation (Lingala into Igbo)
-  448cc593-4cfb-45cf-90b7-7e6f9bb730c2: !Template
+    name: translate-this-por-tel
+    reference: Translate this from X to Y (Brazilian Portuguese into Telugu)
+  4092ba77-fa26-417a-8ffa-cb85294e7a98: !Template
     answer_choices: null
-    id: 448cc593-4cfb-45cf-90b7-7e6f9bb730c2
-    jinja: 'Indonesian: {{ sentence_ind }} = Assamese: ||| {{ sentence_asm }}'
+    id: 4092ba77-fa26-417a-8ffa-cb85294e7a98
+    jinja: 'Translate this from traditional Chinese into Punjabi: {{ sentence_zho_trad
+      }} ||| {{ sentence_pan }}'
     metadata: *id001
-    name: equals-translation-ind-asm
-    reference: Equals translation (Indonesian into Assamese)
-  44f158c8-490b-4243-bece-f44d2dbcb304: !Template
+    name: translate-this-zho_trad-pan
+    reference: Translate this from X to Y (traditional Chinese into Punjabi)
+  4094240e-9e06-4bf3-82b4-391577ff5f4e: !Template
     answer_choices: null
-    id: 44f158c8-490b-4243-bece-f44d2dbcb304
-    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Indonesian: ||| {{ sentence_ind
+    id: 4094240e-9e06-4bf3-82b4-391577ff5f4e
+    jinja: 'Translate this from Telugu into Xhosa: {{ sentence_tel }} ||| {{ sentence_xho
       }}'
     metadata: *id001
-    name: equals-translation-zho_simpl-ind
-    reference: Equals translation (simplified Chinese into Indonesian)
-  453bbc77-0c32-4339-b211-7c6adc7c19c2: !Template
+    name: translate-this-tel-xho
+    reference: Translate this from X to Y (Telugu into Xhosa)
+  409cf624-9310-4f11-a7ad-0e8fe451fda1: !Template
     answer_choices: null
-    id: 453bbc77-0c32-4339-b211-7c6adc7c19c2
-    jinja: 'Telugu: {{ sentence_tel }} = traditional Chinese: ||| {{ sentence_zho_trad
+    id: 409cf624-9310-4f11-a7ad-0e8fe451fda1
+    jinja: 'Translate this from Xhosa into Nepali: {{ sentence_xho }} ||| {{ sentence_npi
       }}'
     metadata: *id001
-    name: equals-translation-tel-zho_trad
-    reference: Equals translation (Telugu into traditional Chinese)
-  45796d41-0755-4351-9a50-a7fdcf276536: !Template
+    name: translate-this-xho-npi
+    reference: Translate this from X to Y (Xhosa into Nepali)
+  40da17a4-6be7-46e5-a22e-95c695c3f322: !Template
     answer_choices: null
-    id: 45796d41-0755-4351-9a50-a7fdcf276536
-    jinja: 'French: {{ sentence_fra }} = Swahili: ||| {{ sentence_swh }}'
+    id: 40da17a4-6be7-46e5-a22e-95c695c3f322
+    jinja: 'Translate this from Swahili into Brazilian Portuguese: {{ sentence_swh
+      }} ||| {{ sentence_por }}'
     metadata: *id001
-    name: equals-translation-fra-swh
-    reference: Equals translation (French into Swahili)
-  45cc4100-9572-4b2f-828b-6c6d0a929969: !Template
+    name: translate-this-swh-por
+    reference: Translate this from X to Y (Swahili into Brazilian Portuguese)
+  40eeec9d-7814-4355-8a4f-3b59393edd3a: !Template
     answer_choices: null
-    id: 45cc4100-9572-4b2f-828b-6c6d0a929969
-    jinja: 'Hindi: {{ sentence_hin }} = Bengali: ||| {{ sentence_ben }}'
+    id: 40eeec9d-7814-4355-8a4f-3b59393edd3a
+    jinja: 'Translate this from Xhosa into Northern Sotho: {{ sentence_xho }} |||
+      {{ sentence_nso }}'
     metadata: *id001
-    name: equals-translation-hin-ben
-    reference: Equals translation (Hindi into Bengali)
-  45dbcc39-b798-4950-9854-5d4808237b5a: !Template
+    name: translate-this-xho-nso
+    reference: Translate this from X to Y (Xhosa into Northern Sotho)
+  41110ab2-115f-4698-8a5a-b4adba6ab2c0: !Template
     answer_choices: null
-    id: 45dbcc39-b798-4950-9854-5d4808237b5a
-    jinja: 'Hindi: {{ sentence_hin }} = English: ||| {{ sentence_eng }}'
+    id: 41110ab2-115f-4698-8a5a-b4adba6ab2c0
+    jinja: 'Translate this from Nepali into English: {{ sentence_npi }} ||| {{ sentence_eng
+      }}'
     metadata: *id001
-    name: equals-translation-hin-eng
-    reference: Equals translation (Hindi into English)
-  46440f35-88d4-4c3f-85f1-a934ea324943: !Template
+    name: translate-this-npi-eng
+    reference: Translate this from X to Y (Nepali into English)
+  413d4501-09f8-4ef0-bf9b-a32cc055673f: !Template
     answer_choices: null
-    id: 46440f35-88d4-4c3f-85f1-a934ea324943
-    jinja: 'Wolof: {{ sentence_wol }} = Bengali: ||| {{ sentence_ben }}'
+    id: 413d4501-09f8-4ef0-bf9b-a32cc055673f
+    jinja: 'Translate this from Indonesian into traditional Chinese: {{ sentence_ind
+      }} ||| {{ sentence_zho_trad }}'
     metadata: *id001
-    name: equals-translation-wol-ben
-    reference: Equals translation (Wolof into Bengali)
-  4681d473-4418-4b2a-90e4-690d0021818f: !Template
+    name: translate-this-ind-zho_trad
+    reference: Translate this from X to Y (Indonesian into traditional Chinese)
+  42072bc0-8833-4f06-b060-77b6b44a3a7a: !Template
     answer_choices: null
-    id: 4681d473-4418-4b2a-90e4-690d0021818f
-    jinja: 'Swahili: {{ sentence_swh }} = Wolof: ||| {{ sentence_wol }}'
+    id: 42072bc0-8833-4f06-b060-77b6b44a3a7a
+    jinja: 'Translate this from Vietnamese into Catalan: {{ sentence_vie }} ||| {{
+      sentence_cat }}'
     metadata: *id001
-    name: equals-translation-swh-wol
-    reference: Equals translation (Swahili into Wolof)
-  46847079-7f7b-4c44-a200-34a75535beb6: !Template
+    name: translate-this-vie-cat
+    reference: Translate this from X to Y (Vietnamese into Catalan)
+  424c49ee-a1f7-4fe1-b0fe-a1de8d4f1bc5: !Template
     answer_choices: null
-    id: 46847079-7f7b-4c44-a200-34a75535beb6
-    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Punjabi: ||| {{ sentence_pan
+    id: 424c49ee-a1f7-4fe1-b0fe-a1de8d4f1bc5
+    jinja: 'Translate this from Wolof into Xhosa: {{ sentence_wol }} ||| {{ sentence_xho
       }}'
     metadata: *id001
-    name: equals-translation-zho_simpl-pan
-    reference: Equals translation (simplified Chinese into Punjabi)
-  468d3e92-4966-4bad-9f52-f979a8d28cf9: !Template
-    answer_choices: null
-    id: 468d3e92-4966-4bad-9f52-f979a8d28cf9
-    jinja: 'Hindi: {{ sentence_hin }} = Indonesian: ||| {{ sentence_ind }}'
-    metadata: *id001
-    name: equals-translation-hin-ind
-    reference: Equals translation (Hindi into Indonesian)
-  468fdf61-2e9c-4282-9401-5b0f3d3978dd: !Template
+    name: translate-this-wol-xho
+    reference: Translate this from X to Y (Wolof into Xhosa)
+  42636c57-a285-4c0a-a920-66ae8d200edb: !Template
     answer_choices: null
-    id: 468fdf61-2e9c-4282-9401-5b0f3d3978dd
-    jinja: 'Lingala: {{ sentence_lin }} = Hindi: ||| {{ sentence_hin }}'
+    id: 42636c57-a285-4c0a-a920-66ae8d200edb
+    jinja: 'Translate this from Oriya into Indonesian: {{ sentence_ory }} ||| {{ sentence_ind
+      }}'
     metadata: *id001
-    name: equals-translation-lin-hin
-    reference: Equals translation (Lingala into Hindi)
-  476a5739-099b-40ef-b945-370fcbefefca: !Template
+    name: translate-this-ory-ind
+    reference: Translate this from X to Y (Oriya into Indonesian)
+  433175d4-eb1d-40db-bcc0-503959dbca5b: !Template
     answer_choices: null
-    id: 476a5739-099b-40ef-b945-370fcbefefca
-    jinja: 'Latin American Spanish: {{ sentence_spa }} = Tamil: ||| {{ sentence_tam
+    id: 433175d4-eb1d-40db-bcc0-503959dbca5b
+    jinja: 'Translate this from Igbo into Telugu: {{ sentence_ibo }} ||| {{ sentence_tel
       }}'
     metadata: *id001
-    name: equals-translation-spa-tam
-    reference: Equals translation (Latin American Spanish into Tamil)
-  477945a9-d34a-4b2b-aa5a-556cd9a391f1: !Template
+    name: translate-this-ibo-tel
+    reference: Translate this from X to Y (Igbo into Telugu)
+  43364b11-0681-48f5-abca-b678c0a872f5: !Template
     answer_choices: null
-    id: 477945a9-d34a-4b2b-aa5a-556cd9a391f1
-    jinja: 'Indonesian: {{ sentence_ind }} = Lingala: ||| {{ sentence_lin }}'
+    id: 43364b11-0681-48f5-abca-b678c0a872f5
+    jinja: 'Translate this from Nepali into Punjabi: {{ sentence_npi }} ||| {{ sentence_pan
+      }}'
     metadata: *id001
-    name: equals-translation-ind-lin
-    reference: Equals translation (Indonesian into Lingala)
-  47923fd4-9381-486b-b81f-a0684163ef0f: !Template
+    name: translate-this-npi-pan
+    reference: Translate this from X to Y (Nepali into Punjabi)
+  4336faf4-7842-43ec-a54c-55df5e803cb0: !Template
     answer_choices: null
-    id: 47923fd4-9381-486b-b81f-a0684163ef0f
-    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Vietnamese: ||| {{ sentence_vie
+    id: 4336faf4-7842-43ec-a54c-55df5e803cb0
+    jinja: 'Translate this from Marathi into Tamil: {{ sentence_mar }} ||| {{ sentence_tam
       }}'
     metadata: *id001
-    name: equals-translation-por-vie
-    reference: Equals translation (Brazilian Portuguese into Vietnamese)
-  47a93b7a-837c-4f8f-8ab0-9716ee4c36bd: !Template
+    name: translate-this-mar-tam
+    reference: Translate this from X to Y (Marathi into Tamil)
+  433da395-ef72-4bb8-a45a-37bfa0b5289a: !Template
     answer_choices: null
-    id: 47a93b7a-837c-4f8f-8ab0-9716ee4c36bd
-    jinja: 'Swahili: {{ sentence_swh }} = Marathi: ||| {{ sentence_mar }}'
+    id: 433da395-ef72-4bb8-a45a-37bfa0b5289a
+    jinja: 'Translate this from Brazilian Portuguese into Zulu: {{ sentence_por }}
+      ||| {{ sentence_zul }}'
     metadata: *id001
-    name: equals-translation-swh-mar
-    reference: Equals translation (Swahili into Marathi)
-  47d3e4d2-7d63-4bdd-b5f2-4e64f04a8af2: !Template
+    name: translate-this-por-zul
+    reference: Translate this from X to Y (Brazilian Portuguese into Zulu)
+  43989767-99b9-4009-96b5-a1a001bfdcab: !Template
     answer_choices: null
-    id: 47d3e4d2-7d63-4bdd-b5f2-4e64f04a8af2
-    jinja: 'Swahili: {{ sentence_swh }} = Oriya: ||| {{ sentence_ory }}'
+    id: 43989767-99b9-4009-96b5-a1a001bfdcab
+    jinja: 'Translate this from English into Urdu: {{ sentence_eng }} ||| {{ sentence_urd
+      }}'
     metadata: *id001
-    name: equals-translation-swh-ory
-    reference: Equals translation (Swahili into Oriya)
-  4815ce90-d14a-4c12-aeb3-c71914e1d3e3: !Template
+    name: translate-this-eng-urd
+    reference: Translate this from X to Y (English into Urdu)
+  4407e0c3-1b25-47ef-a2d3-55b1f2cc8a8e: !Template
     answer_choices: null
-    id: 4815ce90-d14a-4c12-aeb3-c71914e1d3e3
-    jinja: 'English: {{ sentence_eng }} = Kannada: ||| {{ sentence_kan }}'
+    id: 4407e0c3-1b25-47ef-a2d3-55b1f2cc8a8e
+    jinja: 'Translate this from traditional Chinese into Brazilian Portuguese: {{
+      sentence_zho_trad }} ||| {{ sentence_por }}'
     metadata: *id001
-    name: equals-translation-eng-kan
-    reference: Equals translation (English into Kannada)
-  488326ec-be58-4473-945b-6452a299b9fd: !Template
+    name: translate-this-zho_trad-por
+    reference: Translate this from X to Y (traditional Chinese into Brazilian Portuguese)
+  441cd9ad-20d1-4569-b809-10cf3af9f35b: !Template
     answer_choices: null
-    id: 488326ec-be58-4473-945b-6452a299b9fd
-    jinja: 'Swahili: {{ sentence_swh }} = Catalan: ||| {{ sentence_cat }}'
+    id: 441cd9ad-20d1-4569-b809-10cf3af9f35b
+    jinja: 'Translate this from Northern Sotho into Assamese: {{ sentence_nso }} |||
+      {{ sentence_asm }}'
     metadata: *id001
-    name: equals-translation-swh-cat
-    reference: Equals translation (Swahili into Catalan)
-  48a89b80-00b8-444e-a65b-c01df719104a: !Template
+    name: translate-this-nso-asm
+    reference: Translate this from X to Y (Northern Sotho into Assamese)
+  44a5b8ae-29d6-43b8-93bc-79f33b790c76: !Template
     answer_choices: null
-    id: 48a89b80-00b8-444e-a65b-c01df719104a
-    jinja: 'Punjabi: {{ sentence_pan }} = Bengali: ||| {{ sentence_ben }}'
+    id: 44a5b8ae-29d6-43b8-93bc-79f33b790c76
+    jinja: 'Translate this from Gujarati into Yoruba: {{ sentence_guj }} ||| {{ sentence_yor
+      }}'
     metadata: *id001
-    name: equals-translation-pan-ben
-    reference: Equals translation (Punjabi into Bengali)
-  48af1adf-0c85-4bb1-9c60-03bca480a5e5: !Template
+    name: translate-this-guj-yor
+    reference: Translate this from X to Y (Gujarati into Yoruba)
+  44e82a53-f453-4dd4-a161-844274b5adb1: !Template
     answer_choices: null
-    id: 48af1adf-0c85-4bb1-9c60-03bca480a5e5
-    jinja: 'Arabic: {{ sentence_ara }} = English: ||| {{ sentence_eng }}'
+    id: 44e82a53-f453-4dd4-a161-844274b5adb1
+    jinja: 'Translate this from Yoruba into Swahili: {{ sentence_yor }} ||| {{ sentence_swh
+      }}'
     metadata: *id001
-    name: equals-translation-ara-eng
-    reference: Equals translation (Arabic into English)
-  48eb822d-0885-4ca9-a916-9020d03bc745: !Template
+    name: translate-this-yor-swh
+    reference: Translate this from X to Y (Yoruba into Swahili)
+  4501268f-0be5-4422-9adb-b759568ccaea: !Template
     answer_choices: null
-    id: 48eb822d-0885-4ca9-a916-9020d03bc745
-    jinja: 'Oriya: {{ sentence_ory }} = Lingala: ||| {{ sentence_lin }}'
+    id: 4501268f-0be5-4422-9adb-b759568ccaea
+    jinja: 'Translate this from Catalan into Malayalam: {{ sentence_cat }} ||| {{
+      sentence_mal }}'
     metadata: *id001
-    name: equals-translation-ory-lin
-    reference: Equals translation (Oriya into Lingala)
-  48f50c80-29fd-46d9-b1da-bbdd87e05143: !Template
+    name: translate-this-cat-mal
+    reference: Translate this from X to Y (Catalan into Malayalam)
+  454ee9f8-40b8-4b65-8e30-ce243882b5a8: !Template
     answer_choices: null
-    id: 48f50c80-29fd-46d9-b1da-bbdd87e05143
-    jinja: 'Tamil: {{ sentence_tam }} = Malayalam: ||| {{ sentence_mal }}'
+    id: 454ee9f8-40b8-4b65-8e30-ce243882b5a8
+    jinja: 'Translate this from Assamese into Hindi: {{ sentence_asm }} ||| {{ sentence_hin
+      }}'
     metadata: *id001
-    name: equals-translation-tam-mal
-    reference: Equals translation (Tamil into Malayalam)
-  48fe27bb-e477-4e59-b452-bdc7879841e9: !Template
+    name: translate-this-asm-hin
+    reference: Translate this from X to Y (Assamese into Hindi)
+  45544801-4274-45ca-a0a5-b88638e29353: !Template
     answer_choices: null
-    id: 48fe27bb-e477-4e59-b452-bdc7879841e9
-    jinja: 'Indonesian: {{ sentence_ind }} = Arabic: ||| {{ sentence_ara }}'
+    id: 45544801-4274-45ca-a0a5-b88638e29353
+    jinja: 'Translate this from Catalan into Igbo: {{ sentence_cat }} ||| {{ sentence_ibo
+      }}'
     metadata: *id001
-    name: equals-translation-ind-ara
-    reference: Equals translation (Indonesian into Arabic)
-  4922f8d7-a1a3-4bf8-be39-05e1c6e932f7: !Template
+    name: translate-this-cat-ibo
+    reference: Translate this from X to Y (Catalan into Igbo)
+  4566d14f-30f6-410e-ba5c-89b36854db06: !Template
     answer_choices: null
-    id: 4922f8d7-a1a3-4bf8-be39-05e1c6e932f7
-    jinja: 'Punjabi: {{ sentence_pan }} = Arabic: ||| {{ sentence_ara }}'
+    id: 4566d14f-30f6-410e-ba5c-89b36854db06
+    jinja: 'Translate this from Telugu into Assamese: {{ sentence_tel }} ||| {{ sentence_asm
+      }}'
     metadata: *id001
-    name: equals-translation-pan-ara
-    reference: Equals translation (Punjabi into Arabic)
-  4949b1c3-6693-43cb-a5fb-3b9516ceb940: !Template
+    name: translate-this-tel-asm
+    reference: Translate this from X to Y (Telugu into Assamese)
+  456facbe-e4a0-4794-b7b2-ef30fcdbac19: !Template
     answer_choices: null
-    id: 4949b1c3-6693-43cb-a5fb-3b9516ceb940
-    jinja: 'Bengali: {{ sentence_ben }} = Vietnamese: ||| {{ sentence_vie }}'
+    id: 456facbe-e4a0-4794-b7b2-ef30fcdbac19
+    jinja: 'Translate this from Hindi into Northern Sotho: {{ sentence_hin }} |||
+      {{ sentence_nso }}'
     metadata: *id001
-    name: equals-translation-ben-vie
-    reference: Equals translation (Bengali into Vietnamese)
-  4a36ebd0-5769-482c-a788-656d2d146460: !Template
+    name: translate-this-hin-nso
+    reference: Translate this from X to Y (Hindi into Northern Sotho)
+  4582d845-8652-4f4b-a2bc-e06325767bcc: !Template
     answer_choices: null
-    id: 4a36ebd0-5769-482c-a788-656d2d146460
-    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Wolof: ||| {{ sentence_wol
+    id: 4582d845-8652-4f4b-a2bc-e06325767bcc
+    jinja: 'Translate this from Igbo into Hindi: {{ sentence_ibo }} ||| {{ sentence_hin
       }}'
     metadata: *id001
-    name: equals-translation-zho_simpl-wol
-    reference: Equals translation (simplified Chinese into Wolof)
-  4a6488fd-792a-4a6a-a8a8-c54c9bca5932: !Template
+    name: translate-this-ibo-hin
+    reference: Translate this from X to Y (Igbo into Hindi)
+  45bfa964-3db6-4337-aee1-a2c85d6fbcca: !Template
     answer_choices: null
-    id: 4a6488fd-792a-4a6a-a8a8-c54c9bca5932
-    jinja: 'Hindi: {{ sentence_hin }} = French: ||| {{ sentence_fra }}'
+    id: 45bfa964-3db6-4337-aee1-a2c85d6fbcca
+    jinja: 'Translate this from Xhosa into Igbo: {{ sentence_xho }} ||| {{ sentence_ibo
+      }}'
     metadata: *id001
-    name: equals-translation-hin-fra
-    reference: Equals translation (Hindi into French)
-  4ab4724c-43e0-45a8-9915-83021373cb90: !Template
+    name: translate-this-xho-ibo
+    reference: Translate this from X to Y (Xhosa into Igbo)
+  4664b40e-4d0a-4d9e-b5f3-76e685102e2b: !Template
     answer_choices: null
-    id: 4ab4724c-43e0-45a8-9915-83021373cb90
-    jinja: 'French: {{ sentence_fra }} = Brazilian Portuguese: ||| {{ sentence_por
+    id: 4664b40e-4d0a-4d9e-b5f3-76e685102e2b
+    jinja: 'Translate this from Yoruba into Oriya: {{ sentence_yor }} ||| {{ sentence_ory
       }}'
     metadata: *id001
-    name: equals-translation-fra-por
-    reference: Equals translation (French into Brazilian Portuguese)
-  4ad62766-5deb-4559-a7dc-f427cd61010b: !Template
+    name: translate-this-yor-ory
+    reference: Translate this from X to Y (Yoruba into Oriya)
+  46717134-5f6a-49e7-9bc2-521e3cf4e166: !Template
     answer_choices: null
-    id: 4ad62766-5deb-4559-a7dc-f427cd61010b
-    jinja: 'Oriya: {{ sentence_ory }} = Marathi: ||| {{ sentence_mar }}'
+    id: 46717134-5f6a-49e7-9bc2-521e3cf4e166
+    jinja: 'Translate this from Assamese into Vietnamese: {{ sentence_asm }} ||| {{
+      sentence_vie }}'
     metadata: *id001
-    name: equals-translation-ory-mar
-    reference: Equals translation (Oriya into Marathi)
-  4af7b8c0-2943-4de7-8f23-d25c125e8fe7: !Template
+    name: translate-this-asm-vie
+    reference: Translate this from X to Y (Assamese into Vietnamese)
+  470ee47b-e7e3-4f17-b43d-5bb80cf89918: !Template
     answer_choices: null
-    id: 4af7b8c0-2943-4de7-8f23-d25c125e8fe7
-    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Hindi: ||| {{ sentence_hin
+    id: 470ee47b-e7e3-4f17-b43d-5bb80cf89918
+    jinja: 'Translate this from Xhosa into Kannada: {{ sentence_xho }} ||| {{ sentence_kan
       }}'
     metadata: *id001
-    name: equals-translation-zho_trad-hin
-    reference: Equals translation (traditional Chinese into Hindi)
-  4b45676e-58f6-4b2e-8e15-e425424fb359: !Template
+    name: translate-this-xho-kan
+    reference: Translate this from X to Y (Xhosa into Kannada)
+  473e84f3-4e5d-43cd-b515-6431236c43ea: !Template
+    answer_choices: null
+    id: 473e84f3-4e5d-43cd-b515-6431236c43ea
+    jinja: 'Translate this from Latin American Spanish into Marathi: {{ sentence_spa
+      }} ||| {{ sentence_mar }}'
+    metadata: *id001
+    name: translate-this-spa-mar
+    reference: Translate this from X to Y (Latin American Spanish into Marathi)
+  4780b0c1-1253-4950-b371-972bd9ddfe7b: !Template
     answer_choices: null
-    id: 4b45676e-58f6-4b2e-8e15-e425424fb359
-    jinja: 'English: {{ sentence_eng }} = Bengali: ||| {{ sentence_ben }}'
+    id: 4780b0c1-1253-4950-b371-972bd9ddfe7b
+    jinja: 'Translate this from Urdu into Northern Sotho: {{ sentence_urd }} ||| {{
+      sentence_nso }}'
     metadata: *id001
-    name: equals-translation-eng-ben
-    reference: Equals translation (English into Bengali)
-  4b91ec47-3f86-4af8-a23c-146b65eb4048: !Template
+    name: translate-this-urd-nso
+    reference: Translate this from X to Y (Urdu into Northern Sotho)
+  47bdfc83-7b72-4db8-aedc-f3966401d6cf: !Template
     answer_choices: null
-    id: 4b91ec47-3f86-4af8-a23c-146b65eb4048
-    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Urdu: ||| {{ sentence_urd
+    id: 47bdfc83-7b72-4db8-aedc-f3966401d6cf
+    jinja: 'Translate this from Kannada into Urdu: {{ sentence_kan }} ||| {{ sentence_urd
       }}'
     metadata: *id001
-    name: equals-translation-zho_simpl-urd
-    reference: Equals translation (simplified Chinese into Urdu)
-  4bd6ace5-53a4-48a8-a51e-047500831a33: !Template
+    name: translate-this-kan-urd
+    reference: Translate this from X to Y (Kannada into Urdu)
+  47c1a97e-69a3-4192-bc57-87aff1d20524: !Template
     answer_choices: null
-    id: 4bd6ace5-53a4-48a8-a51e-047500831a33
-    jinja: 'Yoruba: {{ sentence_yor }} = Zulu: ||| {{ sentence_zul }}'
+    id: 47c1a97e-69a3-4192-bc57-87aff1d20524
+    jinja: 'Translate this from French into Northern Sotho: {{ sentence_fra }} |||
+      {{ sentence_nso }}'
     metadata: *id001
-    name: equals-translation-yor-zul
-    reference: Equals translation (Yoruba into Zulu)
-  4c9a653e-cd0c-4a29-ad0c-829319a9e15c: !Template
+    name: translate-this-fra-nso
+    reference: Translate this from X to Y (French into Northern Sotho)
+  47c9d96a-de7e-4fca-a7d8-ae205f903030: !Template
     answer_choices: null
-    id: 4c9a653e-cd0c-4a29-ad0c-829319a9e15c
-    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Assamese: ||| {{ sentence_asm
+    id: 47c9d96a-de7e-4fca-a7d8-ae205f903030
+    jinja: 'Translate this from English into Igbo: {{ sentence_eng }} ||| {{ sentence_ibo
       }}'
     metadata: *id001
-    name: equals-translation-por-asm
-    reference: Equals translation (Brazilian Portuguese into Assamese)
-  4cb42572-204e-487a-9a41-63c44b5b8b2a: !Template
+    name: translate-this-eng-ibo
+    reference: Translate this from X to Y (English into Igbo)
+  47f4f93c-2be5-4f3d-a6cc-31687207ae27: !Template
     answer_choices: null
-    id: 4cb42572-204e-487a-9a41-63c44b5b8b2a
-    jinja: 'Malayalam: {{ sentence_mal }} = Northern Sotho: ||| {{ sentence_nso }}'
+    id: 47f4f93c-2be5-4f3d-a6cc-31687207ae27
+    jinja: 'Translate this from Indonesian into Northern Sotho: {{ sentence_ind }}
+      ||| {{ sentence_nso }}'
     metadata: *id001
-    name: equals-translation-mal-nso
-    reference: Equals translation (Malayalam into Northern Sotho)
-  4d1a8dea-4ed5-4d63-91fa-eb020f6a7a00: !Template
+    name: translate-this-ind-nso
+    reference: Translate this from X to Y (Indonesian into Northern Sotho)
+  482f0b3f-befa-43ca-b7a3-4b91653dab2d: !Template
     answer_choices: null
-    id: 4d1a8dea-4ed5-4d63-91fa-eb020f6a7a00
-    jinja: 'Lingala: {{ sentence_lin }} = Indonesian: ||| {{ sentence_ind }}'
+    id: 482f0b3f-befa-43ca-b7a3-4b91653dab2d
+    jinja: 'Translate this from Bengali into Vietnamese: {{ sentence_ben }} ||| {{
+      sentence_vie }}'
     metadata: *id001
-    name: equals-translation-lin-ind
-    reference: Equals translation (Lingala into Indonesian)
-  4d90409a-967c-4bc5-b7d1-be3e5d894412: !Template
+    name: translate-this-ben-vie
+    reference: Translate this from X to Y (Bengali into Vietnamese)
+  4844c2bf-b6fe-4bd9-92a5-19eea7d722a4: !Template
     answer_choices: null
-    id: 4d90409a-967c-4bc5-b7d1-be3e5d894412
-    jinja: 'Vietnamese: {{ sentence_vie }} = Brazilian Portuguese: ||| {{ sentence_por
-      }}'
+    id: 4844c2bf-b6fe-4bd9-92a5-19eea7d722a4
+    jinja: 'Translate this from traditional Chinese into Catalan: {{ sentence_zho_trad
+      }} ||| {{ sentence_cat }}'
     metadata: *id001
-    name: equals-translation-vie-por
-    reference: Equals translation (Vietnamese into Brazilian Portuguese)
-  4db97ece-1289-45b2-a8fb-e7d23a6b3201: !Template
+    name: translate-this-zho_trad-cat
+    reference: Translate this from X to Y (traditional Chinese into Catalan)
+  484b8f01-7dc2-46b4-9e3d-6b49e23b8568: !Template
     answer_choices: null
-    id: 4db97ece-1289-45b2-a8fb-e7d23a6b3201
-    jinja: 'Zulu: {{ sentence_zul }} = Assamese: ||| {{ sentence_asm }}'
+    id: 484b8f01-7dc2-46b4-9e3d-6b49e23b8568
+    jinja: 'Translate this from Gujarati into simplified Chinese: {{ sentence_guj
+      }} ||| {{ sentence_zho_simpl }}'
     metadata: *id001
-    name: equals-translation-zul-asm
-    reference: Equals translation (Zulu into Assamese)
-  4dc337b9-bab7-4a48-8dfa-d2c94b7d7e0e: !Template
+    name: translate-this-guj-zho_simpl
+    reference: Translate this from X to Y (Gujarati into simplified Chinese)
+  48f0072f-a620-4255-8c83-e444d4a8a561: !Template
     answer_choices: null
-    id: 4dc337b9-bab7-4a48-8dfa-d2c94b7d7e0e
-    jinja: 'Catalan: {{ sentence_cat }} = Bengali: ||| {{ sentence_ben }}'
+    id: 48f0072f-a620-4255-8c83-e444d4a8a561
+    jinja: 'Translate this from Catalan into simplified Chinese: {{ sentence_cat }}
+      ||| {{ sentence_zho_simpl }}'
     metadata: *id001
-    name: equals-translation-cat-ben
-    reference: Equals translation (Catalan into Bengali)
-  4dc4da3b-42ac-477b-95c9-b76c83be5705: !Template
+    name: translate-this-cat-zho_simpl
+    reference: Translate this from X to Y (Catalan into simplified Chinese)
+  49cf5a82-8878-4e0c-87a5-b6e5c5b8b5c9: !Template
     answer_choices: null
-    id: 4dc4da3b-42ac-477b-95c9-b76c83be5705
-    jinja: 'Yoruba: {{ sentence_yor }} = Tamil: ||| {{ sentence_tam }}'
+    id: 49cf5a82-8878-4e0c-87a5-b6e5c5b8b5c9
+    jinja: 'Translate this from Tamil into Catalan: {{ sentence_tam }} ||| {{ sentence_cat
+      }}'
     metadata: *id001
-    name: equals-translation-yor-tam
-    reference: Equals translation (Yoruba into Tamil)
-  4ddf7cc9-2fe1-4a3d-85fa-375adf6f82da: !Template
+    name: translate-this-tam-cat
+    reference: Translate this from X to Y (Tamil into Catalan)
+  4a1e916d-3518-44e0-bf6a-53411c1c119d: !Template
     answer_choices: null
-    id: 4ddf7cc9-2fe1-4a3d-85fa-375adf6f82da
-    jinja: 'English: {{ sentence_eng }} = Punjabi: ||| {{ sentence_pan }}'
+    id: 4a1e916d-3518-44e0-bf6a-53411c1c119d
+    jinja: 'Translate this from Igbo into Xhosa: {{ sentence_ibo }} ||| {{ sentence_xho
+      }}'
     metadata: *id001
-    name: equals-translation-eng-pan
-    reference: Equals translation (English into Punjabi)
-  4df3c69c-4a10-401e-bfe3-f8084c002180: !Template
+    name: translate-this-ibo-xho
+    reference: Translate this from X to Y (Igbo into Xhosa)
+  4a232eef-4f79-4d33-930c-d230dc86366b: !Template
     answer_choices: null
-    id: 4df3c69c-4a10-401e-bfe3-f8084c002180
-    jinja: 'Igbo: {{ sentence_ibo }} = simplified Chinese: ||| {{ sentence_zho_simpl
-      }}'
+    id: 4a232eef-4f79-4d33-930c-d230dc86366b
+    jinja: 'Translate this from Yoruba into simplified Chinese: {{ sentence_yor }}
+      ||| {{ sentence_zho_simpl }}'
     metadata: *id001
-    name: equals-translation-ibo-zho_simpl
-    reference: Equals translation (Igbo into simplified Chinese)
-  4e66010f-b82a-47b6-a8e0-e6656c69e70d: !Template
+    name: translate-this-yor-zho_simpl
+    reference: Translate this from X to Y (Yoruba into simplified Chinese)
+  4aaf80a3-aec2-4f98-a7f3-00df5b5ed719: !Template
     answer_choices: null
-    id: 4e66010f-b82a-47b6-a8e0-e6656c69e70d
-    jinja: 'Assamese: {{ sentence_asm }} = French: ||| {{ sentence_fra }}'
+    id: 4aaf80a3-aec2-4f98-a7f3-00df5b5ed719
+    jinja: 'Translate this from Assamese into Swahili: {{ sentence_asm }} ||| {{ sentence_swh
+      }}'
     metadata: *id001
-    name: equals-translation-asm-fra
-    reference: Equals translation (Assamese into French)
-  4ec52039-0783-46e7-b1c2-bc5c737f1fa9: !Template
+    name: translate-this-asm-swh
+    reference: Translate this from X to Y (Assamese into Swahili)
+  4b42ac84-4900-494d-b7c2-6e4c80bf8801: !Template
     answer_choices: null
-    id: 4ec52039-0783-46e7-b1c2-bc5c737f1fa9
-    jinja: 'English: {{ sentence_eng }} = Wolof: ||| {{ sentence_wol }}'
+    id: 4b42ac84-4900-494d-b7c2-6e4c80bf8801
+    jinja: 'Translate this from Marathi into Igbo: {{ sentence_mar }} ||| {{ sentence_ibo
+      }}'
     metadata: *id001
-    name: equals-translation-eng-wol
-    reference: Equals translation (English into Wolof)
-  4f59cd51-9d7f-49f5-9a7f-2b6691e82204: !Template
+    name: translate-this-mar-ibo
+    reference: Translate this from X to Y (Marathi into Igbo)
+  4bb9769e-559c-4df0-b545-79006490b34b: !Template
     answer_choices: null
-    id: 4f59cd51-9d7f-49f5-9a7f-2b6691e82204
-    jinja: 'Xhosa: {{ sentence_xho }} = Northern Sotho: ||| {{ sentence_nso }}'
+    id: 4bb9769e-559c-4df0-b545-79006490b34b
+    jinja: 'Translate this from Bengali into Urdu: {{ sentence_ben }} ||| {{ sentence_urd
+      }}'
     metadata: *id001
-    name: equals-translation-xho-nso
-    reference: Equals translation (Xhosa into Northern Sotho)
-  4f696df2-f40d-472a-bcd9-6bfaea73a5af: !Template
+    name: translate-this-ben-urd
+    reference: Translate this from X to Y (Bengali into Urdu)
+  4bfb19d8-ac0e-4a5d-aafe-ea0b75f869c5: !Template
     answer_choices: null
-    id: 4f696df2-f40d-472a-bcd9-6bfaea73a5af
-    jinja: 'Xhosa: {{ sentence_xho }} = Malayalam: ||| {{ sentence_mal }}'
+    id: 4bfb19d8-ac0e-4a5d-aafe-ea0b75f869c5
+    jinja: 'Translate this from Bengali into Brazilian Portuguese: {{ sentence_ben
+      }} ||| {{ sentence_por }}'
     metadata: *id001
-    name: equals-translation-xho-mal
-    reference: Equals translation (Xhosa into Malayalam)
-  4f726a6b-8d10-43a4-aa53-82a20d90293f: !Template
+    name: translate-this-ben-por
+    reference: Translate this from X to Y (Bengali into Brazilian Portuguese)
+  4ce9228e-0655-4104-a9b7-ebc65af16380: !Template
     answer_choices: null
-    id: 4f726a6b-8d10-43a4-aa53-82a20d90293f
-    jinja: 'Yoruba: {{ sentence_yor }} = traditional Chinese: ||| {{ sentence_zho_trad
+    id: 4ce9228e-0655-4104-a9b7-ebc65af16380
+    jinja: 'Translate this from Oriya into Hindi: {{ sentence_ory }} ||| {{ sentence_hin
       }}'
     metadata: *id001
-    name: equals-translation-yor-zho_trad
-    reference: Equals translation (Yoruba into traditional Chinese)
-  4f76ab94-f2f6-48e9-a6a2-565af7b0edac: !Template
+    name: translate-this-ory-hin
+    reference: Translate this from X to Y (Oriya into Hindi)
+  4cec6ec6-ae77-47cc-977a-a50f04eaf56d: !Template
     answer_choices: null
-    id: 4f76ab94-f2f6-48e9-a6a2-565af7b0edac
-    jinja: 'English: {{ sentence_eng }} = Vietnamese: ||| {{ sentence_vie }}'
+    id: 4cec6ec6-ae77-47cc-977a-a50f04eaf56d
+    jinja: 'Translate this from Nepali into simplified Chinese: {{ sentence_npi }}
+      ||| {{ sentence_zho_simpl }}'
     metadata: *id001
-    name: equals-translation-eng-vie
-    reference: Equals translation (English into Vietnamese)
-  4fba5346-1693-455c-8a52-6014d13a4e50: !Template
+    name: translate-this-npi-zho_simpl
+    reference: Translate this from X to Y (Nepali into simplified Chinese)
+  4d20162c-e2c2-4538-ba95-68d47647d1ec: !Template
     answer_choices: null
-    id: 4fba5346-1693-455c-8a52-6014d13a4e50
-    jinja: 'Igbo: {{ sentence_ibo }} = Latin American Spanish: ||| {{ sentence_spa
+    id: 4d20162c-e2c2-4538-ba95-68d47647d1ec
+    jinja: 'Translate this from Urdu into Catalan: {{ sentence_urd }} ||| {{ sentence_cat
       }}'
     metadata: *id001
-    name: equals-translation-ibo-spa
-    reference: Equals translation (Igbo into Latin American Spanish)
-  4fcde954-2d9b-42e9-b9f9-981c9fbeb699: !Template
+    name: translate-this-urd-cat
+    reference: Translate this from X to Y (Urdu into Catalan)
+  4d6f75fd-88f9-4a3b-a2f2-4b815a23c792: !Template
     answer_choices: null
-    id: 4fcde954-2d9b-42e9-b9f9-981c9fbeb699
-    jinja: 'Gujarati: {{ sentence_guj }} = Malayalam: ||| {{ sentence_mal }}'
+    id: 4d6f75fd-88f9-4a3b-a2f2-4b815a23c792
+    jinja: 'Translate this from English into Tamil: {{ sentence_eng }} ||| {{ sentence_tam
+      }}'
     metadata: *id001
-    name: equals-translation-guj-mal
-    reference: Equals translation (Gujarati into Malayalam)
-  4fd0856f-b33d-41f9-a30c-b3def10d0692: !Template
+    name: translate-this-eng-tam
+    reference: Translate this from X to Y (English into Tamil)
+  4dbc5988-ba93-4b0e-a737-e7db6ecfe2df: !Template
     answer_choices: null
-    id: 4fd0856f-b33d-41f9-a30c-b3def10d0692
-    jinja: 'English: {{ sentence_eng }} = Telugu: ||| {{ sentence_tel }}'
+    id: 4dbc5988-ba93-4b0e-a737-e7db6ecfe2df
+    jinja: 'Translate this from Punjabi into Arabic: {{ sentence_pan }} ||| {{ sentence_ara
+      }}'
     metadata: *id001
-    name: equals-translation-eng-tel
-    reference: Equals translation (English into Telugu)
-  508a6007-e8fc-4751-bc90-3729d4fca785: !Template
+    name: translate-this-pan-ara
+    reference: Translate this from X to Y (Punjabi into Arabic)
+  4de725a8-dd9b-4b56-b35b-e27d5c5f6448: !Template
     answer_choices: null
-    id: 508a6007-e8fc-4751-bc90-3729d4fca785
-    jinja: 'Urdu: {{ sentence_urd }} = Lingala: ||| {{ sentence_lin }}'
+    id: 4de725a8-dd9b-4b56-b35b-e27d5c5f6448
+    jinja: 'Translate this from Vietnamese into Urdu: {{ sentence_vie }} ||| {{ sentence_urd
+      }}'
     metadata: *id001
-    name: equals-translation-urd-lin
-    reference: Equals translation (Urdu into Lingala)
-  50ab01da-9f60-4712-89ab-2331e402815c: !Template
+    name: translate-this-vie-urd
+    reference: Translate this from X to Y (Vietnamese into Urdu)
+  4df04a82-1b44-4d8f-9025-75298ada1885: !Template
     answer_choices: null
-    id: 50ab01da-9f60-4712-89ab-2331e402815c
-    jinja: 'Zulu: {{ sentence_zul }} = Brazilian Portuguese: ||| {{ sentence_por }}'
+    id: 4df04a82-1b44-4d8f-9025-75298ada1885
+    jinja: 'Translate this from Wolof into Gujarati: {{ sentence_wol }} ||| {{ sentence_guj
+      }}'
     metadata: *id001
-    name: equals-translation-zul-por
-    reference: Equals translation (Zulu into Brazilian Portuguese)
-  51150f24-537c-4d9d-b414-0981ab6aee73: !Template
+    name: translate-this-wol-guj
+    reference: Translate this from X to Y (Wolof into Gujarati)
+  4df5071a-28e4-49c3-b448-ef237763a4bc: !Template
     answer_choices: null
-    id: 51150f24-537c-4d9d-b414-0981ab6aee73
-    jinja: 'Hindi: {{ sentence_hin }} = Brazilian Portuguese: ||| {{ sentence_por
+    id: 4df5071a-28e4-49c3-b448-ef237763a4bc
+    jinja: 'Translate this from English into Yoruba: {{ sentence_eng }} ||| {{ sentence_yor
       }}'
     metadata: *id001
-    name: equals-translation-hin-por
-    reference: Equals translation (Hindi into Brazilian Portuguese)
-  51790a4e-3f25-47ee-bbdf-b9262b5967dd: !Template
+    name: translate-this-eng-yor
+    reference: Translate this from X to Y (English into Yoruba)
+  4df519fb-cff6-4b46-b42d-3c5c76e87429: !Template
     answer_choices: null
-    id: 51790a4e-3f25-47ee-bbdf-b9262b5967dd
-    jinja: 'Malayalam: {{ sentence_mal }} = Vietnamese: ||| {{ sentence_vie }}'
+    id: 4df519fb-cff6-4b46-b42d-3c5c76e87429
+    jinja: 'Translate this from Assamese into English: {{ sentence_asm }} ||| {{ sentence_eng
+      }}'
     metadata: *id001
-    name: equals-translation-mal-vie
-    reference: Equals translation (Malayalam into Vietnamese)
-  51c4f0f6-9f4c-41b3-9c48-02710dc9968a: !Template
+    name: translate-this-asm-eng
+    reference: Translate this from X to Y (Assamese into English)
+  4f25b39e-925e-4109-aa80-876ee830cc93: !Template
     answer_choices: null
-    id: 51c4f0f6-9f4c-41b3-9c48-02710dc9968a
-    jinja: 'Igbo: {{ sentence_ibo }} = Catalan: ||| {{ sentence_cat }}'
+    id: 4f25b39e-925e-4109-aa80-876ee830cc93
+    jinja: 'Translate this from Gujarati into Wolof: {{ sentence_guj }} ||| {{ sentence_wol
+      }}'
     metadata: *id001
-    name: equals-translation-ibo-cat
-    reference: Equals translation (Igbo into Catalan)
-  51ced8ec-cb3e-4a09-8e82-44ed544d2eb9: !Template
+    name: translate-this-guj-wol
+    reference: Translate this from X to Y (Gujarati into Wolof)
+  4f2e6eb2-42fd-4714-9933-fe2d263ef841: !Template
     answer_choices: null
-    id: 51ced8ec-cb3e-4a09-8e82-44ed544d2eb9
-    jinja: 'Hindi: {{ sentence_hin }} = Vietnamese: ||| {{ sentence_vie }}'
+    id: 4f2e6eb2-42fd-4714-9933-fe2d263ef841
+    jinja: 'Translate this from Swahili into Arabic: {{ sentence_swh }} ||| {{ sentence_ara
+      }}'
     metadata: *id001
-    name: equals-translation-hin-vie
-    reference: Equals translation (Hindi into Vietnamese)
-  51d6c289-6267-4911-adc0-5ec49ebe12ed: !Template
+    name: translate-this-swh-ara
+    reference: Translate this from X to Y (Swahili into Arabic)
+  4fe8eb8b-8cbe-4bc2-9497-ad2b4535ae78: !Template
     answer_choices: null
-    id: 51d6c289-6267-4911-adc0-5ec49ebe12ed
-    jinja: 'Bengali: {{ sentence_ben }} = Nepali: ||| {{ sentence_npi }}'
+    id: 4fe8eb8b-8cbe-4bc2-9497-ad2b4535ae78
+    jinja: 'Translate this from Latin American Spanish into Igbo: {{ sentence_spa
+      }} ||| {{ sentence_ibo }}'
     metadata: *id001
-    name: equals-translation-ben-npi
-    reference: Equals translation (Bengali into Nepali)
-  51fe39b7-59c4-44bf-8336-0a9762d8b333: !Template
+    name: translate-this-spa-ibo
+    reference: Translate this from X to Y (Latin American Spanish into Igbo)
+  502baae6-7c32-4940-8ffe-76e2488e2914: !Template
     answer_choices: null
-    id: 51fe39b7-59c4-44bf-8336-0a9762d8b333
-    jinja: 'Catalan: {{ sentence_cat }} = Latin American Spanish: ||| {{ sentence_spa
+    id: 502baae6-7c32-4940-8ffe-76e2488e2914
+    jinja: 'Translate this from Gujarati into Urdu: {{ sentence_guj }} ||| {{ sentence_urd
       }}'
     metadata: *id001
-    name: equals-translation-cat-spa
-    reference: Equals translation (Catalan into Latin American Spanish)
-  5204e108-1987-4c91-b9f1-e3d33dbd879a: !Template
+    name: translate-this-guj-urd
+    reference: Translate this from X to Y (Gujarati into Urdu)
+  508ab782-58c3-4e45-b7ee-28411062c1a6: !Template
     answer_choices: null
-    id: 5204e108-1987-4c91-b9f1-e3d33dbd879a
-    jinja: 'Lingala: {{ sentence_lin }} = Yoruba: ||| {{ sentence_yor }}'
+    id: 508ab782-58c3-4e45-b7ee-28411062c1a6
+    jinja: 'Translate this from Bengali into Catalan: {{ sentence_ben }} ||| {{ sentence_cat
+      }}'
     metadata: *id001
-    name: equals-translation-lin-yor
-    reference: Equals translation (Lingala into Yoruba)
-  52286ad8-2429-4139-bc82-62fbb1d1d315: !Template
+    name: translate-this-ben-cat
+    reference: Translate this from X to Y (Bengali into Catalan)
+  50b3125a-8706-4287-b9ea-6c8bc90375ed: !Template
     answer_choices: null
-    id: 52286ad8-2429-4139-bc82-62fbb1d1d315
-    jinja: 'Punjabi: {{ sentence_pan }} = Brazilian Portuguese: ||| {{ sentence_por
+    id: 50b3125a-8706-4287-b9ea-6c8bc90375ed
+    jinja: 'Translate this from Zulu into Tamil: {{ sentence_zul }} ||| {{ sentence_tam
       }}'
     metadata: *id001
-    name: equals-translation-pan-por
-    reference: Equals translation (Punjabi into Brazilian Portuguese)
-  52320856-2947-49f8-98ea-8aac44ef9770: !Template
+    name: translate-this-zul-tam
+    reference: Translate this from X to Y (Zulu into Tamil)
+  50ff7c64-8d93-4737-8d74-d122892d3481: !Template
     answer_choices: null
-    id: 52320856-2947-49f8-98ea-8aac44ef9770
-    jinja: 'Kannada: {{ sentence_kan }} = simplified Chinese: ||| {{ sentence_zho_simpl
+    id: 50ff7c64-8d93-4737-8d74-d122892d3481
+    jinja: 'Translate this from Latin American Spanish into Gujarati: {{ sentence_spa
+      }} ||| {{ sentence_guj }}'
+    metadata: *id001
+    name: translate-this-spa-guj
+    reference: Translate this from X to Y (Latin American Spanish into Gujarati)
+  513d62e5-92ec-4049-8724-7c91762799f4: !Template
+    answer_choices: null
+    id: 513d62e5-92ec-4049-8724-7c91762799f4
+    jinja: 'Translate this from Catalan into Telugu: {{ sentence_cat }} ||| {{ sentence_tel
       }}'
     metadata: *id001
-    name: equals-translation-kan-zho_simpl
-    reference: Equals translation (Kannada into simplified Chinese)
-  52817e58-be9f-4154-8c32-cdcc6ccefa51: !Template
+    name: translate-this-cat-tel
+    reference: Translate this from X to Y (Catalan into Telugu)
+  51598024-1dfd-47ec-9faa-fa1e9d3ccdae: !Template
     answer_choices: null
-    id: 52817e58-be9f-4154-8c32-cdcc6ccefa51
-    jinja: 'Vietnamese: {{ sentence_vie }} = Tamil: ||| {{ sentence_tam }}'
+    id: 51598024-1dfd-47ec-9faa-fa1e9d3ccdae
+    jinja: 'Translate this from Latin American Spanish into Hindi: {{ sentence_spa
+      }} ||| {{ sentence_hin }}'
     metadata: *id001
-    name: equals-translation-vie-tam
-    reference: Equals translation (Vietnamese into Tamil)
-  5293f1cb-b46d-44ca-a045-e8c8c543ee0a: !Template
+    name: translate-this-spa-hin
+    reference: Translate this from X to Y (Latin American Spanish into Hindi)
+  51741d38-ae12-4394-8388-b53b96a62031: !Template
     answer_choices: null
-    id: 5293f1cb-b46d-44ca-a045-e8c8c543ee0a
-    jinja: 'English: {{ sentence_eng }} = Gujarati: ||| {{ sentence_guj }}'
+    id: 51741d38-ae12-4394-8388-b53b96a62031
+    jinja: 'Translate this from traditional Chinese into Yoruba: {{ sentence_zho_trad
+      }} ||| {{ sentence_yor }}'
     metadata: *id001
-    name: equals-translation-eng-guj
-    reference: Equals translation (English into Gujarati)
-  52c42e19-1812-4784-8d6d-d2c3dbf95f87: !Template
+    name: translate-this-zho_trad-yor
+    reference: Translate this from X to Y (traditional Chinese into Yoruba)
+  524ef92d-f4f9-4c5b-845f-658f61be834d: !Template
     answer_choices: null
-    id: 52c42e19-1812-4784-8d6d-d2c3dbf95f87
-    jinja: 'Gujarati: {{ sentence_guj }} = Northern Sotho: ||| {{ sentence_nso }}'
+    id: 524ef92d-f4f9-4c5b-845f-658f61be834d
+    jinja: 'Translate this from Kannada into Bengali: {{ sentence_kan }} ||| {{ sentence_ben
+      }}'
     metadata: *id001
-    name: equals-translation-guj-nso
-    reference: Equals translation (Gujarati into Northern Sotho)
-  52d98ecd-c35f-4b59-8a29-ab77cbfc96ab: !Template
+    name: translate-this-kan-ben
+    reference: Translate this from X to Y (Kannada into Bengali)
+  5253cded-dddf-47a2-81f2-1063d2821fac: !Template
     answer_choices: null
-    id: 52d98ecd-c35f-4b59-8a29-ab77cbfc96ab
-    jinja: 'Nepali: {{ sentence_npi }} = Xhosa: ||| {{ sentence_xho }}'
+    id: 5253cded-dddf-47a2-81f2-1063d2821fac
+    jinja: 'Translate this from Brazilian Portuguese into Indonesian: {{ sentence_por
+      }} ||| {{ sentence_ind }}'
     metadata: *id001
-    name: equals-translation-npi-xho
-    reference: Equals translation (Nepali into Xhosa)
-  52ed238a-f4ed-4da4-a04f-7a8feb3d14b8: !Template
+    name: translate-this-por-ind
+    reference: Translate this from X to Y (Brazilian Portuguese into Indonesian)
+  52553315-992a-4905-949d-ff236d053b0a: !Template
     answer_choices: null
-    id: 52ed238a-f4ed-4da4-a04f-7a8feb3d14b8
-    jinja: 'Bengali: {{ sentence_ben }} = Urdu: ||| {{ sentence_urd }}'
+    id: 52553315-992a-4905-949d-ff236d053b0a
+    jinja: 'Translate this from Indonesian into Urdu: {{ sentence_ind }} ||| {{ sentence_urd
+      }}'
     metadata: *id001
-    name: equals-translation-ben-urd
-    reference: Equals translation (Bengali into Urdu)
-  530a56d7-719f-4d58-bf6c-c893a6cddeb1: !Template
+    name: translate-this-ind-urd
+    reference: Translate this from X to Y (Indonesian into Urdu)
+  5255c28c-1e33-4f62-be69-551de5cd9c98: !Template
     answer_choices: null
-    id: 530a56d7-719f-4d58-bf6c-c893a6cddeb1
-    jinja: 'Igbo: {{ sentence_ibo }} = Urdu: ||| {{ sentence_urd }}'
+    id: 5255c28c-1e33-4f62-be69-551de5cd9c98
+    jinja: 'Translate this from Wolof into Nepali: {{ sentence_wol }} ||| {{ sentence_npi
+      }}'
     metadata: *id001
-    name: equals-translation-ibo-urd
-    reference: Equals translation (Igbo into Urdu)
-  53742719-db41-4060-a95c-35d20564d947: !Template
+    name: translate-this-wol-npi
+    reference: Translate this from X to Y (Wolof into Nepali)
+  529fd103-0f8e-460f-b994-5ba86880b0a9: !Template
     answer_choices: null
-    id: 53742719-db41-4060-a95c-35d20564d947
-    jinja: 'Latin American Spanish: {{ sentence_spa }} = Indonesian: ||| {{ sentence_ind
+    id: 529fd103-0f8e-460f-b994-5ba86880b0a9
+    jinja: 'Translate this from English into Gujarati: {{ sentence_eng }} ||| {{ sentence_guj
       }}'
     metadata: *id001
-    name: equals-translation-spa-ind
-    reference: Equals translation (Latin American Spanish into Indonesian)
-  53857738-c403-47a4-a09b-a5c6e77b73d8: !Template
+    name: translate-this-eng-guj
+    reference: Translate this from X to Y (English into Gujarati)
+  52e7f161-ea37-4071-93e1-d818e7bac353: !Template
+    answer_choices: null
+    id: 52e7f161-ea37-4071-93e1-d818e7bac353
+    jinja: 'Translate this from Northern Sotho into traditional Chinese: {{ sentence_nso
+      }} ||| {{ sentence_zho_trad }}'
+    metadata: *id001
+    name: translate-this-nso-zho_trad
+    reference: Translate this from X to Y (Northern Sotho into traditional Chinese)
+  52f247f2-7c53-4689-b8ff-514b2b5e77bd: !Template
     answer_choices: null
-    id: 53857738-c403-47a4-a09b-a5c6e77b73d8
-    jinja: 'Northern Sotho: {{ sentence_nso }} = Xhosa: ||| {{ sentence_xho }}'
+    id: 52f247f2-7c53-4689-b8ff-514b2b5e77bd
+    jinja: 'Translate this from Bengali into Igbo: {{ sentence_ben }} ||| {{ sentence_ibo
+      }}'
     metadata: *id001
-    name: equals-translation-nso-xho
-    reference: Equals translation (Northern Sotho into Xhosa)
-  54107478-0654-4010-92f9-dc4d89cdaf00: !Template
+    name: translate-this-ben-ibo
+    reference: Translate this from X to Y (Bengali into Igbo)
+  52f88171-dc5b-4319-997c-99d864680c4d: !Template
     answer_choices: null
-    id: 54107478-0654-4010-92f9-dc4d89cdaf00
-    jinja: 'Wolof: {{ sentence_wol }} = Vietnamese: ||| {{ sentence_vie }}'
+    id: 52f88171-dc5b-4319-997c-99d864680c4d
+    jinja: 'Translate this from Wolof into Tamil: {{ sentence_wol }} ||| {{ sentence_tam
+      }}'
     metadata: *id001
-    name: equals-translation-wol-vie
-    reference: Equals translation (Wolof into Vietnamese)
-  54146642-5da3-47d7-b996-6ba64dc9d61a: !Template
+    name: translate-this-wol-tam
+    reference: Translate this from X to Y (Wolof into Tamil)
+  530113d5-7c0a-4e50-98ee-8e9f9a3e5ec0: !Template
     answer_choices: null
-    id: 54146642-5da3-47d7-b996-6ba64dc9d61a
-    jinja: 'Vietnamese: {{ sentence_vie }} = Punjabi: ||| {{ sentence_pan }}'
+    id: 530113d5-7c0a-4e50-98ee-8e9f9a3e5ec0
+    jinja: 'Translate this from simplified Chinese into Latin American Spanish: {{
+      sentence_zho_simpl }} ||| {{ sentence_spa }}'
     metadata: *id001
-    name: equals-translation-vie-pan
-    reference: Equals translation (Vietnamese into Punjabi)
-  5424125f-6b5a-4e6a-9c2e-5c872cb31290: !Template
+    name: translate-this-zho_simpl-spa
+    reference: Translate this from X to Y (simplified Chinese into Latin American
+      Spanish)
+  539ecdcb-294f-4880-ab7f-c4850b2937c5: !Template
     answer_choices: null
-    id: 5424125f-6b5a-4e6a-9c2e-5c872cb31290
-    jinja: 'Gujarati: {{ sentence_guj }} = Oriya: ||| {{ sentence_ory }}'
+    id: 539ecdcb-294f-4880-ab7f-c4850b2937c5
+    jinja: 'Translate this from Zulu into Brazilian Portuguese: {{ sentence_zul }}
+      ||| {{ sentence_por }}'
     metadata: *id001
-    name: equals-translation-guj-ory
-    reference: Equals translation (Gujarati into Oriya)
-  5443c430-c621-46bc-af4b-52e6d08edd75: !Template
+    name: translate-this-zul-por
+    reference: Translate this from X to Y (Zulu into Brazilian Portuguese)
+  53a62ab6-b190-45eb-a40e-e5f0743ec5be: !Template
     answer_choices: null
-    id: 5443c430-c621-46bc-af4b-52e6d08edd75
-    jinja: 'Nepali: {{ sentence_npi }} = French: ||| {{ sentence_fra }}'
+    id: 53a62ab6-b190-45eb-a40e-e5f0743ec5be
+    jinja: 'Translate this from Igbo into Catalan: {{ sentence_ibo }} ||| {{ sentence_cat
+      }}'
     metadata: *id001
-    name: equals-translation-npi-fra
-    reference: Equals translation (Nepali into French)
-  548b4073-69db-4011-9303-71b85801d984: !Template
+    name: translate-this-ibo-cat
+    reference: Translate this from X to Y (Igbo into Catalan)
+  53b03f52-a737-4a4e-a4ba-efa018c42829: !Template
     answer_choices: null
-    id: 548b4073-69db-4011-9303-71b85801d984
-    jinja: 'Telugu: {{ sentence_tel }} = Lingala: ||| {{ sentence_lin }}'
+    id: 53b03f52-a737-4a4e-a4ba-efa018c42829
+    jinja: 'Translate this from traditional Chinese into Malayalam: {{ sentence_zho_trad
+      }} ||| {{ sentence_mal }}'
     metadata: *id001
-    name: equals-translation-tel-lin
-    reference: Equals translation (Telugu into Lingala)
-  54990163-8667-4493-b359-73e1c590ca20: !Template
+    name: translate-this-zho_trad-mal
+    reference: Translate this from X to Y (traditional Chinese into Malayalam)
+  54082011-a146-420c-8b0c-615c1b100fb0: !Template
     answer_choices: null
-    id: 54990163-8667-4493-b359-73e1c590ca20
-    jinja: 'Wolof: {{ sentence_wol }} = Gujarati: ||| {{ sentence_guj }}'
+    id: 54082011-a146-420c-8b0c-615c1b100fb0
+    jinja: 'Translate this from Telugu into traditional Chinese: {{ sentence_tel }}
+      ||| {{ sentence_zho_trad }}'
     metadata: *id001
-    name: equals-translation-wol-guj
-    reference: Equals translation (Wolof into Gujarati)
-  54a47270-e8f7-4d40-8984-7fa9312bfb01: !Template
+    name: translate-this-tel-zho_trad
+    reference: Translate this from X to Y (Telugu into traditional Chinese)
+  540a1bb6-7f21-4132-b858-bd2f1e0e7a6b: !Template
     answer_choices: null
-    id: 54a47270-e8f7-4d40-8984-7fa9312bfb01
-    jinja: 'English: {{ sentence_eng }} = traditional Chinese: ||| {{ sentence_zho_trad
+    id: 540a1bb6-7f21-4132-b858-bd2f1e0e7a6b
+    jinja: 'Translate this from Yoruba into Punjabi: {{ sentence_yor }} ||| {{ sentence_pan
       }}'
     metadata: *id001
-    name: equals-translation-eng-zho_trad
-    reference: Equals translation (English into traditional Chinese)
-  55681680-7230-4838-849a-164c3b3c6cef: !Template
+    name: translate-this-yor-pan
+    reference: Translate this from X to Y (Yoruba into Punjabi)
+  544b7632-e5d3-485b-92e5-9e81b0071cf5: !Template
     answer_choices: null
-    id: 55681680-7230-4838-849a-164c3b3c6cef
-    jinja: 'Wolof: {{ sentence_wol }} = Telugu: ||| {{ sentence_tel }}'
+    id: 544b7632-e5d3-485b-92e5-9e81b0071cf5
+    jinja: 'Translate this from Vietnamese into Bengali: {{ sentence_vie }} ||| {{
+      sentence_ben }}'
     metadata: *id001
-    name: equals-translation-wol-tel
-    reference: Equals translation (Wolof into Telugu)
-  560bdb12-7484-4a40-ab04-593a1fc18540: !Template
+    name: translate-this-vie-ben
+    reference: Translate this from X to Y (Vietnamese into Bengali)
+  5469f377-13ac-448b-9ad1-e8cd0573385b: !Template
     answer_choices: null
-    id: 560bdb12-7484-4a40-ab04-593a1fc18540
-    jinja: 'English: {{ sentence_eng }} = Swahili: ||| {{ sentence_swh }}'
+    id: 5469f377-13ac-448b-9ad1-e8cd0573385b
+    jinja: 'Translate this from Assamese into traditional Chinese: {{ sentence_asm
+      }} ||| {{ sentence_zho_trad }}'
     metadata: *id001
-    name: equals-translation-eng-swh
-    reference: Equals translation (English into Swahili)
-  562fce04-47e5-4b34-9cdb-16875924d2d9: !Template
+    name: translate-this-asm-zho_trad
+    reference: Translate this from X to Y (Assamese into traditional Chinese)
+  54a1db4a-8d62-441d-864b-e843422b5320: !Template
     answer_choices: null
-    id: 562fce04-47e5-4b34-9cdb-16875924d2d9
-    jinja: 'Arabic: {{ sentence_ara }} = Yoruba: ||| {{ sentence_yor }}'
+    id: 54a1db4a-8d62-441d-864b-e843422b5320
+    jinja: 'Translate this from traditional Chinese into Lingala: {{ sentence_zho_trad
+      }} ||| {{ sentence_lin }}'
     metadata: *id001
-    name: equals-translation-ara-yor
-    reference: Equals translation (Arabic into Yoruba)
-  565a668f-d5ef-41bd-a375-0639fe3dddb2: !Template
+    name: translate-this-zho_trad-lin
+    reference: Translate this from X to Y (traditional Chinese into Lingala)
+  54bb7999-0fbb-4a9a-8387-c15b160051b1: !Template
     answer_choices: null
-    id: 565a668f-d5ef-41bd-a375-0639fe3dddb2
-    jinja: 'Yoruba: {{ sentence_yor }} = simplified Chinese: ||| {{ sentence_zho_simpl
+    id: 54bb7999-0fbb-4a9a-8387-c15b160051b1
+    jinja: 'Translate this from Malayalam into Oriya: {{ sentence_mal }} ||| {{ sentence_ory
       }}'
     metadata: *id001
-    name: equals-translation-yor-zho_simpl
-    reference: Equals translation (Yoruba into simplified Chinese)
-  565b3ce8-3f34-484e-ab1c-9680595851f7: !Template
+    name: translate-this-mal-ory
+    reference: Translate this from X to Y (Malayalam into Oriya)
+  54ce1f3d-4e17-4abb-802d-6872445117b3: !Template
     answer_choices: null
-    id: 565b3ce8-3f34-484e-ab1c-9680595851f7
-    jinja: 'English: {{ sentence_eng }} = Yoruba: ||| {{ sentence_yor }}'
+    id: 54ce1f3d-4e17-4abb-802d-6872445117b3
+    jinja: 'Translate this from Brazilian Portuguese into English: {{ sentence_por
+      }} ||| {{ sentence_eng }}'
     metadata: *id001
-    name: equals-translation-eng-yor
-    reference: Equals translation (English into Yoruba)
-  56768d50-a023-453d-8a0d-91ab7b60d477: !Template
+    name: translate-this-por-eng
+    reference: Translate this from X to Y (Brazilian Portuguese into English)
+  557a90b6-f548-4c48-8e61-b214d623437e: !Template
     answer_choices: null
-    id: 56768d50-a023-453d-8a0d-91ab7b60d477
-    jinja: 'Swahili: {{ sentence_swh }} = Latin American Spanish: ||| {{ sentence_spa
+    id: 557a90b6-f548-4c48-8e61-b214d623437e
+    jinja: 'Translate this from Tamil into Igbo: {{ sentence_tam }} ||| {{ sentence_ibo
       }}'
     metadata: *id001
-    name: equals-translation-swh-spa
-    reference: Equals translation (Swahili into Latin American Spanish)
-  56b93e32-048e-46b4-b238-47c9a5e3dc05: !Template
+    name: translate-this-tam-ibo
+    reference: Translate this from X to Y (Tamil into Igbo)
+  55f3514f-8c17-409d-a870-6d6c51cee4ab: !Template
     answer_choices: null
-    id: 56b93e32-048e-46b4-b238-47c9a5e3dc05
-    jinja: 'Indonesian: {{ sentence_ind }} = traditional Chinese: ||| {{ sentence_zho_trad
+    id: 55f3514f-8c17-409d-a870-6d6c51cee4ab
+    jinja: 'Translate this from Telugu into Catalan: {{ sentence_tel }} ||| {{ sentence_cat
       }}'
     metadata: *id001
-    name: equals-translation-ind-zho_trad
-    reference: Equals translation (Indonesian into traditional Chinese)
-  56e59926-7124-44da-ad59-0cb9e86c87fc: !Template
+    name: translate-this-tel-cat
+    reference: Translate this from X to Y (Telugu into Catalan)
+  56151b0a-68fa-40f8-9309-86a23ebe1002: !Template
     answer_choices: null
-    id: 56e59926-7124-44da-ad59-0cb9e86c87fc
-    jinja: 'English: {{ sentence_eng }} = Oriya: ||| {{ sentence_ory }}'
+    id: 56151b0a-68fa-40f8-9309-86a23ebe1002
+    jinja: 'Translate this from Hindi into simplified Chinese: {{ sentence_hin }}
+      ||| {{ sentence_zho_simpl }}'
     metadata: *id001
-    name: equals-translation-eng-ory
-    reference: Equals translation (English into Oriya)
-  57203244-8068-437e-b812-6998374f93f9: !Template
+    name: translate-this-hin-zho_simpl
+    reference: Translate this from X to Y (Hindi into simplified Chinese)
+  566aa053-2971-4f2c-b646-7f63ed043809: !Template
     answer_choices: null
-    id: 57203244-8068-437e-b812-6998374f93f9
-    jinja: 'Vietnamese: {{ sentence_vie }} = Indonesian: ||| {{ sentence_ind }}'
+    id: 566aa053-2971-4f2c-b646-7f63ed043809
+    jinja: 'Translate this from Igbo into Punjabi: {{ sentence_ibo }} ||| {{ sentence_pan
+      }}'
     metadata: *id001
-    name: equals-translation-vie-ind
-    reference: Equals translation (Vietnamese into Indonesian)
-  575387bc-1959-4270-9f96-5e480f9e8af7: !Template
+    name: translate-this-ibo-pan
+    reference: Translate this from X to Y (Igbo into Punjabi)
+  5702f97c-5317-4e5f-aa57-417a8d5e906d: !Template
     answer_choices: null
-    id: 575387bc-1959-4270-9f96-5e480f9e8af7
-    jinja: 'Xhosa: {{ sentence_xho }} = Indonesian: ||| {{ sentence_ind }}'
+    id: 5702f97c-5317-4e5f-aa57-417a8d5e906d
+    jinja: 'Translate this from English into Brazilian Portuguese: {{ sentence_eng
+      }} ||| {{ sentence_por }}'
     metadata: *id001
-    name: equals-translation-xho-ind
-    reference: Equals translation (Xhosa into Indonesian)
-  57c2b9f3-4e2f-4a72-b95e-2b7fca8b05fa: !Template
+    name: translate-this-eng-por
+    reference: Translate this from X to Y (English into Brazilian Portuguese)
+  574908a1-7bc2-4774-9a33-bdac5f8dc798: !Template
     answer_choices: null
-    id: 57c2b9f3-4e2f-4a72-b95e-2b7fca8b05fa
-    jinja: 'Marathi: {{ sentence_mar }} = simplified Chinese: ||| {{ sentence_zho_simpl
-      }}'
+    id: 574908a1-7bc2-4774-9a33-bdac5f8dc798
+    jinja: 'Translate this from Brazilian Portuguese into Marathi: {{ sentence_por
+      }} ||| {{ sentence_mar }}'
     metadata: *id001
-    name: equals-translation-mar-zho_simpl
-    reference: Equals translation (Marathi into simplified Chinese)
-  582d6a4a-bb60-4ba7-8a92-7121b3e7708f: !Template
+    name: translate-this-por-mar
+    reference: Translate this from X to Y (Brazilian Portuguese into Marathi)
+  575b5c28-7541-4e57-a7b8-6090dbbfe2d2: !Template
     answer_choices: null
-    id: 582d6a4a-bb60-4ba7-8a92-7121b3e7708f
-    jinja: 'Urdu: {{ sentence_urd }} = Brazilian Portuguese: ||| {{ sentence_por }}'
+    id: 575b5c28-7541-4e57-a7b8-6090dbbfe2d2
+    jinja: 'Translate this from Wolof into Malayalam: {{ sentence_wol }} ||| {{ sentence_mal
+      }}'
     metadata: *id001
-    name: equals-translation-urd-por
-    reference: Equals translation (Urdu into Brazilian Portuguese)
-  583c7f2e-fb44-4456-90a3-ad80ead22f07: !Template
+    name: translate-this-wol-mal
+    reference: Translate this from X to Y (Wolof into Malayalam)
+  576a1cf3-cca2-4924-9f66-2c7032072f8c: !Template
     answer_choices: null
-    id: 583c7f2e-fb44-4456-90a3-ad80ead22f07
-    jinja: 'Bengali: {{ sentence_ben }} = French: ||| {{ sentence_fra }}'
+    id: 576a1cf3-cca2-4924-9f66-2c7032072f8c
+    jinja: 'Translate this from Northern Sotho into Wolof: {{ sentence_nso }} |||
+      {{ sentence_wol }}'
     metadata: *id001
-    name: equals-translation-ben-fra
-    reference: Equals translation (Bengali into French)
-  5847be2b-8a49-45f6-983f-54060019d85d: !Template
+    name: translate-this-nso-wol
+    reference: Translate this from X to Y (Northern Sotho into Wolof)
+  576a2237-3541-4b25-bd77-0f02424682de: !Template
     answer_choices: null
-    id: 5847be2b-8a49-45f6-983f-54060019d85d
-    jinja: 'Vietnamese: {{ sentence_vie }} = Wolof: ||| {{ sentence_wol }}'
+    id: 576a2237-3541-4b25-bd77-0f02424682de
+    jinja: 'Translate this from simplified Chinese into Zulu: {{ sentence_zho_simpl
+      }} ||| {{ sentence_zul }}'
     metadata: *id001
-    name: equals-translation-vie-wol
-    reference: Equals translation (Vietnamese into Wolof)
-  5871bb04-5557-428b-9e85-11c562af4808: !Template
+    name: translate-this-zho_simpl-zul
+    reference: Translate this from X to Y (simplified Chinese into Zulu)
+  57802972-38a5-4a2f-a413-194e07e968b8: !Template
     answer_choices: null
-    id: 5871bb04-5557-428b-9e85-11c562af4808
-    jinja: 'Xhosa: {{ sentence_xho }} = French: ||| {{ sentence_fra }}'
+    id: 57802972-38a5-4a2f-a413-194e07e968b8
+    jinja: 'Translate this from Latin American Spanish into Lingala: {{ sentence_spa
+      }} ||| {{ sentence_lin }}'
     metadata: *id001
-    name: equals-translation-xho-fra
-    reference: Equals translation (Xhosa into French)
-  587eef7b-1fea-402d-a601-a45cfe5f5a73: !Template
+    name: translate-this-spa-lin
+    reference: Translate this from X to Y (Latin American Spanish into Lingala)
+  57d337a8-21e2-49be-8c3e-03a668d9a2a3: !Template
     answer_choices: null
-    id: 587eef7b-1fea-402d-a601-a45cfe5f5a73
-    jinja: 'Bengali: {{ sentence_ben }} = Wolof: ||| {{ sentence_wol }}'
+    id: 57d337a8-21e2-49be-8c3e-03a668d9a2a3
+    jinja: 'Translate this from Assamese into Kannada: {{ sentence_asm }} ||| {{ sentence_kan
+      }}'
     metadata: *id001
-    name: equals-translation-ben-wol
-    reference: Equals translation (Bengali into Wolof)
-  58986de2-2fb2-44ec-a1fd-6d92ddd51d96: !Template
+    name: translate-this-asm-kan
+    reference: Translate this from X to Y (Assamese into Kannada)
+  57fc302d-bc42-4914-962c-d8248194484b: !Template
     answer_choices: null
-    id: 58986de2-2fb2-44ec-a1fd-6d92ddd51d96
-    jinja: 'Gujarati: {{ sentence_guj }} = Catalan: ||| {{ sentence_cat }}'
+    id: 57fc302d-bc42-4914-962c-d8248194484b
+    jinja: 'Translate this from Brazilian Portuguese into Lingala: {{ sentence_por
+      }} ||| {{ sentence_lin }}'
     metadata: *id001
-    name: equals-translation-guj-cat
-    reference: Equals translation (Gujarati into Catalan)
-  58da511f-4369-40c5-9fc9-c6b18fa62a67: !Template
+    name: translate-this-por-lin
+    reference: Translate this from X to Y (Brazilian Portuguese into Lingala)
+  57fc53af-f9da-46b1-8fee-d6b507221684: !Template
     answer_choices: null
-    id: 58da511f-4369-40c5-9fc9-c6b18fa62a67
-    jinja: 'Kannada: {{ sentence_kan }} = Lingala: ||| {{ sentence_lin }}'
+    id: 57fc53af-f9da-46b1-8fee-d6b507221684
+    jinja: 'Translate this from English into Assamese: {{ sentence_eng }} ||| {{ sentence_asm
+      }}'
     metadata: *id001
-    name: equals-translation-kan-lin
-    reference: Equals translation (Kannada into Lingala)
-  5972338f-e529-401f-a3b0-4118751bfeb1: !Template
+    name: translate-this-eng-asm
+    reference: Translate this from X to Y (English into Assamese)
+  58065d2e-3ac1-4ba9-bda2-f29c21491f59: !Template
     answer_choices: null
-    id: 5972338f-e529-401f-a3b0-4118751bfeb1
-    jinja: 'Assamese: {{ sentence_asm }} = Bengali: ||| {{ sentence_ben }}'
+    id: 58065d2e-3ac1-4ba9-bda2-f29c21491f59
+    jinja: 'Translate this from English into Telugu: {{ sentence_eng }} ||| {{ sentence_tel
+      }}'
     metadata: *id001
-    name: equals-translation-asm-ben
-    reference: Equals translation (Assamese into Bengali)
-  5a5a505d-77c9-4a92-992f-262caf0c7637: !Template
+    name: translate-this-eng-tel
+    reference: Translate this from X to Y (English into Telugu)
+  5843fb47-ada7-442e-b944-ae619ed56fb4: !Template
     answer_choices: null
-    id: 5a5a505d-77c9-4a92-992f-262caf0c7637
-    jinja: 'Lingala: {{ sentence_lin }} = Malayalam: ||| {{ sentence_mal }}'
+    id: 5843fb47-ada7-442e-b944-ae619ed56fb4
+    jinja: 'Translate this from Punjabi into simplified Chinese: {{ sentence_pan }}
+      ||| {{ sentence_zho_simpl }}'
     metadata: *id001
-    name: equals-translation-lin-mal
-    reference: Equals translation (Lingala into Malayalam)
-  5a8b3f84-b323-45eb-b929-361bb7fd7c36: !Template
+    name: translate-this-pan-zho_simpl
+    reference: Translate this from X to Y (Punjabi into simplified Chinese)
+  584b4a1d-969d-4cb8-b176-6fecbea362a9: !Template
     answer_choices: null
-    id: 5a8b3f84-b323-45eb-b929-361bb7fd7c36
-    jinja: 'Catalan: {{ sentence_cat }} = Brazilian Portuguese: ||| {{ sentence_por
+    id: 584b4a1d-969d-4cb8-b176-6fecbea362a9
+    jinja: 'Translate this from Hindi into Oriya: {{ sentence_hin }} ||| {{ sentence_ory
       }}'
     metadata: *id001
-    name: equals-translation-cat-por
-    reference: Equals translation (Catalan into Brazilian Portuguese)
-  5b8220d3-b11f-4bad-969f-ed383a908f2a: !Template
+    name: translate-this-hin-ory
+    reference: Translate this from X to Y (Hindi into Oriya)
+  5856cccb-0e1e-4c7e-8b0b-5b06c1bd1fb9: !Template
     answer_choices: null
-    id: 5b8220d3-b11f-4bad-969f-ed383a908f2a
-    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Gujarati: ||| {{ sentence_guj
+    id: 5856cccb-0e1e-4c7e-8b0b-5b06c1bd1fb9
+    jinja: 'Translate this from Bengali into Yoruba: {{ sentence_ben }} ||| {{ sentence_yor
       }}'
     metadata: *id001
-    name: equals-translation-zho_trad-guj
-    reference: Equals translation (traditional Chinese into Gujarati)
-  5bb56e19-5c4d-4133-9888-affadeda5e4b: !Template
+    name: translate-this-ben-yor
+    reference: Translate this from X to Y (Bengali into Yoruba)
+  58dfd5b3-b087-49cb-bad2-99e1255633d2: !Template
     answer_choices: null
-    id: 5bb56e19-5c4d-4133-9888-affadeda5e4b
-    jinja: 'Nepali: {{ sentence_npi }} = Swahili: ||| {{ sentence_swh }}'
+    id: 58dfd5b3-b087-49cb-bad2-99e1255633d2
+    jinja: 'Translate this from Lingala into Indonesian: {{ sentence_lin }} ||| {{
+      sentence_ind }}'
     metadata: *id001
-    name: equals-translation-npi-swh
-    reference: Equals translation (Nepali into Swahili)
-  5bf46d3c-5fa8-4c63-a49e-184471133f65: !Template
+    name: translate-this-lin-ind
+    reference: Translate this from X to Y (Lingala into Indonesian)
+  59467245-efff-4efc-a745-ff079636bded: !Template
     answer_choices: null
-    id: 5bf46d3c-5fa8-4c63-a49e-184471133f65
-    jinja: 'Igbo: {{ sentence_ibo }} = Gujarati: ||| {{ sentence_guj }}'
+    id: 59467245-efff-4efc-a745-ff079636bded
+    jinja: 'Translate this from Kannada into Brazilian Portuguese: {{ sentence_kan
+      }} ||| {{ sentence_por }}'
     metadata: *id001
-    name: equals-translation-ibo-guj
-    reference: Equals translation (Igbo into Gujarati)
-  5c22b094-c127-4fa8-9bf6-0092016e49d1: !Template
+    name: translate-this-kan-por
+    reference: Translate this from X to Y (Kannada into Brazilian Portuguese)
+  59d177b2-e187-4582-9fd0-0344015edf40: !Template
     answer_choices: null
-    id: 5c22b094-c127-4fa8-9bf6-0092016e49d1
-    jinja: 'Kannada: {{ sentence_kan }} = Zulu: ||| {{ sentence_zul }}'
+    id: 59d177b2-e187-4582-9fd0-0344015edf40
+    jinja: 'Translate this from Hindi into Assamese: {{ sentence_hin }} ||| {{ sentence_asm
+      }}'
     metadata: *id001
-    name: equals-translation-kan-zul
-    reference: Equals translation (Kannada into Zulu)
-  5c456ec3-9c00-4255-a8bf-7eaa63b729b2: !Template
+    name: translate-this-hin-asm
+    reference: Translate this from X to Y (Hindi into Assamese)
+  59df43af-40f0-474c-af5c-712c65bf1588: !Template
     answer_choices: null
-    id: 5c456ec3-9c00-4255-a8bf-7eaa63b729b2
-    jinja: 'Igbo: {{ sentence_ibo }} = Kannada: ||| {{ sentence_kan }}'
+    id: 59df43af-40f0-474c-af5c-712c65bf1588
+    jinja: 'Translate this from Punjabi into Igbo: {{ sentence_pan }} ||| {{ sentence_ibo
+      }}'
     metadata: *id001
-    name: equals-translation-ibo-kan
-    reference: Equals translation (Igbo into Kannada)
-  5c9c224f-785b-4a63-b786-3078d5491dcc: !Template
+    name: translate-this-pan-ibo
+    reference: Translate this from X to Y (Punjabi into Igbo)
+  5a168a1f-181a-4c8e-a80f-28a689fecd25: !Template
     answer_choices: null
-    id: 5c9c224f-785b-4a63-b786-3078d5491dcc
-    jinja: 'Yoruba: {{ sentence_yor }} = Vietnamese: ||| {{ sentence_vie }}'
+    id: 5a168a1f-181a-4c8e-a80f-28a689fecd25
+    jinja: 'Translate this from traditional Chinese into Hindi: {{ sentence_zho_trad
+      }} ||| {{ sentence_hin }}'
     metadata: *id001
-    name: equals-translation-yor-vie
-    reference: Equals translation (Yoruba into Vietnamese)
-  5dc6bad9-b0b3-41d1-8436-d5b980f5b8f9: !Template
+    name: translate-this-zho_trad-hin
+    reference: Translate this from X to Y (traditional Chinese into Hindi)
+  5a26be81-74e4-4786-a9bd-3a51db5ad27f: !Template
     answer_choices: null
-    id: 5dc6bad9-b0b3-41d1-8436-d5b980f5b8f9
-    jinja: 'Northern Sotho: {{ sentence_nso }} = traditional Chinese: ||| {{ sentence_zho_trad
+    id: 5a26be81-74e4-4786-a9bd-3a51db5ad27f
+    jinja: 'Translate this from traditional Chinese into Marathi: {{ sentence_zho_trad
+      }} ||| {{ sentence_mar }}'
+    metadata: *id001
+    name: translate-this-zho_trad-mar
+    reference: Translate this from X to Y (traditional Chinese into Marathi)
+  5a70546e-132a-43f7-b499-09152ec4ff73: !Template
+    answer_choices: null
+    id: 5a70546e-132a-43f7-b499-09152ec4ff73
+    jinja: 'Translate this from Swahili into Urdu: {{ sentence_swh }} ||| {{ sentence_urd
       }}'
     metadata: *id001
-    name: equals-translation-nso-zho_trad
-    reference: Equals translation (Northern Sotho into traditional Chinese)
-  5df7639e-3151-4d64-85dd-84180b1bd765: !Template
+    name: translate-this-swh-urd
+    reference: Translate this from X to Y (Swahili into Urdu)
+  5a8707d6-b527-4907-8f03-3121b959a488: !Template
     answer_choices: null
-    id: 5df7639e-3151-4d64-85dd-84180b1bd765
-    jinja: 'Bengali: {{ sentence_ben }} = Marathi: ||| {{ sentence_mar }}'
+    id: 5a8707d6-b527-4907-8f03-3121b959a488
+    jinja: 'Translate this from Catalan into English: {{ sentence_cat }} ||| {{ sentence_eng
+      }}'
     metadata: *id001
-    name: equals-translation-ben-mar
-    reference: Equals translation (Bengali into Marathi)
-  5e362705-9ef2-4a65-a1fb-4f6b79e15fd7: !Template
+    name: translate-this-cat-eng
+    reference: Translate this from X to Y (Catalan into English)
+  5b21f205-47ca-441c-baf2-c48cd1b1d76d: !Template
     answer_choices: null
-    id: 5e362705-9ef2-4a65-a1fb-4f6b79e15fd7
-    jinja: 'Telugu: {{ sentence_tel }} = Gujarati: ||| {{ sentence_guj }}'
+    id: 5b21f205-47ca-441c-baf2-c48cd1b1d76d
+    jinja: 'Translate this from Lingala into Brazilian Portuguese: {{ sentence_lin
+      }} ||| {{ sentence_por }}'
     metadata: *id001
-    name: equals-translation-tel-guj
-    reference: Equals translation (Telugu into Gujarati)
-  5e9ee7fd-1931-4000-81de-d4876d91fe7e: !Template
+    name: translate-this-lin-por
+    reference: Translate this from X to Y (Lingala into Brazilian Portuguese)
+  5b3b80a2-11c1-4b95-96ad-1807393929cb: !Template
     answer_choices: null
-    id: 5e9ee7fd-1931-4000-81de-d4876d91fe7e
-    jinja: 'Zulu: {{ sentence_zul }} = Oriya: ||| {{ sentence_ory }}'
+    id: 5b3b80a2-11c1-4b95-96ad-1807393929cb
+    jinja: 'Translate this from traditional Chinese into English: {{ sentence_zho_trad
+      }} ||| {{ sentence_eng }}'
     metadata: *id001
-    name: equals-translation-zul-ory
-    reference: Equals translation (Zulu into Oriya)
-  5ed21c17-5ece-401f-a71a-c24b5f35543b: !Template
+    name: translate-this-zho_trad-eng
+    reference: Translate this from X to Y (traditional Chinese into English)
+  5b46fca6-f5f8-42f0-babc-64a8e5bff329: !Template
     answer_choices: null
-    id: 5ed21c17-5ece-401f-a71a-c24b5f35543b
-    jinja: 'Nepali: {{ sentence_npi }} = Latin American Spanish: ||| {{ sentence_spa
+    id: 5b46fca6-f5f8-42f0-babc-64a8e5bff329
+    jinja: 'Translate this from Bengali into Punjabi: {{ sentence_ben }} ||| {{ sentence_pan
       }}'
     metadata: *id001
-    name: equals-translation-npi-spa
-    reference: Equals translation (Nepali into Latin American Spanish)
-  5f11dc11-b514-4c38-8e56-abfbcbc5212d: !Template
+    name: translate-this-ben-pan
+    reference: Translate this from X to Y (Bengali into Punjabi)
+  5bc20ee3-e94c-4f68-8eeb-994b912960bc: !Template
     answer_choices: null
-    id: 5f11dc11-b514-4c38-8e56-abfbcbc5212d
-    jinja: 'Zulu: {{ sentence_zul }} = Bengali: ||| {{ sentence_ben }}'
+    id: 5bc20ee3-e94c-4f68-8eeb-994b912960bc
+    jinja: 'Translate this from Urdu into Wolof: {{ sentence_urd }} ||| {{ sentence_wol
+      }}'
     metadata: *id001
-    name: equals-translation-zul-ben
-    reference: Equals translation (Zulu into Bengali)
-  5f3cb1c2-3e45-4900-aef0-b3dd2709fb8f: !Template
+    name: translate-this-urd-wol
+    reference: Translate this from X to Y (Urdu into Wolof)
+  5bcaabe4-36b1-43b7-aa3a-8d4abfee032a: !Template
     answer_choices: null
-    id: 5f3cb1c2-3e45-4900-aef0-b3dd2709fb8f
-    jinja: 'Assamese: {{ sentence_asm }} = Vietnamese: ||| {{ sentence_vie }}'
+    id: 5bcaabe4-36b1-43b7-aa3a-8d4abfee032a
+    jinja: 'Translate this from Assamese into Latin American Spanish: {{ sentence_asm
+      }} ||| {{ sentence_spa }}'
     metadata: *id001
-    name: equals-translation-asm-vie
-    reference: Equals translation (Assamese into Vietnamese)
-  5f48c3af-75fb-4070-b0dc-476a1b404fa1: !Template
+    name: translate-this-asm-spa
+    reference: Translate this from X to Y (Assamese into Latin American Spanish)
+  5bd7e594-90df-40e5-a1a9-92033dd44418: !Template
     answer_choices: null
-    id: 5f48c3af-75fb-4070-b0dc-476a1b404fa1
-    jinja: 'Hindi: {{ sentence_hin }} = Kannada: ||| {{ sentence_kan }}'
+    id: 5bd7e594-90df-40e5-a1a9-92033dd44418
+    jinja: 'Translate this from Bengali into Swahili: {{ sentence_ben }} ||| {{ sentence_swh
+      }}'
     metadata: *id001
-    name: equals-translation-hin-kan
-    reference: Equals translation (Hindi into Kannada)
-  5f59f977-6137-44e0-873d-49157fe5e4e9: !Template
+    name: translate-this-ben-swh
+    reference: Translate this from X to Y (Bengali into Swahili)
+  5c5fc29f-486f-4adb-9200-4b8ccb9717d0: !Template
     answer_choices: null
-    id: 5f59f977-6137-44e0-873d-49157fe5e4e9
-    jinja: 'Latin American Spanish: {{ sentence_spa }} = traditional Chinese: |||
-      {{ sentence_zho_trad }}'
+    id: 5c5fc29f-486f-4adb-9200-4b8ccb9717d0
+    jinja: 'Translate this from Latin American Spanish into Indonesian: {{ sentence_spa
+      }} ||| {{ sentence_ind }}'
     metadata: *id001
-    name: equals-translation-spa-zho_trad
-    reference: Equals translation (Latin American Spanish into traditional Chinese)
-  5fe111e7-4633-45e9-bbd8-0b3415c95f78: !Template
+    name: translate-this-spa-ind
+    reference: Translate this from X to Y (Latin American Spanish into Indonesian)
+  5c80a396-e7ca-4379-b2df-d09cdef55fd9: !Template
     answer_choices: null
-    id: 5fe111e7-4633-45e9-bbd8-0b3415c95f78
-    jinja: 'Telugu: {{ sentence_tel }} = Wolof: ||| {{ sentence_wol }}'
+    id: 5c80a396-e7ca-4379-b2df-d09cdef55fd9
+    jinja: 'Translate this from Nepali into Tamil: {{ sentence_npi }} ||| {{ sentence_tam
+      }}'
     metadata: *id001
-    name: equals-translation-tel-wol
-    reference: Equals translation (Telugu into Wolof)
-  60904d72-ef1c-4397-95eb-36b179b73e85: !Template
+    name: translate-this-npi-tam
+    reference: Translate this from X to Y (Nepali into Tamil)
+  5c8ff352-3ee3-477b-9572-cd0ab6212a75: !Template
     answer_choices: null
-    id: 60904d72-ef1c-4397-95eb-36b179b73e85
-    jinja: 'Oriya: {{ sentence_ory }} = Urdu: ||| {{ sentence_urd }}'
+    id: 5c8ff352-3ee3-477b-9572-cd0ab6212a75
+    jinja: 'Translate this from English into Zulu: {{ sentence_eng }} ||| {{ sentence_zul
+      }}'
     metadata: *id001
-    name: equals-translation-ory-urd
-    reference: Equals translation (Oriya into Urdu)
-  6093d9fc-643b-48a3-833b-4bef980aa9ad: !Template
+    name: translate-this-eng-zul
+    reference: Translate this from X to Y (English into Zulu)
+  5cd07389-3126-4fe6-b320-dbf264b0fc10: !Template
     answer_choices: null
-    id: 6093d9fc-643b-48a3-833b-4bef980aa9ad
-    jinja: 'Zulu: {{ sentence_zul }} = Indonesian: ||| {{ sentence_ind }}'
+    id: 5cd07389-3126-4fe6-b320-dbf264b0fc10
+    jinja: 'Translate this from Kannada into Arabic: {{ sentence_kan }} ||| {{ sentence_ara
+      }}'
     metadata: *id001
-    name: equals-translation-zul-ind
-    reference: Equals translation (Zulu into Indonesian)
-  60e40ab9-0d08-4f3f-bc9b-8453f8bad6be: !Template
+    name: translate-this-kan-ara
+    reference: Translate this from X to Y (Kannada into Arabic)
+  5d65d628-4fad-4ec0-9e8f-8456d3b1151b: !Template
     answer_choices: null
-    id: 60e40ab9-0d08-4f3f-bc9b-8453f8bad6be
-    jinja: 'Malayalam: {{ sentence_mal }} = Zulu: ||| {{ sentence_zul }}'
+    id: 5d65d628-4fad-4ec0-9e8f-8456d3b1151b
+    jinja: 'Translate this from Xhosa into English: {{ sentence_xho }} ||| {{ sentence_eng
+      }}'
     metadata: *id001
-    name: equals-translation-mal-zul
-    reference: Equals translation (Malayalam into Zulu)
-  60eb50de-28d0-48b8-b236-892a7c954aa7: !Template
+    name: translate-this-xho-eng
+    reference: Translate this from X to Y (Xhosa into English)
+  5dc3ce98-e536-47e6-97e8-dcb854610dda: !Template
     answer_choices: null
-    id: 60eb50de-28d0-48b8-b236-892a7c954aa7
-    jinja: 'Igbo: {{ sentence_ibo }} = Tamil: ||| {{ sentence_tam }}'
+    id: 5dc3ce98-e536-47e6-97e8-dcb854610dda
+    jinja: 'Translate this from English into Bengali: {{ sentence_eng }} ||| {{ sentence_ben
+      }}'
     metadata: *id001
-    name: equals-translation-ibo-tam
-    reference: Equals translation (Igbo into Tamil)
-  61479cb1-86d8-480b-a6d8-1a8c9ebed907: !Template
+    name: translate-this-eng-ben
+    reference: Translate this from X to Y (English into Bengali)
+  5ed26cd2-fffa-4930-8ba7-7b51785e527e: !Template
     answer_choices: null
-    id: 61479cb1-86d8-480b-a6d8-1a8c9ebed907
-    jinja: 'Swahili: {{ sentence_swh }} = Telugu: ||| {{ sentence_tel }}'
+    id: 5ed26cd2-fffa-4930-8ba7-7b51785e527e
+    jinja: 'Translate this from French into Punjabi: {{ sentence_fra }} ||| {{ sentence_pan
+      }}'
     metadata: *id001
-    name: equals-translation-swh-tel
-    reference: Equals translation (Swahili into Telugu)
-  6152136c-8e53-48c9-ac2c-0591ee1d74b7: !Template
+    name: translate-this-fra-pan
+    reference: Translate this from X to Y (French into Punjabi)
+  5ee611ee-4ebc-4951-b923-9f33a7c033c6: !Template
     answer_choices: null
-    id: 6152136c-8e53-48c9-ac2c-0591ee1d74b7
-    jinja: 'Swahili: {{ sentence_swh }} = Punjabi: ||| {{ sentence_pan }}'
+    id: 5ee611ee-4ebc-4951-b923-9f33a7c033c6
+    jinja: 'Translate this from Oriya into Malayalam: {{ sentence_ory }} ||| {{ sentence_mal
+      }}'
     metadata: *id001
-    name: equals-translation-swh-pan
-    reference: Equals translation (Swahili into Punjabi)
-  6172dda0-dccf-4526-8d96-c48c9e31cead: !Template
+    name: translate-this-ory-mal
+    reference: Translate this from X to Y (Oriya into Malayalam)
+  5f1765e8-5527-4a1d-aaf7-b138561cbb50: !Template
     answer_choices: null
-    id: 6172dda0-dccf-4526-8d96-c48c9e31cead
-    jinja: 'Indonesian: {{ sentence_ind }} = Oriya: ||| {{ sentence_ory }}'
+    id: 5f1765e8-5527-4a1d-aaf7-b138561cbb50
+    jinja: 'Translate this from Gujarati into Bengali: {{ sentence_guj }} ||| {{ sentence_ben
+      }}'
     metadata: *id001
-    name: equals-translation-ind-ory
-    reference: Equals translation (Indonesian into Oriya)
-  61a33dde-d343-47be-b79e-d1cb7e3ae2c3: !Template
+    name: translate-this-guj-ben
+    reference: Translate this from X to Y (Gujarati into Bengali)
+  5fb7c52d-3c78-42b5-8c83-ffb699cc5a87: !Template
     answer_choices: null
-    id: 61a33dde-d343-47be-b79e-d1cb7e3ae2c3
-    jinja: 'Xhosa: {{ sentence_xho }} = Marathi: ||| {{ sentence_mar }}'
+    id: 5fb7c52d-3c78-42b5-8c83-ffb699cc5a87
+    jinja: 'Translate this from Swahili into Catalan: {{ sentence_swh }} ||| {{ sentence_cat
+      }}'
     metadata: *id001
-    name: equals-translation-xho-mar
-    reference: Equals translation (Xhosa into Marathi)
-  61b2ad10-99de-4022-817c-d0c83166ad54: !Template
+    name: translate-this-swh-cat
+    reference: Translate this from X to Y (Swahili into Catalan)
+  5fb8bdfd-1bf0-4869-b211-f9dc7616069d: !Template
     answer_choices: null
-    id: 61b2ad10-99de-4022-817c-d0c83166ad54
-    jinja: 'Northern Sotho: {{ sentence_nso }} = Oriya: ||| {{ sentence_ory }}'
+    id: 5fb8bdfd-1bf0-4869-b211-f9dc7616069d
+    jinja: 'Translate this from Marathi into English: {{ sentence_mar }} ||| {{ sentence_eng
+      }}'
     metadata: *id001
-    name: equals-translation-nso-ory
-    reference: Equals translation (Northern Sotho into Oriya)
-  61f28d52-d2c4-4f05-a79a-e6a5f8952dc0: !Template
+    name: translate-this-mar-eng
+    reference: Translate this from X to Y (Marathi into English)
+  5fca01cc-7e27-4112-94bc-f210a87ce9d9: !Template
     answer_choices: null
-    id: 61f28d52-d2c4-4f05-a79a-e6a5f8952dc0
-    jinja: 'Wolof: {{ sentence_wol }} = Zulu: ||| {{ sentence_zul }}'
+    id: 5fca01cc-7e27-4112-94bc-f210a87ce9d9
+    jinja: 'Translate this from Northern Sotho into Gujarati: {{ sentence_nso }} |||
+      {{ sentence_guj }}'
     metadata: *id001
-    name: equals-translation-wol-zul
-    reference: Equals translation (Wolof into Zulu)
-  629c1613-30f2-4859-a4de-2ddb163a17da: !Template
+    name: translate-this-nso-guj
+    reference: Translate this from X to Y (Northern Sotho into Gujarati)
+  5fe966f1-81ca-4836-9b5f-4b672e0ef2bf: !Template
     answer_choices: null
-    id: 629c1613-30f2-4859-a4de-2ddb163a17da
-    jinja: 'Oriya: {{ sentence_ory }} = French: ||| {{ sentence_fra }}'
+    id: 5fe966f1-81ca-4836-9b5f-4b672e0ef2bf
+    jinja: 'Translate this from Yoruba into Latin American Spanish: {{ sentence_yor
+      }} ||| {{ sentence_spa }}'
     metadata: *id001
-    name: equals-translation-ory-fra
-    reference: Equals translation (Oriya into French)
-  62ad478a-2c4f-4410-8175-059217cf0a89: !Template
+    name: translate-this-yor-spa
+    reference: Translate this from X to Y (Yoruba into Latin American Spanish)
+  6024e4c9-320b-43de-aa2d-ce55f459fd06: !Template
     answer_choices: null
-    id: 62ad478a-2c4f-4410-8175-059217cf0a89
-    jinja: 'Northern Sotho: {{ sentence_nso }} = Yoruba: ||| {{ sentence_yor }}'
+    id: 6024e4c9-320b-43de-aa2d-ce55f459fd06
+    jinja: 'Translate this from Punjabi into Urdu: {{ sentence_pan }} ||| {{ sentence_urd
+      }}'
     metadata: *id001
-    name: equals-translation-nso-yor
-    reference: Equals translation (Northern Sotho into Yoruba)
-  62c178fe-11ef-44e4-bfa0-9a9ee490b122: !Template
+    name: translate-this-pan-urd
+    reference: Translate this from X to Y (Punjabi into Urdu)
+  610691d1-75e6-401b-b2b5-55b3d908ba58: !Template
     answer_choices: null
-    id: 62c178fe-11ef-44e4-bfa0-9a9ee490b122
-    jinja: 'Kannada: {{ sentence_kan }} = Punjabi: ||| {{ sentence_pan }}'
+    id: 610691d1-75e6-401b-b2b5-55b3d908ba58
+    jinja: 'Translate this from Marathi into Northern Sotho: {{ sentence_mar }} |||
+      {{ sentence_nso }}'
     metadata: *id001
-    name: equals-translation-kan-pan
-    reference: Equals translation (Kannada into Punjabi)
-  62f17be0-d5c4-4bc4-8797-21dcda0ee57a: !Template
+    name: translate-this-mar-nso
+    reference: Translate this from X to Y (Marathi into Northern Sotho)
+  613836bc-f33d-4527-a8dd-daa12639fe2f: !Template
     answer_choices: null
-    id: 62f17be0-d5c4-4bc4-8797-21dcda0ee57a
-    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Bengali: ||| {{ sentence_ben
+    id: 613836bc-f33d-4527-a8dd-daa12639fe2f
+    jinja: 'Translate this from Xhosa into Punjabi: {{ sentence_xho }} ||| {{ sentence_pan
       }}'
     metadata: *id001
-    name: equals-translation-por-ben
-    reference: Equals translation (Brazilian Portuguese into Bengali)
-  63130fc9-9bea-48b0-a7b2-9cdf74fe3c49: !Template
+    name: translate-this-xho-pan
+    reference: Translate this from X to Y (Xhosa into Punjabi)
+  619d9995-4c89-402f-870a-2cdabff29f6b: !Template
     answer_choices: null
-    id: 63130fc9-9bea-48b0-a7b2-9cdf74fe3c49
-    jinja: 'Assamese: {{ sentence_asm }} = Tamil: ||| {{ sentence_tam }}'
+    id: 619d9995-4c89-402f-870a-2cdabff29f6b
+    jinja: 'Translate this from Nepali into Indonesian: {{ sentence_npi }} ||| {{
+      sentence_ind }}'
     metadata: *id001
-    name: equals-translation-asm-tam
-    reference: Equals translation (Assamese into Tamil)
-  63af9bd7-5e02-4210-ad0a-4d6a7b694ea5: !Template
+    name: translate-this-npi-ind
+    reference: Translate this from X to Y (Nepali into Indonesian)
+  61b02407-ed4c-46b2-8838-2e4d3c10f4a5: !Template
     answer_choices: null
-    id: 63af9bd7-5e02-4210-ad0a-4d6a7b694ea5
-    jinja: 'French: {{ sentence_fra }} = English: ||| {{ sentence_eng }}'
+    id: 61b02407-ed4c-46b2-8838-2e4d3c10f4a5
+    jinja: 'Translate this from Vietnamese into Punjabi: {{ sentence_vie }} ||| {{
+      sentence_pan }}'
     metadata: *id001
-    name: equals-translation-fra-eng
-    reference: Equals translation (French into English)
-  63d5b74f-9b37-402d-88d5-ca9647ddfa3f: !Template
+    name: translate-this-vie-pan
+    reference: Translate this from X to Y (Vietnamese into Punjabi)
+  61b89f17-fa97-4f15-a353-15355115ad3b: !Template
     answer_choices: null
-    id: 63d5b74f-9b37-402d-88d5-ca9647ddfa3f
-    jinja: 'Latin American Spanish: {{ sentence_spa }} = Telugu: ||| {{ sentence_tel
+    id: 61b89f17-fa97-4f15-a353-15355115ad3b
+    jinja: 'Translate this from Marathi into Bengali: {{ sentence_mar }} ||| {{ sentence_ben
       }}'
     metadata: *id001
-    name: equals-translation-spa-tel
-    reference: Equals translation (Latin American Spanish into Telugu)
-  64ab28de-6228-4093-a7b7-71ec625265ef: !Template
+    name: translate-this-mar-ben
+    reference: Translate this from X to Y (Marathi into Bengali)
+  61df2994-e73b-4576-80df-85ee5574391b: !Template
     answer_choices: null
-    id: 64ab28de-6228-4093-a7b7-71ec625265ef
-    jinja: 'Wolof: {{ sentence_wol }} = Yoruba: ||| {{ sentence_yor }}'
-    metadata: *id001
-    name: equals-translation-wol-yor
-    reference: Equals translation (Wolof into Yoruba)
-  64c5fb53-b86a-4b1c-b50f-c860f8df5be0: !Template
-    answer_choices: null
-    id: 64c5fb53-b86a-4b1c-b50f-c860f8df5be0
-    jinja: 'Bengali: {{ sentence_ben }} = Hindi: ||| {{ sentence_hin }}'
+    id: 61df2994-e73b-4576-80df-85ee5574391b
+    jinja: 'Translate this from Wolof into Indonesian: {{ sentence_wol }} ||| {{ sentence_ind
+      }}'
     metadata: *id001
-    name: equals-translation-ben-hin
-    reference: Equals translation (Bengali into Hindi)
-  64cfc5fc-09eb-45e6-80f2-bae680b7e6e4: !Template
+    name: translate-this-wol-ind
+    reference: Translate this from X to Y (Wolof into Indonesian)
+  621af336-ca98-4790-a87e-b0368d215fa1: !Template
     answer_choices: null
-    id: 64cfc5fc-09eb-45e6-80f2-bae680b7e6e4
-    jinja: 'Arabic: {{ sentence_ara }} = Punjabi: ||| {{ sentence_pan }}'
+    id: 621af336-ca98-4790-a87e-b0368d215fa1
+    jinja: 'Translate this from Brazilian Portuguese into Swahili: {{ sentence_por
+      }} ||| {{ sentence_swh }}'
     metadata: *id001
-    name: equals-translation-ara-pan
-    reference: Equals translation (Arabic into Punjabi)
-  652af00b-7e49-452b-ba6f-aca92b1fbf35: !Template
+    name: translate-this-por-swh
+    reference: Translate this from X to Y (Brazilian Portuguese into Swahili)
+  626cd4a6-4579-44ad-a33b-776dff3689dc: !Template
     answer_choices: null
-    id: 652af00b-7e49-452b-ba6f-aca92b1fbf35
-    jinja: 'Catalan: {{ sentence_cat }} = Wolof: ||| {{ sentence_wol }}'
+    id: 626cd4a6-4579-44ad-a33b-776dff3689dc
+    jinja: 'Translate this from Swahili into Xhosa: {{ sentence_swh }} ||| {{ sentence_xho
+      }}'
     metadata: *id001
-    name: equals-translation-cat-wol
-    reference: Equals translation (Catalan into Wolof)
-  6570dde9-7d9c-425f-a62b-77248467795c: !Template
+    name: translate-this-swh-xho
+    reference: Translate this from X to Y (Swahili into Xhosa)
+  6291b664-f400-49e4-943d-c269efbafbe2: !Template
     answer_choices: null
-    id: 6570dde9-7d9c-425f-a62b-77248467795c
-    jinja: 'Punjabi: {{ sentence_pan }} = Swahili: ||| {{ sentence_swh }}'
+    id: 6291b664-f400-49e4-943d-c269efbafbe2
+    jinja: 'Translate this from Urdu into Tamil: {{ sentence_urd }} ||| {{ sentence_tam
+      }}'
     metadata: *id001
-    name: equals-translation-pan-swh
-    reference: Equals translation (Punjabi into Swahili)
-  65866700-d34a-48a3-a0bf-19b9fccc6551: !Template
+    name: translate-this-urd-tam
+    reference: Translate this from X to Y (Urdu into Tamil)
+  63331ee8-489d-46bf-82ee-5d79d74de4b8: !Template
     answer_choices: null
-    id: 65866700-d34a-48a3-a0bf-19b9fccc6551
-    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Tamil: ||| {{ sentence_tam
+    id: 63331ee8-489d-46bf-82ee-5d79d74de4b8
+    jinja: 'Translate this from French into Kannada: {{ sentence_fra }} ||| {{ sentence_kan
       }}'
     metadata: *id001
-    name: equals-translation-zho_simpl-tam
-    reference: Equals translation (simplified Chinese into Tamil)
-  65ba40fd-a3da-48bb-a4c7-4b68236a1734: !Template
+    name: translate-this-fra-kan
+    reference: Translate this from X to Y (French into Kannada)
+  6352dbfd-e9fa-410a-9eab-63fb8fd4c700: !Template
     answer_choices: null
-    id: 65ba40fd-a3da-48bb-a4c7-4b68236a1734
-    jinja: 'Nepali: {{ sentence_npi }} = Yoruba: ||| {{ sentence_yor }}'
+    id: 6352dbfd-e9fa-410a-9eab-63fb8fd4c700
+    jinja: 'Translate this from Tamil into Punjabi: {{ sentence_tam }} ||| {{ sentence_pan
+      }}'
     metadata: *id001
-    name: equals-translation-npi-yor
-    reference: Equals translation (Nepali into Yoruba)
-  65c50c9e-d603-437a-8a6d-69efa677953a: !Template
+    name: translate-this-tam-pan
+    reference: Translate this from X to Y (Tamil into Punjabi)
+  6388210f-bce6-4af8-8da0-e8a5150afde1: !Template
     answer_choices: null
-    id: 65c50c9e-d603-437a-8a6d-69efa677953a
-    jinja: 'Wolof: {{ sentence_wol }} = Assamese: ||| {{ sentence_asm }}'
+    id: 6388210f-bce6-4af8-8da0-e8a5150afde1
+    jinja: 'Translate this from Swahili into Lingala: {{ sentence_swh }} ||| {{ sentence_lin
+      }}'
     metadata: *id001
-    name: equals-translation-wol-asm
-    reference: Equals translation (Wolof into Assamese)
-  660db695-ea30-4175-9ca5-8de2a91a3280: !Template
+    name: translate-this-swh-lin
+    reference: Translate this from X to Y (Swahili into Lingala)
+  63d12a13-6737-43b5-969a-6e143e024769: !Template
     answer_choices: null
-    id: 660db695-ea30-4175-9ca5-8de2a91a3280
-    jinja: 'Kannada: {{ sentence_kan }} = Indonesian: ||| {{ sentence_ind }}'
+    id: 63d12a13-6737-43b5-969a-6e143e024769
+    jinja: 'Translate this from Assamese into Malayalam: {{ sentence_asm }} ||| {{
+      sentence_mal }}'
     metadata: *id001
-    name: equals-translation-kan-ind
-    reference: Equals translation (Kannada into Indonesian)
-  661b40c6-280f-4fec-b0b2-e633497f937c: !Template
+    name: translate-this-asm-mal
+    reference: Translate this from X to Y (Assamese into Malayalam)
+  63d40494-5afe-4156-8772-7a4e9896b326: !Template
     answer_choices: null
-    id: 661b40c6-280f-4fec-b0b2-e633497f937c
-    jinja: 'French: {{ sentence_fra }} = Northern Sotho: ||| {{ sentence_nso }}'
+    id: 63d40494-5afe-4156-8772-7a4e9896b326
+    jinja: 'Translate this from Nepali into Igbo: {{ sentence_npi }} ||| {{ sentence_ibo
+      }}'
     metadata: *id001
-    name: equals-translation-fra-nso
-    reference: Equals translation (French into Northern Sotho)
-  66277df0-1bf6-4d92-999d-236d98f5f8e7: !Template
+    name: translate-this-npi-ibo
+    reference: Translate this from X to Y (Nepali into Igbo)
+  63d7cd2e-be02-4bee-bbfb-87036088a094: !Template
     answer_choices: null
-    id: 66277df0-1bf6-4d92-999d-236d98f5f8e7
-    jinja: 'Zulu: {{ sentence_zul }} = simplified Chinese: ||| {{ sentence_zho_simpl
+    id: 63d7cd2e-be02-4bee-bbfb-87036088a094
+    jinja: 'Translate this from Zulu into English: {{ sentence_zul }} ||| {{ sentence_eng
       }}'
     metadata: *id001
-    name: equals-translation-zul-zho_simpl
-    reference: Equals translation (Zulu into simplified Chinese)
-  66586e65-8aa4-4c15-a900-972f78bfc9e7: !Template
+    name: translate-this-zul-eng
+    reference: Translate this from X to Y (Zulu into English)
+  640c2ad8-3c00-4264-a402-13cd25638f73: !Template
     answer_choices: null
-    id: 66586e65-8aa4-4c15-a900-972f78bfc9e7
-    jinja: 'Swahili: {{ sentence_swh }} = English: ||| {{ sentence_eng }}'
+    id: 640c2ad8-3c00-4264-a402-13cd25638f73
+    jinja: 'Translate this from Northern Sotho into Catalan: {{ sentence_nso }} |||
+      {{ sentence_cat }}'
     metadata: *id001
-    name: equals-translation-swh-eng
-    reference: Equals translation (Swahili into English)
-  665e0838-130f-4e8d-be18-adcd6edf59e1: !Template
+    name: translate-this-nso-cat
+    reference: Translate this from X to Y (Northern Sotho into Catalan)
+  64a0f3be-c2f6-4c84-b6a9-fc6830a76f9e: !Template
     answer_choices: null
-    id: 665e0838-130f-4e8d-be18-adcd6edf59e1
-    jinja: 'Marathi: {{ sentence_mar }} = Xhosa: ||| {{ sentence_xho }}'
+    id: 64a0f3be-c2f6-4c84-b6a9-fc6830a76f9e
+    jinja: 'Translate this from Igbo into traditional Chinese: {{ sentence_ibo }}
+      ||| {{ sentence_zho_trad }}'
     metadata: *id001
-    name: equals-translation-mar-xho
-    reference: Equals translation (Marathi into Xhosa)
-  6710ab3b-772d-426b-9719-37803f6a333f: !Template
+    name: translate-this-ibo-zho_trad
+    reference: Translate this from X to Y (Igbo into traditional Chinese)
+  64bf1cb0-7acb-462d-9077-8598a37e4438: !Template
     answer_choices: null
-    id: 6710ab3b-772d-426b-9719-37803f6a333f
-    jinja: 'Lingala: {{ sentence_lin }} = Kannada: ||| {{ sentence_kan }}'
+    id: 64bf1cb0-7acb-462d-9077-8598a37e4438
+    jinja: 'Translate this from Brazilian Portuguese into French: {{ sentence_por
+      }} ||| {{ sentence_fra }}'
     metadata: *id001
-    name: equals-translation-lin-kan
-    reference: Equals translation (Lingala into Kannada)
-  67880bc7-ae00-4a61-8b3a-548313a61d5b: !Template
+    name: translate-this-por-fra
+    reference: Translate this from X to Y (Brazilian Portuguese into French)
+  65505b8c-b18c-4ac9-85ad-80eed6844712: !Template
     answer_choices: null
-    id: 67880bc7-ae00-4a61-8b3a-548313a61d5b
-    jinja: 'Arabic: {{ sentence_ara }} = Wolof: ||| {{ sentence_wol }}'
+    id: 65505b8c-b18c-4ac9-85ad-80eed6844712
+    jinja: 'Translate this from Kannada into Telugu: {{ sentence_kan }} ||| {{ sentence_tel
+      }}'
     metadata: *id001
-    name: equals-translation-ara-wol
-    reference: Equals translation (Arabic into Wolof)
-  6795ade2-1e0d-4e77-ba13-82b692eeb2f2: !Template
+    name: translate-this-kan-tel
+    reference: Translate this from X to Y (Kannada into Telugu)
+  65e89751-8dd2-4042-90ec-02b42714cc09: !Template
     answer_choices: null
-    id: 6795ade2-1e0d-4e77-ba13-82b692eeb2f2
-    jinja: 'Tamil: {{ sentence_tam }} = Wolof: ||| {{ sentence_wol }}'
+    id: 65e89751-8dd2-4042-90ec-02b42714cc09
+    jinja: 'Translate this from French into English: {{ sentence_fra }} ||| {{ sentence_eng
+      }}'
     metadata: *id001
-    name: equals-translation-tam-wol
-    reference: Equals translation (Tamil into Wolof)
-  67d378a8-b9ce-429f-9181-6cce26ae47d5: !Template
+    name: translate-this-fra-eng
+    reference: Translate this from X to Y (French into English)
+  662cd46c-fb67-4b32-80b3-05f4841d545f: !Template
     answer_choices: null
-    id: 67d378a8-b9ce-429f-9181-6cce26ae47d5
-    jinja: 'Punjabi: {{ sentence_pan }} = Vietnamese: ||| {{ sentence_vie }}'
+    id: 662cd46c-fb67-4b32-80b3-05f4841d545f
+    jinja: 'Translate this from Lingala into Hindi: {{ sentence_lin }} ||| {{ sentence_hin
+      }}'
     metadata: *id001
-    name: equals-translation-pan-vie
-    reference: Equals translation (Punjabi into Vietnamese)
-  6800dca1-f15a-4a5c-a7e9-0d4e9db083cf: !Template
+    name: translate-this-lin-hin
+    reference: Translate this from X to Y (Lingala into Hindi)
+  6661e0cd-e5ef-4256-bea6-37962fa7b0ab: !Template
     answer_choices: null
-    id: 6800dca1-f15a-4a5c-a7e9-0d4e9db083cf
-    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = English: ||| {{ sentence_eng
+    id: 6661e0cd-e5ef-4256-bea6-37962fa7b0ab
+    jinja: 'Translate this from Swahili into Marathi: {{ sentence_swh }} ||| {{ sentence_mar
       }}'
     metadata: *id001
-    name: equals-translation-zho_trad-eng
-    reference: Equals translation (traditional Chinese into English)
-  68d76063-e78c-472c-8378-a10852f6d43f: !Template
+    name: translate-this-swh-mar
+    reference: Translate this from X to Y (Swahili into Marathi)
+  668ae9d4-3e88-4a15-bd92-ca495830b3e1: !Template
     answer_choices: null
-    id: 68d76063-e78c-472c-8378-a10852f6d43f
-    jinja: 'Gujarati: {{ sentence_guj }} = Bengali: ||| {{ sentence_ben }}'
+    id: 668ae9d4-3e88-4a15-bd92-ca495830b3e1
+    jinja: 'Translate this from Northern Sotho into Punjabi: {{ sentence_nso }} |||
+      {{ sentence_pan }}'
     metadata: *id001
-    name: equals-translation-guj-ben
-    reference: Equals translation (Gujarati into Bengali)
-  690a28d0-a34d-482b-b062-02c0004666d6: !Template
+    name: translate-this-nso-pan
+    reference: Translate this from X to Y (Northern Sotho into Punjabi)
+  66971d35-883b-4e0c-99f9-f0a6edf8e914: !Template
     answer_choices: null
-    id: 690a28d0-a34d-482b-b062-02c0004666d6
-    jinja: 'Xhosa: {{ sentence_xho }} = simplified Chinese: ||| {{ sentence_zho_simpl
+    id: 66971d35-883b-4e0c-99f9-f0a6edf8e914
+    jinja: 'Translate this from Hindi into Xhosa: {{ sentence_hin }} ||| {{ sentence_xho
       }}'
     metadata: *id001
-    name: equals-translation-xho-zho_simpl
-    reference: Equals translation (Xhosa into simplified Chinese)
-  69ae6ac9-cf65-4b63-b3a8-2bdc915f1f74: !Template
+    name: translate-this-hin-xho
+    reference: Translate this from X to Y (Hindi into Xhosa)
+  672c6d5f-14e4-4b71-88a1-0761919f510c: !Template
     answer_choices: null
-    id: 69ae6ac9-cf65-4b63-b3a8-2bdc915f1f74
-    jinja: 'Bengali: {{ sentence_ben }} = Igbo: ||| {{ sentence_ibo }}'
+    id: 672c6d5f-14e4-4b71-88a1-0761919f510c
+    jinja: 'Translate this from Northern Sotho into Latin American Spanish: {{ sentence_nso
+      }} ||| {{ sentence_spa }}'
     metadata: *id001
-    name: equals-translation-ben-ibo
-    reference: Equals translation (Bengali into Igbo)
-  69b1384e-4e6b-43c8-aa81-f3ce2ffe7375: !Template
+    name: translate-this-nso-spa
+    reference: Translate this from X to Y (Northern Sotho into Latin American Spanish)
+  6751f8b6-07b0-447c-a0bf-ace699246fae: !Template
     answer_choices: null
-    id: 69b1384e-4e6b-43c8-aa81-f3ce2ffe7375
-    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Assamese: ||| {{ sentence_asm
-      }}'
+    id: 6751f8b6-07b0-447c-a0bf-ace699246fae
+    jinja: 'Translate this from simplified Chinese into Xhosa: {{ sentence_zho_simpl
+      }} ||| {{ sentence_xho }}'
     metadata: *id001
-    name: equals-translation-zho_simpl-asm
-    reference: Equals translation (simplified Chinese into Assamese)
-  69c2ce52-6d93-4f8a-a31c-2fc762d9183d: !Template
+    name: translate-this-zho_simpl-xho
+    reference: Translate this from X to Y (simplified Chinese into Xhosa)
+  67cb40ad-a657-490a-8ba2-a193b8b8d7c6: !Template
     answer_choices: null
-    id: 69c2ce52-6d93-4f8a-a31c-2fc762d9183d
-    jinja: 'Telugu: {{ sentence_tel }} = Punjabi: ||| {{ sentence_pan }}'
+    id: 67cb40ad-a657-490a-8ba2-a193b8b8d7c6
+    jinja: 'Translate this from Yoruba into English: {{ sentence_yor }} ||| {{ sentence_eng
+      }}'
     metadata: *id001
-    name: equals-translation-tel-pan
-    reference: Equals translation (Telugu into Punjabi)
-  69cb998b-90ca-4f23-8102-8972c3628d59: !Template
+    name: translate-this-yor-eng
+    reference: Translate this from X to Y (Yoruba into English)
+  67d70eb8-6ef1-4ad9-a673-9fe995487a57: !Template
     answer_choices: null
-    id: 69cb998b-90ca-4f23-8102-8972c3628d59
-    jinja: 'French: {{ sentence_fra }} = Xhosa: ||| {{ sentence_xho }}'
+    id: 67d70eb8-6ef1-4ad9-a673-9fe995487a57
+    jinja: 'Translate this from Telugu into English: {{ sentence_tel }} ||| {{ sentence_eng
+      }}'
     metadata: *id001
-    name: equals-translation-fra-xho
-    reference: Equals translation (French into Xhosa)
-  6aa7a38f-8980-461b-9756-882643da0ff9: !Template
+    name: translate-this-tel-eng
+    reference: Translate this from X to Y (Telugu into English)
+  68223ae5-55c4-4d63-a3ec-7c8fcec60980: !Template
     answer_choices: null
-    id: 6aa7a38f-8980-461b-9756-882643da0ff9
-    jinja: 'Telugu: {{ sentence_tel }} = Malayalam: ||| {{ sentence_mal }}'
+    id: 68223ae5-55c4-4d63-a3ec-7c8fcec60980
+    jinja: 'Translate this from English into Indonesian: {{ sentence_eng }} ||| {{
+      sentence_ind }}'
     metadata: *id001
-    name: equals-translation-tel-mal
-    reference: Equals translation (Telugu into Malayalam)
-  6aa9414c-cd71-4ce4-9d48-ef75e290270f: !Template
+    name: translate-this-eng-ind
+    reference: Translate this from X to Y (English into Indonesian)
+  6840cedc-6f7a-4a60-9168-6d416c732307: !Template
     answer_choices: null
-    id: 6aa9414c-cd71-4ce4-9d48-ef75e290270f
-    jinja: 'Oriya: {{ sentence_ory }} = Latin American Spanish: ||| {{ sentence_spa
+    id: 6840cedc-6f7a-4a60-9168-6d416c732307
+    jinja: 'Translate this from Wolof into Igbo: {{ sentence_wol }} ||| {{ sentence_ibo
       }}'
     metadata: *id001
-    name: equals-translation-ory-spa
-    reference: Equals translation (Oriya into Latin American Spanish)
-  6ab6267d-894f-4aea-bf30-1791ee4a6a9d: !Template
+    name: translate-this-wol-ibo
+    reference: Translate this from X to Y (Wolof into Igbo)
+  6845003e-c9a4-42b3-8b02-09c4a736ea1e: !Template
     answer_choices: null
-    id: 6ab6267d-894f-4aea-bf30-1791ee4a6a9d
-    jinja: 'Igbo: {{ sentence_ibo }} = Zulu: ||| {{ sentence_zul }}'
+    id: 6845003e-c9a4-42b3-8b02-09c4a736ea1e
+    jinja: 'Translate this from Oriya into Zulu: {{ sentence_ory }} ||| {{ sentence_zul
+      }}'
     metadata: *id001
-    name: equals-translation-ibo-zul
-    reference: Equals translation (Igbo into Zulu)
-  6ad324a0-365a-4100-b942-df3c3ff4d56f: !Template
+    name: translate-this-ory-zul
+    reference: Translate this from X to Y (Oriya into Zulu)
+  68499bd9-b1a1-422e-a14f-b6a6aa7e3956: !Template
     answer_choices: null
-    id: 6ad324a0-365a-4100-b942-df3c3ff4d56f
-    jinja: 'Igbo: {{ sentence_ibo }} = Hindi: ||| {{ sentence_hin }}'
+    id: 68499bd9-b1a1-422e-a14f-b6a6aa7e3956
+    jinja: 'Translate this from Northern Sotho into Igbo: {{ sentence_nso }} ||| {{
+      sentence_ibo }}'
     metadata: *id001
-    name: equals-translation-ibo-hin
-    reference: Equals translation (Igbo into Hindi)
-  6afe2e5e-4848-4252-91a9-92ed9f204e04: !Template
+    name: translate-this-nso-ibo
+    reference: Translate this from X to Y (Northern Sotho into Igbo)
+  6853dc38-2fef-437d-b177-6302e0b3b6d6: !Template
     answer_choices: null
-    id: 6afe2e5e-4848-4252-91a9-92ed9f204e04
-    jinja: 'Oriya: {{ sentence_ory }} = Kannada: ||| {{ sentence_kan }}'
+    id: 6853dc38-2fef-437d-b177-6302e0b3b6d6
+    jinja: 'Translate this from Indonesian into Brazilian Portuguese: {{ sentence_ind
+      }} ||| {{ sentence_por }}'
     metadata: *id001
-    name: equals-translation-ory-kan
-    reference: Equals translation (Oriya into Kannada)
-  6b07e366-8d49-4790-900a-92efecd7e30b: !Template
+    name: translate-this-ind-por
+    reference: Translate this from X to Y (Indonesian into Brazilian Portuguese)
+  68adaaac-7972-4dfa-a544-6d26222e2f4d: !Template
     answer_choices: null
-    id: 6b07e366-8d49-4790-900a-92efecd7e30b
-    jinja: 'Igbo: {{ sentence_ibo }} = Assamese: ||| {{ sentence_asm }}'
+    id: 68adaaac-7972-4dfa-a544-6d26222e2f4d
+    jinja: 'Translate this from Arabic into Indonesian: {{ sentence_ara }} ||| {{
+      sentence_ind }}'
     metadata: *id001
-    name: equals-translation-ibo-asm
-    reference: Equals translation (Igbo into Assamese)
-  6b5c9db8-8408-4dfd-8bdf-86c52ba7d222: !Template
+    name: translate-this-ara-ind
+    reference: Translate this from X to Y (Arabic into Indonesian)
+  68ff3008-2bc2-4765-93d2-19b351a36a60: !Template
     answer_choices: null
-    id: 6b5c9db8-8408-4dfd-8bdf-86c52ba7d222
-    jinja: 'Urdu: {{ sentence_urd }} = Tamil: ||| {{ sentence_tam }}'
+    id: 68ff3008-2bc2-4765-93d2-19b351a36a60
+    jinja: 'Translate this from Northern Sotho into Arabic: {{ sentence_nso }} |||
+      {{ sentence_ara }}'
     metadata: *id001
-    name: equals-translation-urd-tam
-    reference: Equals translation (Urdu into Tamil)
-  6c476afb-acc9-44ad-9d94-76b5a1b14b22: !Template
+    name: translate-this-nso-ara
+    reference: Translate this from X to Y (Northern Sotho into Arabic)
+  692450bc-863e-42b5-83c8-628328109c86: !Template
     answer_choices: null
-    id: 6c476afb-acc9-44ad-9d94-76b5a1b14b22
-    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Telugu: ||| {{ sentence_tel
+    id: 692450bc-863e-42b5-83c8-628328109c86
+    jinja: 'Translate this from Igbo into Oriya: {{ sentence_ibo }} ||| {{ sentence_ory
       }}'
     metadata: *id001
-    name: equals-translation-zho_trad-tel
-    reference: Equals translation (traditional Chinese into Telugu)
-  6c6dff96-aa05-4384-bea3-9a07467cf9be: !Template
+    name: translate-this-ibo-ory
+    reference: Translate this from X to Y (Igbo into Oriya)
+  69b00764-c6ba-4fd7-b7ae-23024e5ccba5: !Template
     answer_choices: null
-    id: 6c6dff96-aa05-4384-bea3-9a07467cf9be
-    jinja: 'Wolof: {{ sentence_wol }} = Malayalam: ||| {{ sentence_mal }}'
+    id: 69b00764-c6ba-4fd7-b7ae-23024e5ccba5
+    jinja: 'Translate this from Arabic into Igbo: {{ sentence_ara }} ||| {{ sentence_ibo
+      }}'
     metadata: *id001
-    name: equals-translation-wol-mal
-    reference: Equals translation (Wolof into Malayalam)
-  6cd14fcf-236d-4533-8b02-90fcb62fa638: !Template
+    name: translate-this-ara-ibo
+    reference: Translate this from X to Y (Arabic into Igbo)
+  69b5eaf4-ee25-4f75-825d-4fc0ea51655e: !Template
     answer_choices: null
-    id: 6cd14fcf-236d-4533-8b02-90fcb62fa638
-    jinja: 'Urdu: {{ sentence_urd }} = Gujarati: ||| {{ sentence_guj }}'
+    id: 69b5eaf4-ee25-4f75-825d-4fc0ea51655e
+    jinja: 'Translate this from Malayalam into Catalan: {{ sentence_mal }} ||| {{
+      sentence_cat }}'
     metadata: *id001
-    name: equals-translation-urd-guj
-    reference: Equals translation (Urdu into Gujarati)
-  6d267cba-e8b5-4d88-aa33-46ace7736900: !Template
+    name: translate-this-mal-cat
+    reference: Translate this from X to Y (Malayalam into Catalan)
+  69c3c235-30aa-42b7-ab3e-63d62bea975f: !Template
     answer_choices: null
-    id: 6d267cba-e8b5-4d88-aa33-46ace7736900
-    jinja: 'Latin American Spanish: {{ sentence_spa }} = Kannada: ||| {{ sentence_kan
+    id: 69c3c235-30aa-42b7-ab3e-63d62bea975f
+    jinja: 'Translate this from Bengali into Oriya: {{ sentence_ben }} ||| {{ sentence_ory
       }}'
     metadata: *id001
-    name: equals-translation-spa-kan
-    reference: Equals translation (Latin American Spanish into Kannada)
-  6d6ca0a6-7a63-4ccd-adc4-3a1534ddda21: !Template
+    name: translate-this-ben-ory
+    reference: Translate this from X to Y (Bengali into Oriya)
+  69dca34d-9917-4b90-b38a-c22e46fb5048: !Template
     answer_choices: null
-    id: 6d6ca0a6-7a63-4ccd-adc4-3a1534ddda21
-    jinja: 'Yoruba: {{ sentence_yor }} = Gujarati: ||| {{ sentence_guj }}'
+    id: 69dca34d-9917-4b90-b38a-c22e46fb5048
+    jinja: 'Translate this from Arabic into English: {{ sentence_ara }} ||| {{ sentence_eng
+      }}'
     metadata: *id001
-    name: equals-translation-yor-guj
-    reference: Equals translation (Yoruba into Gujarati)
-  6d9b2664-a0ae-41f5-b535-15791e534b1c: !Template
+    name: translate-this-ara-eng
+    reference: Translate this from X to Y (Arabic into English)
+  69e43ba0-9f84-4a51-9926-d2d72496c4dd: !Template
     answer_choices: null
-    id: 6d9b2664-a0ae-41f5-b535-15791e534b1c
-    jinja: 'Bengali: {{ sentence_ben }} = Malayalam: ||| {{ sentence_mal }}'
+    id: 69e43ba0-9f84-4a51-9926-d2d72496c4dd
+    jinja: 'Translate this from Telugu into Oriya: {{ sentence_tel }} ||| {{ sentence_ory
+      }}'
     metadata: *id001
-    name: equals-translation-ben-mal
-    reference: Equals translation (Bengali into Malayalam)
-  6de2ec9c-5c46-440d-b57f-e5887f8a8629: !Template
+    name: translate-this-tel-ory
+    reference: Translate this from X to Y (Telugu into Oriya)
+  6a2312d2-63b4-43ff-8ec5-1398aaade6e4: !Template
     answer_choices: null
-    id: 6de2ec9c-5c46-440d-b57f-e5887f8a8629
-    jinja: 'Kannada: {{ sentence_kan }} = Tamil: ||| {{ sentence_tam }}'
+    id: 6a2312d2-63b4-43ff-8ec5-1398aaade6e4
+    jinja: 'Translate this from Telugu into Indonesian: {{ sentence_tel }} ||| {{
+      sentence_ind }}'
     metadata: *id001
-    name: equals-translation-kan-tam
-    reference: Equals translation (Kannada into Tamil)
-  6e610699-013d-4de2-b468-0a5c258e18fc: !Template
+    name: translate-this-tel-ind
+    reference: Translate this from X to Y (Telugu into Indonesian)
+  6a39d16d-8ac9-44ae-856d-7cc1942ed4cc: !Template
     answer_choices: null
-    id: 6e610699-013d-4de2-b468-0a5c258e18fc
-    jinja: 'Indonesian: {{ sentence_ind }} = Catalan: ||| {{ sentence_cat }}'
+    id: 6a39d16d-8ac9-44ae-856d-7cc1942ed4cc
+    jinja: 'Translate this from Vietnamese into Kannada: {{ sentence_vie }} ||| {{
+      sentence_kan }}'
     metadata: *id001
-    name: equals-translation-ind-cat
-    reference: Equals translation (Indonesian into Catalan)
-  6e9aecf0-c668-41c7-ac52-407edfd63ffd: !Template
+    name: translate-this-vie-kan
+    reference: Translate this from X to Y (Vietnamese into Kannada)
+  6a3a0d91-9d68-4404-ba49-39f5fbe524bb: !Template
     answer_choices: null
-    id: 6e9aecf0-c668-41c7-ac52-407edfd63ffd
-    jinja: 'Indonesian: {{ sentence_ind }} = Nepali: ||| {{ sentence_npi }}'
+    id: 6a3a0d91-9d68-4404-ba49-39f5fbe524bb
+    jinja: 'Translate this from French into Vietnamese: {{ sentence_fra }} ||| {{
+      sentence_vie }}'
     metadata: *id001
-    name: equals-translation-ind-npi
-    reference: Equals translation (Indonesian into Nepali)
-  6ee3f653-f3f6-4a9e-ada6-58a3b65ac646: !Template
+    name: translate-this-fra-vie
+    reference: Translate this from X to Y (French into Vietnamese)
+  6acb0b10-6a6e-441d-a0a0-cf5af947ac8a: !Template
     answer_choices: null
-    id: 6ee3f653-f3f6-4a9e-ada6-58a3b65ac646
-    jinja: 'Gujarati: {{ sentence_guj }} = Xhosa: ||| {{ sentence_xho }}'
+    id: 6acb0b10-6a6e-441d-a0a0-cf5af947ac8a
+    jinja: 'Translate this from Hindi into Arabic: {{ sentence_hin }} ||| {{ sentence_ara
+      }}'
     metadata: *id001
-    name: equals-translation-guj-xho
-    reference: Equals translation (Gujarati into Xhosa)
-  6f10b00a-60fe-4e70-be80-196e0da57040: !Template
+    name: translate-this-hin-ara
+    reference: Translate this from X to Y (Hindi into Arabic)
+  6b5c970d-7965-4cfe-b31d-8dd0c1a789ea: !Template
     answer_choices: null
-    id: 6f10b00a-60fe-4e70-be80-196e0da57040
-    jinja: 'Lingala: {{ sentence_lin }} = Assamese: ||| {{ sentence_asm }}'
+    id: 6b5c970d-7965-4cfe-b31d-8dd0c1a789ea
+    jinja: 'Translate this from Malayalam into Lingala: {{ sentence_mal }} ||| {{
+      sentence_lin }}'
     metadata: *id001
-    name: equals-translation-lin-asm
-    reference: Equals translation (Lingala into Assamese)
-  700304d6-b83d-4f68-8409-c041380febbe: !Template
+    name: translate-this-mal-lin
+    reference: Translate this from X to Y (Malayalam into Lingala)
+  6bdb6568-bb6c-4045-baf2-f4bbbec5cc0b: !Template
     answer_choices: null
-    id: 700304d6-b83d-4f68-8409-c041380febbe
-    jinja: 'Bengali: {{ sentence_ben }} = Yoruba: ||| {{ sentence_yor }}'
+    id: 6bdb6568-bb6c-4045-baf2-f4bbbec5cc0b
+    jinja: 'Translate this from Catalan into Zulu: {{ sentence_cat }} ||| {{ sentence_zul
+      }}'
     metadata: *id001
-    name: equals-translation-ben-yor
-    reference: Equals translation (Bengali into Yoruba)
-  7056f3e2-af24-492f-8b23-471dc34d18b6: !Template
+    name: translate-this-cat-zul
+    reference: Translate this from X to Y (Catalan into Zulu)
+  6c8d8c33-537d-40eb-80af-27e0c66cbe01: !Template
     answer_choices: null
-    id: 7056f3e2-af24-492f-8b23-471dc34d18b6
-    jinja: 'Assamese: {{ sentence_asm }} = Wolof: ||| {{ sentence_wol }}'
+    id: 6c8d8c33-537d-40eb-80af-27e0c66cbe01
+    jinja: 'Translate this from Tamil into Assamese: {{ sentence_tam }} ||| {{ sentence_asm
+      }}'
     metadata: *id001
-    name: equals-translation-asm-wol
-    reference: Equals translation (Assamese into Wolof)
-  7184c181-bea2-4324-8587-40f4834240b8: !Template
+    name: translate-this-tam-asm
+    reference: Translate this from X to Y (Tamil into Assamese)
+  6ceb5335-1bea-4dba-9bcc-0377bee1ec19: !Template
     answer_choices: null
-    id: 7184c181-bea2-4324-8587-40f4834240b8
-    jinja: 'Swahili: {{ sentence_swh }} = Brazilian Portuguese: ||| {{ sentence_por
+    id: 6ceb5335-1bea-4dba-9bcc-0377bee1ec19
+    jinja: 'Translate this from Zulu into Swahili: {{ sentence_zul }} ||| {{ sentence_swh
       }}'
     metadata: *id001
-    name: equals-translation-swh-por
-    reference: Equals translation (Swahili into Brazilian Portuguese)
-  719852c0-1284-4d67-b0e3-f2dfe8584157: !Template
+    name: translate-this-zul-swh
+    reference: Translate this from X to Y (Zulu into Swahili)
+  6d0c6963-8568-46a5-b730-aedeb1fa007d: !Template
     answer_choices: null
-    id: 719852c0-1284-4d67-b0e3-f2dfe8584157
-    jinja: 'Wolof: {{ sentence_wol }} = Northern Sotho: ||| {{ sentence_nso }}'
+    id: 6d0c6963-8568-46a5-b730-aedeb1fa007d
+    jinja: 'Translate this from Wolof into English: {{ sentence_wol }} ||| {{ sentence_eng
+      }}'
     metadata: *id001
-    name: equals-translation-wol-nso
-    reference: Equals translation (Wolof into Northern Sotho)
-  7255e793-d518-4aa3-9f55-d62c7df02c9c: !Template
+    name: translate-this-wol-eng
+    reference: Translate this from X to Y (Wolof into English)
+  6d1e947e-6c86-40e0-b506-d982d68b400e: !Template
     answer_choices: null
-    id: 7255e793-d518-4aa3-9f55-d62c7df02c9c
-    jinja: 'Bengali: {{ sentence_ben }} = Arabic: ||| {{ sentence_ara }}'
+    id: 6d1e947e-6c86-40e0-b506-d982d68b400e
+    jinja: 'Translate this from Hindi into Vietnamese: {{ sentence_hin }} ||| {{ sentence_vie
+      }}'
     metadata: *id001
-    name: equals-translation-ben-ara
-    reference: Equals translation (Bengali into Arabic)
-  72b6a405-aa80-4ece-9917-78ee2fd82fae: !Template
+    name: translate-this-hin-vie
+    reference: Translate this from X to Y (Hindi into Vietnamese)
+  6d4af1f2-cc4b-4c41-aa41-fbbc7e0c9581: !Template
     answer_choices: null
-    id: 72b6a405-aa80-4ece-9917-78ee2fd82fae
-    jinja: 'Assamese: {{ sentence_asm }} = English: ||| {{ sentence_eng }}'
+    id: 6d4af1f2-cc4b-4c41-aa41-fbbc7e0c9581
+    jinja: 'Translate this from Northern Sotho into Xhosa: {{ sentence_nso }} |||
+      {{ sentence_xho }}'
     metadata: *id001
-    name: equals-translation-asm-eng
-    reference: Equals translation (Assamese into English)
-  72be6db0-c76f-4003-9064-96bd82e471b5: !Template
+    name: translate-this-nso-xho
+    reference: Translate this from X to Y (Northern Sotho into Xhosa)
+  6d55c260-3db6-45be-9962-c19a239cbdc4: !Template
     answer_choices: null
-    id: 72be6db0-c76f-4003-9064-96bd82e471b5
-    jinja: 'Zulu: {{ sentence_zul }} = Yoruba: ||| {{ sentence_yor }}'
+    id: 6d55c260-3db6-45be-9962-c19a239cbdc4
+    jinja: 'Translate this from Marathi into Telugu: {{ sentence_mar }} ||| {{ sentence_tel
+      }}'
     metadata: *id001
-    name: equals-translation-zul-yor
-    reference: Equals translation (Zulu into Yoruba)
-  72fdceba-36b6-4c13-a908-cd4893699531: !Template
+    name: translate-this-mar-tel
+    reference: Translate this from X to Y (Marathi into Telugu)
+  6d689cd6-bf01-4c5e-b396-5fc91fe8ee05: !Template
     answer_choices: null
-    id: 72fdceba-36b6-4c13-a908-cd4893699531
-    jinja: 'Arabic: {{ sentence_ara }} = Gujarati: ||| {{ sentence_guj }}'
+    id: 6d689cd6-bf01-4c5e-b396-5fc91fe8ee05
+    jinja: 'Translate this from English into Oriya: {{ sentence_eng }} ||| {{ sentence_ory
+      }}'
     metadata: *id001
-    name: equals-translation-ara-guj
-    reference: Equals translation (Arabic into Gujarati)
-  731b8d6c-da0c-494c-a0d8-521a9d24d0c6: !Template
+    name: translate-this-eng-ory
+    reference: Translate this from X to Y (English into Oriya)
+  6d8138b5-8b42-4b8c-a206-d5dfd0287425: !Template
     answer_choices: null
-    id: 731b8d6c-da0c-494c-a0d8-521a9d24d0c6
-    jinja: 'English: {{ sentence_eng }} = Latin American Spanish: ||| {{ sentence_spa
+    id: 6d8138b5-8b42-4b8c-a206-d5dfd0287425
+    jinja: 'Translate this from Oriya into Gujarati: {{ sentence_ory }} ||| {{ sentence_guj
       }}'
     metadata: *id001
-    name: equals-translation-eng-spa
-    reference: Equals translation (English into Latin American Spanish)
-  734037c4-ddcd-4a15-93a8-f38e4ec917dd: !Template
+    name: translate-this-ory-guj
+    reference: Translate this from X to Y (Oriya into Gujarati)
+  6d87d8fd-57f6-4b18-bece-4ee77e1a6159: !Template
     answer_choices: null
-    id: 734037c4-ddcd-4a15-93a8-f38e4ec917dd
-    jinja: 'Xhosa: {{ sentence_xho }} = Arabic: ||| {{ sentence_ara }}'
+    id: 6d87d8fd-57f6-4b18-bece-4ee77e1a6159
+    jinja: 'Translate this from Northern Sotho into Malayalam: {{ sentence_nso }}
+      ||| {{ sentence_mal }}'
     metadata: *id001
-    name: equals-translation-xho-ara
-    reference: Equals translation (Xhosa into Arabic)
-  735446e6-9296-4654-b6c1-bd2e94f9fe43: !Template
+    name: translate-this-nso-mal
+    reference: Translate this from X to Y (Northern Sotho into Malayalam)
+  6d8f2fbb-c91d-42dd-a067-c2f07347ce49: !Template
     answer_choices: null
-    id: 735446e6-9296-4654-b6c1-bd2e94f9fe43
-    jinja: 'Lingala: {{ sentence_lin }} = Northern Sotho: ||| {{ sentence_nso }}'
+    id: 6d8f2fbb-c91d-42dd-a067-c2f07347ce49
+    jinja: 'Translate this from traditional Chinese into Zulu: {{ sentence_zho_trad
+      }} ||| {{ sentence_zul }}'
     metadata: *id001
-    name: equals-translation-lin-nso
-    reference: Equals translation (Lingala into Northern Sotho)
-  73af113c-b670-4194-b36d-96a10d47fa08: !Template
+    name: translate-this-zho_trad-zul
+    reference: Translate this from X to Y (traditional Chinese into Zulu)
+  6e081515-81ba-4cc4-a6f4-85fca5d07fac: !Template
     answer_choices: null
-    id: 73af113c-b670-4194-b36d-96a10d47fa08
-    jinja: 'French: {{ sentence_fra }} = Igbo: ||| {{ sentence_ibo }}'
+    id: 6e081515-81ba-4cc4-a6f4-85fca5d07fac
+    jinja: 'Translate this from Xhosa into Tamil: {{ sentence_xho }} ||| {{ sentence_tam
+      }}'
     metadata: *id001
-    name: equals-translation-fra-ibo
-    reference: Equals translation (French into Igbo)
-  73e80420-a9fd-49d7-82f4-61bfc799201a: !Template
+    name: translate-this-xho-tam
+    reference: Translate this from X to Y (Xhosa into Tamil)
+  6e2caf3c-468d-4a21-9171-2e98ccbc9d67: !Template
     answer_choices: null
-    id: 73e80420-a9fd-49d7-82f4-61bfc799201a
-    jinja: 'Malayalam: {{ sentence_mal }} = English: ||| {{ sentence_eng }}'
+    id: 6e2caf3c-468d-4a21-9171-2e98ccbc9d67
+    jinja: 'Translate this from Catalan into Xhosa: {{ sentence_cat }} ||| {{ sentence_xho
+      }}'
     metadata: *id001
-    name: equals-translation-mal-eng
-    reference: Equals translation (Malayalam into English)
-  7424d7d5-de99-4120-b753-b0c54ab73483: !Template
+    name: translate-this-cat-xho
+    reference: Translate this from X to Y (Catalan into Xhosa)
+  6ea3ada7-6894-4425-8c51-57a56124d2b3: !Template
     answer_choices: null
-    id: 7424d7d5-de99-4120-b753-b0c54ab73483
-    jinja: 'Northern Sotho: {{ sentence_nso }} = Marathi: ||| {{ sentence_mar }}'
+    id: 6ea3ada7-6894-4425-8c51-57a56124d2b3
+    jinja: 'Translate this from Brazilian Portuguese into Assamese: {{ sentence_por
+      }} ||| {{ sentence_asm }}'
     metadata: *id001
-    name: equals-translation-nso-mar
-    reference: Equals translation (Northern Sotho into Marathi)
-  7449b808-0292-448f-919b-7dd91f19996b: !Template
+    name: translate-this-por-asm
+    reference: Translate this from X to Y (Brazilian Portuguese into Assamese)
+  6eae27c2-2698-4ce7-abf9-8639db4cbfa7: !Template
     answer_choices: null
-    id: 7449b808-0292-448f-919b-7dd91f19996b
-    jinja: 'Wolof: {{ sentence_wol }} = Arabic: ||| {{ sentence_ara }}'
+    id: 6eae27c2-2698-4ce7-abf9-8639db4cbfa7
+    jinja: 'Translate this from simplified Chinese into Indonesian: {{ sentence_zho_simpl
+      }} ||| {{ sentence_ind }}'
     metadata: *id001
-    name: equals-translation-wol-ara
-    reference: Equals translation (Wolof into Arabic)
-  74cccac1-949b-4546-8447-1da816cc8f82: !Template
+    name: translate-this-zho_simpl-ind
+    reference: Translate this from X to Y (simplified Chinese into Indonesian)
+  6ec0cd02-64f7-4967-ae76-43c27a87202d: !Template
     answer_choices: null
-    id: 74cccac1-949b-4546-8447-1da816cc8f82
-    jinja: 'Yoruba: {{ sentence_yor }} = Oriya: ||| {{ sentence_ory }}'
+    id: 6ec0cd02-64f7-4967-ae76-43c27a87202d
+    jinja: 'Translate this from Indonesian into Lingala: {{ sentence_ind }} ||| {{
+      sentence_lin }}'
     metadata: *id001
-    name: equals-translation-yor-ory
-    reference: Equals translation (Yoruba into Oriya)
-  74e89fc0-fb12-4b23-b323-6568396c7e48: !Template
+    name: translate-this-ind-lin
+    reference: Translate this from X to Y (Indonesian into Lingala)
+  6f2b0289-59d3-482b-ae09-57b32d0e8924: !Template
     answer_choices: null
-    id: 74e89fc0-fb12-4b23-b323-6568396c7e48
-    jinja: 'Wolof: {{ sentence_wol }} = Swahili: ||| {{ sentence_swh }}'
+    id: 6f2b0289-59d3-482b-ae09-57b32d0e8924
+    jinja: 'Translate this from Zulu into Malayalam: {{ sentence_zul }} ||| {{ sentence_mal
+      }}'
     metadata: *id001
-    name: equals-translation-wol-swh
-    reference: Equals translation (Wolof into Swahili)
-  75313888-52b0-418b-9a3d-61136c2ad97e: !Template
+    name: translate-this-zul-mal
+    reference: Translate this from X to Y (Zulu into Malayalam)
+  6ffdcec4-1646-4a07-8be1-9dd4b4aab1c0: !Template
     answer_choices: null
-    id: 75313888-52b0-418b-9a3d-61136c2ad97e
-    jinja: 'Nepali: {{ sentence_npi }} = Arabic: ||| {{ sentence_ara }}'
+    id: 6ffdcec4-1646-4a07-8be1-9dd4b4aab1c0
+    jinja: 'Translate this from Urdu into Oriya: {{ sentence_urd }} ||| {{ sentence_ory
+      }}'
     metadata: *id001
-    name: equals-translation-npi-ara
-    reference: Equals translation (Nepali into Arabic)
-  75419f4c-623e-41fb-be25-ad34a066daf7: !Template
+    name: translate-this-urd-ory
+    reference: Translate this from X to Y (Urdu into Oriya)
+  70118ba3-e684-46e8-a421-4c627893ae1e: !Template
     answer_choices: null
-    id: 75419f4c-623e-41fb-be25-ad34a066daf7
-    jinja: 'Urdu: {{ sentence_urd }} = Swahili: ||| {{ sentence_swh }}'
+    id: 70118ba3-e684-46e8-a421-4c627893ae1e
+    jinja: 'Translate this from Zulu into Vietnamese: {{ sentence_zul }} ||| {{ sentence_vie
+      }}'
     metadata: *id001
-    name: equals-translation-urd-swh
-    reference: Equals translation (Urdu into Swahili)
-  75c91e43-b43c-4d3d-b4f4-5b3f7e924ff1: !Template
+    name: translate-this-zul-vie
+    reference: Translate this from X to Y (Zulu into Vietnamese)
+  7030a60a-d655-4241-a1c3-0de57ebcbb97: !Template
     answer_choices: null
-    id: 75c91e43-b43c-4d3d-b4f4-5b3f7e924ff1
-    jinja: 'Yoruba: {{ sentence_yor }} = Igbo: ||| {{ sentence_ibo }}'
+    id: 7030a60a-d655-4241-a1c3-0de57ebcbb97
+    jinja: 'Translate this from Vietnamese into Marathi: {{ sentence_vie }} ||| {{
+      sentence_mar }}'
     metadata: *id001
-    name: equals-translation-yor-ibo
-    reference: Equals translation (Yoruba into Igbo)
-  7660a416-d00e-40eb-8693-0cdc51ff0831: !Template
+    name: translate-this-vie-mar
+    reference: Translate this from X to Y (Vietnamese into Marathi)
+  7073cf56-1c6b-4900-8caa-48a66ce431d8: !Template
     answer_choices: null
-    id: 7660a416-d00e-40eb-8693-0cdc51ff0831
-    jinja: 'Xhosa: {{ sentence_xho }} = Wolof: ||| {{ sentence_wol }}'
+    id: 7073cf56-1c6b-4900-8caa-48a66ce431d8
+    jinja: 'Translate this from Oriya into Lingala: {{ sentence_ory }} ||| {{ sentence_lin
+      }}'
     metadata: *id001
-    name: equals-translation-xho-wol
-    reference: Equals translation (Xhosa into Wolof)
-  76dc64aa-9e7c-4990-816b-47599e8b8223: !Template
+    name: translate-this-ory-lin
+    reference: Translate this from X to Y (Oriya into Lingala)
+  712ab55c-b18c-4079-b4e6-eb609d4fd1b0: !Template
     answer_choices: null
-    id: 76dc64aa-9e7c-4990-816b-47599e8b8223
-    jinja: 'Hindi: {{ sentence_hin }} = Catalan: ||| {{ sentence_cat }}'
+    id: 712ab55c-b18c-4079-b4e6-eb609d4fd1b0
+    jinja: 'Translate this from Tamil into simplified Chinese: {{ sentence_tam }}
+      ||| {{ sentence_zho_simpl }}'
     metadata: *id001
-    name: equals-translation-hin-cat
-    reference: Equals translation (Hindi into Catalan)
-  770e6c7e-caf2-4c60-9e72-120032d3e47a: !Template
+    name: translate-this-tam-zho_simpl
+    reference: Translate this from X to Y (Tamil into simplified Chinese)
+  713486d4-e4f8-44ef-bbba-2cc3aa6a6771: !Template
     answer_choices: null
-    id: 770e6c7e-caf2-4c60-9e72-120032d3e47a
-    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Catalan: ||| {{ sentence_cat
+    id: 713486d4-e4f8-44ef-bbba-2cc3aa6a6771
+    jinja: 'Translate this from Tamil into English: {{ sentence_tam }} ||| {{ sentence_eng
       }}'
     metadata: *id001
-    name: equals-translation-zho_trad-cat
-    reference: Equals translation (traditional Chinese into Catalan)
-  7817fbbc-362e-48b7-817a-c4ea41cb2a8b: !Template
-    answer_choices: null
-    id: 7817fbbc-362e-48b7-817a-c4ea41cb2a8b
-    jinja: 'Oriya: {{ sentence_ory }} = Tamil: ||| {{ sentence_tam }}'
-    metadata: *id001
-    name: equals-translation-ory-tam
-    reference: Equals translation (Oriya into Tamil)
-  78185047-71c3-4441-bb86-9cb873463121: !Template
+    name: translate-this-tam-eng
+    reference: Translate this from X to Y (Tamil into English)
+  71939f9b-b438-40da-b27f-95c3c01e4c29: !Template
     answer_choices: null
-    id: 78185047-71c3-4441-bb86-9cb873463121
-    jinja: 'Wolof: {{ sentence_wol }} = Kannada: ||| {{ sentence_kan }}'
+    id: 71939f9b-b438-40da-b27f-95c3c01e4c29
+    jinja: 'Translate this from Indonesian into Vietnamese: {{ sentence_ind }} |||
+      {{ sentence_vie }}'
     metadata: *id001
-    name: equals-translation-wol-kan
-    reference: Equals translation (Wolof into Kannada)
-  7848b290-8443-4518-ad2f-34e26327d9fd: !Template
+    name: translate-this-ind-vie
+    reference: Translate this from X to Y (Indonesian into Vietnamese)
+  71a8b9c3-fa8b-4cf2-92b9-76525225432e: !Template
     answer_choices: null
-    id: 7848b290-8443-4518-ad2f-34e26327d9fd
-    jinja: 'French: {{ sentence_fra }} = Gujarati: ||| {{ sentence_guj }}'
+    id: 71a8b9c3-fa8b-4cf2-92b9-76525225432e
+    jinja: 'Translate this from Nepali into Malayalam: {{ sentence_npi }} ||| {{ sentence_mal
+      }}'
     metadata: *id001
-    name: equals-translation-fra-guj
-    reference: Equals translation (French into Gujarati)
-  78c35d63-865e-45e9-8318-d0126d256f08: !Template
+    name: translate-this-npi-mal
+    reference: Translate this from X to Y (Nepali into Malayalam)
+  71ecc9bf-5b46-4653-94e7-8171fbc4cfdc: !Template
     answer_choices: null
-    id: 78c35d63-865e-45e9-8318-d0126d256f08
-    jinja: 'Bengali: {{ sentence_ben }} = Swahili: ||| {{ sentence_swh }}'
+    id: 71ecc9bf-5b46-4653-94e7-8171fbc4cfdc
+    jinja: 'Translate this from Gujarati into Zulu: {{ sentence_guj }} ||| {{ sentence_zul
+      }}'
     metadata: *id001
-    name: equals-translation-ben-swh
-    reference: Equals translation (Bengali into Swahili)
-  78ca85d7-a694-4b4c-b630-115c8f563ce2: !Template
+    name: translate-this-guj-zul
+    reference: Translate this from X to Y (Gujarati into Zulu)
+  7212e233-416e-4054-ac39-b136e1fd7ca2: !Template
     answer_choices: null
-    id: 78ca85d7-a694-4b4c-b630-115c8f563ce2
-    jinja: 'Kannada: {{ sentence_kan }} = Malayalam: ||| {{ sentence_mal }}'
+    id: 7212e233-416e-4054-ac39-b136e1fd7ca2
+    jinja: 'Translate this from Catalan into Swahili: {{ sentence_cat }} ||| {{ sentence_swh
+      }}'
     metadata: *id001
-    name: equals-translation-kan-mal
-    reference: Equals translation (Kannada into Malayalam)
-  78ef8502-8f99-4008-a3a1-f6e367bfaec0: !Template
+    name: translate-this-cat-swh
+    reference: Translate this from X to Y (Catalan into Swahili)
+  728467d9-0679-418a-aaa3-eadc1dd59ea0: !Template
     answer_choices: null
-    id: 78ef8502-8f99-4008-a3a1-f6e367bfaec0
-    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Lingala: ||| {{ sentence_lin
-      }}'
+    id: 728467d9-0679-418a-aaa3-eadc1dd59ea0
+    jinja: 'Translate this from Vietnamese into Lingala: {{ sentence_vie }} ||| {{
+      sentence_lin }}'
     metadata: *id001
-    name: equals-translation-zho_trad-lin
-    reference: Equals translation (traditional Chinese into Lingala)
-  7971b2b3-72a0-4df5-ab68-7a196267df37: !Template
+    name: translate-this-vie-lin
+    reference: Translate this from X to Y (Vietnamese into Lingala)
+  73015c55-f712-452c-9d02-00c309c35050: !Template
     answer_choices: null
-    id: 7971b2b3-72a0-4df5-ab68-7a196267df37
-    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Hindi: ||| {{ sentence_hin
+    id: 73015c55-f712-452c-9d02-00c309c35050
+    jinja: 'Translate this from Telugu into Punjabi: {{ sentence_tel }} ||| {{ sentence_pan
       }}'
     metadata: *id001
-    name: equals-translation-por-hin
-    reference: Equals translation (Brazilian Portuguese into Hindi)
-  798619ac-4bfc-4ad3-b460-0f70873d8860: !Template
+    name: translate-this-tel-pan
+    reference: Translate this from X to Y (Telugu into Punjabi)
+  7330a8e2-d515-4b8e-ab12-9e8c49330f66: !Template
     answer_choices: null
-    id: 798619ac-4bfc-4ad3-b460-0f70873d8860
-    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Swahili: ||| {{ sentence_swh
+    id: 7330a8e2-d515-4b8e-ab12-9e8c49330f66
+    jinja: 'Translate this from Urdu into French: {{ sentence_urd }} ||| {{ sentence_fra
       }}'
     metadata: *id001
-    name: equals-translation-zho_trad-swh
-    reference: Equals translation (traditional Chinese into Swahili)
-  7a4af304-e852-492a-8736-305792c34ea6: !Template
+    name: translate-this-urd-fra
+    reference: Translate this from X to Y (Urdu into French)
+  7390a878-d2be-4251-afda-5a5ed45621cd: !Template
     answer_choices: null
-    id: 7a4af304-e852-492a-8736-305792c34ea6
-    jinja: 'Yoruba: {{ sentence_yor }} = Hindi: ||| {{ sentence_hin }}'
+    id: 7390a878-d2be-4251-afda-5a5ed45621cd
+    jinja: 'Translate this from Vietnamese into Indonesian: {{ sentence_vie }} |||
+      {{ sentence_ind }}'
     metadata: *id001
-    name: equals-translation-yor-hin
-    reference: Equals translation (Yoruba into Hindi)
-  7a4f2eae-d8e3-4cc1-8b19-5d45e4769e7d: !Template
+    name: translate-this-vie-ind
+    reference: Translate this from X to Y (Vietnamese into Indonesian)
+  73b4eb48-dbc3-4a19-bd8e-f82467651299: !Template
     answer_choices: null
-    id: 7a4f2eae-d8e3-4cc1-8b19-5d45e4769e7d
-    jinja: 'Malayalam: {{ sentence_mal }} = Gujarati: ||| {{ sentence_guj }}'
+    id: 73b4eb48-dbc3-4a19-bd8e-f82467651299
+    jinja: 'Translate this from Yoruba into Northern Sotho: {{ sentence_yor }} |||
+      {{ sentence_nso }}'
     metadata: *id001
-    name: equals-translation-mal-guj
-    reference: Equals translation (Malayalam into Gujarati)
-  7a5bd48e-759f-4488-a754-9ec9e018e37f: !Template
+    name: translate-this-yor-nso
+    reference: Translate this from X to Y (Yoruba into Northern Sotho)
+  73f8e225-88a2-4cc1-995b-93661544dae4: !Template
     answer_choices: null
-    id: 7a5bd48e-759f-4488-a754-9ec9e018e37f
-    jinja: 'Bengali: {{ sentence_ben }} = Lingala: ||| {{ sentence_lin }}'
+    id: 73f8e225-88a2-4cc1-995b-93661544dae4
+    jinja: 'Translate this from Nepali into Lingala: {{ sentence_npi }} ||| {{ sentence_lin
+      }}'
     metadata: *id001
-    name: equals-translation-ben-lin
-    reference: Equals translation (Bengali into Lingala)
-  7a7623f3-964f-4d2a-ab97-0ef934169285: !Template
+    name: translate-this-npi-lin
+    reference: Translate this from X to Y (Nepali into Lingala)
+  74223578-b55e-43cb-8505-bf73f3496ba5: !Template
     answer_choices: null
-    id: 7a7623f3-964f-4d2a-ab97-0ef934169285
-    jinja: 'Arabic: {{ sentence_ara }} = Catalan: ||| {{ sentence_cat }}'
+    id: 74223578-b55e-43cb-8505-bf73f3496ba5
+    jinja: 'Translate this from Lingala into English: {{ sentence_lin }} ||| {{ sentence_eng
+      }}'
     metadata: *id001
-    name: equals-translation-ara-cat
-    reference: Equals translation (Arabic into Catalan)
-  7b3b820a-4699-4c45-9f3c-60eb4a543a48: !Template
+    name: translate-this-lin-eng
+    reference: Translate this from X to Y (Lingala into English)
+  743ffcf0-c8b7-4ae6-8cb9-21dc0455425e: !Template
     answer_choices: null
-    id: 7b3b820a-4699-4c45-9f3c-60eb4a543a48
-    jinja: 'Urdu: {{ sentence_urd }} = Indonesian: ||| {{ sentence_ind }}'
+    id: 743ffcf0-c8b7-4ae6-8cb9-21dc0455425e
+    jinja: 'Translate this from Gujarati into Malayalam: {{ sentence_guj }} ||| {{
+      sentence_mal }}'
     metadata: *id001
-    name: equals-translation-urd-ind
-    reference: Equals translation (Urdu into Indonesian)
-  7b7ef524-871a-4a2f-8cc1-be1a2c3127cb: !Template
+    name: translate-this-guj-mal
+    reference: Translate this from X to Y (Gujarati into Malayalam)
+  744ad5cf-9d27-4b65-b8d1-dbc635b51c7f: !Template
     answer_choices: null
-    id: 7b7ef524-871a-4a2f-8cc1-be1a2c3127cb
-    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Gujarati: ||| {{ sentence_guj
+    id: 744ad5cf-9d27-4b65-b8d1-dbc635b51c7f
+    jinja: 'Translate this from Hindi into Telugu: {{ sentence_hin }} ||| {{ sentence_tel
       }}'
     metadata: *id001
-    name: equals-translation-zho_simpl-guj
-    reference: Equals translation (simplified Chinese into Gujarati)
-  7ba3095d-26d2-4ec0-9f54-8ac6262e9a8d: !Template
+    name: translate-this-hin-tel
+    reference: Translate this from X to Y (Hindi into Telugu)
+  744d0a0f-276d-4734-8b58-b07df51603a5: !Template
     answer_choices: null
-    id: 7ba3095d-26d2-4ec0-9f54-8ac6262e9a8d
-    jinja: 'Brazilian Portuguese: {{ sentence_por }} = simplified Chinese: ||| {{
-      sentence_zho_simpl }}'
+    id: 744d0a0f-276d-4734-8b58-b07df51603a5
+    jinja: 'Translate this from Indonesian into Malayalam: {{ sentence_ind }} |||
+      {{ sentence_mal }}'
     metadata: *id001
-    name: equals-translation-por-zho_simpl
-    reference: Equals translation (Brazilian Portuguese into simplified Chinese)
-  7bb1833d-d306-4d4d-b3d1-b2e824d3bc05: !Template
+    name: translate-this-ind-mal
+    reference: Translate this from X to Y (Indonesian into Malayalam)
+  745a9318-455e-45f4-9ea4-155dc567c2d1: !Template
     answer_choices: null
-    id: 7bb1833d-d306-4d4d-b3d1-b2e824d3bc05
-    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Marathi: ||| {{ sentence_mar
+    id: 745a9318-455e-45f4-9ea4-155dc567c2d1
+    jinja: 'Translate this from Yoruba into Tamil: {{ sentence_yor }} ||| {{ sentence_tam
       }}'
     metadata: *id001
-    name: equals-translation-zho_trad-mar
-    reference: Equals translation (traditional Chinese into Marathi)
-  7c0cd330-188e-4a40-8ba8-d3a4c4d7a599: !Template
+    name: translate-this-yor-tam
+    reference: Translate this from X to Y (Yoruba into Tamil)
+  75508e1b-992c-452f-9c53-27f2aa979baa: !Template
     answer_choices: null
-    id: 7c0cd330-188e-4a40-8ba8-d3a4c4d7a599
-    jinja: 'Northern Sotho: {{ sentence_nso }} = Gujarati: ||| {{ sentence_guj }}'
+    id: 75508e1b-992c-452f-9c53-27f2aa979baa
+    jinja: 'Translate this from Igbo into Marathi: {{ sentence_ibo }} ||| {{ sentence_mar
+      }}'
     metadata: *id001
-    name: equals-translation-nso-guj
-    reference: Equals translation (Northern Sotho into Gujarati)
-  7cfe31d5-2bb1-4259-8ed5-10373d54d44e: !Template
+    name: translate-this-ibo-mar
+    reference: Translate this from X to Y (Igbo into Marathi)
+  755b00bc-ac4a-4e26-adcd-3cffb81dcc99: !Template
     answer_choices: null
-    id: 7cfe31d5-2bb1-4259-8ed5-10373d54d44e
-    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Vietnamese: ||| {{ sentence_vie
+    id: 755b00bc-ac4a-4e26-adcd-3cffb81dcc99
+    jinja: 'Translate this from Wolof into Zulu: {{ sentence_wol }} ||| {{ sentence_zul
       }}'
     metadata: *id001
-    name: equals-translation-zho_trad-vie
-    reference: Equals translation (traditional Chinese into Vietnamese)
-  7d6c811c-5282-4f06-a951-e4ca1786ee6c: !Template
+    name: translate-this-wol-zul
+    reference: Translate this from X to Y (Wolof into Zulu)
+  756712b7-4789-43be-ba20-127498dfe9a6: !Template
     answer_choices: null
-    id: 7d6c811c-5282-4f06-a951-e4ca1786ee6c
-    jinja: 'Zulu: {{ sentence_zul }} = Telugu: ||| {{ sentence_tel }}'
+    id: 756712b7-4789-43be-ba20-127498dfe9a6
+    jinja: 'Translate this from Gujarati into Hindi: {{ sentence_guj }} ||| {{ sentence_hin
+      }}'
     metadata: *id001
-    name: equals-translation-zul-tel
-    reference: Equals translation (Zulu into Telugu)
-  7d975d44-ef3d-4ea1-bf50-0ec4a13aacc6: !Template
+    name: translate-this-guj-hin
+    reference: Translate this from X to Y (Gujarati into Hindi)
+  75c85f3f-71c3-4c0b-9168-9c3bc3c177d4: !Template
     answer_choices: null
-    id: 7d975d44-ef3d-4ea1-bf50-0ec4a13aacc6
-    jinja: 'Gujarati: {{ sentence_guj }} = Igbo: ||| {{ sentence_ibo }}'
+    id: 75c85f3f-71c3-4c0b-9168-9c3bc3c177d4
+    jinja: 'Translate this from French into Malayalam: {{ sentence_fra }} ||| {{ sentence_mal
+      }}'
     metadata: *id001
-    name: equals-translation-guj-ibo
-    reference: Equals translation (Gujarati into Igbo)
-  7dd6bcd2-3b1f-49c5-b2c9-e3ae36993122: !Template
+    name: translate-this-fra-mal
+    reference: Translate this from X to Y (French into Malayalam)
+  75fa62ea-9459-4a2d-8934-28521ddb0c05: !Template
     answer_choices: null
-    id: 7dd6bcd2-3b1f-49c5-b2c9-e3ae36993122
-    jinja: 'Xhosa: {{ sentence_xho }} = Catalan: ||| {{ sentence_cat }}'
+    id: 75fa62ea-9459-4a2d-8934-28521ddb0c05
+    jinja: 'Translate this from Hindi into English: {{ sentence_hin }} ||| {{ sentence_eng
+      }}'
     metadata: *id001
-    name: equals-translation-xho-cat
-    reference: Equals translation (Xhosa into Catalan)
-  7dde0612-f6b9-42d6-b72e-8a1b9ec5ba72: !Template
+    name: translate-this-hin-eng
+    reference: Translate this from X to Y (Hindi into English)
+  764e9005-26bd-4c42-b591-435ff268fb95: !Template
     answer_choices: null
-    id: 7dde0612-f6b9-42d6-b72e-8a1b9ec5ba72
-    jinja: 'Yoruba: {{ sentence_yor }} = English: ||| {{ sentence_eng }}'
+    id: 764e9005-26bd-4c42-b591-435ff268fb95
+    jinja: 'Translate this from Zulu into Urdu: {{ sentence_zul }} ||| {{ sentence_urd
+      }}'
     metadata: *id001
-    name: equals-translation-yor-eng
-    reference: Equals translation (Yoruba into English)
-  7e069d70-6fe9-4311-a36d-f60b77c256a3: !Template
+    name: translate-this-zul-urd
+    reference: Translate this from X to Y (Zulu into Urdu)
+  765ecfdb-c5c1-43e0-a7b0-b0a70905d612: !Template
     answer_choices: null
-    id: 7e069d70-6fe9-4311-a36d-f60b77c256a3
-    jinja: 'Lingala: {{ sentence_lin }} = Vietnamese: ||| {{ sentence_vie }}'
+    id: 765ecfdb-c5c1-43e0-a7b0-b0a70905d612
+    jinja: 'Translate this from Vietnamese into Oriya: {{ sentence_vie }} ||| {{ sentence_ory
+      }}'
     metadata: *id001
-    name: equals-translation-lin-vie
-    reference: Equals translation (Lingala into Vietnamese)
-  7e1ed0de-a98e-4cfe-925e-27a62d2e736b: !Template
+    name: translate-this-vie-ory
+    reference: Translate this from X to Y (Vietnamese into Oriya)
+  7690f6f0-dca2-4d64-b0fe-1418717bab34: !Template
     answer_choices: null
-    id: 7e1ed0de-a98e-4cfe-925e-27a62d2e736b
-    jinja: 'Zulu: {{ sentence_zul }} = Wolof: ||| {{ sentence_wol }}'
+    id: 7690f6f0-dca2-4d64-b0fe-1418717bab34
+    jinja: 'Translate this from Punjabi into English: {{ sentence_pan }} ||| {{ sentence_eng
+      }}'
     metadata: *id001
-    name: equals-translation-zul-wol
-    reference: Equals translation (Zulu into Wolof)
-  7e838e93-3a79-4330-9c9e-fef308b31f93: !Template
+    name: translate-this-pan-eng
+    reference: Translate this from X to Y (Punjabi into English)
+  76dc3445-faf2-430d-bca4-232d02bc956c: !Template
     answer_choices: null
-    id: 7e838e93-3a79-4330-9c9e-fef308b31f93
-    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Yoruba: ||| {{ sentence_yor
+    id: 76dc3445-faf2-430d-bca4-232d02bc956c
+    jinja: 'Translate this from Lingala into Bengali: {{ sentence_lin }} ||| {{ sentence_ben
       }}'
     metadata: *id001
-    name: equals-translation-por-yor
-    reference: Equals translation (Brazilian Portuguese into Yoruba)
-  7f5c1273-8a33-4e1b-8d10-1e7002377ab2: !Template
+    name: translate-this-lin-ben
+    reference: Translate this from X to Y (Lingala into Bengali)
+  775988fc-0ad4-49d5-a94b-94ed0baa6d4c: !Template
     answer_choices: null
-    id: 7f5c1273-8a33-4e1b-8d10-1e7002377ab2
-    jinja: 'Latin American Spanish: {{ sentence_spa }} = Oriya: ||| {{ sentence_ory
+    id: 775988fc-0ad4-49d5-a94b-94ed0baa6d4c
+    jinja: 'Translate this from Catalan into Oriya: {{ sentence_cat }} ||| {{ sentence_ory
       }}'
     metadata: *id001
-    name: equals-translation-spa-ory
-    reference: Equals translation (Latin American Spanish into Oriya)
-  7f8a15ea-da5f-4b63-af99-e807299338c7: !Template
+    name: translate-this-cat-ory
+    reference: Translate this from X to Y (Catalan into Oriya)
+  775f2b57-9dc4-4f46-81c5-a91374758a5d: !Template
     answer_choices: null
-    id: 7f8a15ea-da5f-4b63-af99-e807299338c7
-    jinja: 'French: {{ sentence_fra }} = Wolof: ||| {{ sentence_wol }}'
+    id: 775f2b57-9dc4-4f46-81c5-a91374758a5d
+    jinja: 'Translate this from Indonesian into Bengali: {{ sentence_ind }} ||| {{
+      sentence_ben }}'
     metadata: *id001
-    name: equals-translation-fra-wol
-    reference: Equals translation (French into Wolof)
-  7faf8a22-63f0-4557-a11a-7ce4aaedef77: !Template
+    name: translate-this-ind-ben
+    reference: Translate this from X to Y (Indonesian into Bengali)
+  78088c94-c70b-475f-8770-19566ac03d29: !Template
     answer_choices: null
-    id: 7faf8a22-63f0-4557-a11a-7ce4aaedef77
-    jinja: 'Punjabi: {{ sentence_pan }} = Latin American Spanish: ||| {{ sentence_spa
+    id: 78088c94-c70b-475f-8770-19566ac03d29
+    jinja: 'Translate this from Hindi into Malayalam: {{ sentence_hin }} ||| {{ sentence_mal
       }}'
     metadata: *id001
-    name: equals-translation-pan-spa
-    reference: Equals translation (Punjabi into Latin American Spanish)
-  7fd93069-8b6e-4ff7-8a19-874be51acbb3: !Template
-    answer_choices: null
-    id: 7fd93069-8b6e-4ff7-8a19-874be51acbb3
-    jinja: 'Northern Sotho: {{ sentence_nso }} = Punjabi: ||| {{ sentence_pan }}'
-    metadata: *id001
-    name: equals-translation-nso-pan
-    reference: Equals translation (Northern Sotho into Punjabi)
-  7fdf5924-1253-4683-8e2c-f8013d16eb45: !Template
+    name: translate-this-hin-mal
+    reference: Translate this from X to Y (Hindi into Malayalam)
+  780a5767-f1c0-4cc7-a9b1-307473ca48c5: !Template
     answer_choices: null
-    id: 7fdf5924-1253-4683-8e2c-f8013d16eb45
-    jinja: 'Arabic: {{ sentence_ara }} = Marathi: ||| {{ sentence_mar }}'
+    id: 780a5767-f1c0-4cc7-a9b1-307473ca48c5
+    jinja: 'Translate this from simplified Chinese into Bengali: {{ sentence_zho_simpl
+      }} ||| {{ sentence_ben }}'
     metadata: *id001
-    name: equals-translation-ara-mar
-    reference: Equals translation (Arabic into Marathi)
-  8036f670-a822-47e0-b08d-f3d256a8f322: !Template
+    name: translate-this-zho_simpl-ben
+    reference: Translate this from X to Y (simplified Chinese into Bengali)
+  780b4daf-a774-42e9-8874-b9d545521e5f: !Template
     answer_choices: null
-    id: 8036f670-a822-47e0-b08d-f3d256a8f322
-    jinja: 'Bengali: {{ sentence_ben }} = Assamese: ||| {{ sentence_asm }}'
+    id: 780b4daf-a774-42e9-8874-b9d545521e5f
+    jinja: 'Translate this from Yoruba into Malayalam: {{ sentence_yor }} ||| {{ sentence_mal
+      }}'
     metadata: *id001
-    name: equals-translation-ben-asm
-    reference: Equals translation (Bengali into Assamese)
-  8038dd7f-ed27-4613-ab55-eda227f23958: !Template
+    name: translate-this-yor-mal
+    reference: Translate this from X to Y (Yoruba into Malayalam)
+  780fe70f-fff0-450d-8100-d45d13e83959: !Template
     answer_choices: null
-    id: 8038dd7f-ed27-4613-ab55-eda227f23958
-    jinja: 'Kannada: {{ sentence_kan }} = Igbo: ||| {{ sentence_ibo }}'
+    id: 780fe70f-fff0-450d-8100-d45d13e83959
+    jinja: 'Translate this from Zulu into Punjabi: {{ sentence_zul }} ||| {{ sentence_pan
+      }}'
     metadata: *id001
-    name: equals-translation-kan-ibo
-    reference: Equals translation (Kannada into Igbo)
-  8057f3fb-c8f3-444d-a390-30bbf0dee94f: !Template
+    name: translate-this-zul-pan
+    reference: Translate this from X to Y (Zulu into Punjabi)
+  785f119a-61ae-48bf-b3ab-b495993edd98: !Template
     answer_choices: null
-    id: 8057f3fb-c8f3-444d-a390-30bbf0dee94f
-    jinja: 'Wolof: {{ sentence_wol }} = Brazilian Portuguese: ||| {{ sentence_por
+    id: 785f119a-61ae-48bf-b3ab-b495993edd98
+    jinja: 'Translate this from Nepali into Wolof: {{ sentence_npi }} ||| {{ sentence_wol
       }}'
     metadata: *id001
-    name: equals-translation-wol-por
-    reference: Equals translation (Wolof into Brazilian Portuguese)
-  810f99fc-bc89-48d3-9d08-5b97507bb005: !Template
+    name: translate-this-npi-wol
+    reference: Translate this from X to Y (Nepali into Wolof)
+  786dc999-639d-4767-8d41-4d4776503071: !Template
     answer_choices: null
-    id: 810f99fc-bc89-48d3-9d08-5b97507bb005
-    jinja: 'Lingala: {{ sentence_lin }} = French: ||| {{ sentence_fra }}'
+    id: 786dc999-639d-4767-8d41-4d4776503071
+    jinja: 'Translate this from Yoruba into Catalan: {{ sentence_yor }} ||| {{ sentence_cat
+      }}'
     metadata: *id001
-    name: equals-translation-lin-fra
-    reference: Equals translation (Lingala into French)
-  8111dbc6-7d15-4eea-b043-0b0ae320fd9f: !Template
+    name: translate-this-yor-cat
+    reference: Translate this from X to Y (Yoruba into Catalan)
+  78a9fd75-7e28-4f11-b928-623baa4c3e43: !Template
     answer_choices: null
-    id: 8111dbc6-7d15-4eea-b043-0b0ae320fd9f
-    jinja: 'Marathi: {{ sentence_mar }} = Zulu: ||| {{ sentence_zul }}'
+    id: 78a9fd75-7e28-4f11-b928-623baa4c3e43
+    jinja: 'Translate this from Hindi into Tamil: {{ sentence_hin }} ||| {{ sentence_tam
+      }}'
     metadata: *id001
-    name: equals-translation-mar-zul
-    reference: Equals translation (Marathi into Zulu)
-  813a5227-a483-4b54-927e-3c82dacfed6d: !Template
+    name: translate-this-hin-tam
+    reference: Translate this from X to Y (Hindi into Tamil)
+  78f20037-0b4d-46a5-bb3c-ad74499cc79f: !Template
     answer_choices: null
-    id: 813a5227-a483-4b54-927e-3c82dacfed6d
-    jinja: 'Indonesian: {{ sentence_ind }} = Vietnamese: ||| {{ sentence_vie }}'
+    id: 78f20037-0b4d-46a5-bb3c-ad74499cc79f
+    jinja: 'Translate this from Arabic into Latin American Spanish: {{ sentence_ara
+      }} ||| {{ sentence_spa }}'
     metadata: *id001
-    name: equals-translation-ind-vie
-    reference: Equals translation (Indonesian into Vietnamese)
-  81640d87-f319-4751-9692-223746fcf335: !Template
+    name: translate-this-ara-spa
+    reference: Translate this from X to Y (Arabic into Latin American Spanish)
+  79b21fc6-4466-4123-9304-5d4eb79fe5e3: !Template
     answer_choices: null
-    id: 81640d87-f319-4751-9692-223746fcf335
-    jinja: 'Oriya: {{ sentence_ory }} = Yoruba: ||| {{ sentence_yor }}'
+    id: 79b21fc6-4466-4123-9304-5d4eb79fe5e3
+    jinja: 'Translate this from Vietnamese into Tamil: {{ sentence_vie }} ||| {{ sentence_tam
+      }}'
     metadata: *id001
-    name: equals-translation-ory-yor
-    reference: Equals translation (Oriya into Yoruba)
-  819690da-d3ff-45cc-93c1-b912f1bf6c61: !Template
+    name: translate-this-vie-tam
+    reference: Translate this from X to Y (Vietnamese into Tamil)
+  79ff6786-7928-49c9-ba2a-1f80c0e60767: !Template
     answer_choices: null
-    id: 819690da-d3ff-45cc-93c1-b912f1bf6c61
-    jinja: 'Urdu: {{ sentence_urd }} = simplified Chinese: ||| {{ sentence_zho_simpl
+    id: 79ff6786-7928-49c9-ba2a-1f80c0e60767
+    jinja: 'Translate this from English into Marathi: {{ sentence_eng }} ||| {{ sentence_mar
       }}'
     metadata: *id001
-    name: equals-translation-urd-zho_simpl
-    reference: Equals translation (Urdu into simplified Chinese)
-  819930ab-fb34-42a8-9bb1-c2281b747b47: !Template
+    name: translate-this-eng-mar
+    reference: Translate this from X to Y (English into Marathi)
+  7a03d33c-061c-4092-a491-4d9576926a42: !Template
     answer_choices: null
-    id: 819930ab-fb34-42a8-9bb1-c2281b747b47
-    jinja: 'Northern Sotho: {{ sentence_nso }} = Catalan: ||| {{ sentence_cat }}'
+    id: 7a03d33c-061c-4092-a491-4d9576926a42
+    jinja: 'Translate this from Bengali into Marathi: {{ sentence_ben }} ||| {{ sentence_mar
+      }}'
     metadata: *id001
-    name: equals-translation-nso-cat
-    reference: Equals translation (Northern Sotho into Catalan)
-  81bdb741-982e-4425-965b-228753b41190: !Template
+    name: translate-this-ben-mar
+    reference: Translate this from X to Y (Bengali into Marathi)
+  7a2ace20-2821-46eb-b064-8288eecff657: !Template
     answer_choices: null
-    id: 81bdb741-982e-4425-965b-228753b41190
-    jinja: 'French: {{ sentence_fra }} = Yoruba: ||| {{ sentence_yor }}'
+    id: 7a2ace20-2821-46eb-b064-8288eecff657
+    jinja: 'Translate this from Latin American Spanish into Bengali: {{ sentence_spa
+      }} ||| {{ sentence_ben }}'
     metadata: *id001
-    name: equals-translation-fra-yor
-    reference: Equals translation (French into Yoruba)
-  81c272de-8b80-4b49-9c02-315d7f92709f: !Template
+    name: translate-this-spa-ben
+    reference: Translate this from X to Y (Latin American Spanish into Bengali)
+  7a838179-db64-4e00-a0cd-99c01f73f76c: !Template
     answer_choices: null
-    id: 81c272de-8b80-4b49-9c02-315d7f92709f
-    jinja: 'Latin American Spanish: {{ sentence_spa }} = Marathi: ||| {{ sentence_mar
+    id: 7a838179-db64-4e00-a0cd-99c01f73f76c
+    jinja: 'Translate this from French into Assamese: {{ sentence_fra }} ||| {{ sentence_asm
       }}'
     metadata: *id001
-    name: equals-translation-spa-mar
-    reference: Equals translation (Latin American Spanish into Marathi)
-  82188975-05b2-4924-930d-dbe78dfdd052: !Template
+    name: translate-this-fra-asm
+    reference: Translate this from X to Y (French into Assamese)
+  7acd14f5-294b-4e7a-aca5-34dd22ab7d6f: !Template
     answer_choices: null
-    id: 82188975-05b2-4924-930d-dbe78dfdd052
-    jinja: 'Tamil: {{ sentence_tam }} = Indonesian: ||| {{ sentence_ind }}'
+    id: 7acd14f5-294b-4e7a-aca5-34dd22ab7d6f
+    jinja: 'Translate this from Swahili into Bengali: {{ sentence_swh }} ||| {{ sentence_ben
+      }}'
     metadata: *id001
-    name: equals-translation-tam-ind
-    reference: Equals translation (Tamil into Indonesian)
-  82229058-6742-47c1-96dd-0488c6916422: !Template
+    name: translate-this-swh-ben
+    reference: Translate this from X to Y (Swahili into Bengali)
+  7aeb41e4-83bf-40c7-98d8-904cc7933d9f: !Template
     answer_choices: null
-    id: 82229058-6742-47c1-96dd-0488c6916422
-    jinja: 'Catalan: {{ sentence_cat }} = Assamese: ||| {{ sentence_asm }}'
+    id: 7aeb41e4-83bf-40c7-98d8-904cc7933d9f
+    jinja: 'Translate this from Malayalam into Nepali: {{ sentence_mal }} ||| {{ sentence_npi
+      }}'
     metadata: *id001
-    name: equals-translation-cat-asm
-    reference: Equals translation (Catalan into Assamese)
-  82480e9c-e393-4d43-8769-e7c91b396458: !Template
+    name: translate-this-mal-npi
+    reference: Translate this from X to Y (Malayalam into Nepali)
+  7b4fb068-4d23-4caa-92ab-975a7da164f0: !Template
     answer_choices: null
-    id: 82480e9c-e393-4d43-8769-e7c91b396458
-    jinja: 'Tamil: {{ sentence_tam }} = Lingala: ||| {{ sentence_lin }}'
+    id: 7b4fb068-4d23-4caa-92ab-975a7da164f0
+    jinja: 'Translate this from Wolof into Oriya: {{ sentence_wol }} ||| {{ sentence_ory
+      }}'
     metadata: *id001
-    name: equals-translation-tam-lin
-    reference: Equals translation (Tamil into Lingala)
-  824d2917-9303-4475-8f11-1d901bbff0c1: !Template
+    name: translate-this-wol-ory
+    reference: Translate this from X to Y (Wolof into Oriya)
+  7b7bd380-2c04-4748-b50a-aa5868c232e4: !Template
     answer_choices: null
-    id: 824d2917-9303-4475-8f11-1d901bbff0c1
-    jinja: 'Yoruba: {{ sentence_yor }} = Marathi: ||| {{ sentence_mar }}'
+    id: 7b7bd380-2c04-4748-b50a-aa5868c232e4
+    jinja: 'Translate this from Vietnamese into English: {{ sentence_vie }} ||| {{
+      sentence_eng }}'
     metadata: *id001
-    name: equals-translation-yor-mar
-    reference: Equals translation (Yoruba into Marathi)
-  82eb2f45-5f81-4c13-8a47-d14022d014e9: !Template
+    name: translate-this-vie-eng
+    reference: Translate this from X to Y (Vietnamese into English)
+  7bca9e6c-f53e-4e03-b73c-677e9a1673e8: !Template
     answer_choices: null
-    id: 82eb2f45-5f81-4c13-8a47-d14022d014e9
-    jinja: 'Marathi: {{ sentence_mar }} = Northern Sotho: ||| {{ sentence_nso }}'
+    id: 7bca9e6c-f53e-4e03-b73c-677e9a1673e8
+    jinja: 'Translate this from Oriya into Igbo: {{ sentence_ory }} ||| {{ sentence_ibo
+      }}'
     metadata: *id001
-    name: equals-translation-mar-nso
-    reference: Equals translation (Marathi into Northern Sotho)
-  82ee358a-077f-4084-b355-3aa5a0ff7356: !Template
+    name: translate-this-ory-ibo
+    reference: Translate this from X to Y (Oriya into Igbo)
+  7bd6078a-1d56-4f47-9235-4f8bb61ec5c8: !Template
     answer_choices: null
-    id: 82ee358a-077f-4084-b355-3aa5a0ff7356
-    jinja: 'Xhosa: {{ sentence_xho }} = Assamese: ||| {{ sentence_asm }}'
+    id: 7bd6078a-1d56-4f47-9235-4f8bb61ec5c8
+    jinja: 'Translate this from Zulu into Wolof: {{ sentence_zul }} ||| {{ sentence_wol
+      }}'
     metadata: *id001
-    name: equals-translation-xho-asm
-    reference: Equals translation (Xhosa into Assamese)
-  8348c992-fc4e-41f7-850a-8ae8d29deabf: !Template
+    name: translate-this-zul-wol
+    reference: Translate this from X to Y (Zulu into Wolof)
+  7c097b02-6d59-42b9-8d96-0bd8e44aee8a: !Template
     answer_choices: null
-    id: 8348c992-fc4e-41f7-850a-8ae8d29deabf
-    jinja: 'Nepali: {{ sentence_npi }} = English: ||| {{ sentence_eng }}'
+    id: 7c097b02-6d59-42b9-8d96-0bd8e44aee8a
+    jinja: 'Translate this from Nepali into Latin American Spanish: {{ sentence_npi
+      }} ||| {{ sentence_spa }}'
     metadata: *id001
-    name: equals-translation-npi-eng
-    reference: Equals translation (Nepali into English)
-  83d439cd-0200-4b92-a270-2ef39bce0b42: !Template
+    name: translate-this-npi-spa
+    reference: Translate this from X to Y (Nepali into Latin American Spanish)
+  7c09a624-d4a9-4c92-a048-8df09a9fa0c4: !Template
     answer_choices: null
-    id: 83d439cd-0200-4b92-a270-2ef39bce0b42
-    jinja: 'Zulu: {{ sentence_zul }} = French: ||| {{ sentence_fra }}'
+    id: 7c09a624-d4a9-4c92-a048-8df09a9fa0c4
+    jinja: 'Translate this from Punjabi into Brazilian Portuguese: {{ sentence_pan
+      }} ||| {{ sentence_por }}'
     metadata: *id001
-    name: equals-translation-zul-fra
-    reference: Equals translation (Zulu into French)
-  8400d443-2e71-440e-a78b-d95881687032: !Template
+    name: translate-this-pan-por
+    reference: Translate this from X to Y (Punjabi into Brazilian Portuguese)
+  7c4283ec-da2f-4217-bba0-1ca26aab2dc5: !Template
     answer_choices: null
-    id: 8400d443-2e71-440e-a78b-d95881687032
-    jinja: 'Northern Sotho: {{ sentence_nso }} = Vietnamese: ||| {{ sentence_vie }}'
+    id: 7c4283ec-da2f-4217-bba0-1ca26aab2dc5
+    jinja: 'Translate this from French into Nepali: {{ sentence_fra }} ||| {{ sentence_npi
+      }}'
     metadata: *id001
-    name: equals-translation-nso-vie
-    reference: Equals translation (Northern Sotho into Vietnamese)
-  841d9760-5954-4d13-bf7b-b86c2ff03f72: !Template
+    name: translate-this-fra-npi
+    reference: Translate this from X to Y (French into Nepali)
+  7c9e066e-b470-4c66-ad93-842fbccf7159: !Template
     answer_choices: null
-    id: 841d9760-5954-4d13-bf7b-b86c2ff03f72
-    jinja: 'Wolof: {{ sentence_wol }} = traditional Chinese: ||| {{ sentence_zho_trad
+    id: 7c9e066e-b470-4c66-ad93-842fbccf7159
+    jinja: 'Translate this from French into Igbo: {{ sentence_fra }} ||| {{ sentence_ibo
       }}'
     metadata: *id001
-    name: equals-translation-wol-zho_trad
-    reference: Equals translation (Wolof into traditional Chinese)
-  84601e7c-497a-49ca-9a87-d465ce2eb20a: !Template
+    name: translate-this-fra-ibo
+    reference: Translate this from X to Y (French into Igbo)
+  7ca384a0-7bd5-42ef-a488-604c36400edd: !Template
     answer_choices: null
-    id: 84601e7c-497a-49ca-9a87-d465ce2eb20a
-    jinja: 'Telugu: {{ sentence_tel }} = Arabic: ||| {{ sentence_ara }}'
+    id: 7ca384a0-7bd5-42ef-a488-604c36400edd
+    jinja: 'Translate this from Northern Sotho into Swahili: {{ sentence_nso }} |||
+      {{ sentence_swh }}'
     metadata: *id001
-    name: equals-translation-tel-ara
-    reference: Equals translation (Telugu into Arabic)
-  85330fd7-d0ff-4ff6-8ff7-1fa4af574150: !Template
+    name: translate-this-nso-swh
+    reference: Translate this from X to Y (Northern Sotho into Swahili)
+  7d3e581f-6220-4bc8-aad4-6cf57f038388: !Template
     answer_choices: null
-    id: 85330fd7-d0ff-4ff6-8ff7-1fa4af574150
-    jinja: 'Igbo: {{ sentence_ibo }} = Telugu: ||| {{ sentence_tel }}'
+    id: 7d3e581f-6220-4bc8-aad4-6cf57f038388
+    jinja: 'Translate this from Brazilian Portuguese into Kannada: {{ sentence_por
+      }} ||| {{ sentence_kan }}'
     metadata: *id001
-    name: equals-translation-ibo-tel
-    reference: Equals translation (Igbo into Telugu)
-  853e7e4d-8b4e-4173-8537-22687ca369ae: !Template
+    name: translate-this-por-kan
+    reference: Translate this from X to Y (Brazilian Portuguese into Kannada)
+  7d821fb0-3641-4f53-9b2a-45dc1b0fb1e6: !Template
     answer_choices: null
-    id: 853e7e4d-8b4e-4173-8537-22687ca369ae
-    jinja: 'Vietnamese: {{ sentence_vie }} = Telugu: ||| {{ sentence_tel }}'
+    id: 7d821fb0-3641-4f53-9b2a-45dc1b0fb1e6
+    jinja: 'Translate this from Tamil into Telugu: {{ sentence_tam }} ||| {{ sentence_tel
+      }}'
     metadata: *id001
-    name: equals-translation-vie-tel
-    reference: Equals translation (Vietnamese into Telugu)
-  8570ea04-b231-4f9c-a50b-b0356709dd62: !Template
+    name: translate-this-tam-tel
+    reference: Translate this from X to Y (Tamil into Telugu)
+  7d8a5554-0355-4bb1-b360-b611d90e889f: !Template
     answer_choices: null
-    id: 8570ea04-b231-4f9c-a50b-b0356709dd62
-    jinja: 'Arabic: {{ sentence_ara }} = Oriya: ||| {{ sentence_ory }}'
+    id: 7d8a5554-0355-4bb1-b360-b611d90e889f
+    jinja: 'Translate this from Telugu into simplified Chinese: {{ sentence_tel }}
+      ||| {{ sentence_zho_simpl }}'
     metadata: *id001
-    name: equals-translation-ara-ory
-    reference: Equals translation (Arabic into Oriya)
-  857948ec-9628-4095-81f9-ea76ce613d7e: !Template
+    name: translate-this-tel-zho_simpl
+    reference: Translate this from X to Y (Telugu into simplified Chinese)
+  7d98643b-a549-47f0-a712-dd02ad7416c8: !Template
     answer_choices: null
-    id: 857948ec-9628-4095-81f9-ea76ce613d7e
-    jinja: 'Latin American Spanish: {{ sentence_spa }} = Catalan: ||| {{ sentence_cat
+    id: 7d98643b-a549-47f0-a712-dd02ad7416c8
+    jinja: 'Translate this from Wolof into Yoruba: {{ sentence_wol }} ||| {{ sentence_yor
       }}'
     metadata: *id001
-    name: equals-translation-spa-cat
-    reference: Equals translation (Latin American Spanish into Catalan)
-  85a6794b-3726-4121-8aa9-b0552a9f06fb: !Template
+    name: translate-this-wol-yor
+    reference: Translate this from X to Y (Wolof into Yoruba)
+  7dbd6c87-cacc-493e-b15d-7fd8765bddf5: !Template
+    answer_choices: null
+    id: 7dbd6c87-cacc-493e-b15d-7fd8765bddf5
+    jinja: 'Translate this from Kannada into traditional Chinese: {{ sentence_kan
+      }} ||| {{ sentence_zho_trad }}'
+    metadata: *id001
+    name: translate-this-kan-zho_trad
+    reference: Translate this from X to Y (Kannada into traditional Chinese)
+  7dc69e02-22bb-4852-9e2b-a61db5d67537: !Template
     answer_choices: null
-    id: 85a6794b-3726-4121-8aa9-b0552a9f06fb
-    jinja: 'Marathi: {{ sentence_mar }} = Kannada: ||| {{ sentence_kan }}'
+    id: 7dc69e02-22bb-4852-9e2b-a61db5d67537
+    jinja: 'Translate this from Latin American Spanish into traditional Chinese: {{
+      sentence_spa }} ||| {{ sentence_zho_trad }}'
     metadata: *id001
-    name: equals-translation-mar-kan
-    reference: Equals translation (Marathi into Kannada)
-  85d7d782-f8ca-453c-bcd7-8ccba9efc58f: !Template
+    name: translate-this-spa-zho_trad
+    reference: Translate this from X to Y (Latin American Spanish into traditional
+      Chinese)
+  7e74d14d-860b-40c0-9ad8-ad6d22e8d30b: !Template
     answer_choices: null
-    id: 85d7d782-f8ca-453c-bcd7-8ccba9efc58f
-    jinja: 'Igbo: {{ sentence_ibo }} = Bengali: ||| {{ sentence_ben }}'
+    id: 7e74d14d-860b-40c0-9ad8-ad6d22e8d30b
+    jinja: 'Translate this from Northern Sotho into Oriya: {{ sentence_nso }} |||
+      {{ sentence_ory }}'
     metadata: *id001
-    name: equals-translation-ibo-ben
-    reference: Equals translation (Igbo into Bengali)
-  85ed5a44-00e6-4d74-8363-4f16d95106aa: !Template
+    name: translate-this-nso-ory
+    reference: Translate this from X to Y (Northern Sotho into Oriya)
+  7ef776e9-1b90-4b1e-bfbd-05d6ad0bef2d: !Template
     answer_choices: null
-    id: 85ed5a44-00e6-4d74-8363-4f16d95106aa
-    jinja: 'Tamil: {{ sentence_tam }} = Marathi: ||| {{ sentence_mar }}'
+    id: 7ef776e9-1b90-4b1e-bfbd-05d6ad0bef2d
+    jinja: 'Translate this from Xhosa into Vietnamese: {{ sentence_xho }} ||| {{ sentence_vie
+      }}'
     metadata: *id001
-    name: equals-translation-tam-mar
-    reference: Equals translation (Tamil into Marathi)
-  85eef99a-9827-4f81-a927-862e78fcc17d: !Template
+    name: translate-this-xho-vie
+    reference: Translate this from X to Y (Xhosa into Vietnamese)
+  7f1355b6-561c-4b50-910c-cd27905c48f7: !Template
     answer_choices: null
-    id: 85eef99a-9827-4f81-a927-862e78fcc17d
-    jinja: 'Zulu: {{ sentence_zul }} = Malayalam: ||| {{ sentence_mal }}'
+    id: 7f1355b6-561c-4b50-910c-cd27905c48f7
+    jinja: 'Translate this from Malayalam into Marathi: {{ sentence_mal }} ||| {{
+      sentence_mar }}'
     metadata: *id001
-    name: equals-translation-zul-mal
-    reference: Equals translation (Zulu into Malayalam)
-  8601e386-c680-4743-89be-a78420f35c7a: !Template
+    name: translate-this-mal-mar
+    reference: Translate this from X to Y (Malayalam into Marathi)
+  7f2234ea-5c8b-4a2d-b987-db871069cf13: !Template
     answer_choices: null
-    id: 8601e386-c680-4743-89be-a78420f35c7a
-    jinja: 'Wolof: {{ sentence_wol }} = English: ||| {{ sentence_eng }}'
+    id: 7f2234ea-5c8b-4a2d-b987-db871069cf13
+    jinja: 'Translate this from Wolof into Hindi: {{ sentence_wol }} ||| {{ sentence_hin
+      }}'
     metadata: *id001
-    name: equals-translation-wol-eng
-    reference: Equals translation (Wolof into English)
-  860811e3-4e38-4c63-8104-07172ab4c54e: !Template
+    name: translate-this-wol-hin
+    reference: Translate this from X to Y (Wolof into Hindi)
+  7f3ddedd-e086-49de-a923-e3566f6ee12c: !Template
     answer_choices: null
-    id: 860811e3-4e38-4c63-8104-07172ab4c54e
-    jinja: 'Kannada: {{ sentence_kan }} = Catalan: ||| {{ sentence_cat }}'
+    id: 7f3ddedd-e086-49de-a923-e3566f6ee12c
+    jinja: 'Translate this from Tamil into French: {{ sentence_tam }} ||| {{ sentence_fra
+      }}'
     metadata: *id001
-    name: equals-translation-kan-cat
-    reference: Equals translation (Kannada into Catalan)
-  866d0f10-51ab-45ff-a937-fa6eaeba9e53: !Template
+    name: translate-this-tam-fra
+    reference: Translate this from X to Y (Tamil into French)
+  801549b3-2fab-4c7a-98ec-0e6144a1a4ac: !Template
     answer_choices: null
-    id: 866d0f10-51ab-45ff-a937-fa6eaeba9e53
-    jinja: 'French: {{ sentence_fra }} = Arabic: ||| {{ sentence_ara }}'
+    id: 801549b3-2fab-4c7a-98ec-0e6144a1a4ac
+    jinja: 'Translate this from traditional Chinese into Indonesian: {{ sentence_zho_trad
+      }} ||| {{ sentence_ind }}'
     metadata: *id001
-    name: equals-translation-fra-ara
-    reference: Equals translation (French into Arabic)
-  867e0aa8-f9b1-4bab-a9b2-16733c5b188d: !Template
+    name: translate-this-zho_trad-ind
+    reference: Translate this from X to Y (traditional Chinese into Indonesian)
+  803bc4c9-a137-4999-86a3-970a3ab25346: !Template
     answer_choices: null
-    id: 867e0aa8-f9b1-4bab-a9b2-16733c5b188d
-    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Nepali: ||| {{ sentence_npi
+    id: 803bc4c9-a137-4999-86a3-970a3ab25346
+    jinja: 'Translate this from Assamese into French: {{ sentence_asm }} ||| {{ sentence_fra
       }}'
     metadata: *id001
-    name: equals-translation-zho_trad-npi
-    reference: Equals translation (traditional Chinese into Nepali)
-  868c44dc-9159-4778-96ed-b43996e6d134: !Template
+    name: translate-this-asm-fra
+    reference: Translate this from X to Y (Assamese into French)
+  805bebd1-a6f0-4d50-9dd3-10bab0705e68: !Template
     answer_choices: null
-    id: 868c44dc-9159-4778-96ed-b43996e6d134
-    jinja: 'Kannada: {{ sentence_kan }} = Swahili: ||| {{ sentence_swh }}'
+    id: 805bebd1-a6f0-4d50-9dd3-10bab0705e68
+    jinja: 'Translate this from Assamese into Northern Sotho: {{ sentence_asm }} |||
+      {{ sentence_nso }}'
     metadata: *id001
-    name: equals-translation-kan-swh
-    reference: Equals translation (Kannada into Swahili)
-  86975457-942e-44c2-914b-f0c896afb333: !Template
+    name: translate-this-asm-nso
+    reference: Translate this from X to Y (Assamese into Northern Sotho)
+  806d3d0f-b5c3-430f-9fca-b168f072ab98: !Template
     answer_choices: null
-    id: 86975457-942e-44c2-914b-f0c896afb333
-    jinja: 'Yoruba: {{ sentence_yor }} = Nepali: ||| {{ sentence_npi }}'
+    id: 806d3d0f-b5c3-430f-9fca-b168f072ab98
+    jinja: 'Translate this from Northern Sotho into English: {{ sentence_nso }} |||
+      {{ sentence_eng }}'
     metadata: *id001
-    name: equals-translation-yor-npi
-    reference: Equals translation (Yoruba into Nepali)
-  86abccd4-3ece-4f35-b029-182aab235e3b: !Template
+    name: translate-this-nso-eng
+    reference: Translate this from X to Y (Northern Sotho into English)
+  811f3a72-47b4-4ccc-ad67-69fb069e615d: !Template
     answer_choices: null
-    id: 86abccd4-3ece-4f35-b029-182aab235e3b
-    jinja: 'Assamese: {{ sentence_asm }} = Brazilian Portuguese: ||| {{ sentence_por
+    id: 811f3a72-47b4-4ccc-ad67-69fb069e615d
+    jinja: 'Translate this from Arabic into French: {{ sentence_ara }} ||| {{ sentence_fra
       }}'
     metadata: *id001
-    name: equals-translation-asm-por
-    reference: Equals translation (Assamese into Brazilian Portuguese)
-  88071c62-0eaf-4872-8c18-9cb49bbd0bc2: !Template
+    name: translate-this-ara-fra
+    reference: Translate this from X to Y (Arabic into French)
+  81245b82-ca44-4660-b2b3-a6b21baca6c9: !Template
     answer_choices: null
-    id: 88071c62-0eaf-4872-8c18-9cb49bbd0bc2
-    jinja: 'Xhosa: {{ sentence_xho }} = Vietnamese: ||| {{ sentence_vie }}'
+    id: 81245b82-ca44-4660-b2b3-a6b21baca6c9
+    jinja: 'Translate this from French into Wolof: {{ sentence_fra }} ||| {{ sentence_wol
+      }}'
     metadata: *id001
-    name: equals-translation-xho-vie
-    reference: Equals translation (Xhosa into Vietnamese)
-  88da6874-53ed-4e09-8d20-471760aadcb6: !Template
+    name: translate-this-fra-wol
+    reference: Translate this from X to Y (French into Wolof)
+  81353c77-8319-470e-91c5-649a740d7334: !Template
     answer_choices: null
-    id: 88da6874-53ed-4e09-8d20-471760aadcb6
-    jinja: 'French: {{ sentence_fra }} = Lingala: ||| {{ sentence_lin }}'
+    id: 81353c77-8319-470e-91c5-649a740d7334
+    jinja: 'Translate this from Arabic into Brazilian Portuguese: {{ sentence_ara
+      }} ||| {{ sentence_por }}'
     metadata: *id001
-    name: equals-translation-fra-lin
-    reference: Equals translation (French into Lingala)
-  896037d9-52b3-43d0-9fe2-3c150202e14d: !Template
+    name: translate-this-ara-por
+    reference: Translate this from X to Y (Arabic into Brazilian Portuguese)
+  81cc1f88-af57-41d8-b8ff-719c788479af: !Template
     answer_choices: null
-    id: 896037d9-52b3-43d0-9fe2-3c150202e14d
-    jinja: 'Latin American Spanish: {{ sentence_spa }} = Yoruba: ||| {{ sentence_yor
+    id: 81cc1f88-af57-41d8-b8ff-719c788479af
+    jinja: 'Translate this from Oriya into Arabic: {{ sentence_ory }} ||| {{ sentence_ara
       }}'
     metadata: *id001
-    name: equals-translation-spa-yor
-    reference: Equals translation (Latin American Spanish into Yoruba)
-  89952a4d-0946-4896-a3a9-7176276703b3: !Template
+    name: translate-this-ory-ara
+    reference: Translate this from X to Y (Oriya into Arabic)
+  820e7949-7a03-4a38-af43-3f171669911f: !Template
     answer_choices: null
-    id: 89952a4d-0946-4896-a3a9-7176276703b3
-    jinja: 'Arabic: {{ sentence_ara }} = Telugu: ||| {{ sentence_tel }}'
+    id: 820e7949-7a03-4a38-af43-3f171669911f
+    jinja: 'Translate this from Northern Sotho into Bengali: {{ sentence_nso }} |||
+      {{ sentence_ben }}'
     metadata: *id001
-    name: equals-translation-ara-tel
-    reference: Equals translation (Arabic into Telugu)
-  89fb3294-3312-4d52-8143-f627a9c18dab: !Template
+    name: translate-this-nso-ben
+    reference: Translate this from X to Y (Northern Sotho into Bengali)
+  821df590-126d-4e81-acc4-3f0d988cc2aa: !Template
     answer_choices: null
-    id: 89fb3294-3312-4d52-8143-f627a9c18dab
-    jinja: 'Bengali: {{ sentence_ben }} = Punjabi: ||| {{ sentence_pan }}'
+    id: 821df590-126d-4e81-acc4-3f0d988cc2aa
+    jinja: 'Translate this from French into Hindi: {{ sentence_fra }} ||| {{ sentence_hin
+      }}'
     metadata: *id001
-    name: equals-translation-ben-pan
-    reference: Equals translation (Bengali into Punjabi)
-  8a360abd-45a4-4feb-8064-9162a3785255: !Template
+    name: translate-this-fra-hin
+    reference: Translate this from X to Y (French into Hindi)
+  824c82b3-670f-4242-9190-7c159d5834b9: !Template
     answer_choices: null
-    id: 8a360abd-45a4-4feb-8064-9162a3785255
-    jinja: 'Latin American Spanish: {{ sentence_spa }} = Nepali: ||| {{ sentence_npi
+    id: 824c82b3-670f-4242-9190-7c159d5834b9
+    jinja: 'Translate this from Nepali into Swahili: {{ sentence_npi }} ||| {{ sentence_swh
       }}'
     metadata: *id001
-    name: equals-translation-spa-npi
-    reference: Equals translation (Latin American Spanish into Nepali)
-  8afb123b-9fe6-468c-b6e2-afc41d3265c1: !Template
+    name: translate-this-npi-swh
+    reference: Translate this from X to Y (Nepali into Swahili)
+  8283cffc-eefe-4905-bd7e-2310f1c9105c: !Template
     answer_choices: null
-    id: 8afb123b-9fe6-468c-b6e2-afc41d3265c1
-    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Lingala: ||| {{ sentence_lin
+    id: 8283cffc-eefe-4905-bd7e-2310f1c9105c
+    jinja: 'Translate this from Nepali into Bengali: {{ sentence_npi }} ||| {{ sentence_ben
       }}'
     metadata: *id001
-    name: equals-translation-zho_simpl-lin
-    reference: Equals translation (simplified Chinese into Lingala)
-  8afb6245-b52a-4bbe-a9cc-4bb3164acd3a: !Template
+    name: translate-this-npi-ben
+    reference: Translate this from X to Y (Nepali into Bengali)
+  82990b6b-d5f1-4e79-bb92-d3f9081be2ca: !Template
     answer_choices: null
-    id: 8afb6245-b52a-4bbe-a9cc-4bb3164acd3a
-    jinja: 'Malayalam: {{ sentence_mal }} = Igbo: ||| {{ sentence_ibo }}'
+    id: 82990b6b-d5f1-4e79-bb92-d3f9081be2ca
+    jinja: 'Translate this from Gujarati into English: {{ sentence_guj }} ||| {{ sentence_eng
+      }}'
     metadata: *id001
-    name: equals-translation-mal-ibo
-    reference: Equals translation (Malayalam into Igbo)
-  8b0c37da-730e-4959-80cc-e9583e054baf: !Template
+    name: translate-this-guj-eng
+    reference: Translate this from X to Y (Gujarati into English)
+  82adc1d2-7088-4229-8e73-b07c52012fcf: !Template
     answer_choices: null
-    id: 8b0c37da-730e-4959-80cc-e9583e054baf
-    jinja: 'Indonesian: {{ sentence_ind }} = Igbo: ||| {{ sentence_ibo }}'
+    id: 82adc1d2-7088-4229-8e73-b07c52012fcf
+    jinja: 'Translate this from Bengali into simplified Chinese: {{ sentence_ben }}
+      ||| {{ sentence_zho_simpl }}'
     metadata: *id001
-    name: equals-translation-ind-ibo
-    reference: Equals translation (Indonesian into Igbo)
-  8b3754fc-e7c7-42bd-b747-467965015a09: !Template
+    name: translate-this-ben-zho_simpl
+    reference: Translate this from X to Y (Bengali into simplified Chinese)
+  82e93d21-d4b2-4220-b012-8d193f1c3019: !Template
     answer_choices: null
-    id: 8b3754fc-e7c7-42bd-b747-467965015a09
-    jinja: 'Hindi: {{ sentence_hin }} = Tamil: ||| {{ sentence_tam }}'
+    id: 82e93d21-d4b2-4220-b012-8d193f1c3019
+    jinja: 'Translate this from Indonesian into Telugu: {{ sentence_ind }} ||| {{
+      sentence_tel }}'
     metadata: *id001
-    name: equals-translation-hin-tam
-    reference: Equals translation (Hindi into Tamil)
-  8b453664-bbae-4db4-a908-05045e5e140e: !Template
+    name: translate-this-ind-tel
+    reference: Translate this from X to Y (Indonesian into Telugu)
+  835799fb-35bb-4273-818a-678e32926fb5: !Template
     answer_choices: null
-    id: 8b453664-bbae-4db4-a908-05045e5e140e
-    jinja: 'Assamese: {{ sentence_asm }} = Swahili: ||| {{ sentence_swh }}'
+    id: 835799fb-35bb-4273-818a-678e32926fb5
+    jinja: 'Translate this from Zulu into Yoruba: {{ sentence_zul }} ||| {{ sentence_yor
+      }}'
     metadata: *id001
-    name: equals-translation-asm-swh
-    reference: Equals translation (Assamese into Swahili)
-  8bee4432-6354-49f9-bdfc-fa0952237ae5: !Template
+    name: translate-this-zul-yor
+    reference: Translate this from X to Y (Zulu into Yoruba)
+  83646767-7533-46cf-9f9e-63fbb9182d79: !Template
     answer_choices: null
-    id: 8bee4432-6354-49f9-bdfc-fa0952237ae5
-    jinja: 'Urdu: {{ sentence_urd }} = Telugu: ||| {{ sentence_tel }}'
+    id: 83646767-7533-46cf-9f9e-63fbb9182d79
+    jinja: 'Translate this from Vietnamese into traditional Chinese: {{ sentence_vie
+      }} ||| {{ sentence_zho_trad }}'
     metadata: *id001
-    name: equals-translation-urd-tel
-    reference: Equals translation (Urdu into Telugu)
-  8c0a4d17-0b58-4208-a405-9c37058c91b4: !Template
+    name: translate-this-vie-zho_trad
+    reference: Translate this from X to Y (Vietnamese into traditional Chinese)
+  838ad8fb-db89-4d08-8d03-43c0192d4898: !Template
     answer_choices: null
-    id: 8c0a4d17-0b58-4208-a405-9c37058c91b4
-    jinja: 'Igbo: {{ sentence_ibo }} = Oriya: ||| {{ sentence_ory }}'
+    id: 838ad8fb-db89-4d08-8d03-43c0192d4898
+    jinja: 'Translate this from Wolof into Catalan: {{ sentence_wol }} ||| {{ sentence_cat
+      }}'
     metadata: *id001
-    name: equals-translation-ibo-ory
-    reference: Equals translation (Igbo into Oriya)
-  8da552cd-0116-4081-af61-ae18808b20ad: !Template
+    name: translate-this-wol-cat
+    reference: Translate this from X to Y (Wolof into Catalan)
+  8407f467-10db-455b-8367-06eb21ffc6ec: !Template
     answer_choices: null
-    id: 8da552cd-0116-4081-af61-ae18808b20ad
-    jinja: 'Vietnamese: {{ sentence_vie }} = Malayalam: ||| {{ sentence_mal }}'
+    id: 8407f467-10db-455b-8367-06eb21ffc6ec
+    jinja: 'Translate this from Swahili into Wolof: {{ sentence_swh }} ||| {{ sentence_wol
+      }}'
     metadata: *id001
-    name: equals-translation-vie-mal
-    reference: Equals translation (Vietnamese into Malayalam)
-  8de6bb97-01a7-4c06-b06e-e17b12d0f3be: !Template
+    name: translate-this-swh-wol
+    reference: Translate this from X to Y (Swahili into Wolof)
+  8452adbf-6581-439a-9af9-a5f345af0348: !Template
     answer_choices: null
-    id: 8de6bb97-01a7-4c06-b06e-e17b12d0f3be
-    jinja: 'Latin American Spanish: {{ sentence_spa }} = Swahili: ||| {{ sentence_swh
+    id: 8452adbf-6581-439a-9af9-a5f345af0348
+    jinja: 'Translate this from Vietnamese into Hindi: {{ sentence_vie }} ||| {{ sentence_hin
       }}'
     metadata: *id001
-    name: equals-translation-spa-swh
-    reference: Equals translation (Latin American Spanish into Swahili)
-  8e13e8a4-0dc5-4f9e-9982-d1a04a71c7f9: !Template
+    name: translate-this-vie-hin
+    reference: Translate this from X to Y (Vietnamese into Hindi)
+  847df062-d40f-4f72-a8ac-1f19d06d4888: !Template
     answer_choices: null
-    id: 8e13e8a4-0dc5-4f9e-9982-d1a04a71c7f9
-    jinja: 'Indonesian: {{ sentence_ind }} = Northern Sotho: ||| {{ sentence_nso }}'
+    id: 847df062-d40f-4f72-a8ac-1f19d06d4888
+    jinja: 'Translate this from Punjabi into Malayalam: {{ sentence_pan }} ||| {{
+      sentence_mal }}'
     metadata: *id001
-    name: equals-translation-ind-nso
-    reference: Equals translation (Indonesian into Northern Sotho)
-  8ebbae29-4dd4-4c6d-94d2-53d73a3495cc: !Template
+    name: translate-this-pan-mal
+    reference: Translate this from X to Y (Punjabi into Malayalam)
+  850e1df7-f2ab-4f1a-b412-938ae897f6c8: !Template
     answer_choices: null
-    id: 8ebbae29-4dd4-4c6d-94d2-53d73a3495cc
-    jinja: 'Nepali: {{ sentence_npi }} = Tamil: ||| {{ sentence_tam }}'
+    id: 850e1df7-f2ab-4f1a-b412-938ae897f6c8
+    jinja: 'Translate this from Marathi into Lingala: {{ sentence_mar }} ||| {{ sentence_lin
+      }}'
     metadata: *id001
-    name: equals-translation-npi-tam
-    reference: Equals translation (Nepali into Tamil)
-  8ef5f60f-d77a-43fb-8230-b1d5596bc534: !Template
+    name: translate-this-mar-lin
+    reference: Translate this from X to Y (Marathi into Lingala)
+  85875ed8-15b9-4bed-917c-f95ec3c1e816: !Template
     answer_choices: null
-    id: 8ef5f60f-d77a-43fb-8230-b1d5596bc534
-    jinja: 'Bengali: {{ sentence_ben }} = traditional Chinese: ||| {{ sentence_zho_trad
+    id: 85875ed8-15b9-4bed-917c-f95ec3c1e816
+    jinja: 'Translate this from Malayalam into Hindi: {{ sentence_mal }} ||| {{ sentence_hin
       }}'
     metadata: *id001
-    name: equals-translation-ben-zho_trad
-    reference: Equals translation (Bengali into traditional Chinese)
-  8f848374-9bd1-4137-b1a0-0e75512187ed: !Template
+    name: translate-this-mal-hin
+    reference: Translate this from X to Y (Malayalam into Hindi)
+  85c17d63-a76a-4518-ae3b-bffae41e4d2c: !Template
     answer_choices: null
-    id: 8f848374-9bd1-4137-b1a0-0e75512187ed
-    jinja: 'Tamil: {{ sentence_tam }} = Urdu: ||| {{ sentence_urd }}'
+    id: 85c17d63-a76a-4518-ae3b-bffae41e4d2c
+    jinja: 'Translate this from Marathi into Urdu: {{ sentence_mar }} ||| {{ sentence_urd
+      }}'
     metadata: *id001
-    name: equals-translation-tam-urd
-    reference: Equals translation (Tamil into Urdu)
-  8fcf2e9b-fca3-490b-8af1-0fb1f1771386: !Template
+    name: translate-this-mar-urd
+    reference: Translate this from X to Y (Marathi into Urdu)
+  85d5b465-15c5-49e4-aea9-d0bf46c0bae2: !Template
     answer_choices: null
-    id: 8fcf2e9b-fca3-490b-8af1-0fb1f1771386
-    jinja: 'Oriya: {{ sentence_ory }} = Northern Sotho: ||| {{ sentence_nso }}'
+    id: 85d5b465-15c5-49e4-aea9-d0bf46c0bae2
+    jinja: 'Translate this from Arabic into Northern Sotho: {{ sentence_ara }} |||
+      {{ sentence_nso }}'
     metadata: *id001
-    name: equals-translation-ory-nso
-    reference: Equals translation (Oriya into Northern Sotho)
-  8fdd7067-085b-4e7b-9854-e57a34fd7d52: !Template
+    name: translate-this-ara-nso
+    reference: Translate this from X to Y (Arabic into Northern Sotho)
+  8701434e-2930-4306-8dfe-4f39f9a9d48c: !Template
     answer_choices: null
-    id: 8fdd7067-085b-4e7b-9854-e57a34fd7d52
-    jinja: 'Marathi: {{ sentence_mar }} = Hindi: ||| {{ sentence_hin }}'
+    id: 8701434e-2930-4306-8dfe-4f39f9a9d48c
+    jinja: 'Translate this from Nepali into Northern Sotho: {{ sentence_npi }} |||
+      {{ sentence_nso }}'
     metadata: *id001
-    name: equals-translation-mar-hin
-    reference: Equals translation (Marathi into Hindi)
-  8febaa3c-f89d-4552-9de0-dc49f7b86538: !Template
+    name: translate-this-npi-nso
+    reference: Translate this from X to Y (Nepali into Northern Sotho)
+  870784e5-5231-4055-a124-422a94bd85ce: !Template
     answer_choices: null
-    id: 8febaa3c-f89d-4552-9de0-dc49f7b86538
-    jinja: 'Oriya: {{ sentence_ory }} = Arabic: ||| {{ sentence_ara }}'
+    id: 870784e5-5231-4055-a124-422a94bd85ce
+    jinja: 'Translate this from Swahili into Northern Sotho: {{ sentence_swh }} |||
+      {{ sentence_nso }}'
     metadata: *id001
-    name: equals-translation-ory-ara
-    reference: Equals translation (Oriya into Arabic)
-  9030748e-8e89-4409-9d50-c3e1f0f28c60: !Template
+    name: translate-this-swh-nso
+    reference: Translate this from X to Y (Swahili into Northern Sotho)
+  87785161-8af4-41c9-a309-524e3ae824a0: !Template
     answer_choices: null
-    id: 9030748e-8e89-4409-9d50-c3e1f0f28c60
-    jinja: 'Oriya: {{ sentence_ory }} = Brazilian Portuguese: ||| {{ sentence_por
+    id: 87785161-8af4-41c9-a309-524e3ae824a0
+    jinja: 'Translate this from Gujarati into Nepali: {{ sentence_guj }} ||| {{ sentence_npi
       }}'
     metadata: *id001
-    name: equals-translation-ory-por
-    reference: Equals translation (Oriya into Brazilian Portuguese)
-  90813bb4-2fe9-4028-b96a-d269fc350490: !Template
+    name: translate-this-guj-npi
+    reference: Translate this from X to Y (Gujarati into Nepali)
+  87851fa3-01d7-4f1c-a3ad-a67bfd16f2dc: !Template
     answer_choices: null
-    id: 90813bb4-2fe9-4028-b96a-d269fc350490
-    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Nepali: ||| {{ sentence_npi
+    id: 87851fa3-01d7-4f1c-a3ad-a67bfd16f2dc
+    jinja: 'Translate this from Nepali into Zulu: {{ sentence_npi }} ||| {{ sentence_zul
       }}'
     metadata: *id001
-    name: equals-translation-zho_simpl-npi
-    reference: Equals translation (simplified Chinese into Nepali)
-  90888792-204c-49af-9140-7cbd0c7e3da3: !Template
+    name: translate-this-npi-zul
+    reference: Translate this from X to Y (Nepali into Zulu)
+  87bd46cb-216f-47d6-b2dc-63034fa81ce1: !Template
     answer_choices: null
-    id: 90888792-204c-49af-9140-7cbd0c7e3da3
-    jinja: 'Xhosa: {{ sentence_xho }} = Nepali: ||| {{ sentence_npi }}'
+    id: 87bd46cb-216f-47d6-b2dc-63034fa81ce1
+    jinja: 'Translate this from traditional Chinese into simplified Chinese: {{ sentence_zho_trad
+      }} ||| {{ sentence_zho_simpl }}'
     metadata: *id001
-    name: equals-translation-xho-npi
-    reference: Equals translation (Xhosa into Nepali)
-  90c021a3-c7a8-4298-8c16-44f2da3eecad: !Template
+    name: translate-this-zho_trad-zho_simpl
+    reference: Translate this from X to Y (traditional Chinese into simplified Chinese)
+  87e9a141-5cc8-4328-be1c-ea4c5daed94f: !Template
     answer_choices: null
-    id: 90c021a3-c7a8-4298-8c16-44f2da3eecad
-    jinja: 'Lingala: {{ sentence_lin }} = simplified Chinese: ||| {{ sentence_zho_simpl
+    id: 87e9a141-5cc8-4328-be1c-ea4c5daed94f
+    jinja: 'Translate this from Assamese into Oriya: {{ sentence_asm }} ||| {{ sentence_ory
       }}'
     metadata: *id001
-    name: equals-translation-lin-zho_simpl
-    reference: Equals translation (Lingala into simplified Chinese)
-  912d813b-6fc7-413b-b8aa-b13e09f14fa0: !Template
+    name: translate-this-asm-ory
+    reference: Translate this from X to Y (Assamese into Oriya)
+  8855c0c0-79d6-4229-96a6-b32e176f65e7: !Template
     answer_choices: null
-    id: 912d813b-6fc7-413b-b8aa-b13e09f14fa0
-    jinja: 'Lingala: {{ sentence_lin }} = Telugu: ||| {{ sentence_tel }}'
+    id: 8855c0c0-79d6-4229-96a6-b32e176f65e7
+    jinja: 'Translate this from Hindi into Igbo: {{ sentence_hin }} ||| {{ sentence_ibo
+      }}'
     metadata: *id001
-    name: equals-translation-lin-tel
-    reference: Equals translation (Lingala into Telugu)
-  91646401-7788-4907-8e0a-ff3f0a9fe75f: !Template
+    name: translate-this-hin-ibo
+    reference: Translate this from X to Y (Hindi into Igbo)
+  886f6d09-f7ed-4ed3-aa57-e6868bedc672: !Template
     answer_choices: null
-    id: 91646401-7788-4907-8e0a-ff3f0a9fe75f
-    jinja: 'Kannada: {{ sentence_kan }} = Wolof: ||| {{ sentence_wol }}'
+    id: 886f6d09-f7ed-4ed3-aa57-e6868bedc672
+    jinja: 'Translate this from traditional Chinese into Nepali: {{ sentence_zho_trad
+      }} ||| {{ sentence_npi }}'
     metadata: *id001
-    name: equals-translation-kan-wol
-    reference: Equals translation (Kannada into Wolof)
-  91b0dd1f-07a0-4829-9a84-810596efbb9c: !Template
+    name: translate-this-zho_trad-npi
+    reference: Translate this from X to Y (traditional Chinese into Nepali)
+  8877c1ac-4f49-44ee-9277-1c27046613fc: !Template
     answer_choices: null
-    id: 91b0dd1f-07a0-4829-9a84-810596efbb9c
-    jinja: 'Punjabi: {{ sentence_pan }} = Urdu: ||| {{ sentence_urd }}'
+    id: 8877c1ac-4f49-44ee-9277-1c27046613fc
+    jinja: 'Translate this from Swahili into Malayalam: {{ sentence_swh }} ||| {{
+      sentence_mal }}'
     metadata: *id001
-    name: equals-translation-pan-urd
-    reference: Equals translation (Punjabi into Urdu)
-  91c518ba-927c-4a52-8b6e-16da5e76033d: !Template
+    name: translate-this-swh-mal
+    reference: Translate this from X to Y (Swahili into Malayalam)
+  88f6901d-684e-4423-85aa-0111f95705ac: !Template
     answer_choices: null
-    id: 91c518ba-927c-4a52-8b6e-16da5e76033d
-    jinja: 'Wolof: {{ sentence_wol }} = Urdu: ||| {{ sentence_urd }}'
+    id: 88f6901d-684e-4423-85aa-0111f95705ac
+    jinja: 'Translate this from Zulu into traditional Chinese: {{ sentence_zul }}
+      ||| {{ sentence_zho_trad }}'
     metadata: *id001
-    name: equals-translation-wol-urd
-    reference: Equals translation (Wolof into Urdu)
-  91f17c1a-28dc-46f3-a239-550e2482c104: !Template
+    name: translate-this-zul-zho_trad
+    reference: Translate this from X to Y (Zulu into traditional Chinese)
+  89215efb-c139-479c-869d-b287857f6bc7: !Template
     answer_choices: null
-    id: 91f17c1a-28dc-46f3-a239-550e2482c104
-    jinja: 'Punjabi: {{ sentence_pan }} = Yoruba: ||| {{ sentence_yor }}'
+    id: 89215efb-c139-479c-869d-b287857f6bc7
+    jinja: 'Translate this from Latin American Spanish into Urdu: {{ sentence_spa
+      }} ||| {{ sentence_urd }}'
     metadata: *id001
-    name: equals-translation-pan-yor
-    reference: Equals translation (Punjabi into Yoruba)
-  92a91aa9-1580-4ac1-8a9f-e8eeb8bee87b: !Template
+    name: translate-this-spa-urd
+    reference: Translate this from X to Y (Latin American Spanish into Urdu)
+  89ef182e-3f8d-469f-913d-e8573e306a2a: !Template
     answer_choices: null
-    id: 92a91aa9-1580-4ac1-8a9f-e8eeb8bee87b
-    jinja: 'Telugu: {{ sentence_tel }} = Indonesian: ||| {{ sentence_ind }}'
+    id: 89ef182e-3f8d-469f-913d-e8573e306a2a
+    jinja: 'Translate this from Oriya into Northern Sotho: {{ sentence_ory }} |||
+      {{ sentence_nso }}'
     metadata: *id001
-    name: equals-translation-tel-ind
-    reference: Equals translation (Telugu into Indonesian)
-  933a97e8-d32a-4a53-960f-943d07c16b3e: !Template
+    name: translate-this-ory-nso
+    reference: Translate this from X to Y (Oriya into Northern Sotho)
+  8a1552c6-fdf6-45f1-b516-40be49bbd8f7: !Template
     answer_choices: null
-    id: 933a97e8-d32a-4a53-960f-943d07c16b3e
-    jinja: 'English: {{ sentence_eng }} = Hindi: ||| {{ sentence_hin }}'
+    id: 8a1552c6-fdf6-45f1-b516-40be49bbd8f7
+    jinja: 'Translate this from Urdu into simplified Chinese: {{ sentence_urd }} |||
+      {{ sentence_zho_simpl }}'
     metadata: *id001
-    name: equals-translation-eng-hin
-    reference: Equals translation (English into Hindi)
-  93f49fff-c3e2-4f14-923c-e3024a4b0b42: !Template
+    name: translate-this-urd-zho_simpl
+    reference: Translate this from X to Y (Urdu into simplified Chinese)
+  8a157823-475d-4efc-960a-d626da8ecda7: !Template
     answer_choices: null
-    id: 93f49fff-c3e2-4f14-923c-e3024a4b0b42
-    jinja: 'Catalan: {{ sentence_cat }} = Marathi: ||| {{ sentence_mar }}'
+    id: 8a157823-475d-4efc-960a-d626da8ecda7
+    jinja: 'Translate this from Telugu into Brazilian Portuguese: {{ sentence_tel
+      }} ||| {{ sentence_por }}'
     metadata: *id001
-    name: equals-translation-cat-mar
-    reference: Equals translation (Catalan into Marathi)
-  93fb7b96-d809-41bc-940e-da7787eba77d: !Template
+    name: translate-this-tel-por
+    reference: Translate this from X to Y (Telugu into Brazilian Portuguese)
+  8a5122ab-56e1-4f8c-845a-e18fb1e8695c: !Template
     answer_choices: null
-    id: 93fb7b96-d809-41bc-940e-da7787eba77d
-    jinja: 'Hindi: {{ sentence_hin }} = traditional Chinese: ||| {{ sentence_zho_trad
+    id: 8a5122ab-56e1-4f8c-845a-e18fb1e8695c
+    jinja: 'Translate this from Marathi into Zulu: {{ sentence_mar }} ||| {{ sentence_zul
       }}'
     metadata: *id001
-    name: equals-translation-hin-zho_trad
-    reference: Equals translation (Hindi into traditional Chinese)
-  941a5f00-dabc-48ce-9036-6a01b4951bb7: !Template
+    name: translate-this-mar-zul
+    reference: Translate this from X to Y (Marathi into Zulu)
+  8a626552-c23b-41c6-afed-e1dcb3bdafdf: !Template
     answer_choices: null
-    id: 941a5f00-dabc-48ce-9036-6a01b4951bb7
-    jinja: 'Nepali: {{ sentence_npi }} = Telugu: ||| {{ sentence_tel }}'
+    id: 8a626552-c23b-41c6-afed-e1dcb3bdafdf
+    jinja: 'Translate this from Zulu into Xhosa: {{ sentence_zul }} ||| {{ sentence_xho
+      }}'
     metadata: *id001
-    name: equals-translation-npi-tel
-    reference: Equals translation (Nepali into Telugu)
-  94410045-6741-490a-9b99-ead84996d9a9: !Template
+    name: translate-this-zul-xho
+    reference: Translate this from X to Y (Zulu into Xhosa)
+  8a844276-7a55-4c62-843d-779f2f1cf19f: !Template
     answer_choices: null
-    id: 94410045-6741-490a-9b99-ead84996d9a9
-    jinja: 'Nepali: {{ sentence_npi }} = Indonesian: ||| {{ sentence_ind }}'
+    id: 8a844276-7a55-4c62-843d-779f2f1cf19f
+    jinja: 'Translate this from Oriya into Telugu: {{ sentence_ory }} ||| {{ sentence_tel
+      }}'
     metadata: *id001
-    name: equals-translation-npi-ind
-    reference: Equals translation (Nepali into Indonesian)
-  9491ccd6-f4f6-425b-b165-475111cf6c4f: !Template
+    name: translate-this-ory-tel
+    reference: Translate this from X to Y (Oriya into Telugu)
+  8ae09bf8-f386-435b-8099-f3bc868336a2: !Template
     answer_choices: null
-    id: 9491ccd6-f4f6-425b-b165-475111cf6c4f
-    jinja: 'Vietnamese: {{ sentence_vie }} = Zulu: ||| {{ sentence_zul }}'
+    id: 8ae09bf8-f386-435b-8099-f3bc868336a2
+    jinja: 'Translate this from Arabic into Tamil: {{ sentence_ara }} ||| {{ sentence_tam
+      }}'
     metadata: *id001
-    name: equals-translation-vie-zul
-    reference: Equals translation (Vietnamese into Zulu)
-  95121795-1a9d-42e6-86dc-b65cb44084ff: !Template
+    name: translate-this-ara-tam
+    reference: Translate this from X to Y (Arabic into Tamil)
+  8b1ab9a8-cf88-4024-a5ff-ab0980644d8c: !Template
     answer_choices: null
-    id: 95121795-1a9d-42e6-86dc-b65cb44084ff
-    jinja: 'Zulu: {{ sentence_zul }} = Urdu: ||| {{ sentence_urd }}'
+    id: 8b1ab9a8-cf88-4024-a5ff-ab0980644d8c
+    jinja: 'Translate this from Tamil into Gujarati: {{ sentence_tam }} ||| {{ sentence_guj
+      }}'
     metadata: *id001
-    name: equals-translation-zul-urd
-    reference: Equals translation (Zulu into Urdu)
-  959a106e-19e4-481e-9493-d80f1c65df88: !Template
+    name: translate-this-tam-guj
+    reference: Translate this from X to Y (Tamil into Gujarati)
+  8b25d6e8-e1d0-496e-b0f9-d9247ca67900: !Template
     answer_choices: null
-    id: 959a106e-19e4-481e-9493-d80f1c65df88
-    jinja: 'Indonesian: {{ sentence_ind }} = Urdu: ||| {{ sentence_urd }}'
+    id: 8b25d6e8-e1d0-496e-b0f9-d9247ca67900
+    jinja: 'Translate this from Kannada into simplified Chinese: {{ sentence_kan }}
+      ||| {{ sentence_zho_simpl }}'
     metadata: *id001
-    name: equals-translation-ind-urd
-    reference: Equals translation (Indonesian into Urdu)
-  96482d5c-b955-4b9a-8149-951aa4e00183: !Template
+    name: translate-this-kan-zho_simpl
+    reference: Translate this from X to Y (Kannada into simplified Chinese)
+  8b31f547-30d3-434b-abf4-56054ad3696a: !Template
     answer_choices: null
-    id: 96482d5c-b955-4b9a-8149-951aa4e00183
-    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Urdu: ||| {{ sentence_urd }}'
+    id: 8b31f547-30d3-434b-abf4-56054ad3696a
+    jinja: 'Translate this from English into Latin American Spanish: {{ sentence_eng
+      }} ||| {{ sentence_spa }}'
     metadata: *id001
-    name: equals-translation-por-urd
-    reference: Equals translation (Brazilian Portuguese into Urdu)
-  9733a46b-5da6-4597-bf79-b62bebf8b61d: !Template
+    name: translate-this-eng-spa
+    reference: Translate this from X to Y (English into Latin American Spanish)
+  8b5b5a43-7cdc-43d2-b088-8b5f2687f496: !Template
     answer_choices: null
-    id: 9733a46b-5da6-4597-bf79-b62bebf8b61d
-    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Gujarati: ||| {{ sentence_guj
+    id: 8b5b5a43-7cdc-43d2-b088-8b5f2687f496
+    jinja: 'Translate this from Zulu into Oriya: {{ sentence_zul }} ||| {{ sentence_ory
       }}'
     metadata: *id001
-    name: equals-translation-por-guj
-    reference: Equals translation (Brazilian Portuguese into Gujarati)
-  9779a7ef-c6d4-43de-98f9-45285de1350d: !Template
+    name: translate-this-zul-ory
+    reference: Translate this from X to Y (Zulu into Oriya)
+  8c4083eb-a108-44af-8c10-3d186b97b7c0: !Template
     answer_choices: null
-    id: 9779a7ef-c6d4-43de-98f9-45285de1350d
-    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Swahili: ||| {{ sentence_swh
+    id: 8c4083eb-a108-44af-8c10-3d186b97b7c0
+    jinja: 'Translate this from Xhosa into Swahili: {{ sentence_xho }} ||| {{ sentence_swh
       }}'
     metadata: *id001
-    name: equals-translation-zho_simpl-swh
-    reference: Equals translation (simplified Chinese into Swahili)
-  97a459f2-24cb-42af-bb40-a968ab6ef203: !Template
-    answer_choices: null
-    id: 97a459f2-24cb-42af-bb40-a968ab6ef203
-    jinja: 'Catalan: {{ sentence_cat }} = Kannada: ||| {{ sentence_kan }}'
-    metadata: *id001
-    name: equals-translation-cat-kan
-    reference: Equals translation (Catalan into Kannada)
-  97cecc39-0c71-435b-b352-0bb5bd8fc474: !Template
+    name: translate-this-xho-swh
+    reference: Translate this from X to Y (Xhosa into Swahili)
+  8c9f2e5c-c880-4d08-bdb6-a3d451a2528b: !Template
     answer_choices: null
-    id: 97cecc39-0c71-435b-b352-0bb5bd8fc474
-    jinja: 'Wolof: {{ sentence_wol }} = Nepali: ||| {{ sentence_npi }}'
+    id: 8c9f2e5c-c880-4d08-bdb6-a3d451a2528b
+    jinja: 'Translate this from traditional Chinese into French: {{ sentence_zho_trad
+      }} ||| {{ sentence_fra }}'
     metadata: *id001
-    name: equals-translation-wol-npi
-    reference: Equals translation (Wolof into Nepali)
-  9859abe1-e710-45fc-b167-94445b6f40a7: !Template
+    name: translate-this-zho_trad-fra
+    reference: Translate this from X to Y (traditional Chinese into French)
+  8d66aeb6-c15c-4545-915b-d44eae81d305: !Template
     answer_choices: null
-    id: 9859abe1-e710-45fc-b167-94445b6f40a7
-    jinja: 'Swahili: {{ sentence_swh }} = Tamil: ||| {{ sentence_tam }}'
+    id: 8d66aeb6-c15c-4545-915b-d44eae81d305
+    jinja: 'Translate this from Punjabi into Zulu: {{ sentence_pan }} ||| {{ sentence_zul
+      }}'
     metadata: *id001
-    name: equals-translation-swh-tam
-    reference: Equals translation (Swahili into Tamil)
-  989cd787-4811-4ca8-8903-bf61a1c9f22d: !Template
+    name: translate-this-pan-zul
+    reference: Translate this from X to Y (Punjabi into Zulu)
+  8d954bec-f617-48d3-9a23-bd56bd55d483: !Template
     answer_choices: null
-    id: 989cd787-4811-4ca8-8903-bf61a1c9f22d
-    jinja: 'French: {{ sentence_fra }} = Assamese: ||| {{ sentence_asm }}'
+    id: 8d954bec-f617-48d3-9a23-bd56bd55d483
+    jinja: 'Translate this from Igbo into Lingala: {{ sentence_ibo }} ||| {{ sentence_lin
+      }}'
     metadata: *id001
-    name: equals-translation-fra-asm
-    reference: Equals translation (French into Assamese)
-  98bedd8d-3efc-49ec-a62b-d0f0bf8f0462: !Template
+    name: translate-this-ibo-lin
+    reference: Translate this from X to Y (Igbo into Lingala)
+  8dc91263-3b4b-40f3-a539-245604beb5f8: !Template
     answer_choices: null
-    id: 98bedd8d-3efc-49ec-a62b-d0f0bf8f0462
-    jinja: 'Telugu: {{ sentence_tel }} = French: ||| {{ sentence_fra }}'
+    id: 8dc91263-3b4b-40f3-a539-245604beb5f8
+    jinja: 'Translate this from Lingala into Telugu: {{ sentence_lin }} ||| {{ sentence_tel
+      }}'
     metadata: *id001
-    name: equals-translation-tel-fra
-    reference: Equals translation (Telugu into French)
-  98d94d3f-4ccc-473b-9027-f30c5debbce9: !Template
+    name: translate-this-lin-tel
+    reference: Translate this from X to Y (Lingala into Telugu)
+  8dd3e7f0-df4b-445e-95a8-b15baf60eb3d: !Template
     answer_choices: null
-    id: 98d94d3f-4ccc-473b-9027-f30c5debbce9
-    jinja: 'Tamil: {{ sentence_tam }} = Swahili: ||| {{ sentence_swh }}'
+    id: 8dd3e7f0-df4b-445e-95a8-b15baf60eb3d
+    jinja: 'Translate this from Kannada into Hindi: {{ sentence_kan }} ||| {{ sentence_hin
+      }}'
     metadata: *id001
-    name: equals-translation-tam-swh
-    reference: Equals translation (Tamil into Swahili)
-  98f4886c-f16b-4fee-baa7-7b58ccb8a3e4: !Template
+    name: translate-this-kan-hin
+    reference: Translate this from X to Y (Kannada into Hindi)
+  8e3a2da5-c399-4a0c-b653-1184f2d15c04: !Template
     answer_choices: null
-    id: 98f4886c-f16b-4fee-baa7-7b58ccb8a3e4
-    jinja: 'Arabic: {{ sentence_ara }} = Latin American Spanish: ||| {{ sentence_spa
+    id: 8e3a2da5-c399-4a0c-b653-1184f2d15c04
+    jinja: 'Translate this from Bengali into French: {{ sentence_ben }} ||| {{ sentence_fra
       }}'
     metadata: *id001
-    name: equals-translation-ara-spa
-    reference: Equals translation (Arabic into Latin American Spanish)
-  992bcd69-6ff2-4d9f-a6cc-1f2a0b9b3a5d: !Template
+    name: translate-this-ben-fra
+    reference: Translate this from X to Y (Bengali into French)
+  8e40197f-2cc6-41ef-9465-ff87ef05665f: !Template
     answer_choices: null
-    id: 992bcd69-6ff2-4d9f-a6cc-1f2a0b9b3a5d
-    jinja: 'Malayalam: {{ sentence_mal }} = Wolof: ||| {{ sentence_wol }}'
+    id: 8e40197f-2cc6-41ef-9465-ff87ef05665f
+    jinja: 'Translate this from simplified Chinese into Marathi: {{ sentence_zho_simpl
+      }} ||| {{ sentence_mar }}'
     metadata: *id001
-    name: equals-translation-mal-wol
-    reference: Equals translation (Malayalam into Wolof)
-  9943f209-8af3-43de-9dc9-f09fcf785667: !Template
+    name: translate-this-zho_simpl-mar
+    reference: Translate this from X to Y (simplified Chinese into Marathi)
+  8e55824e-fa7d-495a-ba74-920e727f9e61: !Template
     answer_choices: null
-    id: 9943f209-8af3-43de-9dc9-f09fcf785667
-    jinja: 'Punjabi: {{ sentence_pan }} = Wolof: ||| {{ sentence_wol }}'
+    id: 8e55824e-fa7d-495a-ba74-920e727f9e61
+    jinja: 'Translate this from Hindi into Urdu: {{ sentence_hin }} ||| {{ sentence_urd
+      }}'
     metadata: *id001
-    name: equals-translation-pan-wol
-    reference: Equals translation (Punjabi into Wolof)
-  9957bafb-cc1d-4e78-bcb8-c56f22fe306a: !Template
+    name: translate-this-hin-urd
+    reference: Translate this from X to Y (Hindi into Urdu)
+  8e77c5ab-57f9-4b07-9a51-2fba15d3c195: !Template
     answer_choices: null
-    id: 9957bafb-cc1d-4e78-bcb8-c56f22fe306a
-    jinja: 'Indonesian: {{ sentence_ind }} = English: ||| {{ sentence_eng }}'
+    id: 8e77c5ab-57f9-4b07-9a51-2fba15d3c195
+    jinja: 'Translate this from Oriya into Yoruba: {{ sentence_ory }} ||| {{ sentence_yor
+      }}'
     metadata: *id001
-    name: equals-translation-ind-eng
-    reference: Equals translation (Indonesian into English)
-  995fdf5a-51c9-42a6-8414-13a2bdc4babf: !Template
+    name: translate-this-ory-yor
+    reference: Translate this from X to Y (Oriya into Yoruba)
+  8eda07c0-5205-452f-9cf9-445e9d3736a2: !Template
     answer_choices: null
-    id: 995fdf5a-51c9-42a6-8414-13a2bdc4babf
-    jinja: 'Yoruba: {{ sentence_yor }} = Telugu: ||| {{ sentence_tel }}'
+    id: 8eda07c0-5205-452f-9cf9-445e9d3736a2
+    jinja: 'Translate this from Malayalam into Zulu: {{ sentence_mal }} ||| {{ sentence_zul
+      }}'
     metadata: *id001
-    name: equals-translation-yor-tel
-    reference: Equals translation (Yoruba into Telugu)
-  9993cea2-fa17-40f3-9aa6-ceb7ab1f9d63: !Template
+    name: translate-this-mal-zul
+    reference: Translate this from X to Y (Malayalam into Zulu)
+  8f4a8a1f-f1ac-40b7-ad2e-c02cb0dc737c: !Template
     answer_choices: null
-    id: 9993cea2-fa17-40f3-9aa6-ceb7ab1f9d63
-    jinja: 'Catalan: {{ sentence_cat }} = Punjabi: ||| {{ sentence_pan }}'
+    id: 8f4a8a1f-f1ac-40b7-ad2e-c02cb0dc737c
+    jinja: 'Translate this from Swahili into Kannada: {{ sentence_swh }} ||| {{ sentence_kan
+      }}'
     metadata: *id001
-    name: equals-translation-cat-pan
-    reference: Equals translation (Catalan into Punjabi)
-  99bca63f-4fc8-4d71-8ebb-b276c8a46a66: !Template
+    name: translate-this-swh-kan
+    reference: Translate this from X to Y (Swahili into Kannada)
+  8f568ee7-5561-4d29-a497-3fcfc7372720: !Template
     answer_choices: null
-    id: 99bca63f-4fc8-4d71-8ebb-b276c8a46a66
-    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Urdu: ||| {{ sentence_urd
+    id: 8f568ee7-5561-4d29-a497-3fcfc7372720
+    jinja: 'Translate this from Oriya into Urdu: {{ sentence_ory }} ||| {{ sentence_urd
       }}'
     metadata: *id001
-    name: equals-translation-zho_trad-urd
-    reference: Equals translation (traditional Chinese into Urdu)
-  9aa04571-1802-4def-9822-0ef85637fde1: !Template
+    name: translate-this-ory-urd
+    reference: Translate this from X to Y (Oriya into Urdu)
+  8fa24c60-e437-42ff-a3fb-c1620cd09e7a: !Template
     answer_choices: null
-    id: 9aa04571-1802-4def-9822-0ef85637fde1
-    jinja: 'Northern Sotho: {{ sentence_nso }} = Zulu: ||| {{ sentence_zul }}'
+    id: 8fa24c60-e437-42ff-a3fb-c1620cd09e7a
+    jinja: 'Translate this from Telugu into Gujarati: {{ sentence_tel }} ||| {{ sentence_guj
+      }}'
     metadata: *id001
-    name: equals-translation-nso-zul
-    reference: Equals translation (Northern Sotho into Zulu)
-  9acec480-c963-4615-83c5-30243b8d3f56: !Template
+    name: translate-this-tel-guj
+    reference: Translate this from X to Y (Telugu into Gujarati)
+  9032d786-1e8c-46c4-9ded-f16032290dd8: !Template
     answer_choices: null
-    id: 9acec480-c963-4615-83c5-30243b8d3f56
-    jinja: 'Telugu: {{ sentence_tel }} = Catalan: ||| {{ sentence_cat }}'
+    id: 9032d786-1e8c-46c4-9ded-f16032290dd8
+    jinja: 'Translate this from Swahili into Igbo: {{ sentence_swh }} ||| {{ sentence_ibo
+      }}'
     metadata: *id001
-    name: equals-translation-tel-cat
-    reference: Equals translation (Telugu into Catalan)
-  9b15a2c7-64a3-44b0-8a84-4ad04876cb8f: !Template
+    name: translate-this-swh-ibo
+    reference: Translate this from X to Y (Swahili into Igbo)
+  910e899d-b24e-4514-a98d-7573233957f8: !Template
     answer_choices: null
-    id: 9b15a2c7-64a3-44b0-8a84-4ad04876cb8f
-    jinja: 'Lingala: {{ sentence_lin }} = Zulu: ||| {{ sentence_zul }}'
+    id: 910e899d-b24e-4514-a98d-7573233957f8
+    jinja: 'Translate this from Lingala into Catalan: {{ sentence_lin }} ||| {{ sentence_cat
+      }}'
     metadata: *id001
-    name: equals-translation-lin-zul
-    reference: Equals translation (Lingala into Zulu)
-  9b8888b2-f762-45b7-8d2d-aba70566466d: !Template
+    name: translate-this-lin-cat
+    reference: Translate this from X to Y (Lingala into Catalan)
+  9164cede-ce09-4bdb-b45c-d85a50667750: !Template
     answer_choices: null
-    id: 9b8888b2-f762-45b7-8d2d-aba70566466d
-    jinja: 'Igbo: {{ sentence_ibo }} = Swahili: ||| {{ sentence_swh }}'
+    id: 9164cede-ce09-4bdb-b45c-d85a50667750
+    jinja: 'Translate this from Latin American Spanish into Nepali: {{ sentence_spa
+      }} ||| {{ sentence_npi }}'
     metadata: *id001
-    name: equals-translation-ibo-swh
-    reference: Equals translation (Igbo into Swahili)
-  9b9b8ec1-1a8f-4b45-a18f-dba5a239fdf5: !Template
+    name: translate-this-spa-npi
+    reference: Translate this from X to Y (Latin American Spanish into Nepali)
+  91d8d9b7-bd0c-4a68-91cd-0baab6a32298: !Template
     answer_choices: null
-    id: 9b9b8ec1-1a8f-4b45-a18f-dba5a239fdf5
-    jinja: 'Indonesian: {{ sentence_ind }} = Marathi: ||| {{ sentence_mar }}'
+    id: 91d8d9b7-bd0c-4a68-91cd-0baab6a32298
+    jinja: 'Translate this from Urdu into Zulu: {{ sentence_urd }} ||| {{ sentence_zul
+      }}'
     metadata: *id001
-    name: equals-translation-ind-mar
-    reference: Equals translation (Indonesian into Marathi)
-  9bbb57a1-21e7-4f8b-84af-bc461fb5f2e5: !Template
+    name: translate-this-urd-zul
+    reference: Translate this from X to Y (Urdu into Zulu)
+  926ad8e2-6f3a-4a9a-9370-83631bb84226: !Template
     answer_choices: null
-    id: 9bbb57a1-21e7-4f8b-84af-bc461fb5f2e5
-    jinja: 'Assamese: {{ sentence_asm }} = Igbo: ||| {{ sentence_ibo }}'
+    id: 926ad8e2-6f3a-4a9a-9370-83631bb84226
+    jinja: 'Translate this from Hindi into Marathi: {{ sentence_hin }} ||| {{ sentence_mar
+      }}'
     metadata: *id001
-    name: equals-translation-asm-ibo
-    reference: Equals translation (Assamese into Igbo)
-  9bca3515-7990-4bed-b484-b953dd3b33a4: !Template
+    name: translate-this-hin-mar
+    reference: Translate this from X to Y (Hindi into Marathi)
+  926ff83d-2807-4716-9ad4-6de44bce5c44: !Template
     answer_choices: null
-    id: 9bca3515-7990-4bed-b484-b953dd3b33a4
-    jinja: 'Kannada: {{ sentence_kan }} = Hindi: ||| {{ sentence_hin }}'
+    id: 926ff83d-2807-4716-9ad4-6de44bce5c44
+    jinja: 'Translate this from Xhosa into Hindi: {{ sentence_xho }} ||| {{ sentence_hin
+      }}'
     metadata: *id001
-    name: equals-translation-kan-hin
-    reference: Equals translation (Kannada into Hindi)
-  9c328626-e16c-4973-804d-85cbf884be85: !Template
+    name: translate-this-xho-hin
+    reference: Translate this from X to Y (Xhosa into Hindi)
+  92a90c77-53e5-453f-b79e-96d7a1c0ae23: !Template
     answer_choices: null
-    id: 9c328626-e16c-4973-804d-85cbf884be85
-    jinja: 'Gujarati: {{ sentence_guj }} = Telugu: ||| {{ sentence_tel }}'
+    id: 92a90c77-53e5-453f-b79e-96d7a1c0ae23
+    jinja: 'Translate this from Catalan into Gujarati: {{ sentence_cat }} ||| {{ sentence_guj
+      }}'
     metadata: *id001
-    name: equals-translation-guj-tel
-    reference: Equals translation (Gujarati into Telugu)
-  9c3358e6-d0b3-453c-a5e0-b7ddb30bab4f: !Template
+    name: translate-this-cat-guj
+    reference: Translate this from X to Y (Catalan into Gujarati)
+  92b6c604-141f-4840-a9dc-a2d7ba481b27: !Template
     answer_choices: null
-    id: 9c3358e6-d0b3-453c-a5e0-b7ddb30bab4f
-    jinja: 'Punjabi: {{ sentence_pan }} = Indonesian: ||| {{ sentence_ind }}'
+    id: 92b6c604-141f-4840-a9dc-a2d7ba481b27
+    jinja: 'Translate this from Swahili into French: {{ sentence_swh }} ||| {{ sentence_fra
+      }}'
     metadata: *id001
-    name: equals-translation-pan-ind
-    reference: Equals translation (Punjabi into Indonesian)
-  9cc8ae6b-5cae-4613-bea6-deb3bd6dffee: !Template
+    name: translate-this-swh-fra
+    reference: Translate this from X to Y (Swahili into French)
+  9328f338-5852-480c-81ac-b24b003eeb6c: !Template
     answer_choices: null
-    id: 9cc8ae6b-5cae-4613-bea6-deb3bd6dffee
-    jinja: 'Marathi: {{ sentence_mar }} = Bengali: ||| {{ sentence_ben }}'
+    id: 9328f338-5852-480c-81ac-b24b003eeb6c
+    jinja: 'Translate this from Assamese into Punjabi: {{ sentence_asm }} ||| {{ sentence_pan
+      }}'
     metadata: *id001
-    name: equals-translation-mar-ben
-    reference: Equals translation (Marathi into Bengali)
-  9d0bc474-940d-4eb8-88de-f56d6cfad8e6: !Template
+    name: translate-this-asm-pan
+    reference: Translate this from X to Y (Assamese into Punjabi)
+  93333bd3-47e8-4dae-9b4f-ca86663078af: !Template
     answer_choices: null
-    id: 9d0bc474-940d-4eb8-88de-f56d6cfad8e6
-    jinja: 'Marathi: {{ sentence_mar }} = Urdu: ||| {{ sentence_urd }}'
+    id: 93333bd3-47e8-4dae-9b4f-ca86663078af
+    jinja: 'Translate this from Vietnamese into Latin American Spanish: {{ sentence_vie
+      }} ||| {{ sentence_spa }}'
     metadata: *id001
-    name: equals-translation-mar-urd
-    reference: Equals translation (Marathi into Urdu)
-  9d184edb-d1e2-4832-b1f9-65db7a433a0f: !Template
+    name: translate-this-vie-spa
+    reference: Translate this from X to Y (Vietnamese into Latin American Spanish)
+  936a4c07-a3a1-4b57-b94e-f03e19612863: !Template
     answer_choices: null
-    id: 9d184edb-d1e2-4832-b1f9-65db7a433a0f
-    jinja: 'Tamil: {{ sentence_tam }} = Latin American Spanish: ||| {{ sentence_spa
-      }}'
+    id: 936a4c07-a3a1-4b57-b94e-f03e19612863
+    jinja: 'Translate this from Latin American Spanish into Yoruba: {{ sentence_spa
+      }} ||| {{ sentence_yor }}'
     metadata: *id001
-    name: equals-translation-tam-spa
-    reference: Equals translation (Tamil into Latin American Spanish)
-  9d6e1218-08c3-4af0-a406-df29b8809569: !Template
+    name: translate-this-spa-yor
+    reference: Translate this from X to Y (Latin American Spanish into Yoruba)
+  938d9bac-e162-4747-96ad-0281d896d14b: !Template
     answer_choices: null
-    id: 9d6e1218-08c3-4af0-a406-df29b8809569
-    jinja: 'Xhosa: {{ sentence_xho }} = Zulu: ||| {{ sentence_zul }}'
+    id: 938d9bac-e162-4747-96ad-0281d896d14b
+    jinja: 'Translate this from Punjabi into Xhosa: {{ sentence_pan }} ||| {{ sentence_xho
+      }}'
     metadata: *id001
-    name: equals-translation-xho-zul
-    reference: Equals translation (Xhosa into Zulu)
-  9e1e0213-c257-4874-9525-34b1b5334c57: !Template
+    name: translate-this-pan-xho
+    reference: Translate this from X to Y (Punjabi into Xhosa)
+  93f68f25-f5db-453d-b9f2-6a4b938c8659: !Template
     answer_choices: null
-    id: 9e1e0213-c257-4874-9525-34b1b5334c57
-    jinja: 'Telugu: {{ sentence_tel }} = Nepali: ||| {{ sentence_npi }}'
+    id: 93f68f25-f5db-453d-b9f2-6a4b938c8659
+    jinja: 'Translate this from Indonesian into Arabic: {{ sentence_ind }} ||| {{
+      sentence_ara }}'
     metadata: *id001
-    name: equals-translation-tel-npi
-    reference: Equals translation (Telugu into Nepali)
-  9e2b7f91-13b9-4fce-ab91-cd268b692743: !Template
+    name: translate-this-ind-ara
+    reference: Translate this from X to Y (Indonesian into Arabic)
+  9559886f-c593-47b7-b866-497c131b5ea6: !Template
     answer_choices: null
-    id: 9e2b7f91-13b9-4fce-ab91-cd268b692743
-    jinja: 'Arabic: {{ sentence_ara }} = French: ||| {{ sentence_fra }}'
+    id: 9559886f-c593-47b7-b866-497c131b5ea6
+    jinja: 'Translate this from English into Hindi: {{ sentence_eng }} ||| {{ sentence_hin
+      }}'
     metadata: *id001
-    name: equals-translation-ara-fra
-    reference: Equals translation (Arabic into French)
-  9e3336d1-3ade-4b4c-9889-402de04813bc: !Template
+    name: translate-this-eng-hin
+    reference: Translate this from X to Y (English into Hindi)
+  9590dea4-4d43-42e7-9847-26ed2b184546: !Template
     answer_choices: null
-    id: 9e3336d1-3ade-4b4c-9889-402de04813bc
-    jinja: 'English: {{ sentence_eng }} = Indonesian: ||| {{ sentence_ind }}'
+    id: 9590dea4-4d43-42e7-9847-26ed2b184546
+    jinja: 'Translate this from Bengali into Hindi: {{ sentence_ben }} ||| {{ sentence_hin
+      }}'
     metadata: *id001
-    name: equals-translation-eng-ind
-    reference: Equals translation (English into Indonesian)
-  9e343ea4-f3b5-4924-b5ca-6483e3ad9394: !Template
+    name: translate-this-ben-hin
+    reference: Translate this from X to Y (Bengali into Hindi)
+  95b212f2-0602-4e3a-b4db-3443e95b7bd9: !Template
     answer_choices: null
-    id: 9e343ea4-f3b5-4924-b5ca-6483e3ad9394
-    jinja: 'Nepali: {{ sentence_npi }} = Vietnamese: ||| {{ sentence_vie }}'
+    id: 95b212f2-0602-4e3a-b4db-3443e95b7bd9
+    jinja: 'Translate this from Tamil into Indonesian: {{ sentence_tam }} ||| {{ sentence_ind
+      }}'
     metadata: *id001
-    name: equals-translation-npi-vie
-    reference: Equals translation (Nepali into Vietnamese)
-  9e44c599-082d-4b77-80d1-aedda8eb5347: !Template
+    name: translate-this-tam-ind
+    reference: Translate this from X to Y (Tamil into Indonesian)
+  95f8a3ac-a8bc-4950-b9b9-b4e850cfc7bd: !Template
     answer_choices: null
-    id: 9e44c599-082d-4b77-80d1-aedda8eb5347
-    jinja: 'Nepali: {{ sentence_npi }} = Punjabi: ||| {{ sentence_pan }}'
+    id: 95f8a3ac-a8bc-4950-b9b9-b4e850cfc7bd
+    jinja: 'Translate this from Punjabi into Indonesian: {{ sentence_pan }} ||| {{
+      sentence_ind }}'
     metadata: *id001
-    name: equals-translation-npi-pan
-    reference: Equals translation (Nepali into Punjabi)
-  9e44dfb7-72fa-45d0-a431-61846e3aac21: !Template
+    name: translate-this-pan-ind
+    reference: Translate this from X to Y (Punjabi into Indonesian)
+  96148316-0223-4370-a711-5d4ec675c37c: !Template
     answer_choices: null
-    id: 9e44dfb7-72fa-45d0-a431-61846e3aac21
-    jinja: 'Telugu: {{ sentence_tel }} = Marathi: ||| {{ sentence_mar }}'
+    id: 96148316-0223-4370-a711-5d4ec675c37c
+    jinja: 'Translate this from simplified Chinese into Punjabi: {{ sentence_zho_simpl
+      }} ||| {{ sentence_pan }}'
     metadata: *id001
-    name: equals-translation-tel-mar
-    reference: Equals translation (Telugu into Marathi)
-  9eb7d38f-ee09-4115-9e4e-68e0d4e3f1dc: !Template
+    name: translate-this-zho_simpl-pan
+    reference: Translate this from X to Y (simplified Chinese into Punjabi)
+  9746ab27-c91c-4ef7-80b7-1c53a7715886: !Template
     answer_choices: null
-    id: 9eb7d38f-ee09-4115-9e4e-68e0d4e3f1dc
-    jinja: 'Swahili: {{ sentence_swh }} = Vietnamese: ||| {{ sentence_vie }}'
+    id: 9746ab27-c91c-4ef7-80b7-1c53a7715886
+    jinja: 'Translate this from Lingala into Latin American Spanish: {{ sentence_lin
+      }} ||| {{ sentence_spa }}'
     metadata: *id001
-    name: equals-translation-swh-vie
-    reference: Equals translation (Swahili into Vietnamese)
-  9f0ac88d-16be-4446-ad43-3a400b62391e: !Template
+    name: translate-this-lin-spa
+    reference: Translate this from X to Y (Lingala into Latin American Spanish)
+  97591416-c9aa-474a-bf12-fc3de0f8bb75: !Template
     answer_choices: null
-    id: 9f0ac88d-16be-4446-ad43-3a400b62391e
-    jinja: 'Tamil: {{ sentence_tam }} = Arabic: ||| {{ sentence_ara }}'
+    id: 97591416-c9aa-474a-bf12-fc3de0f8bb75
+    jinja: 'Translate this from French into Swahili: {{ sentence_fra }} ||| {{ sentence_swh
+      }}'
     metadata: *id001
-    name: equals-translation-tam-ara
-    reference: Equals translation (Tamil into Arabic)
-  a028e0e7-ed8d-472a-a6c4-116af2ef0df1: !Template
+    name: translate-this-fra-swh
+    reference: Translate this from X to Y (French into Swahili)
+  97678cd6-50e6-497a-a4aa-ddcc22f346f7: !Template
     answer_choices: null
-    id: a028e0e7-ed8d-472a-a6c4-116af2ef0df1
-    jinja: 'Wolof: {{ sentence_wol }} = simplified Chinese: ||| {{ sentence_zho_simpl
+    id: 97678cd6-50e6-497a-a4aa-ddcc22f346f7
+    jinja: 'Translate this from French into Lingala: {{ sentence_fra }} ||| {{ sentence_lin
       }}'
     metadata: *id001
-    name: equals-translation-wol-zho_simpl
-    reference: Equals translation (Wolof into simplified Chinese)
-  a0432641-014a-4675-bc34-3978a9c3a9ed: !Template
+    name: translate-this-fra-lin
+    reference: Translate this from X to Y (French into Lingala)
+  97b46c01-6765-4c75-bc96-3119fc443198: !Template
     answer_choices: null
-    id: a0432641-014a-4675-bc34-3978a9c3a9ed
-    jinja: 'Yoruba: {{ sentence_yor }} = Punjabi: ||| {{ sentence_pan }}'
+    id: 97b46c01-6765-4c75-bc96-3119fc443198
+    jinja: 'Translate this from Kannada into Yoruba: {{ sentence_kan }} ||| {{ sentence_yor
+      }}'
     metadata: *id001
-    name: equals-translation-yor-pan
-    reference: Equals translation (Yoruba into Punjabi)
-  a06cb3cd-c715-4a51-a7d7-069e01159b4b: !Template
+    name: translate-this-kan-yor
+    reference: Translate this from X to Y (Kannada into Yoruba)
+  97b4e151-0b1e-4241-8dc7-ee3c59f230ed: !Template
     answer_choices: null
-    id: a06cb3cd-c715-4a51-a7d7-069e01159b4b
-    jinja: 'Wolof: {{ sentence_wol }} = Indonesian: ||| {{ sentence_ind }}'
+    id: 97b4e151-0b1e-4241-8dc7-ee3c59f230ed
+    jinja: 'Translate this from Arabic into Oriya: {{ sentence_ara }} ||| {{ sentence_ory
+      }}'
     metadata: *id001
-    name: equals-translation-wol-ind
-    reference: Equals translation (Wolof into Indonesian)
-  a0adaedf-195f-4ace-bb76-4e3d2c1f4240: !Template
+    name: translate-this-ara-ory
+    reference: Translate this from X to Y (Arabic into Oriya)
+  97d762a2-270d-4e19-82b2-01562cf1eefc: !Template
     answer_choices: null
-    id: a0adaedf-195f-4ace-bb76-4e3d2c1f4240
-    jinja: 'Kannada: {{ sentence_kan }} = Bengali: ||| {{ sentence_ben }}'
+    id: 97d762a2-270d-4e19-82b2-01562cf1eefc
+    jinja: 'Translate this from Oriya into Xhosa: {{ sentence_ory }} ||| {{ sentence_xho
+      }}'
     metadata: *id001
-    name: equals-translation-kan-ben
-    reference: Equals translation (Kannada into Bengali)
-  a0fc5319-b326-4f72-974d-170e7179ed2b: !Template
+    name: translate-this-ory-xho
+    reference: Translate this from X to Y (Oriya into Xhosa)
+  996e5c44-82cb-4fe8-a158-651810545551: !Template
     answer_choices: null
-    id: a0fc5319-b326-4f72-974d-170e7179ed2b
-    jinja: 'Hindi: {{ sentence_hin }} = Malayalam: ||| {{ sentence_mal }}'
+    id: 996e5c44-82cb-4fe8-a158-651810545551
+    jinja: 'Translate this from Marathi into Brazilian Portuguese: {{ sentence_mar
+      }} ||| {{ sentence_por }}'
     metadata: *id001
-    name: equals-translation-hin-mal
-    reference: Equals translation (Hindi into Malayalam)
-  a168ed7a-52f2-4bca-b948-85e36e99bd21: !Template
+    name: translate-this-mar-por
+    reference: Translate this from X to Y (Marathi into Brazilian Portuguese)
+  998b20a2-a5ef-4b3a-b252-2d15a9906c21: !Template
     answer_choices: null
-    id: a168ed7a-52f2-4bca-b948-85e36e99bd21
-    jinja: 'Assamese: {{ sentence_asm }} = Yoruba: ||| {{ sentence_yor }}'
+    id: 998b20a2-a5ef-4b3a-b252-2d15a9906c21
+    jinja: 'Translate this from Latin American Spanish into simplified Chinese: {{
+      sentence_spa }} ||| {{ sentence_zho_simpl }}'
     metadata: *id001
-    name: equals-translation-asm-yor
-    reference: Equals translation (Assamese into Yoruba)
-  a1814516-565f-464f-a61b-865d3f917baf: !Template
+    name: translate-this-spa-zho_simpl
+    reference: Translate this from X to Y (Latin American Spanish into simplified
+      Chinese)
+  99de2b21-2a64-4182-8f62-9f6d825901f2: !Template
     answer_choices: null
-    id: a1814516-565f-464f-a61b-865d3f917baf
-    jinja: 'Arabic: {{ sentence_ara }} = Swahili: ||| {{ sentence_swh }}'
+    id: 99de2b21-2a64-4182-8f62-9f6d825901f2
+    jinja: 'Translate this from Brazilian Portuguese into Urdu: {{ sentence_por }}
+      ||| {{ sentence_urd }}'
     metadata: *id001
-    name: equals-translation-ara-swh
-    reference: Equals translation (Arabic into Swahili)
-  a19cf3b6-224e-473d-a710-9e619a52a5ce: !Template
+    name: translate-this-por-urd
+    reference: Translate this from X to Y (Brazilian Portuguese into Urdu)
+  99e76bad-67c8-4305-b116-8fed8e37533a: !Template
     answer_choices: null
-    id: a19cf3b6-224e-473d-a710-9e619a52a5ce
-    jinja: 'Catalan: {{ sentence_cat }} = Hindi: ||| {{ sentence_hin }}'
+    id: 99e76bad-67c8-4305-b116-8fed8e37533a
+    jinja: 'Translate this from Latin American Spanish into Zulu: {{ sentence_spa
+      }} ||| {{ sentence_zul }}'
     metadata: *id001
-    name: equals-translation-cat-hin
-    reference: Equals translation (Catalan into Hindi)
-  a1bab907-1f0a-45ed-a9e8-01cf54721773: !Template
+    name: translate-this-spa-zul
+    reference: Translate this from X to Y (Latin American Spanish into Zulu)
+  9a08b456-f2f3-42d9-9a20-1caec5de7f5e: !Template
     answer_choices: null
-    id: a1bab907-1f0a-45ed-a9e8-01cf54721773
-    jinja: 'Punjabi: {{ sentence_pan }} = Zulu: ||| {{ sentence_zul }}'
+    id: 9a08b456-f2f3-42d9-9a20-1caec5de7f5e
+    jinja: 'Translate this from Oriya into Latin American Spanish: {{ sentence_ory
+      }} ||| {{ sentence_spa }}'
     metadata: *id001
-    name: equals-translation-pan-zul
-    reference: Equals translation (Punjabi into Zulu)
-  a28d4efb-7c64-4902-94ee-154febcc904f: !Template
+    name: translate-this-ory-spa
+    reference: Translate this from X to Y (Oriya into Latin American Spanish)
+  9a54f21e-f9dd-4e14-badb-30075071503b: !Template
     answer_choices: null
-    id: a28d4efb-7c64-4902-94ee-154febcc904f
-    jinja: 'Wolof: {{ sentence_wol }} = Hindi: ||| {{ sentence_hin }}'
+    id: 9a54f21e-f9dd-4e14-badb-30075071503b
+    jinja: 'Translate this from Nepali into Brazilian Portuguese: {{ sentence_npi
+      }} ||| {{ sentence_por }}'
     metadata: *id001
-    name: equals-translation-wol-hin
-    reference: Equals translation (Wolof into Hindi)
-  a2e083be-b1f6-441c-a829-2496647cbaf6: !Template
+    name: translate-this-npi-por
+    reference: Translate this from X to Y (Nepali into Brazilian Portuguese)
+  9a55ff41-04eb-42a0-9ea7-ec02287f6ec8: !Template
     answer_choices: null
-    id: a2e083be-b1f6-441c-a829-2496647cbaf6
-    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Northern Sotho: ||| {{
-      sentence_nso }}'
+    id: 9a55ff41-04eb-42a0-9ea7-ec02287f6ec8
+    jinja: 'Translate this from Xhosa into Brazilian Portuguese: {{ sentence_xho }}
+      ||| {{ sentence_por }}'
     metadata: *id001
-    name: equals-translation-zho_trad-nso
-    reference: Equals translation (traditional Chinese into Northern Sotho)
-  a3337d65-6d84-4408-87d5-4421959b23e9: !Template
+    name: translate-this-xho-por
+    reference: Translate this from X to Y (Xhosa into Brazilian Portuguese)
+  9a94c4e5-5ae6-4684-922f-987ca362f1da: !Template
     answer_choices: null
-    id: a3337d65-6d84-4408-87d5-4421959b23e9
-    jinja: 'Malayalam: {{ sentence_mal }} = Lingala: ||| {{ sentence_lin }}'
+    id: 9a94c4e5-5ae6-4684-922f-987ca362f1da
+    jinja: 'Translate this from Yoruba into Arabic: {{ sentence_yor }} ||| {{ sentence_ara
+      }}'
     metadata: *id001
-    name: equals-translation-mal-lin
-    reference: Equals translation (Malayalam into Lingala)
-  a369af40-f9e0-4138-afce-d4be9162865d: !Template
+    name: translate-this-yor-ara
+    reference: Translate this from X to Y (Yoruba into Arabic)
+  9b3c89e6-5542-4d2d-b03e-ace31e592f9b: !Template
     answer_choices: null
-    id: a369af40-f9e0-4138-afce-d4be9162865d
-    jinja: 'Urdu: {{ sentence_urd }} = Bengali: ||| {{ sentence_ben }}'
+    id: 9b3c89e6-5542-4d2d-b03e-ace31e592f9b
+    jinja: 'Translate this from Indonesian into Kannada: {{ sentence_ind }} ||| {{
+      sentence_kan }}'
     metadata: *id001
-    name: equals-translation-urd-ben
-    reference: Equals translation (Urdu into Bengali)
-  a3feac17-4d3f-40c5-ab6a-cb66230edf5e: !Template
+    name: translate-this-ind-kan
+    reference: Translate this from X to Y (Indonesian into Kannada)
+  9b3dd59c-8586-4896-b496-26c72e17b125: !Template
     answer_choices: null
-    id: a3feac17-4d3f-40c5-ab6a-cb66230edf5e
-    jinja: 'French: {{ sentence_fra }} = Indonesian: ||| {{ sentence_ind }}'
+    id: 9b3dd59c-8586-4896-b496-26c72e17b125
+    jinja: 'Translate this from Yoruba into Lingala: {{ sentence_yor }} ||| {{ sentence_lin
+      }}'
     metadata: *id001
-    name: equals-translation-fra-ind
-    reference: Equals translation (French into Indonesian)
-  a411c8f8-138c-412f-b3bc-b66e79808171: !Template
+    name: translate-this-yor-lin
+    reference: Translate this from X to Y (Yoruba into Lingala)
+  9b728e98-0717-4cc5-bff7-390f512673a4: !Template
     answer_choices: null
-    id: a411c8f8-138c-412f-b3bc-b66e79808171
-    jinja: 'Marathi: {{ sentence_mar }} = English: ||| {{ sentence_eng }}'
+    id: 9b728e98-0717-4cc5-bff7-390f512673a4
+    jinja: 'Translate this from Catalan into Urdu: {{ sentence_cat }} ||| {{ sentence_urd
+      }}'
     metadata: *id001
-    name: equals-translation-mar-eng
-    reference: Equals translation (Marathi into English)
-  a4d05cba-55b6-4e09-97e1-f55805be43a4: !Template
+    name: translate-this-cat-urd
+    reference: Translate this from X to Y (Catalan into Urdu)
+  9ba90480-6a30-480e-98e6-7c52d876a603: !Template
     answer_choices: null
-    id: a4d05cba-55b6-4e09-97e1-f55805be43a4
-    jinja: 'Assamese: {{ sentence_asm }} = Kannada: ||| {{ sentence_kan }}'
+    id: 9ba90480-6a30-480e-98e6-7c52d876a603
+    jinja: 'Translate this from French into traditional Chinese: {{ sentence_fra }}
+      ||| {{ sentence_zho_trad }}'
     metadata: *id001
-    name: equals-translation-asm-kan
-    reference: Equals translation (Assamese into Kannada)
-  a4e9e45d-6077-446a-944b-df59c2a06783: !Template
+    name: translate-this-fra-zho_trad
+    reference: Translate this from X to Y (French into traditional Chinese)
+  9bc32e0d-c484-4c14-989c-cd73374ac5ec: !Template
     answer_choices: null
-    id: a4e9e45d-6077-446a-944b-df59c2a06783
-    jinja: 'Telugu: {{ sentence_tel }} = Tamil: ||| {{ sentence_tam }}'
+    id: 9bc32e0d-c484-4c14-989c-cd73374ac5ec
+    jinja: 'Translate this from Arabic into traditional Chinese: {{ sentence_ara }}
+      ||| {{ sentence_zho_trad }}'
     metadata: *id001
-    name: equals-translation-tel-tam
-    reference: Equals translation (Telugu into Tamil)
-  a5402637-7ffb-4bc7-8509-4d9cdcbced33: !Template
+    name: translate-this-ara-zho_trad
+    reference: Translate this from X to Y (Arabic into traditional Chinese)
+  9bfa4fc5-f167-42cd-b367-58c753e216a5: !Template
     answer_choices: null
-    id: a5402637-7ffb-4bc7-8509-4d9cdcbced33
-    jinja: 'Oriya: {{ sentence_ory }} = Xhosa: ||| {{ sentence_xho }}'
+    id: 9bfa4fc5-f167-42cd-b367-58c753e216a5
+    jinja: 'Translate this from Urdu into Bengali: {{ sentence_urd }} ||| {{ sentence_ben
+      }}'
     metadata: *id001
-    name: equals-translation-ory-xho
-    reference: Equals translation (Oriya into Xhosa)
-  a54b455b-8bb4-4ea4-9808-e89a2a843b49: !Template
+    name: translate-this-urd-ben
+    reference: Translate this from X to Y (Urdu into Bengali)
+  9c08f824-9eca-43bc-a0d2-c7089bd5752c: !Template
     answer_choices: null
-    id: a54b455b-8bb4-4ea4-9808-e89a2a843b49
-    jinja: 'Gujarati: {{ sentence_guj }} = Nepali: ||| {{ sentence_npi }}'
+    id: 9c08f824-9eca-43bc-a0d2-c7089bd5752c
+    jinja: 'Translate this from Bengali into Wolof: {{ sentence_ben }} ||| {{ sentence_wol
+      }}'
     metadata: *id001
-    name: equals-translation-guj-npi
-    reference: Equals translation (Gujarati into Nepali)
-  a5a41676-2250-4637-a5cd-6a7ae24d4a9c: !Template
+    name: translate-this-ben-wol
+    reference: Translate this from X to Y (Bengali into Wolof)
+  9c0df22e-2414-4973-ae66-cd40ab037cdf: !Template
     answer_choices: null
-    id: a5a41676-2250-4637-a5cd-6a7ae24d4a9c
-    jinja: 'French: {{ sentence_fra }} = Vietnamese: ||| {{ sentence_vie }}'
+    id: 9c0df22e-2414-4973-ae66-cd40ab037cdf
+    jinja: 'Translate this from Catalan into Hindi: {{ sentence_cat }} ||| {{ sentence_hin
+      }}'
     metadata: *id001
-    name: equals-translation-fra-vie
-    reference: Equals translation (French into Vietnamese)
-  a5cd9e14-4e0d-4124-990b-f2507b1cad74: !Template
+    name: translate-this-cat-hin
+    reference: Translate this from X to Y (Catalan into Hindi)
+  9c8a682d-cb18-4136-b874-ff9bab1c6300: !Template
     answer_choices: null
-    id: a5cd9e14-4e0d-4124-990b-f2507b1cad74
-    jinja: 'Swahili: {{ sentence_swh }} = Kannada: ||| {{ sentence_kan }}'
+    id: 9c8a682d-cb18-4136-b874-ff9bab1c6300
+    jinja: 'Translate this from Latin American Spanish into Punjabi: {{ sentence_spa
+      }} ||| {{ sentence_pan }}'
     metadata: *id001
-    name: equals-translation-swh-kan
-    reference: Equals translation (Swahili into Kannada)
-  a731b746-69bd-434f-8ca5-6f0e7be005f6: !Template
+    name: translate-this-spa-pan
+    reference: Translate this from X to Y (Latin American Spanish into Punjabi)
+  9ccb32c6-d497-4f35-8598-b7523f38860e: !Template
     answer_choices: null
-    id: a731b746-69bd-434f-8ca5-6f0e7be005f6
-    jinja: 'Swahili: {{ sentence_swh }} = simplified Chinese: ||| {{ sentence_zho_simpl
+    id: 9ccb32c6-d497-4f35-8598-b7523f38860e
+    jinja: 'Translate this from Assamese into Tamil: {{ sentence_asm }} ||| {{ sentence_tam
       }}'
     metadata: *id001
-    name: equals-translation-swh-zho_simpl
-    reference: Equals translation (Swahili into simplified Chinese)
-  a7618ca1-1dce-4e11-a39f-360f38555cea: !Template
+    name: translate-this-asm-tam
+    reference: Translate this from X to Y (Assamese into Tamil)
+  9ccee09c-67aa-44ee-b47c-b9c8c050727e: !Template
     answer_choices: null
-    id: a7618ca1-1dce-4e11-a39f-360f38555cea
-    jinja: 'Malayalam: {{ sentence_mal }} = Tamil: ||| {{ sentence_tam }}'
+    id: 9ccee09c-67aa-44ee-b47c-b9c8c050727e
+    jinja: 'Translate this from Swahili into Yoruba: {{ sentence_swh }} ||| {{ sentence_yor
+      }}'
     metadata: *id001
-    name: equals-translation-mal-tam
-    reference: Equals translation (Malayalam into Tamil)
-  a7750c80-0171-4cf3-a4c9-2e5a37808a2b: !Template
+    name: translate-this-swh-yor
+    reference: Translate this from X to Y (Swahili into Yoruba)
+  9cee147b-b9d6-4212-8fd8-3e5145becd3b: !Template
     answer_choices: null
-    id: a7750c80-0171-4cf3-a4c9-2e5a37808a2b
-    jinja: 'Oriya: {{ sentence_ory }} = Telugu: ||| {{ sentence_tel }}'
+    id: 9cee147b-b9d6-4212-8fd8-3e5145becd3b
+    jinja: 'Translate this from simplified Chinese into Gujarati: {{ sentence_zho_simpl
+      }} ||| {{ sentence_guj }}'
     metadata: *id001
-    name: equals-translation-ory-tel
-    reference: Equals translation (Oriya into Telugu)
-  a7ffe490-1abe-4b7a-9aac-37a1741713aa: !Template
+    name: translate-this-zho_simpl-guj
+    reference: Translate this from X to Y (simplified Chinese into Gujarati)
+  9d132929-3139-4217-ad2b-a95df0082a4a: !Template
     answer_choices: null
-    id: a7ffe490-1abe-4b7a-9aac-37a1741713aa
-    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Zulu: ||| {{ sentence_zul
+    id: 9d132929-3139-4217-ad2b-a95df0082a4a
+    jinja: 'Translate this from English into Nepali: {{ sentence_eng }} ||| {{ sentence_npi
       }}'
     metadata: *id001
-    name: equals-translation-zho_trad-zul
-    reference: Equals translation (traditional Chinese into Zulu)
-  a84b3819-078b-4878-ad6f-eb1ff0bcf8a1: !Template
+    name: translate-this-eng-npi
+    reference: Translate this from X to Y (English into Nepali)
+  9d713eab-e338-46cd-bec6-6775e3adf96f: !Template
     answer_choices: null
-    id: a84b3819-078b-4878-ad6f-eb1ff0bcf8a1
-    jinja: 'Tamil: {{ sentence_tam }} = traditional Chinese: ||| {{ sentence_zho_trad
+    id: 9d713eab-e338-46cd-bec6-6775e3adf96f
+    jinja: 'Translate this from Xhosa into Malayalam: {{ sentence_xho }} ||| {{ sentence_mal
       }}'
     metadata: *id001
-    name: equals-translation-tam-zho_trad
-    reference: Equals translation (Tamil into traditional Chinese)
-  a871cb64-6446-465c-806b-d2e33c446c53: !Template
+    name: translate-this-xho-mal
+    reference: Translate this from X to Y (Xhosa into Malayalam)
+  9dd2cfc9-f979-4bda-b845-dca110dfe2ac: !Template
     answer_choices: null
-    id: a871cb64-6446-465c-806b-d2e33c446c53
-    jinja: 'Gujarati: {{ sentence_guj }} = Marathi: ||| {{ sentence_mar }}'
+    id: 9dd2cfc9-f979-4bda-b845-dca110dfe2ac
+    jinja: 'Translate this from Yoruba into Brazilian Portuguese: {{ sentence_yor
+      }} ||| {{ sentence_por }}'
     metadata: *id001
-    name: equals-translation-guj-mar
-    reference: Equals translation (Gujarati into Marathi)
-  a8975b4e-de55-406d-86a5-f86c637a9f89: !Template
+    name: translate-this-yor-por
+    reference: Translate this from X to Y (Yoruba into Brazilian Portuguese)
+  9ddf9b1b-df0a-4112-9592-84106fa4dd2d: !Template
     answer_choices: null
-    id: a8975b4e-de55-406d-86a5-f86c637a9f89
-    jinja: 'French: {{ sentence_fra }} = Malayalam: ||| {{ sentence_mal }}'
+    id: 9ddf9b1b-df0a-4112-9592-84106fa4dd2d
+    jinja: 'Translate this from Latin American Spanish into Assamese: {{ sentence_spa
+      }} ||| {{ sentence_asm }}'
     metadata: *id001
-    name: equals-translation-fra-mal
-    reference: Equals translation (French into Malayalam)
-  a89ba0f1-afa7-45b3-8d06-a706a25ebc0d: !Template
+    name: translate-this-spa-asm
+    reference: Translate this from X to Y (Latin American Spanish into Assamese)
+  9e09b411-8d70-4468-87b4-c5f797bf32a2: !Template
     answer_choices: null
-    id: a89ba0f1-afa7-45b3-8d06-a706a25ebc0d
-    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = simplified Chinese: |||
-      {{ sentence_zho_simpl }}'
+    id: 9e09b411-8d70-4468-87b4-c5f797bf32a2
+    jinja: 'Translate this from Urdu into Vietnamese: {{ sentence_urd }} ||| {{ sentence_vie
+      }}'
     metadata: *id001
-    name: equals-translation-zho_trad-zho_simpl
-    reference: Equals translation (traditional Chinese into simplified Chinese)
-  a8a0d7b7-f235-4a20-8454-750de7c55f9b: !Template
+    name: translate-this-urd-vie
+    reference: Translate this from X to Y (Urdu into Vietnamese)
+  9ebdf65c-13aa-41b9-9a6c-66743f38f376: !Template
     answer_choices: null
-    id: a8a0d7b7-f235-4a20-8454-750de7c55f9b
-    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = English: ||| {{ sentence_eng
+    id: 9ebdf65c-13aa-41b9-9a6c-66743f38f376
+    jinja: 'Translate this from Lingala into Xhosa: {{ sentence_lin }} ||| {{ sentence_xho
       }}'
     metadata: *id001
-    name: equals-translation-zho_simpl-eng
-    reference: Equals translation (simplified Chinese into English)
-  a9010c98-2a1c-4724-8900-00fdaaa2b226: !Template
+    name: translate-this-lin-xho
+    reference: Translate this from X to Y (Lingala into Xhosa)
+  9f12ab91-a40f-4195-a1d6-9784523507bd: !Template
     answer_choices: null
-    id: a9010c98-2a1c-4724-8900-00fdaaa2b226
-    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Punjabi: ||| {{ sentence_pan
+    id: 9f12ab91-a40f-4195-a1d6-9784523507bd
+    jinja: 'Translate this from Arabic into Telugu: {{ sentence_ara }} ||| {{ sentence_tel
       }}'
     metadata: *id001
-    name: equals-translation-por-pan
-    reference: Equals translation (Brazilian Portuguese into Punjabi)
-  a9892f5b-8799-4ab4-8fc1-07496b8f05ee: !Template
+    name: translate-this-ara-tel
+    reference: Translate this from X to Y (Arabic into Telugu)
+  9f35cb88-4771-4a22-ba34-e94ad8876e8e: !Template
     answer_choices: null
-    id: a9892f5b-8799-4ab4-8fc1-07496b8f05ee
-    jinja: 'Marathi: {{ sentence_mar }} = Tamil: ||| {{ sentence_tam }}'
+    id: 9f35cb88-4771-4a22-ba34-e94ad8876e8e
+    jinja: 'Translate this from Nepali into French: {{ sentence_npi }} ||| {{ sentence_fra
+      }}'
     metadata: *id001
-    name: equals-translation-mar-tam
-    reference: Equals translation (Marathi into Tamil)
-  a9cbaf97-021c-46d4-bbaa-f65d332546af: !Template
+    name: translate-this-npi-fra
+    reference: Translate this from X to Y (Nepali into French)
+  9f6b35c0-65f8-4049-8d68-959b7c579f29: !Template
     answer_choices: null
-    id: a9cbaf97-021c-46d4-bbaa-f65d332546af
-    jinja: 'Kannada: {{ sentence_kan }} = Northern Sotho: ||| {{ sentence_nso }}'
+    id: 9f6b35c0-65f8-4049-8d68-959b7c579f29
+    jinja: 'Translate this from Assamese into Marathi: {{ sentence_asm }} ||| {{ sentence_mar
+      }}'
     metadata: *id001
-    name: equals-translation-kan-nso
-    reference: Equals translation (Kannada into Northern Sotho)
-  a9dc9039-84a6-40c6-b732-c8351a3898bf: !Template
+    name: translate-this-asm-mar
+    reference: Translate this from X to Y (Assamese into Marathi)
+  9f7123e8-dfb1-41f1-8feb-7aa70986f7b5: !Template
     answer_choices: null
-    id: a9dc9039-84a6-40c6-b732-c8351a3898bf
-    jinja: 'Malayalam: {{ sentence_mal }} = simplified Chinese: ||| {{ sentence_zho_simpl
+    id: 9f7123e8-dfb1-41f1-8feb-7aa70986f7b5
+    jinja: 'Translate this from Lingala into Marathi: {{ sentence_lin }} ||| {{ sentence_mar
       }}'
     metadata: *id001
-    name: equals-translation-mal-zho_simpl
-    reference: Equals translation (Malayalam into simplified Chinese)
-  aa086afc-dc82-4622-9cd3-0afa260dca2d: !Template
+    name: translate-this-lin-mar
+    reference: Translate this from X to Y (Lingala into Marathi)
+  9fd8d729-3621-4692-b5ed-a33e220f8ba3: !Template
     answer_choices: null
-    id: aa086afc-dc82-4622-9cd3-0afa260dca2d
-    jinja: 'Xhosa: {{ sentence_xho }} = Oriya: ||| {{ sentence_ory }}'
+    id: 9fd8d729-3621-4692-b5ed-a33e220f8ba3
+    jinja: 'Translate this from Telugu into Lingala: {{ sentence_tel }} ||| {{ sentence_lin
+      }}'
     metadata: *id001
-    name: equals-translation-xho-ory
-    reference: Equals translation (Xhosa into Oriya)
-  aa44b514-d584-4243-9d60-5d970d89e156: !Template
+    name: translate-this-tel-lin
+    reference: Translate this from X to Y (Telugu into Lingala)
+  a00841c5-afba-43ea-af64-727f0305884c: !Template
     answer_choices: null
-    id: aa44b514-d584-4243-9d60-5d970d89e156
-    jinja: 'Wolof: {{ sentence_wol }} = Punjabi: ||| {{ sentence_pan }}'
+    id: a00841c5-afba-43ea-af64-727f0305884c
+    jinja: 'Translate this from Yoruba into Vietnamese: {{ sentence_yor }} ||| {{
+      sentence_vie }}'
     metadata: *id001
-    name: equals-translation-wol-pan
-    reference: Equals translation (Wolof into Punjabi)
-  aa6d5927-aa5c-4bc1-b32d-2da7803af691: !Template
+    name: translate-this-yor-vie
+    reference: Translate this from X to Y (Yoruba into Vietnamese)
+  a008471a-c133-4222-98e7-f84bef06d6c1: !Template
     answer_choices: null
-    id: aa6d5927-aa5c-4bc1-b32d-2da7803af691
-    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Latin American Spanish:
-      ||| {{ sentence_spa }}'
+    id: a008471a-c133-4222-98e7-f84bef06d6c1
+    jinja: 'Translate this from Lingala into French: {{ sentence_lin }} ||| {{ sentence_fra
+      }}'
     metadata: *id001
-    name: equals-translation-zho_trad-spa
-    reference: Equals translation (traditional Chinese into Latin American Spanish)
-  aa70c9fc-a5ef-4e5e-b037-85bf8e775e7c: !Template
+    name: translate-this-lin-fra
+    reference: Translate this from X to Y (Lingala into French)
+  a027b8ff-7edb-4082-ba38-11cd065e5097: !Template
     answer_choices: null
-    id: aa70c9fc-a5ef-4e5e-b037-85bf8e775e7c
-    jinja: 'Telugu: {{ sentence_tel }} = Vietnamese: ||| {{ sentence_vie }}'
+    id: a027b8ff-7edb-4082-ba38-11cd065e5097
+    jinja: 'Translate this from Xhosa into simplified Chinese: {{ sentence_xho }}
+      ||| {{ sentence_zho_simpl }}'
     metadata: *id001
-    name: equals-translation-tel-vie
-    reference: Equals translation (Telugu into Vietnamese)
-  ab14d664-67ee-4b8e-9838-10d251bf29db: !Template
+    name: translate-this-xho-zho_simpl
+    reference: Translate this from X to Y (Xhosa into simplified Chinese)
+  a0794023-c919-4b3c-85ac-c7424eab79ed: !Template
     answer_choices: null
-    id: ab14d664-67ee-4b8e-9838-10d251bf29db
-    jinja: 'Nepali: {{ sentence_npi }} = Urdu: ||| {{ sentence_urd }}'
+    id: a0794023-c919-4b3c-85ac-c7424eab79ed
+    jinja: 'Translate this from Lingala into simplified Chinese: {{ sentence_lin }}
+      ||| {{ sentence_zho_simpl }}'
     metadata: *id001
-    name: equals-translation-npi-urd
-    reference: Equals translation (Nepali into Urdu)
-  ab462633-7e5a-4f7c-b3ba-dcbb2b8fb275: !Template
+    name: translate-this-lin-zho_simpl
+    reference: Translate this from X to Y (Lingala into simplified Chinese)
+  a0c96426-d8a2-454a-9d67-9a3b49174a1e: !Template
     answer_choices: null
-    id: ab462633-7e5a-4f7c-b3ba-dcbb2b8fb275
-    jinja: 'Igbo: {{ sentence_ibo }} = Malayalam: ||| {{ sentence_mal }}'
+    id: a0c96426-d8a2-454a-9d67-9a3b49174a1e
+    jinja: 'Translate this from Wolof into Urdu: {{ sentence_wol }} ||| {{ sentence_urd
+      }}'
     metadata: *id001
-    name: equals-translation-ibo-mal
-    reference: Equals translation (Igbo into Malayalam)
-  ab4c5514-8eba-4bf5-9f3d-5704a48634e5: !Template
+    name: translate-this-wol-urd
+    reference: Translate this from X to Y (Wolof into Urdu)
+  a116bcb8-2ec1-44f6-8baa-c0e9cf37aee0: !Template
     answer_choices: null
-    id: ab4c5514-8eba-4bf5-9f3d-5704a48634e5
-    jinja: 'Gujarati: {{ sentence_guj }} = Latin American Spanish: ||| {{ sentence_spa
+    id: a116bcb8-2ec1-44f6-8baa-c0e9cf37aee0
+    jinja: 'Translate this from Arabic into Urdu: {{ sentence_ara }} ||| {{ sentence_urd
       }}'
     metadata: *id001
-    name: equals-translation-guj-spa
-    reference: Equals translation (Gujarati into Latin American Spanish)
-  ab54630f-268a-4b31-bbe9-fc49aeb5fe85: !Template
+    name: translate-this-ara-urd
+    reference: Translate this from X to Y (Arabic into Urdu)
+  a12b51f4-54ce-4e1a-ac85-b9ebd4cb7046: !Template
     answer_choices: null
-    id: ab54630f-268a-4b31-bbe9-fc49aeb5fe85
-    jinja: 'Assamese: {{ sentence_asm }} = Oriya: ||| {{ sentence_ory }}'
+    id: a12b51f4-54ce-4e1a-ac85-b9ebd4cb7046
+    jinja: 'Translate this from English into Kannada: {{ sentence_eng }} ||| {{ sentence_kan
+      }}'
     metadata: *id001
-    name: equals-translation-asm-ory
-    reference: Equals translation (Assamese into Oriya)
-  abbd00ae-f647-42e3-b414-2c48c00427ee: !Template
+    name: translate-this-eng-kan
+    reference: Translate this from X to Y (English into Kannada)
+  a1940342-d456-4aec-b77b-e9cce92c985a: !Template
     answer_choices: null
-    id: abbd00ae-f647-42e3-b414-2c48c00427ee
-    jinja: 'Assamese: {{ sentence_asm }} = Gujarati: ||| {{ sentence_guj }}'
+    id: a1940342-d456-4aec-b77b-e9cce92c985a
+    jinja: 'Translate this from English into traditional Chinese: {{ sentence_eng
+      }} ||| {{ sentence_zho_trad }}'
     metadata: *id001
-    name: equals-translation-asm-guj
-    reference: Equals translation (Assamese into Gujarati)
-  abbeed5c-31fe-4143-916f-6c95949ac448: !Template
+    name: translate-this-eng-zho_trad
+    reference: Translate this from X to Y (English into traditional Chinese)
+  a1c776d4-41f2-4bf2-818f-beabb8f05610: !Template
     answer_choices: null
-    id: abbeed5c-31fe-4143-916f-6c95949ac448
-    jinja: 'Indonesian: {{ sentence_ind }} = Zulu: ||| {{ sentence_zul }}'
+    id: a1c776d4-41f2-4bf2-818f-beabb8f05610
+    jinja: 'Translate this from Oriya into Catalan: {{ sentence_ory }} ||| {{ sentence_cat
+      }}'
     metadata: *id001
-    name: equals-translation-ind-zul
-    reference: Equals translation (Indonesian into Zulu)
-  abc67fef-1856-48e7-be03-dcb623ae9105: !Template
+    name: translate-this-ory-cat
+    reference: Translate this from X to Y (Oriya into Catalan)
+  a1f59ccb-bdd5-4dd8-a6f8-c960f01ea937: !Template
     answer_choices: null
-    id: abc67fef-1856-48e7-be03-dcb623ae9105
-    jinja: 'Gujarati: {{ sentence_guj }} = Urdu: ||| {{ sentence_urd }}'
+    id: a1f59ccb-bdd5-4dd8-a6f8-c960f01ea937
+    jinja: 'Translate this from Marathi into Swahili: {{ sentence_mar }} ||| {{ sentence_swh
+      }}'
     metadata: *id001
-    name: equals-translation-guj-urd
-    reference: Equals translation (Gujarati into Urdu)
-  ac1796ad-f5ce-4824-ac18-31dc414258cf: !Template
+    name: translate-this-mar-swh
+    reference: Translate this from X to Y (Marathi into Swahili)
+  a22b214a-3552-4f03-93a6-3d9f34d4db1a: !Template
     answer_choices: null
-    id: ac1796ad-f5ce-4824-ac18-31dc414258cf
-    jinja: 'Oriya: {{ sentence_ory }} = Punjabi: ||| {{ sentence_pan }}'
+    id: a22b214a-3552-4f03-93a6-3d9f34d4db1a
+    jinja: 'Translate this from French into Telugu: {{ sentence_fra }} ||| {{ sentence_tel
+      }}'
     metadata: *id001
-    name: equals-translation-ory-pan
-    reference: Equals translation (Oriya into Punjabi)
-  ac286dc3-5a73-46d1-9d90-310701177eff: !Template
+    name: translate-this-fra-tel
+    reference: Translate this from X to Y (French into Telugu)
+  a23ff938-aa57-4e0f-a9ff-aa8fa925a875: !Template
     answer_choices: null
-    id: ac286dc3-5a73-46d1-9d90-310701177eff
-    jinja: 'Tamil: {{ sentence_tam }} = French: ||| {{ sentence_fra }}'
+    id: a23ff938-aa57-4e0f-a9ff-aa8fa925a875
+    jinja: 'Translate this from Marathi into traditional Chinese: {{ sentence_mar
+      }} ||| {{ sentence_zho_trad }}'
     metadata: *id001
-    name: equals-translation-tam-fra
-    reference: Equals translation (Tamil into French)
-  ac3e6c7d-3d89-48d3-8e5f-f09544e8e529: !Template
+    name: translate-this-mar-zho_trad
+    reference: Translate this from X to Y (Marathi into traditional Chinese)
+  a252fc8f-b06f-4e79-894d-a2f4789c9ecf: !Template
     answer_choices: null
-    id: ac3e6c7d-3d89-48d3-8e5f-f09544e8e529
-    jinja: 'Vietnamese: {{ sentence_vie }} = traditional Chinese: ||| {{ sentence_zho_trad
+    id: a252fc8f-b06f-4e79-894d-a2f4789c9ecf
+    jinja: 'Translate this from Hindi into Bengali: {{ sentence_hin }} ||| {{ sentence_ben
       }}'
     metadata: *id001
-    name: equals-translation-vie-zho_trad
-    reference: Equals translation (Vietnamese into traditional Chinese)
-  ad4c79c3-6efe-4d1c-8fcc-1ac061271d3e: !Template
+    name: translate-this-hin-ben
+    reference: Translate this from X to Y (Hindi into Bengali)
+  a25c90e3-692e-4005-af8e-f932c9b57e89: !Template
     answer_choices: null
-    id: ad4c79c3-6efe-4d1c-8fcc-1ac061271d3e
-    jinja: 'Tamil: {{ sentence_tam }} = Brazilian Portuguese: ||| {{ sentence_por
-      }}'
+    id: a25c90e3-692e-4005-af8e-f932c9b57e89
+    jinja: 'Translate this from Hindi into traditional Chinese: {{ sentence_hin }}
+      ||| {{ sentence_zho_trad }}'
     metadata: *id001
-    name: equals-translation-tam-por
-    reference: Equals translation (Tamil into Brazilian Portuguese)
-  adecd167-36c2-44fc-98cc-54841274fbaf: !Template
+    name: translate-this-hin-zho_trad
+    reference: Translate this from X to Y (Hindi into traditional Chinese)
+  a2896628-ba75-4d09-af59-8e8d7f8223ca: !Template
     answer_choices: null
-    id: adecd167-36c2-44fc-98cc-54841274fbaf
-    jinja: 'Tamil: {{ sentence_tam }} = Gujarati: ||| {{ sentence_guj }}'
+    id: a2896628-ba75-4d09-af59-8e8d7f8223ca
+    jinja: 'Translate this from Lingala into Tamil: {{ sentence_lin }} ||| {{ sentence_tam
+      }}'
     metadata: *id001
-    name: equals-translation-tam-guj
-    reference: Equals translation (Tamil into Gujarati)
-  aea6a6fc-9063-4146-882f-c7d3f1f4aaed: !Template
+    name: translate-this-lin-tam
+    reference: Translate this from X to Y (Lingala into Tamil)
+  a2c28cbc-aa92-4b49-97f6-cf50dfeca3a7: !Template
     answer_choices: null
-    id: aea6a6fc-9063-4146-882f-c7d3f1f4aaed
-    jinja: 'Arabic: {{ sentence_ara }} = Indonesian: ||| {{ sentence_ind }}'
+    id: a2c28cbc-aa92-4b49-97f6-cf50dfeca3a7
+    jinja: 'Translate this from Punjabi into Assamese: {{ sentence_pan }} ||| {{ sentence_asm
+      }}'
     metadata: *id001
-    name: equals-translation-ara-ind
-    reference: Equals translation (Arabic into Indonesian)
-  aee4e316-58d0-4458-90c3-f98c559d2f29: !Template
+    name: translate-this-pan-asm
+    reference: Translate this from X to Y (Punjabi into Assamese)
+  a30ed249-21aa-44b2-b64f-3815b36e3941: !Template
     answer_choices: null
-    id: aee4e316-58d0-4458-90c3-f98c559d2f29
-    jinja: 'Arabic: {{ sentence_ara }} = Zulu: ||| {{ sentence_zul }}'
+    id: a30ed249-21aa-44b2-b64f-3815b36e3941
+    jinja: 'Translate this from Arabic into Xhosa: {{ sentence_ara }} ||| {{ sentence_xho
+      }}'
     metadata: *id001
-    name: equals-translation-ara-zul
-    reference: Equals translation (Arabic into Zulu)
-  af049675-e486-4c0a-82d9-8424f5757f69: !Template
+    name: translate-this-ara-xho
+    reference: Translate this from X to Y (Arabic into Xhosa)
+  a317bc31-4c71-4108-950f-de60a3c19edc: !Template
     answer_choices: null
-    id: af049675-e486-4c0a-82d9-8424f5757f69
-    jinja: 'Brazilian Portuguese: {{ sentence_por }} = French: ||| {{ sentence_fra
+    id: a317bc31-4c71-4108-950f-de60a3c19edc
+    jinja: 'Translate this from Punjabi into Gujarati: {{ sentence_pan }} ||| {{ sentence_guj
       }}'
     metadata: *id001
-    name: equals-translation-por-fra
-    reference: Equals translation (Brazilian Portuguese into French)
-  afa59640-0667-4aae-95cb-7d1c2d5c49c3: !Template
+    name: translate-this-pan-guj
+    reference: Translate this from X to Y (Punjabi into Gujarati)
+  a39f6272-e4a4-45a6-b41c-2fc6e0584c33: !Template
     answer_choices: null
-    id: afa59640-0667-4aae-95cb-7d1c2d5c49c3
-    jinja: 'Wolof: {{ sentence_wol }} = French: ||| {{ sentence_fra }}'
+    id: a39f6272-e4a4-45a6-b41c-2fc6e0584c33
+    jinja: 'Translate this from Catalan into Arabic: {{ sentence_cat }} ||| {{ sentence_ara
+      }}'
     metadata: *id001
-    name: equals-translation-wol-fra
-    reference: Equals translation (Wolof into French)
-  b004f66f-0822-4965-b1d4-d106274ce1cd: !Template
+    name: translate-this-cat-ara
+    reference: Translate this from X to Y (Catalan into Arabic)
+  a3d48116-5b70-4b9e-acfb-5deb0907d084: !Template
     answer_choices: null
-    id: b004f66f-0822-4965-b1d4-d106274ce1cd
-    jinja: 'Igbo: {{ sentence_ibo }} = English: ||| {{ sentence_eng }}'
+    id: a3d48116-5b70-4b9e-acfb-5deb0907d084
+    jinja: 'Translate this from simplified Chinese into Telugu: {{ sentence_zho_simpl
+      }} ||| {{ sentence_tel }}'
     metadata: *id001
-    name: equals-translation-ibo-eng
-    reference: Equals translation (Igbo into English)
-  b01cdf86-6e6a-4dd6-98cb-8e469f872e67: !Template
+    name: translate-this-zho_simpl-tel
+    reference: Translate this from X to Y (simplified Chinese into Telugu)
+  a3ec9104-88cd-4a07-b4d6-cdc850d9a3d9: !Template
     answer_choices: null
-    id: b01cdf86-6e6a-4dd6-98cb-8e469f872e67
-    jinja: 'Malayalam: {{ sentence_mal }} = Catalan: ||| {{ sentence_cat }}'
+    id: a3ec9104-88cd-4a07-b4d6-cdc850d9a3d9
+    jinja: 'Translate this from Marathi into Gujarati: {{ sentence_mar }} ||| {{ sentence_guj
+      }}'
     metadata: *id001
-    name: equals-translation-mal-cat
-    reference: Equals translation (Malayalam into Catalan)
-  b02d316d-02f3-46ba-af50-b8a9d4514ff8: !Template
+    name: translate-this-mar-guj
+    reference: Translate this from X to Y (Marathi into Gujarati)
+  a44f6b67-b45c-49b1-9e68-68c5e65bf702: !Template
     answer_choices: null
-    id: b02d316d-02f3-46ba-af50-b8a9d4514ff8
-    jinja: 'Catalan: {{ sentence_cat }} = Indonesian: ||| {{ sentence_ind }}'
+    id: a44f6b67-b45c-49b1-9e68-68c5e65bf702
+    jinja: 'Translate this from Punjabi into traditional Chinese: {{ sentence_pan
+      }} ||| {{ sentence_zho_trad }}'
     metadata: *id001
-    name: equals-translation-cat-ind
-    reference: Equals translation (Catalan into Indonesian)
-  b04d132b-7b49-49ca-8916-00efa0614297: !Template
+    name: translate-this-pan-zho_trad
+    reference: Translate this from X to Y (Punjabi into traditional Chinese)
+  a4642eae-236f-4948-970e-c2bdcdb0fb6c: !Template
     answer_choices: null
-    id: b04d132b-7b49-49ca-8916-00efa0614297
-    jinja: 'Wolof: {{ sentence_wol }} = Tamil: ||| {{ sentence_tam }}'
+    id: a4642eae-236f-4948-970e-c2bdcdb0fb6c
+    jinja: 'Translate this from Vietnamese into Zulu: {{ sentence_vie }} ||| {{ sentence_zul
+      }}'
     metadata: *id001
-    name: equals-translation-wol-tam
-    reference: Equals translation (Wolof into Tamil)
-  b08b2f77-e058-4196-8195-c7dae6f2cdce: !Template
+    name: translate-this-vie-zul
+    reference: Translate this from X to Y (Vietnamese into Zulu)
+  a57b0a0a-da21-4acf-9c1d-591b7f5c8c42: !Template
     answer_choices: null
-    id: b08b2f77-e058-4196-8195-c7dae6f2cdce
-    jinja: 'Lingala: {{ sentence_lin }} = Swahili: ||| {{ sentence_swh }}'
+    id: a57b0a0a-da21-4acf-9c1d-591b7f5c8c42
+    jinja: 'Translate this from Northern Sotho into French: {{ sentence_nso }} |||
+      {{ sentence_fra }}'
     metadata: *id001
-    name: equals-translation-lin-swh
-    reference: Equals translation (Lingala into Swahili)
-  b13dd92d-37b5-4b43-a918-e212b0ebe359: !Template
+    name: translate-this-nso-fra
+    reference: Translate this from X to Y (Northern Sotho into French)
+  a58456c4-6dc1-4315-a226-096117633fc2: !Template
     answer_choices: null
-    id: b13dd92d-37b5-4b43-a918-e212b0ebe359
-    jinja: 'Urdu: {{ sentence_urd }} = Igbo: ||| {{ sentence_ibo }}'
+    id: a58456c4-6dc1-4315-a226-096117633fc2
+    jinja: 'Translate this from Swahili into Zulu: {{ sentence_swh }} ||| {{ sentence_zul
+      }}'
     metadata: *id001
-    name: equals-translation-urd-ibo
-    reference: Equals translation (Urdu into Igbo)
-  b1450800-9e39-4837-b9c1-3d04d7563982: !Template
+    name: translate-this-swh-zul
+    reference: Translate this from X to Y (Swahili into Zulu)
+  a6076e20-6275-46d6-9b1a-d474be5629cd: !Template
     answer_choices: null
-    id: b1450800-9e39-4837-b9c1-3d04d7563982
-    jinja: 'Kannada: {{ sentence_kan }} = Gujarati: ||| {{ sentence_guj }}'
+    id: a6076e20-6275-46d6-9b1a-d474be5629cd
+    jinja: 'Translate this from Swahili into Assamese: {{ sentence_swh }} ||| {{ sentence_asm
+      }}'
     metadata: *id001
-    name: equals-translation-kan-guj
-    reference: Equals translation (Kannada into Gujarati)
-  b1468ba8-9549-4523-a838-cbcada18946c: !Template
+    name: translate-this-swh-asm
+    reference: Translate this from X to Y (Swahili into Assamese)
+  a6c0b28d-088b-4333-b799-6fd4eb1d3ed7: !Template
     answer_choices: null
-    id: b1468ba8-9549-4523-a838-cbcada18946c
-    jinja: 'Hindi: {{ sentence_hin }} = Northern Sotho: ||| {{ sentence_nso }}'
+    id: a6c0b28d-088b-4333-b799-6fd4eb1d3ed7
+    jinja: 'Translate this from Tamil into Lingala: {{ sentence_tam }} ||| {{ sentence_lin
+      }}'
     metadata: *id001
-    name: equals-translation-hin-nso
-    reference: Equals translation (Hindi into Northern Sotho)
-  b1f5c6f1-96f1-4f3c-9713-800a0cdcc2e4: !Template
+    name: translate-this-tam-lin
+    reference: Translate this from X to Y (Tamil into Lingala)
+  a6d55a53-143c-4b45-ae71-9611c726b235: !Template
     answer_choices: null
-    id: b1f5c6f1-96f1-4f3c-9713-800a0cdcc2e4
-    jinja: 'Latin American Spanish: {{ sentence_spa }} = French: ||| {{ sentence_fra
+    id: a6d55a53-143c-4b45-ae71-9611c726b235
+    jinja: 'Translate this from Arabic into Nepali: {{ sentence_ara }} ||| {{ sentence_npi
       }}'
     metadata: *id001
-    name: equals-translation-spa-fra
-    reference: Equals translation (Latin American Spanish into French)
-  b20686d8-fd8c-4ecd-b13f-14d5fc47159c: !Template
+    name: translate-this-ara-npi
+    reference: Translate this from X to Y (Arabic into Nepali)
+  a772f8ac-b402-4881-acf7-55dd0c3252fb: !Template
+    answer_choices: null
+    id: a772f8ac-b402-4881-acf7-55dd0c3252fb
+    jinja: 'Translate this from Gujarati into Indonesian: {{ sentence_guj }} ||| {{
+      sentence_ind }}'
+    metadata: *id001
+    name: translate-this-guj-ind
+    reference: Translate this from X to Y (Gujarati into Indonesian)
+  a774dda3-f5c2-4249-86ab-b519c9329f5f: !Template
     answer_choices: null
-    id: b20686d8-fd8c-4ecd-b13f-14d5fc47159c
-    jinja: 'Kannada: {{ sentence_kan }} = Nepali: ||| {{ sentence_npi }}'
+    id: a774dda3-f5c2-4249-86ab-b519c9329f5f
+    jinja: 'Translate this from simplified Chinese into Tamil: {{ sentence_zho_simpl
+      }} ||| {{ sentence_tam }}'
     metadata: *id001
-    name: equals-translation-kan-npi
-    reference: Equals translation (Kannada into Nepali)
-  b211b3ac-0dc5-4432-a527-1217ee8d2981: !Template
+    name: translate-this-zho_simpl-tam
+    reference: Translate this from X to Y (simplified Chinese into Tamil)
+  a7d52d32-9f32-4f97-9416-a9db61b27c09: !Template
     answer_choices: null
-    id: b211b3ac-0dc5-4432-a527-1217ee8d2981
-    jinja: 'Yoruba: {{ sentence_yor }} = Kannada: ||| {{ sentence_kan }}'
+    id: a7d52d32-9f32-4f97-9416-a9db61b27c09
+    jinja: 'Translate this from traditional Chinese into Telugu: {{ sentence_zho_trad
+      }} ||| {{ sentence_tel }}'
     metadata: *id001
-    name: equals-translation-yor-kan
-    reference: Equals translation (Yoruba into Kannada)
-  b23cb0bc-675e-4059-8b14-fc38f5410f9c: !Template
+    name: translate-this-zho_trad-tel
+    reference: Translate this from X to Y (traditional Chinese into Telugu)
+  a7d8b144-9c2c-45de-acf0-1cc07842515d: !Template
     answer_choices: null
-    id: b23cb0bc-675e-4059-8b14-fc38f5410f9c
-    jinja: 'Latin American Spanish: {{ sentence_spa }} = Bengali: ||| {{ sentence_ben
+    id: a7d8b144-9c2c-45de-acf0-1cc07842515d
+    jinja: 'Translate this from Nepali into Arabic: {{ sentence_npi }} ||| {{ sentence_ara
       }}'
     metadata: *id001
-    name: equals-translation-spa-ben
-    reference: Equals translation (Latin American Spanish into Bengali)
-  b259346f-021b-48ea-9eb3-f4f7f85edd24: !Template
+    name: translate-this-npi-ara
+    reference: Translate this from X to Y (Nepali into Arabic)
+  a7efee63-bf3f-4382-b675-d3a08ea4c8e5: !Template
     answer_choices: null
-    id: b259346f-021b-48ea-9eb3-f4f7f85edd24
-    jinja: 'Northern Sotho: {{ sentence_nso }} = French: ||| {{ sentence_fra }}'
+    id: a7efee63-bf3f-4382-b675-d3a08ea4c8e5
+    jinja: 'Translate this from simplified Chinese into Hindi: {{ sentence_zho_simpl
+      }} ||| {{ sentence_hin }}'
     metadata: *id001
-    name: equals-translation-nso-fra
-    reference: Equals translation (Northern Sotho into French)
-  b2836255-0212-4098-bbec-8ef71f7ae578: !Template
+    name: translate-this-zho_simpl-hin
+    reference: Translate this from X to Y (simplified Chinese into Hindi)
+  a97e25c0-6180-4bad-9d87-2e09df6d53ac: !Template
     answer_choices: null
-    id: b2836255-0212-4098-bbec-8ef71f7ae578
-    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Hindi: ||| {{ sentence_hin
+    id: a97e25c0-6180-4bad-9d87-2e09df6d53ac
+    jinja: 'Translate this from Urdu into Nepali: {{ sentence_urd }} ||| {{ sentence_npi
       }}'
     metadata: *id001
-    name: equals-translation-zho_simpl-hin
-    reference: Equals translation (simplified Chinese into Hindi)
-  b2bfb638-a1c7-46db-b40d-4b037a4bc219: !Template
+    name: translate-this-urd-npi
+    reference: Translate this from X to Y (Urdu into Nepali)
+  a9847876-8d25-4b39-a3f3-69863649ea4e: !Template
     answer_choices: null
-    id: b2bfb638-a1c7-46db-b40d-4b037a4bc219
-    jinja: 'Northern Sotho: {{ sentence_nso }} = Malayalam: ||| {{ sentence_mal }}'
+    id: a9847876-8d25-4b39-a3f3-69863649ea4e
+    jinja: 'Translate this from Yoruba into Urdu: {{ sentence_yor }} ||| {{ sentence_urd
+      }}'
     metadata: *id001
-    name: equals-translation-nso-mal
-    reference: Equals translation (Northern Sotho into Malayalam)
-  b3282d08-cf23-4094-9f07-9e67ea1e9f66: !Template
+    name: translate-this-yor-urd
+    reference: Translate this from X to Y (Yoruba into Urdu)
+  a99a5549-0074-421e-bc40-ef4800ac7f17: !Template
     answer_choices: null
-    id: b3282d08-cf23-4094-9f07-9e67ea1e9f66
-    jinja: 'Urdu: {{ sentence_urd }} = Nepali: ||| {{ sentence_npi }}'
+    id: a99a5549-0074-421e-bc40-ef4800ac7f17
+    jinja: 'Translate this from Marathi into Assamese: {{ sentence_mar }} ||| {{ sentence_asm
+      }}'
     metadata: *id001
-    name: equals-translation-urd-npi
-    reference: Equals translation (Urdu into Nepali)
-  b4287c64-6123-4739-8797-5b957f85d6ef: !Template
+    name: translate-this-mar-asm
+    reference: Translate this from X to Y (Marathi into Assamese)
+  a99bbf95-48de-48e7-8eb6-7de13b05e102: !Template
     answer_choices: null
-    id: b4287c64-6123-4739-8797-5b957f85d6ef
-    jinja: 'Punjabi: {{ sentence_pan }} = Igbo: ||| {{ sentence_ibo }}'
+    id: a99bbf95-48de-48e7-8eb6-7de13b05e102
+    jinja: 'Translate this from French into Indonesian: {{ sentence_fra }} ||| {{
+      sentence_ind }}'
     metadata: *id001
-    name: equals-translation-pan-ibo
-    reference: Equals translation (Punjabi into Igbo)
-  b44d0858-4e1c-46af-b072-56e1f9c0403f: !Template
+    name: translate-this-fra-ind
+    reference: Translate this from X to Y (French into Indonesian)
+  a9cdc0aa-a902-44e8-ab09-3468134ab7c9: !Template
     answer_choices: null
-    id: b44d0858-4e1c-46af-b072-56e1f9c0403f
-    jinja: 'Lingala: {{ sentence_lin }} = Catalan: ||| {{ sentence_cat }}'
+    id: a9cdc0aa-a902-44e8-ab09-3468134ab7c9
+    jinja: 'Translate this from Bengali into Tamil: {{ sentence_ben }} ||| {{ sentence_tam
+      }}'
     metadata: *id001
-    name: equals-translation-lin-cat
-    reference: Equals translation (Lingala into Catalan)
-  b4f25ea0-23a2-4680-85e7-1081be0a9a1c: !Template
+    name: translate-this-ben-tam
+    reference: Translate this from X to Y (Bengali into Tamil)
+  aa636678-6f1e-4f3d-9f5a-babaa643c12a: !Template
     answer_choices: null
-    id: b4f25ea0-23a2-4680-85e7-1081be0a9a1c
-    jinja: 'Marathi: {{ sentence_mar }} = Oriya: ||| {{ sentence_ory }}'
+    id: aa636678-6f1e-4f3d-9f5a-babaa643c12a
+    jinja: 'Translate this from Malayalam into Kannada: {{ sentence_mal }} ||| {{
+      sentence_kan }}'
     metadata: *id001
-    name: equals-translation-mar-ory
-    reference: Equals translation (Marathi into Oriya)
-  b515dc88-f4ea-474c-92a9-9aeddbd66ad6: !Template
+    name: translate-this-mal-kan
+    reference: Translate this from X to Y (Malayalam into Kannada)
+  aaa25f20-cde2-45cb-954d-c3274a4eeb9b: !Template
     answer_choices: null
-    id: b515dc88-f4ea-474c-92a9-9aeddbd66ad6
-    jinja: 'Telugu: {{ sentence_tel }} = Northern Sotho: ||| {{ sentence_nso }}'
+    id: aaa25f20-cde2-45cb-954d-c3274a4eeb9b
+    jinja: 'Translate this from Lingala into Vietnamese: {{ sentence_lin }} ||| {{
+      sentence_vie }}'
     metadata: *id001
-    name: equals-translation-tel-nso
-    reference: Equals translation (Telugu into Northern Sotho)
-  b581f84d-73c8-4eee-95cd-2aff2c2dcd9e: !Template
+    name: translate-this-lin-vie
+    reference: Translate this from X to Y (Lingala into Vietnamese)
+  aaef1378-0d74-49d1-aecf-c59bd44d8258: !Template
     answer_choices: null
-    id: b581f84d-73c8-4eee-95cd-2aff2c2dcd9e
-    jinja: 'Indonesian: {{ sentence_ind }} = Latin American Spanish: ||| {{ sentence_spa
+    id: aaef1378-0d74-49d1-aecf-c59bd44d8258
+    jinja: 'Translate this from Zulu into Assamese: {{ sentence_zul }} ||| {{ sentence_asm
       }}'
     metadata: *id001
-    name: equals-translation-ind-spa
-    reference: Equals translation (Indonesian into Latin American Spanish)
-  b585b519-3ba7-44c7-b53d-c15ed2358872: !Template
+    name: translate-this-zul-asm
+    reference: Translate this from X to Y (Zulu into Assamese)
+  ab56b75f-2a26-496a-843b-b658db7e563b: !Template
     answer_choices: null
-    id: b585b519-3ba7-44c7-b53d-c15ed2358872
-    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Kannada: ||| {{ sentence_kan
+    id: ab56b75f-2a26-496a-843b-b658db7e563b
+    jinja: 'Translate this from Tamil into Hindi: {{ sentence_tam }} ||| {{ sentence_hin
       }}'
     metadata: *id001
-    name: equals-translation-por-kan
-    reference: Equals translation (Brazilian Portuguese into Kannada)
-  b5a7f52a-4cc7-4cb5-ae5d-50b3e778dfca: !Template
+    name: translate-this-tam-hin
+    reference: Translate this from X to Y (Tamil into Hindi)
+  ab8b0aa2-f979-4da9-bd50-356e18569ab0: !Template
     answer_choices: null
-    id: b5a7f52a-4cc7-4cb5-ae5d-50b3e778dfca
-    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Northern Sotho: ||| {{ sentence_nso
+    id: ab8b0aa2-f979-4da9-bd50-356e18569ab0
+    jinja: 'Translate this from Xhosa into Catalan: {{ sentence_xho }} ||| {{ sentence_cat
       }}'
     metadata: *id001
-    name: equals-translation-por-nso
-    reference: Equals translation (Brazilian Portuguese into Northern Sotho)
-  b5f91710-c8d0-493d-94d4-d2d5c87c7be9: !Template
+    name: translate-this-xho-cat
+    reference: Translate this from X to Y (Xhosa into Catalan)
+  ab8c5147-c310-4e53-a87e-1f14f253f2c8: !Template
     answer_choices: null
-    id: b5f91710-c8d0-493d-94d4-d2d5c87c7be9
-    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Arabic: ||| {{ sentence_ara
+    id: ab8c5147-c310-4e53-a87e-1f14f253f2c8
+    jinja: 'Translate this from Urdu into Hindi: {{ sentence_urd }} ||| {{ sentence_hin
       }}'
     metadata: *id001
-    name: equals-translation-por-ara
-    reference: Equals translation (Brazilian Portuguese into Arabic)
-  b600dde9-4f15-4da2-8f57-61c84411062a: !Template
-    answer_choices: null
-    id: b600dde9-4f15-4da2-8f57-61c84411062a
-    jinja: 'Vietnamese: {{ sentence_vie }} = Arabic: ||| {{ sentence_ara }}'
-    metadata: *id001
-    name: equals-translation-vie-ara
-    reference: Equals translation (Vietnamese into Arabic)
-  b6023a5f-3388-4e36-a351-0ab14b9d275c: !Template
-    answer_choices: null
-    id: b6023a5f-3388-4e36-a351-0ab14b9d275c
-    jinja: 'Tamil: {{ sentence_tam }} = Nepali: ||| {{ sentence_npi }}'
-    metadata: *id001
-    name: equals-translation-tam-npi
-    reference: Equals translation (Tamil into Nepali)
-  b6a98dd2-df2f-4678-b419-d344d9a9d7f3: !Template
+    name: translate-this-urd-hin
+    reference: Translate this from X to Y (Urdu into Hindi)
+  ab8e6bc3-4ee6-4bd7-b748-d9f801104e19: !Template
     answer_choices: null
-    id: b6a98dd2-df2f-4678-b419-d344d9a9d7f3
-    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Marathi: ||| {{ sentence_mar
+    id: ab8e6bc3-4ee6-4bd7-b748-d9f801104e19
+    jinja: 'Translate this from Telugu into Malayalam: {{ sentence_tel }} ||| {{ sentence_mal
       }}'
     metadata: *id001
-    name: equals-translation-zho_simpl-mar
-    reference: Equals translation (simplified Chinese into Marathi)
-  b6af5635-ac9e-4a1f-8fe5-f83b925b974a: !Template
+    name: translate-this-tel-mal
+    reference: Translate this from X to Y (Telugu into Malayalam)
+  ac3f131c-909d-4133-86ec-f2481c954924: !Template
     answer_choices: null
-    id: b6af5635-ac9e-4a1f-8fe5-f83b925b974a
-    jinja: 'Marathi: {{ sentence_mar }} = Brazilian Portuguese: ||| {{ sentence_por
+    id: ac3f131c-909d-4133-86ec-f2481c954924
+    jinja: 'Translate this from Urdu into Indonesian: {{ sentence_urd }} ||| {{ sentence_ind
       }}'
     metadata: *id001
-    name: equals-translation-mar-por
-    reference: Equals translation (Marathi into Brazilian Portuguese)
-  b6afe192-fc82-491c-af5e-35079cd4247e: !Template
+    name: translate-this-urd-ind
+    reference: Translate this from X to Y (Urdu into Indonesian)
+  ac755252-f162-4f63-9a5c-248a3add7ee0: !Template
     answer_choices: null
-    id: b6afe192-fc82-491c-af5e-35079cd4247e
-    jinja: 'Kannada: {{ sentence_kan }} = Urdu: ||| {{ sentence_urd }}'
-    metadata: *id001
-    name: equals-translation-kan-urd
-    reference: Equals translation (Kannada into Urdu)
-  b6b83daa-54e0-448e-92e7-263b9ecffd71: !Template
-    answer_choices: null
-    id: b6b83daa-54e0-448e-92e7-263b9ecffd71
-    jinja: 'Gujarati: {{ sentence_guj }} = Brazilian Portuguese: ||| {{ sentence_por
+    id: ac755252-f162-4f63-9a5c-248a3add7ee0
+    jinja: 'Translate this from Catalan into Tamil: {{ sentence_cat }} ||| {{ sentence_tam
       }}'
     metadata: *id001
-    name: equals-translation-guj-por
-    reference: Equals translation (Gujarati into Brazilian Portuguese)
-  b70c8584-b289-4852-9ab5-87912e62dc02: !Template
+    name: translate-this-cat-tam
+    reference: Translate this from X to Y (Catalan into Tamil)
+  acd014d3-2e93-4561-bbd1-08e7c91abf71: !Template
     answer_choices: null
-    id: b70c8584-b289-4852-9ab5-87912e62dc02
-    jinja: 'Vietnamese: {{ sentence_vie }} = Nepali: ||| {{ sentence_npi }}'
+    id: acd014d3-2e93-4561-bbd1-08e7c91abf71
+    jinja: 'Translate this from Nepali into Yoruba: {{ sentence_npi }} ||| {{ sentence_yor
+      }}'
     metadata: *id001
-    name: equals-translation-vie-npi
-    reference: Equals translation (Vietnamese into Nepali)
-  b745d70c-89a2-473e-beec-e0b50a31ce6c: !Template
+    name: translate-this-npi-yor
+    reference: Translate this from X to Y (Nepali into Yoruba)
+  ad22cadb-2d40-4801-9ba5-0cf7d13c0ebf: !Template
     answer_choices: null
-    id: b745d70c-89a2-473e-beec-e0b50a31ce6c
-    jinja: 'Oriya: {{ sentence_ory }} = Swahili: ||| {{ sentence_swh }}'
+    id: ad22cadb-2d40-4801-9ba5-0cf7d13c0ebf
+    jinja: 'Translate this from Vietnamese into Xhosa: {{ sentence_vie }} ||| {{ sentence_xho
+      }}'
     metadata: *id001
-    name: equals-translation-ory-swh
-    reference: Equals translation (Oriya into Swahili)
-  b8996262-aef0-4b33-898c-7488950cfea8: !Template
+    name: translate-this-vie-xho
+    reference: Translate this from X to Y (Vietnamese into Xhosa)
+  adcffbc2-d33c-4ffe-89d8-82f860c95c73: !Template
     answer_choices: null
-    id: b8996262-aef0-4b33-898c-7488950cfea8
-    jinja: 'Zulu: {{ sentence_zul }} = Tamil: ||| {{ sentence_tam }}'
+    id: adcffbc2-d33c-4ffe-89d8-82f860c95c73
+    jinja: 'Translate this from Catalan into Lingala: {{ sentence_cat }} ||| {{ sentence_lin
+      }}'
     metadata: *id001
-    name: equals-translation-zul-tam
-    reference: Equals translation (Zulu into Tamil)
-  b8e130bc-e36a-43f2-91e7-7be6c2418908: !Template
+    name: translate-this-cat-lin
+    reference: Translate this from X to Y (Catalan into Lingala)
+  adf31954-7af9-441e-bc3d-689802be5700: !Template
     answer_choices: null
-    id: b8e130bc-e36a-43f2-91e7-7be6c2418908
-    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Brazilian Portuguese: |||
-      {{ sentence_por }}'
+    id: adf31954-7af9-441e-bc3d-689802be5700
+    jinja: 'Translate this from Bengali into Zulu: {{ sentence_ben }} ||| {{ sentence_zul
+      }}'
     metadata: *id001
-    name: equals-translation-zho_simpl-por
-    reference: Equals translation (simplified Chinese into Brazilian Portuguese)
-  b8f507f3-af21-4ae8-bd63-ef1b25fb8144: !Template
+    name: translate-this-ben-zul
+    reference: Translate this from X to Y (Bengali into Zulu)
+  ae2e0094-69a1-4735-b5ec-2b5313785187: !Template
     answer_choices: null
-    id: b8f507f3-af21-4ae8-bd63-ef1b25fb8144
-    jinja: 'Punjabi: {{ sentence_pan }} = Gujarati: ||| {{ sentence_guj }}'
+    id: ae2e0094-69a1-4735-b5ec-2b5313785187
+    jinja: 'Translate this from Zulu into Latin American Spanish: {{ sentence_zul
+      }} ||| {{ sentence_spa }}'
     metadata: *id001
-    name: equals-translation-pan-guj
-    reference: Equals translation (Punjabi into Gujarati)
-  b92a1a2b-16db-4cdb-96bb-53dad882035d: !Template
+    name: translate-this-zul-spa
+    reference: Translate this from X to Y (Zulu into Latin American Spanish)
+  aec9404d-8c00-4b87-bb82-0eac54c1422c: !Template
     answer_choices: null
-    id: b92a1a2b-16db-4cdb-96bb-53dad882035d
-    jinja: 'Latin American Spanish: {{ sentence_spa }} = Brazilian Portuguese: |||
-      {{ sentence_por }}'
+    id: aec9404d-8c00-4b87-bb82-0eac54c1422c
+    jinja: 'Translate this from Urdu into Assamese: {{ sentence_urd }} ||| {{ sentence_asm
+      }}'
     metadata: *id001
-    name: equals-translation-spa-por
-    reference: Equals translation (Latin American Spanish into Brazilian Portuguese)
-  b9410ec6-f556-4618-8ecb-fe706a619e2d: !Template
+    name: translate-this-urd-asm
+    reference: Translate this from X to Y (Urdu into Assamese)
+  aef823a5-4974-4bec-8735-e3c9e139246d: !Template
     answer_choices: null
-    id: b9410ec6-f556-4618-8ecb-fe706a619e2d
-    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Latin American Spanish: |||
-      {{ sentence_spa }}'
+    id: aef823a5-4974-4bec-8735-e3c9e139246d
+    jinja: 'Translate this from French into Yoruba: {{ sentence_fra }} ||| {{ sentence_yor
+      }}'
     metadata: *id001
-    name: equals-translation-por-spa
-    reference: Equals translation (Brazilian Portuguese into Latin American Spanish)
-  b94fd114-e9ed-4436-9faa-a70d90efb430: !Template
+    name: translate-this-fra-yor
+    reference: Translate this from X to Y (French into Yoruba)
+  af0bc5d3-b269-49d5-bfce-02ddfc6e105a: !Template
     answer_choices: null
-    id: b94fd114-e9ed-4436-9faa-a70d90efb430
-    jinja: 'Vietnamese: {{ sentence_vie }} = Kannada: ||| {{ sentence_kan }}'
+    id: af0bc5d3-b269-49d5-bfce-02ddfc6e105a
+    jinja: 'Translate this from simplified Chinese into Nepali: {{ sentence_zho_simpl
+      }} ||| {{ sentence_npi }}'
     metadata: *id001
-    name: equals-translation-vie-kan
-    reference: Equals translation (Vietnamese into Kannada)
-  b97dc9c2-07fb-4811-8890-a7963698703f: !Template
+    name: translate-this-zho_simpl-npi
+    reference: Translate this from X to Y (simplified Chinese into Nepali)
+  af4f53dc-2907-46c4-a26d-fc44ac602900: !Template
     answer_choices: null
-    id: b97dc9c2-07fb-4811-8890-a7963698703f
-    jinja: 'Hindi: {{ sentence_hin }} = Marathi: ||| {{ sentence_mar }}'
+    id: af4f53dc-2907-46c4-a26d-fc44ac602900
+    jinja: 'Translate this from traditional Chinese into Igbo: {{ sentence_zho_trad
+      }} ||| {{ sentence_ibo }}'
     metadata: *id001
-    name: equals-translation-hin-mar
-    reference: Equals translation (Hindi into Marathi)
-  b9febe49-756a-4867-a650-2218bc6bc568: !Template
+    name: translate-this-zho_trad-ibo
+    reference: Translate this from X to Y (traditional Chinese into Igbo)
+  af754123-7d27-4cf1-953e-526b2e04548a: !Template
     answer_choices: null
-    id: b9febe49-756a-4867-a650-2218bc6bc568
-    jinja: 'Indonesian: {{ sentence_ind }} = simplified Chinese: ||| {{ sentence_zho_simpl
+    id: af754123-7d27-4cf1-953e-526b2e04548a
+    jinja: 'Translate this from Arabic into Wolof: {{ sentence_ara }} ||| {{ sentence_wol
       }}'
     metadata: *id001
-    name: equals-translation-ind-zho_simpl
-    reference: Equals translation (Indonesian into simplified Chinese)
-  ba13a2b7-1ad9-4fbd-9e2e-cbfe4ef54270: !Template
+    name: translate-this-ara-wol
+    reference: Translate this from X to Y (Arabic into Wolof)
+  af963390-0dbb-408f-918b-d3c59d022f3d: !Template
     answer_choices: null
-    id: ba13a2b7-1ad9-4fbd-9e2e-cbfe4ef54270
-    jinja: 'Urdu: {{ sentence_urd }} = Northern Sotho: ||| {{ sentence_nso }}'
+    id: af963390-0dbb-408f-918b-d3c59d022f3d
+    jinja: 'Translate this from Marathi into Latin American Spanish: {{ sentence_mar
+      }} ||| {{ sentence_spa }}'
     metadata: *id001
-    name: equals-translation-urd-nso
-    reference: Equals translation (Urdu into Northern Sotho)
-  ba37030e-6a2b-4c21-a736-a103456db78a: !Template
+    name: translate-this-mar-spa
+    reference: Translate this from X to Y (Marathi into Latin American Spanish)
+  b044fa1f-4a0d-464b-bb14-3a9cbf7ac7b0: !Template
     answer_choices: null
-    id: ba37030e-6a2b-4c21-a736-a103456db78a
-    jinja: 'Marathi: {{ sentence_mar }} = Punjabi: ||| {{ sentence_pan }}'
+    id: b044fa1f-4a0d-464b-bb14-3a9cbf7ac7b0
+    jinja: 'Translate this from Kannada into Latin American Spanish: {{ sentence_kan
+      }} ||| {{ sentence_spa }}'
     metadata: *id001
-    name: equals-translation-mar-pan
-    reference: Equals translation (Marathi into Punjabi)
-  baaa8b04-418d-4724-9d25-5cc86633ff98: !Template
+    name: translate-this-kan-spa
+    reference: Translate this from X to Y (Kannada into Latin American Spanish)
+  b06f39a9-69fe-4165-a8a6-8550e8192ff6: !Template
     answer_choices: null
-    id: baaa8b04-418d-4724-9d25-5cc86633ff98
-    jinja: 'Vietnamese: {{ sentence_vie }} = Bengali: ||| {{ sentence_ben }}'
+    id: b06f39a9-69fe-4165-a8a6-8550e8192ff6
+    jinja: 'Translate this from Brazilian Portuguese into Latin American Spanish:
+      {{ sentence_por }} ||| {{ sentence_spa }}'
     metadata: *id001
-    name: equals-translation-vie-ben
-    reference: Equals translation (Vietnamese into Bengali)
-  bace6736-9aee-456e-b9f8-b34092f8e2c3: !Template
+    name: translate-this-por-spa
+    reference: Translate this from X to Y (Brazilian Portuguese into Latin American
+      Spanish)
+  b084548d-3d82-4048-8945-59651dd74d65: !Template
     answer_choices: null
-    id: bace6736-9aee-456e-b9f8-b34092f8e2c3
-    jinja: 'Zulu: {{ sentence_zul }} = traditional Chinese: ||| {{ sentence_zho_trad
+    id: b084548d-3d82-4048-8945-59651dd74d65
+    jinja: 'Translate this from English into Xhosa: {{ sentence_eng }} ||| {{ sentence_xho
       }}'
     metadata: *id001
-    name: equals-translation-zul-zho_trad
-    reference: Equals translation (Zulu into traditional Chinese)
-  baeecf8f-55be-490f-a601-5927672a7b52: !Template
+    name: translate-this-eng-xho
+    reference: Translate this from X to Y (English into Xhosa)
+  b0927e3b-8824-4301-972c-e61af75b350c: !Template
     answer_choices: null
-    id: baeecf8f-55be-490f-a601-5927672a7b52
-    jinja: 'Nepali: {{ sentence_npi }} = simplified Chinese: ||| {{ sentence_zho_simpl
+    id: b0927e3b-8824-4301-972c-e61af75b350c
+    jinja: 'Translate this from Arabic into Catalan: {{ sentence_ara }} ||| {{ sentence_cat
       }}'
     metadata: *id001
-    name: equals-translation-npi-zho_simpl
-    reference: Equals translation (Nepali into simplified Chinese)
-  baf4172f-57a5-418a-b195-f4a78e0ea1fd: !Template
-    answer_choices: null
-    id: baf4172f-57a5-418a-b195-f4a78e0ea1fd
-    jinja: 'Hindi: {{ sentence_hin }} = Igbo: ||| {{ sentence_ibo }}'
-    metadata: *id001
-    name: equals-translation-hin-ibo
-    reference: Equals translation (Hindi into Igbo)
-  bb5f7015-79a2-48fc-8b1f-964a3144893d: !Template
+    name: translate-this-ara-cat
+    reference: Translate this from X to Y (Arabic into Catalan)
+  b1204953-0173-4e6e-b98b-cf49f36f938e: !Template
     answer_choices: null
-    id: bb5f7015-79a2-48fc-8b1f-964a3144893d
-    jinja: 'Nepali: {{ sentence_npi }} = Bengali: ||| {{ sentence_ben }}'
+    id: b1204953-0173-4e6e-b98b-cf49f36f938e
+    jinja: 'Translate this from Urdu into Gujarati: {{ sentence_urd }} ||| {{ sentence_guj
+      }}'
     metadata: *id001
-    name: equals-translation-npi-ben
-    reference: Equals translation (Nepali into Bengali)
-  bb87e84d-3c0e-453b-b1b4-75ad5c2a2b34: !Template
+    name: translate-this-urd-guj
+    reference: Translate this from X to Y (Urdu into Gujarati)
+  b1d3cb86-56f4-4c85-9ed2-5218219fab25: !Template
     answer_choices: null
-    id: bb87e84d-3c0e-453b-b1b4-75ad5c2a2b34
-    jinja: 'Punjabi: {{ sentence_pan }} = Lingala: ||| {{ sentence_lin }}'
+    id: b1d3cb86-56f4-4c85-9ed2-5218219fab25
+    jinja: 'Translate this from Lingala into Kannada: {{ sentence_lin }} ||| {{ sentence_kan
+      }}'
     metadata: *id001
-    name: equals-translation-pan-lin
-    reference: Equals translation (Punjabi into Lingala)
-  bbbb42ec-3fff-4b7b-8bf3-9900eba47227: !Template
+    name: translate-this-lin-kan
+    reference: Translate this from X to Y (Lingala into Kannada)
+  b1dd5089-113a-4b5c-9b74-4222de69d86b: !Template
     answer_choices: null
-    id: bbbb42ec-3fff-4b7b-8bf3-9900eba47227
-    jinja: 'Gujarati: {{ sentence_guj }} = Arabic: ||| {{ sentence_ara }}'
+    id: b1dd5089-113a-4b5c-9b74-4222de69d86b
+    jinja: 'Translate this from Telugu into Zulu: {{ sentence_tel }} ||| {{ sentence_zul
+      }}'
     metadata: *id001
-    name: equals-translation-guj-ara
-    reference: Equals translation (Gujarati into Arabic)
-  bc002d1f-b4ae-419b-9bf5-c88e6ee46c3c: !Template
+    name: translate-this-tel-zul
+    reference: Translate this from X to Y (Telugu into Zulu)
+  b2421b4d-3c75-4581-98dc-32c581fc6edb: !Template
     answer_choices: null
-    id: bc002d1f-b4ae-419b-9bf5-c88e6ee46c3c
-    jinja: 'Punjabi: {{ sentence_pan }} = Hindi: ||| {{ sentence_hin }}'
+    id: b2421b4d-3c75-4581-98dc-32c581fc6edb
+    jinja: 'Translate this from French into Latin American Spanish: {{ sentence_fra
+      }} ||| {{ sentence_spa }}'
     metadata: *id001
-    name: equals-translation-pan-hin
-    reference: Equals translation (Punjabi into Hindi)
-  bc27c04b-cf7d-4669-8984-2a82b3e311a2: !Template
+    name: translate-this-fra-spa
+    reference: Translate this from X to Y (French into Latin American Spanish)
+  b2c0b935-dc6b-4ae3-b023-d306e151732e: !Template
     answer_choices: null
-    id: bc27c04b-cf7d-4669-8984-2a82b3e311a2
-    jinja: 'Tamil: {{ sentence_tam }} = Xhosa: ||| {{ sentence_xho }}'
+    id: b2c0b935-dc6b-4ae3-b023-d306e151732e
+    jinja: 'Translate this from Arabic into simplified Chinese: {{ sentence_ara }}
+      ||| {{ sentence_zho_simpl }}'
     metadata: *id001
-    name: equals-translation-tam-xho
-    reference: Equals translation (Tamil into Xhosa)
-  bc880ad9-e8c3-436b-ae17-69be7dca544d: !Template
+    name: translate-this-ara-zho_simpl
+    reference: Translate this from X to Y (Arabic into simplified Chinese)
+  b3af3351-1aa5-4182-a451-35a024787d6d: !Template
     answer_choices: null
-    id: bc880ad9-e8c3-436b-ae17-69be7dca544d
-    jinja: 'Latin American Spanish: {{ sentence_spa }} = Northern Sotho: ||| {{ sentence_nso
+    id: b3af3351-1aa5-4182-a451-35a024787d6d
+    jinja: 'Translate this from Hindi into Zulu: {{ sentence_hin }} ||| {{ sentence_zul
       }}'
     metadata: *id001
-    name: equals-translation-spa-nso
-    reference: Equals translation (Latin American Spanish into Northern Sotho)
-  bc9035d6-5a36-40fd-8161-cd1d286d695c: !Template
-    answer_choices: null
-    id: bc9035d6-5a36-40fd-8161-cd1d286d695c
-    jinja: 'Hindi: {{ sentence_hin }} = Wolof: ||| {{ sentence_wol }}'
-    metadata: *id001
-    name: equals-translation-hin-wol
-    reference: Equals translation (Hindi into Wolof)
-  bd774980-bc63-4fb4-bc39-a3e3cf77f9cc: !Template
+    name: translate-this-hin-zul
+    reference: Translate this from X to Y (Hindi into Zulu)
+  b4459d77-6501-496f-a837-37eea00fe4b4: !Template
     answer_choices: null
-    id: bd774980-bc63-4fb4-bc39-a3e3cf77f9cc
-    jinja: 'Lingala: {{ sentence_lin }} = Tamil: ||| {{ sentence_tam }}'
+    id: b4459d77-6501-496f-a837-37eea00fe4b4
+    jinja: 'Translate this from Lingala into Yoruba: {{ sentence_lin }} ||| {{ sentence_yor
+      }}'
     metadata: *id001
-    name: equals-translation-lin-tam
-    reference: Equals translation (Lingala into Tamil)
-  bda92d05-ad4a-4453-97d1-dfa739649ce7: !Template
+    name: translate-this-lin-yor
+    reference: Translate this from X to Y (Lingala into Yoruba)
+  b470f2db-ae79-44eb-bae8-cabe6bf75407: !Template
     answer_choices: null
-    id: bda92d05-ad4a-4453-97d1-dfa739649ce7
-    jinja: 'Marathi: {{ sentence_mar }} = Latin American Spanish: ||| {{ sentence_spa
+    id: b470f2db-ae79-44eb-bae8-cabe6bf75407
+    jinja: 'Translate this from Telugu into Swahili: {{ sentence_tel }} ||| {{ sentence_swh
       }}'
     metadata: *id001
-    name: equals-translation-mar-spa
-    reference: Equals translation (Marathi into Latin American Spanish)
-  bdbdd1a8-40a3-4aaa-a186-efffe9160e4a: !Template
+    name: translate-this-tel-swh
+    reference: Translate this from X to Y (Telugu into Swahili)
+  b4b667a1-8ff0-4eba-b22c-9533b9801af1: !Template
     answer_choices: null
-    id: bdbdd1a8-40a3-4aaa-a186-efffe9160e4a
-    jinja: 'Yoruba: {{ sentence_yor }} = French: ||| {{ sentence_fra }}'
+    id: b4b667a1-8ff0-4eba-b22c-9533b9801af1
+    jinja: 'Translate this from Oriya into traditional Chinese: {{ sentence_ory }}
+      ||| {{ sentence_zho_trad }}'
     metadata: *id001
-    name: equals-translation-yor-fra
-    reference: Equals translation (Yoruba into French)
-  bdcd5a30-df32-45a3-90cd-798d0eac5254: !Template
+    name: translate-this-ory-zho_trad
+    reference: Translate this from X to Y (Oriya into traditional Chinese)
+  b4e1fdfd-9715-438f-a08d-00091bf3e7e8: !Template
     answer_choices: null
-    id: bdcd5a30-df32-45a3-90cd-798d0eac5254
-    jinja: 'Assamese: {{ sentence_asm }} = Urdu: ||| {{ sentence_urd }}'
+    id: b4e1fdfd-9715-438f-a08d-00091bf3e7e8
+    jinja: 'Translate this from Kannada into Wolof: {{ sentence_kan }} ||| {{ sentence_wol
+      }}'
     metadata: *id001
-    name: equals-translation-asm-urd
-    reference: Equals translation (Assamese into Urdu)
-  be21c701-9a69-4d1e-835f-1025890149e3: !Template
+    name: translate-this-kan-wol
+    reference: Translate this from X to Y (Kannada into Wolof)
+  b4ed4c6b-c393-4cef-9ef8-debace33b134: !Template
     answer_choices: null
-    id: be21c701-9a69-4d1e-835f-1025890149e3
-    jinja: 'Marathi: {{ sentence_mar }} = Wolof: ||| {{ sentence_wol }}'
+    id: b4ed4c6b-c393-4cef-9ef8-debace33b134
+    jinja: 'Translate this from French into Tamil: {{ sentence_fra }} ||| {{ sentence_tam
+      }}'
     metadata: *id001
-    name: equals-translation-mar-wol
-    reference: Equals translation (Marathi into Wolof)
-  be507d9a-7643-4d96-bfaa-28d2c5221d19: !Template
+    name: translate-this-fra-tam
+    reference: Translate this from X to Y (French into Tamil)
+  b57a3b33-fd2b-4c8e-9b61-58b2a0cdad86: !Template
     answer_choices: null
-    id: be507d9a-7643-4d96-bfaa-28d2c5221d19
-    jinja: 'Catalan: {{ sentence_cat }} = traditional Chinese: ||| {{ sentence_zho_trad
+    id: b57a3b33-fd2b-4c8e-9b61-58b2a0cdad86
+    jinja: 'Translate this from Catalan into Assamese: {{ sentence_cat }} ||| {{ sentence_asm
       }}'
     metadata: *id001
-    name: equals-translation-cat-zho_trad
-    reference: Equals translation (Catalan into traditional Chinese)
-  be70855b-10a9-41cb-a342-80dd3bbfdb5c: !Template
+    name: translate-this-cat-asm
+    reference: Translate this from X to Y (Catalan into Assamese)
+  b59f7c41-9898-4e05-8954-f43aad4842ec: !Template
     answer_choices: null
-    id: be70855b-10a9-41cb-a342-80dd3bbfdb5c
-    jinja: 'English: {{ sentence_eng }} = Xhosa: ||| {{ sentence_xho }}'
+    id: b59f7c41-9898-4e05-8954-f43aad4842ec
+    jinja: 'Translate this from Lingala into Swahili: {{ sentence_lin }} ||| {{ sentence_swh
+      }}'
     metadata: *id001
-    name: equals-translation-eng-xho
-    reference: Equals translation (English into Xhosa)
-  bf0533f7-06a4-4033-a4e5-9faf7948ad97: !Template
+    name: translate-this-lin-swh
+    reference: Translate this from X to Y (Lingala into Swahili)
+  b5ee5056-1f41-45e3-9218-f329bffeec99: !Template
     answer_choices: null
-    id: bf0533f7-06a4-4033-a4e5-9faf7948ad97
-    jinja: 'Lingala: {{ sentence_lin }} = Oriya: ||| {{ sentence_ory }}'
+    id: b5ee5056-1f41-45e3-9218-f329bffeec99
+    jinja: 'Translate this from Malayalam into Indonesian: {{ sentence_mal }} |||
+      {{ sentence_ind }}'
     metadata: *id001
-    name: equals-translation-lin-ory
-    reference: Equals translation (Lingala into Oriya)
-  bff1a20e-ab9f-42fa-bc73-ed8cde143629: !Template
+    name: translate-this-mal-ind
+    reference: Translate this from X to Y (Malayalam into Indonesian)
+  b64e9a96-d96e-4224-be11-40b65ee3b123: !Template
     answer_choices: null
-    id: bff1a20e-ab9f-42fa-bc73-ed8cde143629
-    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = French: ||| {{ sentence_fra
+    id: b64e9a96-d96e-4224-be11-40b65ee3b123
+    jinja: 'Translate this from Urdu into Telugu: {{ sentence_urd }} ||| {{ sentence_tel
       }}'
     metadata: *id001
-    name: equals-translation-zho_trad-fra
-    reference: Equals translation (traditional Chinese into French)
-  c009a14e-94fa-4151-ad77-dde9e08feb33: !Template
+    name: translate-this-urd-tel
+    reference: Translate this from X to Y (Urdu into Telugu)
+  b6aa98d1-6e43-4b2e-949d-fae151c2bb19: !Template
     answer_choices: null
-    id: c009a14e-94fa-4151-ad77-dde9e08feb33
-    jinja: 'Xhosa: {{ sentence_xho }} = Bengali: ||| {{ sentence_ben }}'
+    id: b6aa98d1-6e43-4b2e-949d-fae151c2bb19
+    jinja: 'Translate this from simplified Chinese into Brazilian Portuguese: {{ sentence_zho_simpl
+      }} ||| {{ sentence_por }}'
     metadata: *id001
-    name: equals-translation-xho-ben
-    reference: Equals translation (Xhosa into Bengali)
-  c00e1eb0-acbf-44dd-81bb-4a102225ff3b: !Template
+    name: translate-this-zho_simpl-por
+    reference: Translate this from X to Y (simplified Chinese into Brazilian Portuguese)
+  b7af2a3b-bfa5-4649-bcdb-7c570edc7264: !Template
     answer_choices: null
-    id: c00e1eb0-acbf-44dd-81bb-4a102225ff3b
-    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Assamese: ||| {{ sentence_asm
+    id: b7af2a3b-bfa5-4649-bcdb-7c570edc7264
+    jinja: 'Translate this from Wolof into Vietnamese: {{ sentence_wol }} ||| {{ sentence_vie
       }}'
     metadata: *id001
-    name: equals-translation-zho_trad-asm
-    reference: Equals translation (traditional Chinese into Assamese)
-  c047fb0d-0768-4e8f-bbe5-4595d2e42a69: !Template
+    name: translate-this-wol-vie
+    reference: Translate this from X to Y (Wolof into Vietnamese)
+  b7f35f3a-e89f-43a0-bae6-ec0672062540: !Template
     answer_choices: null
-    id: c047fb0d-0768-4e8f-bbe5-4595d2e42a69
-    jinja: 'Tamil: {{ sentence_tam }} = Zulu: ||| {{ sentence_zul }}'
-    metadata: *id001
-    name: equals-translation-tam-zul
-    reference: Equals translation (Tamil into Zulu)
-  c1320dfd-f39b-4a1e-8256-1c165f4ea322: !Template
-    answer_choices: null
-    id: c1320dfd-f39b-4a1e-8256-1c165f4ea322
-    jinja: 'Urdu: {{ sentence_urd }} = Assamese: ||| {{ sentence_asm }}'
+    id: b7f35f3a-e89f-43a0-bae6-ec0672062540
+    jinja: 'Translate this from Igbo into Gujarati: {{ sentence_ibo }} ||| {{ sentence_guj
+      }}'
     metadata: *id001
-    name: equals-translation-urd-asm
-    reference: Equals translation (Urdu into Assamese)
-  c14875da-6aff-4f65-a7fb-2d318b40cb72: !Template
+    name: translate-this-ibo-guj
+    reference: Translate this from X to Y (Igbo into Gujarati)
+  b7fee367-2fd6-4ed8-9be0-e95846b302f3: !Template
     answer_choices: null
-    id: c14875da-6aff-4f65-a7fb-2d318b40cb72
-    jinja: 'Oriya: {{ sentence_ory }} = Igbo: ||| {{ sentence_ibo }}'
+    id: b7fee367-2fd6-4ed8-9be0-e95846b302f3
+    jinja: 'Translate this from French into Urdu: {{ sentence_fra }} ||| {{ sentence_urd
+      }}'
     metadata: *id001
-    name: equals-translation-ory-ibo
-    reference: Equals translation (Oriya into Igbo)
-  c1a28c20-6b8a-4e6a-a5da-13007a213f6d: !Template
+    name: translate-this-fra-urd
+    reference: Translate this from X to Y (French into Urdu)
+  b85efa95-788e-4883-adc8-b8cdc4b4e838: !Template
     answer_choices: null
-    id: c1a28c20-6b8a-4e6a-a5da-13007a213f6d
-    jinja: 'Bengali: {{ sentence_ben }} = Indonesian: ||| {{ sentence_ind }}'
+    id: b85efa95-788e-4883-adc8-b8cdc4b4e838
+    jinja: 'Translate this from traditional Chinese into Tamil: {{ sentence_zho_trad
+      }} ||| {{ sentence_tam }}'
     metadata: *id001
-    name: equals-translation-ben-ind
-    reference: Equals translation (Bengali into Indonesian)
-  c1aa2c68-58a0-4d34-a2e4-6b0012d441dc: !Template
+    name: translate-this-zho_trad-tam
+    reference: Translate this from X to Y (traditional Chinese into Tamil)
+  b8d3787e-ef62-473a-be59-b67377503ca9: !Template
     answer_choices: null
-    id: c1aa2c68-58a0-4d34-a2e4-6b0012d441dc
-    jinja: 'Bengali: {{ sentence_ben }} = Zulu: ||| {{ sentence_zul }}'
+    id: b8d3787e-ef62-473a-be59-b67377503ca9
+    jinja: 'Translate this from Nepali into Hindi: {{ sentence_npi }} ||| {{ sentence_hin
+      }}'
     metadata: *id001
-    name: equals-translation-ben-zul
-    reference: Equals translation (Bengali into Zulu)
-  c2180838-e217-4efb-99a8-b3a57b81c1d1: !Template
+    name: translate-this-npi-hin
+    reference: Translate this from X to Y (Nepali into Hindi)
+  b96fffa6-7548-409d-9584-8139fec0e24a: !Template
     answer_choices: null
-    id: c2180838-e217-4efb-99a8-b3a57b81c1d1
-    jinja: 'Northern Sotho: {{ sentence_nso }} = Kannada: ||| {{ sentence_kan }}'
+    id: b96fffa6-7548-409d-9584-8139fec0e24a
+    jinja: 'Translate this from Arabic into Kannada: {{ sentence_ara }} ||| {{ sentence_kan
+      }}'
     metadata: *id001
-    name: equals-translation-nso-kan
-    reference: Equals translation (Northern Sotho into Kannada)
-  c225472b-ec5b-47a3-862c-bb50c107989b: !Template
+    name: translate-this-ara-kan
+    reference: Translate this from X to Y (Arabic into Kannada)
+  b9808c73-cea3-4c69-909f-bf64ae0c3905: !Template
     answer_choices: null
-    id: c225472b-ec5b-47a3-862c-bb50c107989b
-    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Igbo: ||| {{ sentence_ibo
+    id: b9808c73-cea3-4c69-909f-bf64ae0c3905
+    jinja: 'Translate this from Assamese into Nepali: {{ sentence_asm }} ||| {{ sentence_npi
       }}'
     metadata: *id001
-    name: equals-translation-zho_trad-ibo
-    reference: Equals translation (traditional Chinese into Igbo)
-  c271466d-8ab8-471d-8b46-15ce08f101d4: !Template
+    name: translate-this-asm-npi
+    reference: Translate this from X to Y (Assamese into Nepali)
+  b9e30bb3-c5e6-48de-b90d-fd72e63398bd: !Template
     answer_choices: null
-    id: c271466d-8ab8-471d-8b46-15ce08f101d4
-    jinja: 'Hindi: {{ sentence_hin }} = Oriya: ||| {{ sentence_ory }}'
+    id: b9e30bb3-c5e6-48de-b90d-fd72e63398bd
+    jinja: 'Translate this from Northern Sotho into Tamil: {{ sentence_nso }} |||
+      {{ sentence_tam }}'
     metadata: *id001
-    name: equals-translation-hin-ory
-    reference: Equals translation (Hindi into Oriya)
-  c299650c-a86c-44c4-8684-bac62fd066f7: !Template
+    name: translate-this-nso-tam
+    reference: Translate this from X to Y (Northern Sotho into Tamil)
+  baa4b2ee-0bc0-477b-90a7-bac179a92361: !Template
     answer_choices: null
-    id: c299650c-a86c-44c4-8684-bac62fd066f7
-    jinja: 'Catalan: {{ sentence_cat }} = Igbo: ||| {{ sentence_ibo }}'
+    id: baa4b2ee-0bc0-477b-90a7-bac179a92361
+    jinja: 'Translate this from Lingala into Northern Sotho: {{ sentence_lin }} |||
+      {{ sentence_nso }}'
     metadata: *id001
-    name: equals-translation-cat-ibo
-    reference: Equals translation (Catalan into Igbo)
-  c2a514a4-a3c5-47b0-8022-4235126bd4c4: !Template
+    name: translate-this-lin-nso
+    reference: Translate this from X to Y (Lingala into Northern Sotho)
+  bac65a21-0bb8-4214-81c1-2b1cdf6ad098: !Template
     answer_choices: null
-    id: c2a514a4-a3c5-47b0-8022-4235126bd4c4
-    jinja: 'Hindi: {{ sentence_hin }} = Arabic: ||| {{ sentence_ara }}'
+    id: bac65a21-0bb8-4214-81c1-2b1cdf6ad098
+    jinja: 'Translate this from Latin American Spanish into Arabic: {{ sentence_spa
+      }} ||| {{ sentence_ara }}'
     metadata: *id001
-    name: equals-translation-hin-ara
-    reference: Equals translation (Hindi into Arabic)
-  c2b18cfb-e37f-4667-9115-29435b0507fc: !Template
+    name: translate-this-spa-ara
+    reference: Translate this from X to Y (Latin American Spanish into Arabic)
+  bbc286aa-6cfd-453e-9e7f-b485c62a4b96: !Template
     answer_choices: null
-    id: c2b18cfb-e37f-4667-9115-29435b0507fc
-    jinja: 'Assamese: {{ sentence_asm }} = Punjabi: ||| {{ sentence_pan }}'
+    id: bbc286aa-6cfd-453e-9e7f-b485c62a4b96
+    jinja: 'Translate this from Gujarati into Kannada: {{ sentence_guj }} ||| {{ sentence_kan
+      }}'
     metadata: *id001
-    name: equals-translation-asm-pan
-    reference: Equals translation (Assamese into Punjabi)
-  c2ea7894-834b-4cf4-a9fb-c24d0423ad84: !Template
+    name: translate-this-guj-kan
+    reference: Translate this from X to Y (Gujarati into Kannada)
+  bc869c1f-3185-42d4-abe2-7fcf71262f27: !Template
     answer_choices: null
-    id: c2ea7894-834b-4cf4-a9fb-c24d0423ad84
-    jinja: 'Marathi: {{ sentence_mar }} = Malayalam: ||| {{ sentence_mal }}'
+    id: bc869c1f-3185-42d4-abe2-7fcf71262f27
+    jinja: 'Translate this from Brazilian Portuguese into Catalan: {{ sentence_por
+      }} ||| {{ sentence_cat }}'
     metadata: *id001
-    name: equals-translation-mar-mal
-    reference: Equals translation (Marathi into Malayalam)
-  c40e0d66-01e8-4863-8ae8-670b18a685e6: !Template
+    name: translate-this-por-cat
+    reference: Translate this from X to Y (Brazilian Portuguese into Catalan)
+  bcc746ba-fbe4-42ae-927f-b632b68d8d04: !Template
     answer_choices: null
-    id: c40e0d66-01e8-4863-8ae8-670b18a685e6
-    jinja: 'Tamil: {{ sentence_tam }} = Vietnamese: ||| {{ sentence_vie }}'
+    id: bcc746ba-fbe4-42ae-927f-b632b68d8d04
+    jinja: 'Translate this from Latin American Spanish into Swahili: {{ sentence_spa
+      }} ||| {{ sentence_swh }}'
     metadata: *id001
-    name: equals-translation-tam-vie
-    reference: Equals translation (Tamil into Vietnamese)
-  c42792ad-28b8-495e-91ff-d871d92972fa: !Template
+    name: translate-this-spa-swh
+    reference: Translate this from X to Y (Latin American Spanish into Swahili)
+  bdff0e56-799a-42ed-b916-6d63a68745ee: !Template
     answer_choices: null
-    id: c42792ad-28b8-495e-91ff-d871d92972fa
-    jinja: 'Telugu: {{ sentence_tel }} = Brazilian Portuguese: ||| {{ sentence_por
-      }}'
+    id: bdff0e56-799a-42ed-b916-6d63a68745ee
+    jinja: 'Translate this from Catalan into Vietnamese: {{ sentence_cat }} ||| {{
+      sentence_vie }}'
     metadata: *id001
-    name: equals-translation-tel-por
-    reference: Equals translation (Telugu into Brazilian Portuguese)
-  c42867e1-9922-4db6-b35c-a5bcd45dd43c: !Template
+    name: translate-this-cat-vie
+    reference: Translate this from X to Y (Catalan into Vietnamese)
+  be9512b4-ac2c-43c9-8719-80cbb5dfc79e: !Template
     answer_choices: null
-    id: c42867e1-9922-4db6-b35c-a5bcd45dd43c
-    jinja: 'Assamese: {{ sentence_asm }} = Hindi: ||| {{ sentence_hin }}'
+    id: be9512b4-ac2c-43c9-8719-80cbb5dfc79e
+    jinja: 'Translate this from Vietnamese into Wolof: {{ sentence_vie }} ||| {{ sentence_wol
+      }}'
     metadata: *id001
-    name: equals-translation-asm-hin
-    reference: Equals translation (Assamese into Hindi)
-  c47e0673-e2be-42a8-862f-89502814924d: !Template
+    name: translate-this-vie-wol
+    reference: Translate this from X to Y (Vietnamese into Wolof)
+  bed1651d-02e8-4de9-8780-68fec60e00e6: !Template
     answer_choices: null
-    id: c47e0673-e2be-42a8-862f-89502814924d
-    jinja: 'Urdu: {{ sentence_urd }} = French: ||| {{ sentence_fra }}'
+    id: bed1651d-02e8-4de9-8780-68fec60e00e6
+    jinja: 'Translate this from traditional Chinese into Assamese: {{ sentence_zho_trad
+      }} ||| {{ sentence_asm }}'
     metadata: *id001
-    name: equals-translation-urd-fra
-    reference: Equals translation (Urdu into French)
-  c4c114f8-41bf-4b6c-8061-1087eda6ae31: !Template
+    name: translate-this-zho_trad-asm
+    reference: Translate this from X to Y (traditional Chinese into Assamese)
+  bee592e1-2209-413b-a665-30e4b15fb8d1: !Template
     answer_choices: null
-    id: c4c114f8-41bf-4b6c-8061-1087eda6ae31
-    jinja: 'English: {{ sentence_eng }} = Igbo: ||| {{ sentence_ibo }}'
+    id: bee592e1-2209-413b-a665-30e4b15fb8d1
+    jinja: 'Translate this from Tamil into Latin American Spanish: {{ sentence_tam
+      }} ||| {{ sentence_spa }}'
     metadata: *id001
-    name: equals-translation-eng-ibo
-    reference: Equals translation (English into Igbo)
-  c5852b14-0d8a-438f-8714-95fa200a41f2: !Template
+    name: translate-this-tam-spa
+    reference: Translate this from X to Y (Tamil into Latin American Spanish)
+  bef6ce4f-87fd-4e8e-98b0-5342972fcc54: !Template
     answer_choices: null
-    id: c5852b14-0d8a-438f-8714-95fa200a41f2
-    jinja: 'Hindi: {{ sentence_hin }} = Nepali: ||| {{ sentence_npi }}'
+    id: bef6ce4f-87fd-4e8e-98b0-5342972fcc54
+    jinja: 'Translate this from Assamese into Xhosa: {{ sentence_asm }} ||| {{ sentence_xho
+      }}'
     metadata: *id001
-    name: equals-translation-hin-npi
-    reference: Equals translation (Hindi into Nepali)
-  c590140a-c316-4165-a64b-c4e3ab7755b0: !Template
+    name: translate-this-asm-xho
+    reference: Translate this from X to Y (Assamese into Xhosa)
+  bf23419e-9e27-4be3-a218-f7c2669ba3a8: !Template
     answer_choices: null
-    id: c590140a-c316-4165-a64b-c4e3ab7755b0
-    jinja: 'Malayalam: {{ sentence_mal }} = Urdu: ||| {{ sentence_urd }}'
+    id: bf23419e-9e27-4be3-a218-f7c2669ba3a8
+    jinja: 'Translate this from Malayalam into Gujarati: {{ sentence_mal }} ||| {{
+      sentence_guj }}'
     metadata: *id001
-    name: equals-translation-mal-urd
-    reference: Equals translation (Malayalam into Urdu)
-  c5c74175-19b2-4c18-ab8d-a8977deb62c1: !Template
+    name: translate-this-mal-guj
+    reference: Translate this from X to Y (Malayalam into Gujarati)
+  bf6e4b98-ccc4-4461-90a5-38d84d7658b8: !Template
     answer_choices: null
-    id: c5c74175-19b2-4c18-ab8d-a8977deb62c1
-    jinja: 'Lingala: {{ sentence_lin }} = Wolof: ||| {{ sentence_wol }}'
+    id: bf6e4b98-ccc4-4461-90a5-38d84d7658b8
+    jinja: 'Translate this from Swahili into Gujarati: {{ sentence_swh }} ||| {{ sentence_guj
+      }}'
     metadata: *id001
-    name: equals-translation-lin-wol
-    reference: Equals translation (Lingala into Wolof)
-  c6435d14-b2f4-4a4b-b47f-187975fb063f: !Template
+    name: translate-this-swh-guj
+    reference: Translate this from X to Y (Swahili into Gujarati)
+  bfb3f005-981d-4a04-834d-318cec54411e: !Template
     answer_choices: null
-    id: c6435d14-b2f4-4a4b-b47f-187975fb063f
-    jinja: 'Hindi: {{ sentence_hin }} = Latin American Spanish: ||| {{ sentence_spa
+    id: bfb3f005-981d-4a04-834d-318cec54411e
+    jinja: 'Translate this from Telugu into Igbo: {{ sentence_tel }} ||| {{ sentence_ibo
       }}'
     metadata: *id001
-    name: equals-translation-hin-spa
-    reference: Equals translation (Hindi into Latin American Spanish)
-  c6b39020-8efd-46c4-a07f-64b3021a0178: !Template
+    name: translate-this-tel-ibo
+    reference: Translate this from X to Y (Telugu into Igbo)
+  bfc6b533-bde7-42ed-9988-4c71ffea29b6: !Template
     answer_choices: null
-    id: c6b39020-8efd-46c4-a07f-64b3021a0178
-    jinja: 'Xhosa: {{ sentence_xho }} = Yoruba: ||| {{ sentence_yor }}'
+    id: bfc6b533-bde7-42ed-9988-4c71ffea29b6
+    jinja: 'Translate this from Latin American Spanish into Xhosa: {{ sentence_spa
+      }} ||| {{ sentence_xho }}'
     metadata: *id001
-    name: equals-translation-xho-yor
-    reference: Equals translation (Xhosa into Yoruba)
-  c6e35be4-3628-4ee2-9f7f-fc93673710da: !Template
+    name: translate-this-spa-xho
+    reference: Translate this from X to Y (Latin American Spanish into Xhosa)
+  c07621a9-4c51-4220-9475-27cb4b11873c: !Template
     answer_choices: null
-    id: c6e35be4-3628-4ee2-9f7f-fc93673710da
-    jinja: 'Latin American Spanish: {{ sentence_spa }} = English: ||| {{ sentence_eng
+    id: c07621a9-4c51-4220-9475-27cb4b11873c
+    jinja: 'Translate this from Igbo into English: {{ sentence_ibo }} ||| {{ sentence_eng
       }}'
     metadata: *id001
-    name: equals-translation-spa-eng
-    reference: Equals translation (Latin American Spanish into English)
-  c728b795-3d41-4008-88bd-59a8d878521f: !Template
+    name: translate-this-ibo-eng
+    reference: Translate this from X to Y (Igbo into English)
+  c09ddc7f-36c7-4852-bd51-561bc76fcbe8: !Template
     answer_choices: null
-    id: c728b795-3d41-4008-88bd-59a8d878521f
-    jinja: 'Marathi: {{ sentence_mar }} = Catalan: ||| {{ sentence_cat }}'
+    id: c09ddc7f-36c7-4852-bd51-561bc76fcbe8
+    jinja: 'Translate this from Tamil into Zulu: {{ sentence_tam }} ||| {{ sentence_zul
+      }}'
     metadata: *id001
-    name: equals-translation-mar-cat
-    reference: Equals translation (Marathi into Catalan)
-  c7bf4782-1f56-4aeb-a630-9f9d3b6a3ceb: !Template
+    name: translate-this-tam-zul
+    reference: Translate this from X to Y (Tamil into Zulu)
+  c0ba5208-7733-40fd-bd21-bd707c0dd4cf: !Template
     answer_choices: null
-    id: c7bf4782-1f56-4aeb-a630-9f9d3b6a3ceb
-    jinja: 'French: {{ sentence_fra }} = Catalan: ||| {{ sentence_cat }}'
+    id: c0ba5208-7733-40fd-bd21-bd707c0dd4cf
+    jinja: 'Translate this from Lingala into Wolof: {{ sentence_lin }} ||| {{ sentence_wol
+      }}'
     metadata: *id001
-    name: equals-translation-fra-cat
-    reference: Equals translation (French into Catalan)
-  c7db0d37-f0e4-4a0e-944d-887354473c7e: !Template
+    name: translate-this-lin-wol
+    reference: Translate this from X to Y (Lingala into Wolof)
+  c0c07e77-fe99-437f-84de-452a9cdac57d: !Template
     answer_choices: null
-    id: c7db0d37-f0e4-4a0e-944d-887354473c7e
-    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Arabic: ||| {{ sentence_ara
+    id: c0c07e77-fe99-437f-84de-452a9cdac57d
+    jinja: 'Translate this from Marathi into Xhosa: {{ sentence_mar }} ||| {{ sentence_xho
       }}'
     metadata: *id001
-    name: equals-translation-zho_trad-ara
-    reference: Equals translation (traditional Chinese into Arabic)
-  c889f318-d4c4-41f8-9a8a-d1a560f98c61: !Template
+    name: translate-this-mar-xho
+    reference: Translate this from X to Y (Marathi into Xhosa)
+  c131c852-ed64-43ac-8e5d-52012e58ade1: !Template
     answer_choices: null
-    id: c889f318-d4c4-41f8-9a8a-d1a560f98c61
-    jinja: 'Gujarati: {{ sentence_guj }} = Hindi: ||| {{ sentence_hin }}'
+    id: c131c852-ed64-43ac-8e5d-52012e58ade1
+    jinja: 'Translate this from Indonesian into Yoruba: {{ sentence_ind }} ||| {{
+      sentence_yor }}'
     metadata: *id001
-    name: equals-translation-guj-hin
-    reference: Equals translation (Gujarati into Hindi)
-  c908acda-dd90-48eb-aaea-6d24f2c1cefa: !Template
+    name: translate-this-ind-yor
+    reference: Translate this from X to Y (Indonesian into Yoruba)
+  c1c59337-73e7-40b5-aae0-e323df1bcee8: !Template
     answer_choices: null
-    id: c908acda-dd90-48eb-aaea-6d24f2c1cefa
-    jinja: 'Latin American Spanish: {{ sentence_spa }} = Vietnamese: ||| {{ sentence_vie
+    id: c1c59337-73e7-40b5-aae0-e323df1bcee8
+    jinja: 'Translate this from Xhosa into Gujarati: {{ sentence_xho }} ||| {{ sentence_guj
       }}'
     metadata: *id001
-    name: equals-translation-spa-vie
-    reference: Equals translation (Latin American Spanish into Vietnamese)
-  c90e675f-f852-4a45-a123-dac6c8b61bd1: !Template
+    name: translate-this-xho-guj
+    reference: Translate this from X to Y (Xhosa into Gujarati)
+  c1dfaa04-fcda-48ce-a733-2659deadcc27: !Template
     answer_choices: null
-    id: c90e675f-f852-4a45-a123-dac6c8b61bd1
-    jinja: 'Yoruba: {{ sentence_yor }} = Latin American Spanish: ||| {{ sentence_spa
-      }}'
+    id: c1dfaa04-fcda-48ce-a733-2659deadcc27
+    jinja: 'Translate this from Gujarati into traditional Chinese: {{ sentence_guj
+      }} ||| {{ sentence_zho_trad }}'
     metadata: *id001
-    name: equals-translation-yor-spa
-    reference: Equals translation (Yoruba into Latin American Spanish)
-  c9372803-6fe9-4f52-85b8-7aabd22c0fe0: !Template
+    name: translate-this-guj-zho_trad
+    reference: Translate this from X to Y (Gujarati into traditional Chinese)
+  c1ea19bd-c454-4438-a435-867fbcfe6c04: !Template
     answer_choices: null
-    id: c9372803-6fe9-4f52-85b8-7aabd22c0fe0
-    jinja: 'Nepali: {{ sentence_npi }} = Northern Sotho: ||| {{ sentence_nso }}'
+    id: c1ea19bd-c454-4438-a435-867fbcfe6c04
+    jinja: 'Translate this from Assamese into Zulu: {{ sentence_asm }} ||| {{ sentence_zul
+      }}'
     metadata: *id001
-    name: equals-translation-npi-nso
-    reference: Equals translation (Nepali into Northern Sotho)
-  c946955e-c0f5-49a7-99c1-c56d53c2d4df: !Template
+    name: translate-this-asm-zul
+    reference: Translate this from X to Y (Assamese into Zulu)
+  c23b192d-c372-47c0-8ceb-b405d74dd1d2: !Template
     answer_choices: null
-    id: c946955e-c0f5-49a7-99c1-c56d53c2d4df
-    jinja: 'Marathi: {{ sentence_mar }} = Nepali: ||| {{ sentence_npi }}'
+    id: c23b192d-c372-47c0-8ceb-b405d74dd1d2
+    jinja: 'Translate this from traditional Chinese into Latin American Spanish: {{
+      sentence_zho_trad }} ||| {{ sentence_spa }}'
     metadata: *id001
-    name: equals-translation-mar-npi
-    reference: Equals translation (Marathi into Nepali)
-  c9540193-fc2d-48b4-be01-c0e8790a4e22: !Template
+    name: translate-this-zho_trad-spa
+    reference: Translate this from X to Y (traditional Chinese into Latin American
+      Spanish)
+  c25c6168-677d-408b-9f5f-c579361cfab7: !Template
     answer_choices: null
-    id: c9540193-fc2d-48b4-be01-c0e8790a4e22
-    jinja: 'Kannada: {{ sentence_kan }} = Latin American Spanish: ||| {{ sentence_spa
-      }}'
+    id: c25c6168-677d-408b-9f5f-c579361cfab7
+    jinja: 'Translate this from Arabic into Vietnamese: {{ sentence_ara }} ||| {{
+      sentence_vie }}'
     metadata: *id001
-    name: equals-translation-kan-spa
-    reference: Equals translation (Kannada into Latin American Spanish)
-  c98e2ae0-ed1c-427a-9917-1e5f655701c4: !Template
+    name: translate-this-ara-vie
+    reference: Translate this from X to Y (Arabic into Vietnamese)
+  c260c082-9689-42f7-af49-d218d9524f86: !Template
     answer_choices: null
-    id: c98e2ae0-ed1c-427a-9917-1e5f655701c4
-    jinja: 'Nepali: {{ sentence_npi }} = Malayalam: ||| {{ sentence_mal }}'
+    id: c260c082-9689-42f7-af49-d218d9524f86
+    jinja: 'Translate this from Gujarati into Brazilian Portuguese: {{ sentence_guj
+      }} ||| {{ sentence_por }}'
     metadata: *id001
-    name: equals-translation-npi-mal
-    reference: Equals translation (Nepali into Malayalam)
-  c99521b0-b76c-4e90-86fe-ab6533131f94: !Template
+    name: translate-this-guj-por
+    reference: Translate this from X to Y (Gujarati into Brazilian Portuguese)
+  c2959c4d-fcc2-410c-8f19-155efc95dd08: !Template
     answer_choices: null
-    id: c99521b0-b76c-4e90-86fe-ab6533131f94
-    jinja: 'English: {{ sentence_eng }} = simplified Chinese: ||| {{ sentence_zho_simpl
+    id: c2959c4d-fcc2-410c-8f19-155efc95dd08
+    jinja: 'Translate this from French into Gujarati: {{ sentence_fra }} ||| {{ sentence_guj
       }}'
     metadata: *id001
-    name: equals-translation-eng-zho_simpl
-    reference: Equals translation (English into simplified Chinese)
-  c99e054c-58b4-42fa-b0de-bcc4d8143711: !Template
+    name: translate-this-fra-guj
+    reference: Translate this from X to Y (French into Gujarati)
+  c2ba86d4-8567-41c8-b7c6-b1d87ac673b1: !Template
     answer_choices: null
-    id: c99e054c-58b4-42fa-b0de-bcc4d8143711
-    jinja: 'Nepali: {{ sentence_npi }} = Marathi: ||| {{ sentence_mar }}'
+    id: c2ba86d4-8567-41c8-b7c6-b1d87ac673b1
+    jinja: 'Translate this from Igbo into simplified Chinese: {{ sentence_ibo }} |||
+      {{ sentence_zho_simpl }}'
     metadata: *id001
-    name: equals-translation-npi-mar
-    reference: Equals translation (Nepali into Marathi)
-  c9c368bd-6353-462d-9c14-24309adfc1e7: !Template
+    name: translate-this-ibo-zho_simpl
+    reference: Translate this from X to Y (Igbo into simplified Chinese)
+  c2c5fa4c-2686-47c9-9076-6e303938bc1a: !Template
     answer_choices: null
-    id: c9c368bd-6353-462d-9c14-24309adfc1e7
-    jinja: 'Arabic: {{ sentence_ara }} = Brazilian Portuguese: ||| {{ sentence_por
-      }}'
+    id: c2c5fa4c-2686-47c9-9076-6e303938bc1a
+    jinja: 'Translate this from Brazilian Portuguese into Malayalam: {{ sentence_por
+      }} ||| {{ sentence_mal }}'
     metadata: *id001
-    name: equals-translation-ara-por
-    reference: Equals translation (Arabic into Brazilian Portuguese)
-  c9e8b6e4-bfac-40ef-b92a-39c0debcfa86: !Template
+    name: translate-this-por-mal
+    reference: Translate this from X to Y (Brazilian Portuguese into Malayalam)
+  c310580b-91e2-45e3-b19b-3bad9c4f45bf: !Template
     answer_choices: null
-    id: c9e8b6e4-bfac-40ef-b92a-39c0debcfa86
-    jinja: 'Kannada: {{ sentence_kan }} = traditional Chinese: ||| {{ sentence_zho_trad
+    id: c310580b-91e2-45e3-b19b-3bad9c4f45bf
+    jinja: 'Translate this from Urdu into Igbo: {{ sentence_urd }} ||| {{ sentence_ibo
       }}'
     metadata: *id001
-    name: equals-translation-kan-zho_trad
-    reference: Equals translation (Kannada into traditional Chinese)
-  ca0dd0c1-44bc-40d8-99b9-1a4433a538a7: !Template
+    name: translate-this-urd-ibo
+    reference: Translate this from X to Y (Urdu into Igbo)
+  c327f28f-64e6-4a5b-996e-f3cbc977d080: !Template
     answer_choices: null
-    id: ca0dd0c1-44bc-40d8-99b9-1a4433a538a7
-    jinja: 'Igbo: {{ sentence_ibo }} = Punjabi: ||| {{ sentence_pan }}'
+    id: c327f28f-64e6-4a5b-996e-f3cbc977d080
+    jinja: 'Translate this from Vietnamese into Assamese: {{ sentence_vie }} ||| {{
+      sentence_asm }}'
     metadata: *id001
-    name: equals-translation-ibo-pan
-    reference: Equals translation (Igbo into Punjabi)
-  ca9f7d9c-6681-4e62-b956-43a871806a5f: !Template
+    name: translate-this-vie-asm
+    reference: Translate this from X to Y (Vietnamese into Assamese)
+  c372c109-8494-485c-8e10-fedbc7ad7f14: !Template
     answer_choices: null
-    id: ca9f7d9c-6681-4e62-b956-43a871806a5f
-    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Igbo: ||| {{ sentence_ibo
+    id: c372c109-8494-485c-8e10-fedbc7ad7f14
+    jinja: 'Translate this from Arabic into Gujarati: {{ sentence_ara }} ||| {{ sentence_guj
       }}'
     metadata: *id001
-    name: equals-translation-zho_simpl-ibo
-    reference: Equals translation (simplified Chinese into Igbo)
-  cac00a10-c7bc-48ed-8ad3-e0d9442e1232: !Template
+    name: translate-this-ara-guj
+    reference: Translate this from X to Y (Arabic into Gujarati)
+  c3826bed-1888-4a92-a2d0-2f2f4e2ac025: !Template
     answer_choices: null
-    id: cac00a10-c7bc-48ed-8ad3-e0d9442e1232
-    jinja: 'Marathi: {{ sentence_mar }} = Telugu: ||| {{ sentence_tel }}'
+    id: c3826bed-1888-4a92-a2d0-2f2f4e2ac025
+    jinja: 'Translate this from Xhosa into Latin American Spanish: {{ sentence_xho
+      }} ||| {{ sentence_spa }}'
     metadata: *id001
-    name: equals-translation-mar-tel
-    reference: Equals translation (Marathi into Telugu)
-  cb0c7b10-d7df-4020-98c8-dccc37f2e381: !Template
+    name: translate-this-xho-spa
+    reference: Translate this from X to Y (Xhosa into Latin American Spanish)
+  c3a8368e-f278-4c3e-90f2-f2b125b68b38: !Template
     answer_choices: null
-    id: cb0c7b10-d7df-4020-98c8-dccc37f2e381
-    jinja: 'Indonesian: {{ sentence_ind }} = Xhosa: ||| {{ sentence_xho }}'
+    id: c3a8368e-f278-4c3e-90f2-f2b125b68b38
+    jinja: 'Translate this from traditional Chinese into Swahili: {{ sentence_zho_trad
+      }} ||| {{ sentence_swh }}'
     metadata: *id001
-    name: equals-translation-ind-xho
-    reference: Equals translation (Indonesian into Xhosa)
-  cb483723-bcaf-4aec-813a-2f4aff35772d: !Template
+    name: translate-this-zho_trad-swh
+    reference: Translate this from X to Y (traditional Chinese into Swahili)
+  c3c80ccb-6059-41af-a900-ca07b521f72d: !Template
     answer_choices: null
-    id: cb483723-bcaf-4aec-813a-2f4aff35772d
-    jinja: 'Bengali: {{ sentence_ben }} = Oriya: ||| {{ sentence_ory }}'
+    id: c3c80ccb-6059-41af-a900-ca07b521f72d
+    jinja: 'Translate this from Gujarati into Assamese: {{ sentence_guj }} ||| {{
+      sentence_asm }}'
     metadata: *id001
-    name: equals-translation-ben-ory
-    reference: Equals translation (Bengali into Oriya)
-  cb994647-dcf1-467e-a948-50a9b599bc91: !Template
+    name: translate-this-guj-asm
+    reference: Translate this from X to Y (Gujarati into Assamese)
+  c3c82f0b-48c7-4534-934e-ca0a584889f3: !Template
     answer_choices: null
-    id: cb994647-dcf1-467e-a948-50a9b599bc91
-    jinja: 'Xhosa: {{ sentence_xho }} = Punjabi: ||| {{ sentence_pan }}'
+    id: c3c82f0b-48c7-4534-934e-ca0a584889f3
+    jinja: 'Translate this from Malayalam into Northern Sotho: {{ sentence_mal }}
+      ||| {{ sentence_nso }}'
     metadata: *id001
-    name: equals-translation-xho-pan
-    reference: Equals translation (Xhosa into Punjabi)
-  cbaa1587-7f01-4016-8834-2f72f8ebb2ac: !Template
+    name: translate-this-mal-nso
+    reference: Translate this from X to Y (Malayalam into Northern Sotho)
+  c519158a-47fd-4a94-b57a-75ff43e81fc1: !Template
     answer_choices: null
-    id: cbaa1587-7f01-4016-8834-2f72f8ebb2ac
-    jinja: 'Xhosa: {{ sentence_xho }} = Gujarati: ||| {{ sentence_guj }}'
+    id: c519158a-47fd-4a94-b57a-75ff43e81fc1
+    jinja: 'Translate this from Brazilian Portuguese into Yoruba: {{ sentence_por
+      }} ||| {{ sentence_yor }}'
     metadata: *id001
-    name: equals-translation-xho-guj
-    reference: Equals translation (Xhosa into Gujarati)
-  cc084ffb-7cc5-4d1f-acf3-f049c4b39a56: !Template
+    name: translate-this-por-yor
+    reference: Translate this from X to Y (Brazilian Portuguese into Yoruba)
+  c51f0a49-45e4-45cf-a463-7b33dd8e6164: !Template
     answer_choices: null
-    id: cc084ffb-7cc5-4d1f-acf3-f049c4b39a56
-    jinja: 'Urdu: {{ sentence_urd }} = Vietnamese: ||| {{ sentence_vie }}'
+    id: c51f0a49-45e4-45cf-a463-7b33dd8e6164
+    jinja: 'Translate this from Urdu into Kannada: {{ sentence_urd }} ||| {{ sentence_kan
+      }}'
     metadata: *id001
-    name: equals-translation-urd-vie
-    reference: Equals translation (Urdu into Vietnamese)
-  cc4eb279-4ef4-4c44-8fde-49d398be7b8b: !Template
+    name: translate-this-urd-kan
+    reference: Translate this from X to Y (Urdu into Kannada)
+  c5961da3-479a-4171-b157-b6de90da3ae0: !Template
     answer_choices: null
-    id: cc4eb279-4ef4-4c44-8fde-49d398be7b8b
-    jinja: 'French: {{ sentence_fra }} = Punjabi: ||| {{ sentence_pan }}'
+    id: c5961da3-479a-4171-b157-b6de90da3ae0
+    jinja: 'Translate this from Bengali into Latin American Spanish: {{ sentence_ben
+      }} ||| {{ sentence_spa }}'
     metadata: *id001
-    name: equals-translation-fra-pan
-    reference: Equals translation (French into Punjabi)
-  cc6e5466-26ae-4efa-a38c-cef389dd71cb: !Template
+    name: translate-this-ben-spa
+    reference: Translate this from X to Y (Bengali into Latin American Spanish)
+  c59dcc4c-1664-4fe9-8f8d-f35ab4149e0b: !Template
     answer_choices: null
-    id: cc6e5466-26ae-4efa-a38c-cef389dd71cb
-    jinja: 'Vietnamese: {{ sentence_vie }} = Swahili: ||| {{ sentence_swh }}'
+    id: c59dcc4c-1664-4fe9-8f8d-f35ab4149e0b
+    jinja: 'Translate this from Yoruba into Assamese: {{ sentence_yor }} ||| {{ sentence_asm
+      }}'
     metadata: *id001
-    name: equals-translation-vie-swh
-    reference: Equals translation (Vietnamese into Swahili)
-  ccd7a710-d083-4c85-beaf-fce6fa945886: !Template
+    name: translate-this-yor-asm
+    reference: Translate this from X to Y (Yoruba into Assamese)
+  c5f32375-f718-46c1-bd77-92ce34361bac: !Template
     answer_choices: null
-    id: ccd7a710-d083-4c85-beaf-fce6fa945886
-    jinja: 'French: {{ sentence_fra }} = Zulu: ||| {{ sentence_zul }}'
+    id: c5f32375-f718-46c1-bd77-92ce34361bac
+    jinja: 'Translate this from Punjabi into Hindi: {{ sentence_pan }} ||| {{ sentence_hin
+      }}'
     metadata: *id001
-    name: equals-translation-fra-zul
-    reference: Equals translation (French into Zulu)
-  ccdc7483-8d40-4414-a6a7-886b5f3b84da: !Template
+    name: translate-this-pan-hin
+    reference: Translate this from X to Y (Punjabi into Hindi)
+  c5f55a7f-f414-46f9-a747-e8dbf048d7c5: !Template
     answer_choices: null
-    id: ccdc7483-8d40-4414-a6a7-886b5f3b84da
-    jinja: 'Gujarati: {{ sentence_guj }} = French: ||| {{ sentence_fra }}'
+    id: c5f55a7f-f414-46f9-a747-e8dbf048d7c5
+    jinja: 'Translate this from Xhosa into Assamese: {{ sentence_xho }} ||| {{ sentence_asm
+      }}'
     metadata: *id001
-    name: equals-translation-guj-fra
-    reference: Equals translation (Gujarati into French)
-  cd7d8a2a-bea7-4417-90a6-1646900fa39f: !Template
+    name: translate-this-xho-asm
+    reference: Translate this from X to Y (Xhosa into Assamese)
+  c64f0476-79f3-44ce-aa6b-63f7ebcee2b9: !Template
     answer_choices: null
-    id: cd7d8a2a-bea7-4417-90a6-1646900fa39f
-    jinja: 'Zulu: {{ sentence_zul }} = Catalan: ||| {{ sentence_cat }}'
+    id: c64f0476-79f3-44ce-aa6b-63f7ebcee2b9
+    jinja: 'Translate this from Latin American Spanish into Tamil: {{ sentence_spa
+      }} ||| {{ sentence_tam }}'
     metadata: *id001
-    name: equals-translation-zul-cat
-    reference: Equals translation (Zulu into Catalan)
-  cd81f22b-9c45-4c66-994c-3dd52bd700a1: !Template
+    name: translate-this-spa-tam
+    reference: Translate this from X to Y (Latin American Spanish into Tamil)
+  c6c39b25-cd11-4490-b617-16099d1b1ec0: !Template
     answer_choices: null
-    id: cd81f22b-9c45-4c66-994c-3dd52bd700a1
-    jinja: 'Telugu: {{ sentence_tel }} = simplified Chinese: ||| {{ sentence_zho_simpl
+    id: c6c39b25-cd11-4490-b617-16099d1b1ec0
+    jinja: 'Translate this from Wolof into Telugu: {{ sentence_wol }} ||| {{ sentence_tel
       }}'
     metadata: *id001
-    name: equals-translation-tel-zho_simpl
-    reference: Equals translation (Telugu into simplified Chinese)
-  cd97fbab-186d-4153-a1b5-ad86ff40426e: !Template
+    name: translate-this-wol-tel
+    reference: Translate this from X to Y (Wolof into Telugu)
+  c6cd32aa-7516-4688-899b-0c09defabed1: !Template
     answer_choices: null
-    id: cd97fbab-186d-4153-a1b5-ad86ff40426e
-    jinja: 'Tamil: {{ sentence_tam }} = Punjabi: ||| {{ sentence_pan }}'
+    id: c6cd32aa-7516-4688-899b-0c09defabed1
+    jinja: 'Translate this from French into Catalan: {{ sentence_fra }} ||| {{ sentence_cat
+      }}'
     metadata: *id001
-    name: equals-translation-tam-pan
-    reference: Equals translation (Tamil into Punjabi)
-  cdb4aeab-0f4b-4a54-b6e1-60a062fe7c21: !Template
+    name: translate-this-fra-cat
+    reference: Translate this from X to Y (French into Catalan)
+  c72cdc58-8dd5-4c0e-a296-a0f58a1acb61: !Template
     answer_choices: null
-    id: cdb4aeab-0f4b-4a54-b6e1-60a062fe7c21
-    jinja: 'Zulu: {{ sentence_zul }} = English: ||| {{ sentence_eng }}'
+    id: c72cdc58-8dd5-4c0e-a296-a0f58a1acb61
+    jinja: 'Translate this from Bengali into Malayalam: {{ sentence_ben }} ||| {{
+      sentence_mal }}'
     metadata: *id001
-    name: equals-translation-zul-eng
-    reference: Equals translation (Zulu into English)
-  ce139326-89eb-424e-bdba-ff8f36b7a840: !Template
+    name: translate-this-ben-mal
+    reference: Translate this from X to Y (Bengali into Malayalam)
+  c7807104-8119-4534-835c-65c2279fee48: !Template
     answer_choices: null
-    id: ce139326-89eb-424e-bdba-ff8f36b7a840
-    jinja: 'Hindi: {{ sentence_hin }} = Yoruba: ||| {{ sentence_yor }}'
+    id: c7807104-8119-4534-835c-65c2279fee48
+    jinja: 'Translate this from traditional Chinese into Xhosa: {{ sentence_zho_trad
+      }} ||| {{ sentence_xho }}'
     metadata: *id001
-    name: equals-translation-hin-yor
-    reference: Equals translation (Hindi into Yoruba)
-  ce30dace-b242-4787-89f4-d4712f6d29b1: !Template
+    name: translate-this-zho_trad-xho
+    reference: Translate this from X to Y (traditional Chinese into Xhosa)
+  c8382594-eb6e-4ff0-8e19-6025489a7aee: !Template
     answer_choices: null
-    id: ce30dace-b242-4787-89f4-d4712f6d29b1
-    jinja: 'Xhosa: {{ sentence_xho }} = Telugu: ||| {{ sentence_tel }}'
+    id: c8382594-eb6e-4ff0-8e19-6025489a7aee
+    jinja: 'Translate this from traditional Chinese into Gujarati: {{ sentence_zho_trad
+      }} ||| {{ sentence_guj }}'
     metadata: *id001
-    name: equals-translation-xho-tel
-    reference: Equals translation (Xhosa into Telugu)
-  ce5382f7-06cb-4a5d-8f1b-5578c9d06049: !Template
+    name: translate-this-zho_trad-guj
+    reference: Translate this from X to Y (traditional Chinese into Gujarati)
+  c8f6a2e0-e634-457b-a3da-f80291a14cc9: !Template
     answer_choices: null
-    id: ce5382f7-06cb-4a5d-8f1b-5578c9d06049
-    jinja: 'Swahili: {{ sentence_swh }} = French: ||| {{ sentence_fra }}'
+    id: c8f6a2e0-e634-457b-a3da-f80291a14cc9
+    jinja: 'Translate this from Bengali into traditional Chinese: {{ sentence_ben
+      }} ||| {{ sentence_zho_trad }}'
     metadata: *id001
-    name: equals-translation-swh-fra
-    reference: Equals translation (Swahili into French)
-  ce7d2401-4198-4f1f-bf73-64d759864679: !Template
+    name: translate-this-ben-zho_trad
+    reference: Translate this from X to Y (Bengali into traditional Chinese)
+  c8fdc7d3-3380-46c5-91f8-318ac5944059: !Template
     answer_choices: null
-    id: ce7d2401-4198-4f1f-bf73-64d759864679
-    jinja: 'Telugu: {{ sentence_tel }} = Bengali: ||| {{ sentence_ben }}'
+    id: c8fdc7d3-3380-46c5-91f8-318ac5944059
+    jinja: 'Translate this from Vietnamese into Swahili: {{ sentence_vie }} ||| {{
+      sentence_swh }}'
     metadata: *id001
-    name: equals-translation-tel-ben
-    reference: Equals translation (Telugu into Bengali)
-  ce89e7a3-edf4-4694-8e69-b9f574057b9c: !Template
+    name: translate-this-vie-swh
+    reference: Translate this from X to Y (Vietnamese into Swahili)
+  c94984a4-eeec-488e-821a-799b3004e0e0: !Template
     answer_choices: null
-    id: ce89e7a3-edf4-4694-8e69-b9f574057b9c
-    jinja: 'Latin American Spanish: {{ sentence_spa }} = Punjabi: ||| {{ sentence_pan
+    id: c94984a4-eeec-488e-821a-799b3004e0e0
+    jinja: 'Translate this from Xhosa into French: {{ sentence_xho }} ||| {{ sentence_fra
       }}'
     metadata: *id001
-    name: equals-translation-spa-pan
-    reference: Equals translation (Latin American Spanish into Punjabi)
-  ce953ddd-9b53-424c-8687-a194c1477265: !Template
+    name: translate-this-xho-fra
+    reference: Translate this from X to Y (Xhosa into French)
+  c962e86b-42b4-468f-a015-780f6298d6be: !Template
     answer_choices: null
-    id: ce953ddd-9b53-424c-8687-a194c1477265
-    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Arabic: ||| {{ sentence_ara
+    id: c962e86b-42b4-468f-a015-780f6298d6be
+    jinja: 'Translate this from Nepali into Xhosa: {{ sentence_npi }} ||| {{ sentence_xho
       }}'
     metadata: *id001
-    name: equals-translation-zho_simpl-ara
-    reference: Equals translation (simplified Chinese into Arabic)
-  ceb42835-8618-4a54-b7de-78a5f5d74020: !Template
+    name: translate-this-npi-xho
+    reference: Translate this from X to Y (Nepali into Xhosa)
+  ca09537b-eafb-44af-be91-fc80435a98ee: !Template
     answer_choices: null
-    id: ceb42835-8618-4a54-b7de-78a5f5d74020
-    jinja: 'Arabic: {{ sentence_ara }} = Urdu: ||| {{ sentence_urd }}'
+    id: ca09537b-eafb-44af-be91-fc80435a98ee
+    jinja: 'Translate this from Tamil into Vietnamese: {{ sentence_tam }} ||| {{ sentence_vie
+      }}'
     metadata: *id001
-    name: equals-translation-ara-urd
-    reference: Equals translation (Arabic into Urdu)
-  cf71bd45-2502-4044-9210-41962ae0d231: !Template
+    name: translate-this-tam-vie
+    reference: Translate this from X to Y (Tamil into Vietnamese)
+  ca0a95d3-2e34-4ad3-8ece-c13c1809200d: !Template
     answer_choices: null
-    id: cf71bd45-2502-4044-9210-41962ae0d231
-    jinja: 'Assamese: {{ sentence_asm }} = Arabic: ||| {{ sentence_ara }}'
+    id: ca0a95d3-2e34-4ad3-8ece-c13c1809200d
+    jinja: 'Translate this from Tamil into Marathi: {{ sentence_tam }} ||| {{ sentence_mar
+      }}'
     metadata: *id001
-    name: equals-translation-asm-ara
-    reference: Equals translation (Assamese into Arabic)
-  cf76b738-c5d8-4c53-8a55-716238a8caaa: !Template
+    name: translate-this-tam-mar
+    reference: Translate this from X to Y (Tamil into Marathi)
+  ca4d4fbb-d705-439c-a2f6-2adc80dd9f1b: !Template
     answer_choices: null
-    id: cf76b738-c5d8-4c53-8a55-716238a8caaa
-    jinja: 'Telugu: {{ sentence_tel }} = Xhosa: ||| {{ sentence_xho }}'
+    id: ca4d4fbb-d705-439c-a2f6-2adc80dd9f1b
+    jinja: 'Translate this from Oriya into French: {{ sentence_ory }} ||| {{ sentence_fra
+      }}'
     metadata: *id001
-    name: equals-translation-tel-xho
-    reference: Equals translation (Telugu into Xhosa)
-  cf7aef1e-5dad-4a70-a40d-1b369cc9efda: !Template
+    name: translate-this-ory-fra
+    reference: Translate this from X to Y (Oriya into French)
+  ca593aef-eecd-4959-be8a-35d8c8cb0865: !Template
     answer_choices: null
-    id: cf7aef1e-5dad-4a70-a40d-1b369cc9efda
-    jinja: 'Catalan: {{ sentence_cat }} = Northern Sotho: ||| {{ sentence_nso }}'
+    id: ca593aef-eecd-4959-be8a-35d8c8cb0865
+    jinja: 'Translate this from Latin American Spanish into Northern Sotho: {{ sentence_spa
+      }} ||| {{ sentence_nso }}'
     metadata: *id001
-    name: equals-translation-cat-nso
-    reference: Equals translation (Catalan into Northern Sotho)
-  cfa20865-cf5c-4560-a208-9dddee10ed42: !Template
+    name: translate-this-spa-nso
+    reference: Translate this from X to Y (Latin American Spanish into Northern Sotho)
+  cab3b3b5-836f-4cbe-a8a9-c2efb2d32857: !Template
     answer_choices: null
-    id: cfa20865-cf5c-4560-a208-9dddee10ed42
-    jinja: 'Indonesian: {{ sentence_ind }} = Telugu: ||| {{ sentence_tel }}'
+    id: cab3b3b5-836f-4cbe-a8a9-c2efb2d32857
+    jinja: 'Translate this from Tamil into Yoruba: {{ sentence_tam }} ||| {{ sentence_yor
+      }}'
     metadata: *id001
-    name: equals-translation-ind-tel
-    reference: Equals translation (Indonesian into Telugu)
-  d027c980-d6a3-4c54-82f4-1084b2612413: !Template
+    name: translate-this-tam-yor
+    reference: Translate this from X to Y (Tamil into Yoruba)
+  cb53ec5b-bec5-4430-bb53-4a17e31a61dc: !Template
     answer_choices: null
-    id: d027c980-d6a3-4c54-82f4-1084b2612413
-    jinja: 'Brazilian Portuguese: {{ sentence_por }} = English: ||| {{ sentence_eng
+    id: cb53ec5b-bec5-4430-bb53-4a17e31a61dc
+    jinja: 'Translate this from English into French: {{ sentence_eng }} ||| {{ sentence_fra
       }}'
     metadata: *id001
-    name: equals-translation-por-eng
-    reference: Equals translation (Brazilian Portuguese into English)
-  d03dceb6-4d76-424e-bb10-26499425864e: !Template
+    name: translate-this-eng-fra
+    reference: Translate this from X to Y (English into French)
+  cb5af6ef-6288-479f-a677-1f6c30c13a0e: !Template
     answer_choices: null
-    id: d03dceb6-4d76-424e-bb10-26499425864e
-    jinja: 'Indonesian: {{ sentence_ind }} = Gujarati: ||| {{ sentence_guj }}'
+    id: cb5af6ef-6288-479f-a677-1f6c30c13a0e
+    jinja: 'Translate this from traditional Chinese into Northern Sotho: {{ sentence_zho_trad
+      }} ||| {{ sentence_nso }}'
     metadata: *id001
-    name: equals-translation-ind-guj
-    reference: Equals translation (Indonesian into Gujarati)
-  d05f995e-9bce-43fb-b260-4e98a0ef7e26: !Template
+    name: translate-this-zho_trad-nso
+    reference: Translate this from X to Y (traditional Chinese into Northern Sotho)
+  cba4e425-5bbd-4378-8fb1-4e4a2c5b237b: !Template
     answer_choices: null
-    id: d05f995e-9bce-43fb-b260-4e98a0ef7e26
-    jinja: 'Nepali: {{ sentence_npi }} = Assamese: ||| {{ sentence_asm }}'
+    id: cba4e425-5bbd-4378-8fb1-4e4a2c5b237b
+    jinja: 'Translate this from Indonesian into English: {{ sentence_ind }} ||| {{
+      sentence_eng }}'
     metadata: *id001
-    name: equals-translation-npi-asm
-    reference: Equals translation (Nepali into Assamese)
-  d09268b1-4e9c-4923-9a1a-93f4c62b8374: !Template
+    name: translate-this-ind-eng
+    reference: Translate this from X to Y (Indonesian into English)
+  cc4a4901-77d0-4b93-aa16-9d9065d563e2: !Template
     answer_choices: null
-    id: d09268b1-4e9c-4923-9a1a-93f4c62b8374
-    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Xhosa: ||| {{ sentence_xho
-      }}'
+    id: cc4a4901-77d0-4b93-aa16-9d9065d563e2
+    jinja: 'Translate this from Gujarati into Vietnamese: {{ sentence_guj }} ||| {{
+      sentence_vie }}'
     metadata: *id001
-    name: equals-translation-por-xho
-    reference: Equals translation (Brazilian Portuguese into Xhosa)
-  d0ceb13a-b1b3-45c9-8941-985388280715: !Template
+    name: translate-this-guj-vie
+    reference: Translate this from X to Y (Gujarati into Vietnamese)
+  cc72107a-3ac1-4f29-9267-f870c2be97ac: !Template
     answer_choices: null
-    id: d0ceb13a-b1b3-45c9-8941-985388280715
-    jinja: 'Arabic: {{ sentence_ara }} = Lingala: ||| {{ sentence_lin }}'
+    id: cc72107a-3ac1-4f29-9267-f870c2be97ac
+    jinja: 'Translate this from Malayalam into Vietnamese: {{ sentence_mal }} |||
+      {{ sentence_vie }}'
     metadata: *id001
-    name: equals-translation-ara-lin
-    reference: Equals translation (Arabic into Lingala)
-  d12ad39c-92bb-4b55-8dfd-0ac9c97597f4: !Template
+    name: translate-this-mal-vie
+    reference: Translate this from X to Y (Malayalam into Vietnamese)
+  cd0996dd-0a80-4a20-bfa1-4108281b4f06: !Template
     answer_choices: null
-    id: d12ad39c-92bb-4b55-8dfd-0ac9c97597f4
-    jinja: 'Wolof: {{ sentence_wol }} = Lingala: ||| {{ sentence_lin }}'
+    id: cd0996dd-0a80-4a20-bfa1-4108281b4f06
+    jinja: 'Translate this from Nepali into Assamese: {{ sentence_npi }} ||| {{ sentence_asm
+      }}'
     metadata: *id001
-    name: equals-translation-wol-lin
-    reference: Equals translation (Wolof into Lingala)
-  d1303315-a172-4d9b-9b39-bcc180675a38: !Template
+    name: translate-this-npi-asm
+    reference: Translate this from X to Y (Nepali into Assamese)
+  cd8d86a1-ccac-4391-ada5-d3491aead13b: !Template
     answer_choices: null
-    id: d1303315-a172-4d9b-9b39-bcc180675a38
-    jinja: 'Swahili: {{ sentence_swh }} = Urdu: ||| {{ sentence_urd }}'
+    id: cd8d86a1-ccac-4391-ada5-d3491aead13b
+    jinja: 'Translate this from Oriya into Kannada: {{ sentence_ory }} ||| {{ sentence_kan
+      }}'
     metadata: *id001
-    name: equals-translation-swh-urd
-    reference: Equals translation (Swahili into Urdu)
-  d1f4af20-e2b1-4125-8bba-f5dfe1eb1f97: !Template
+    name: translate-this-ory-kan
+    reference: Translate this from X to Y (Oriya into Kannada)
+  cde1a300-769c-48fd-9f8b-92ad58540f21: !Template
     answer_choices: null
-    id: d1f4af20-e2b1-4125-8bba-f5dfe1eb1f97
-    jinja: 'Malayalam: {{ sentence_mal }} = Swahili: ||| {{ sentence_swh }}'
+    id: cde1a300-769c-48fd-9f8b-92ad58540f21
+    jinja: 'Translate this from Zulu into Kannada: {{ sentence_zul }} ||| {{ sentence_kan
+      }}'
     metadata: *id001
-    name: equals-translation-mal-swh
-    reference: Equals translation (Malayalam into Swahili)
-  d1ff4122-bd55-45a6-8717-38c259071fdc: !Template
+    name: translate-this-zul-kan
+    reference: Translate this from X to Y (Zulu into Kannada)
+  ce3964d8-ef77-4fea-89fc-69375a3ce5b3: !Template
     answer_choices: null
-    id: d1ff4122-bd55-45a6-8717-38c259071fdc
-    jinja: 'Bengali: {{ sentence_ben }} = Catalan: ||| {{ sentence_cat }}'
+    id: ce3964d8-ef77-4fea-89fc-69375a3ce5b3
+    jinja: 'Translate this from traditional Chinese into Kannada: {{ sentence_zho_trad
+      }} ||| {{ sentence_kan }}'
     metadata: *id001
-    name: equals-translation-ben-cat
-    reference: Equals translation (Bengali into Catalan)
-  d238479b-8711-4637-916d-f5103b1ec8f9: !Template
+    name: translate-this-zho_trad-kan
+    reference: Translate this from X to Y (traditional Chinese into Kannada)
+  cef15a83-8186-478e-bb59-96a0de087d9b: !Template
     answer_choices: null
-    id: d238479b-8711-4637-916d-f5103b1ec8f9
-    jinja: 'Tamil: {{ sentence_tam }} = Igbo: ||| {{ sentence_ibo }}'
+    id: cef15a83-8186-478e-bb59-96a0de087d9b
+    jinja: 'Translate this from Nepali into traditional Chinese: {{ sentence_npi }}
+      ||| {{ sentence_zho_trad }}'
     metadata: *id001
-    name: equals-translation-tam-ibo
-    reference: Equals translation (Tamil into Igbo)
-  d2a96ceb-5be1-49fa-96c5-bfa0931894ee: !Template
+    name: translate-this-npi-zho_trad
+    reference: Translate this from X to Y (Nepali into traditional Chinese)
+  cf6ce659-994c-46a0-9d8d-1cadeb996fbc: !Template
     answer_choices: null
-    id: d2a96ceb-5be1-49fa-96c5-bfa0931894ee
-    jinja: 'Vietnamese: {{ sentence_vie }} = Latin American Spanish: ||| {{ sentence_spa
+    id: cf6ce659-994c-46a0-9d8d-1cadeb996fbc
+    jinja: 'Translate this from Swahili into Nepali: {{ sentence_swh }} ||| {{ sentence_npi
       }}'
     metadata: *id001
-    name: equals-translation-vie-spa
-    reference: Equals translation (Vietnamese into Latin American Spanish)
-  d2f9ccc0-0da7-4a8c-9959-d8a3f2291228: !Template
+    name: translate-this-swh-npi
+    reference: Translate this from X to Y (Swahili into Nepali)
+  cfc3b9ab-3954-461f-8f9e-980a39a774d0: !Template
     answer_choices: null
-    id: d2f9ccc0-0da7-4a8c-9959-d8a3f2291228
-    jinja: 'Yoruba: {{ sentence_yor }} = Assamese: ||| {{ sentence_asm }}'
+    id: cfc3b9ab-3954-461f-8f9e-980a39a774d0
+    jinja: 'Translate this from Brazilian Portuguese into Bengali: {{ sentence_por
+      }} ||| {{ sentence_ben }}'
     metadata: *id001
-    name: equals-translation-yor-asm
-    reference: Equals translation (Yoruba into Assamese)
-  d3101559-883c-45b7-8437-347c45d0e23b: !Template
+    name: translate-this-por-ben
+    reference: Translate this from X to Y (Brazilian Portuguese into Bengali)
+  cfe9dbe2-49af-4373-b6ff-54a7960aab69: !Template
     answer_choices: null
-    id: d3101559-883c-45b7-8437-347c45d0e23b
-    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Brazilian Portuguese: |||
-      {{ sentence_por }}'
+    id: cfe9dbe2-49af-4373-b6ff-54a7960aab69
+    jinja: 'Translate this from Assamese into Brazilian Portuguese: {{ sentence_asm
+      }} ||| {{ sentence_por }}'
     metadata: *id001
-    name: equals-translation-zho_trad-por
-    reference: Equals translation (traditional Chinese into Brazilian Portuguese)
-  d4224190-aa97-45df-9e53-4859e1595f92: !Template
+    name: translate-this-asm-por
+    reference: Translate this from X to Y (Assamese into Brazilian Portuguese)
+  cff99b27-7527-49be-9c69-41543c5ad989: !Template
     answer_choices: null
-    id: d4224190-aa97-45df-9e53-4859e1595f92
-    jinja: 'Swahili: {{ sentence_swh }} = Arabic: ||| {{ sentence_ara }}'
+    id: cff99b27-7527-49be-9c69-41543c5ad989
+    jinja: 'Translate this from Lingala into Malayalam: {{ sentence_lin }} ||| {{
+      sentence_mal }}'
     metadata: *id001
-    name: equals-translation-swh-ara
-    reference: Equals translation (Swahili into Arabic)
-  d4827771-b1db-4f86-9849-d86f2f984fba: !Template
+    name: translate-this-lin-mal
+    reference: Translate this from X to Y (Lingala into Malayalam)
+  d039d04c-6b0e-469f-9d45-a81d9efbed27: !Template
     answer_choices: null
-    id: d4827771-b1db-4f86-9849-d86f2f984fba
-    jinja: 'Latin American Spanish: {{ sentence_spa }} = Wolof: ||| {{ sentence_wol
+    id: d039d04c-6b0e-469f-9d45-a81d9efbed27
+    jinja: 'Translate this from Telugu into Bengali: {{ sentence_tel }} ||| {{ sentence_ben
       }}'
     metadata: *id001
-    name: equals-translation-spa-wol
-    reference: Equals translation (Latin American Spanish into Wolof)
-  d614a5b1-27ef-494b-b59f-38699830ef33: !Template
+    name: translate-this-tel-ben
+    reference: Translate this from X to Y (Telugu into Bengali)
+  d04f7438-7526-4cf4-a95f-16b9ebbcfa6b: !Template
     answer_choices: null
-    id: d614a5b1-27ef-494b-b59f-38699830ef33
-    jinja: 'Punjabi: {{ sentence_pan }} = Kannada: ||| {{ sentence_kan }}'
+    id: d04f7438-7526-4cf4-a95f-16b9ebbcfa6b
+    jinja: 'Translate this from Brazilian Portuguese into traditional Chinese: {{
+      sentence_por }} ||| {{ sentence_zho_trad }}'
     metadata: *id001
-    name: equals-translation-pan-kan
-    reference: Equals translation (Punjabi into Kannada)
-  d6383305-cc11-44d3-8c8b-6ba89e0c43d3: !Template
+    name: translate-this-por-zho_trad
+    reference: Translate this from X to Y (Brazilian Portuguese into traditional Chinese)
+  d0c1d141-086a-4054-9a54-1026b6e847f2: !Template
     answer_choices: null
-    id: d6383305-cc11-44d3-8c8b-6ba89e0c43d3
-    jinja: 'Malayalam: {{ sentence_mal }} = Telugu: ||| {{ sentence_tel }}'
+    id: d0c1d141-086a-4054-9a54-1026b6e847f2
+    jinja: 'Translate this from Malayalam into English: {{ sentence_mal }} ||| {{
+      sentence_eng }}'
     metadata: *id001
-    name: equals-translation-mal-tel
-    reference: Equals translation (Malayalam into Telugu)
-  d64c77f1-c8b1-4f4c-b1e1-f1b742ee0186: !Template
+    name: translate-this-mal-eng
+    reference: Translate this from X to Y (Malayalam into English)
+  d0e46f8c-df58-4976-bce6-c81544a3d314: !Template
     answer_choices: null
-    id: d64c77f1-c8b1-4f4c-b1e1-f1b742ee0186
-    jinja: 'Swahili: {{ sentence_swh }} = Assamese: ||| {{ sentence_asm }}'
+    id: d0e46f8c-df58-4976-bce6-c81544a3d314
+    jinja: 'Translate this from Indonesian into Assamese: {{ sentence_ind }} ||| {{
+      sentence_asm }}'
     metadata: *id001
-    name: equals-translation-swh-asm
-    reference: Equals translation (Swahili into Assamese)
-  d6567145-03a3-409a-a6cd-ac42507eb523: !Template
+    name: translate-this-ind-asm
+    reference: Translate this from X to Y (Indonesian into Assamese)
+  d1647208-9489-4508-a772-084c2b846184: !Template
     answer_choices: null
-    id: d6567145-03a3-409a-a6cd-ac42507eb523
-    jinja: 'Telugu: {{ sentence_tel }} = Kannada: ||| {{ sentence_kan }}'
+    id: d1647208-9489-4508-a772-084c2b846184
+    jinja: 'Translate this from Igbo into Wolof: {{ sentence_ibo }} ||| {{ sentence_wol
+      }}'
     metadata: *id001
-    name: equals-translation-tel-kan
-    reference: Equals translation (Telugu into Kannada)
-  d65ec25d-5986-478f-b1d9-b00a29a9040a: !Template
+    name: translate-this-ibo-wol
+    reference: Translate this from X to Y (Igbo into Wolof)
+  d175ed20-4df7-4ebf-8dad-b7751fed04ae: !Template
     answer_choices: null
-    id: d65ec25d-5986-478f-b1d9-b00a29a9040a
-    jinja: 'Swahili: {{ sentence_swh }} = Igbo: ||| {{ sentence_ibo }}'
+    id: d175ed20-4df7-4ebf-8dad-b7751fed04ae
+    jinja: 'Translate this from Brazilian Portuguese into Arabic: {{ sentence_por
+      }} ||| {{ sentence_ara }}'
     metadata: *id001
-    name: equals-translation-swh-ibo
-    reference: Equals translation (Swahili into Igbo)
-  d76cfbc6-5f7a-4ea5-82f1-36cf41774544: !Template
+    name: translate-this-por-ara
+    reference: Translate this from X to Y (Brazilian Portuguese into Arabic)
+  d1e309a5-2f04-43ba-bc9b-6713527e36fd: !Template
     answer_choices: null
-    id: d76cfbc6-5f7a-4ea5-82f1-36cf41774544
-    jinja: 'Catalan: {{ sentence_cat }} = Arabic: ||| {{ sentence_ara }}'
+    id: d1e309a5-2f04-43ba-bc9b-6713527e36fd
+    jinja: 'Translate this from Urdu into Brazilian Portuguese: {{ sentence_urd }}
+      ||| {{ sentence_por }}'
     metadata: *id001
-    name: equals-translation-cat-ara
-    reference: Equals translation (Catalan into Arabic)
-  d79cd45b-3267-4923-9295-2fca8139acba: !Template
+    name: translate-this-urd-por
+    reference: Translate this from X to Y (Urdu into Brazilian Portuguese)
+  d33fccc4-b717-45e4-ab01-d047bdf605f9: !Template
     answer_choices: null
-    id: d79cd45b-3267-4923-9295-2fca8139acba
-    jinja: 'Urdu: {{ sentence_urd }} = Marathi: ||| {{ sentence_mar }}'
+    id: d33fccc4-b717-45e4-ab01-d047bdf605f9
+    jinja: 'Translate this from Kannada into Tamil: {{ sentence_kan }} ||| {{ sentence_tam
+      }}'
     metadata: *id001
-    name: equals-translation-urd-mar
-    reference: Equals translation (Urdu into Marathi)
-  d7a62521-af75-4104-b212-4c787b8bff7b: !Template
+    name: translate-this-kan-tam
+    reference: Translate this from X to Y (Kannada into Tamil)
+  d34613de-557d-4515-a133-71236412a675: !Template
     answer_choices: null
-    id: d7a62521-af75-4104-b212-4c787b8bff7b
-    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Marathi: ||| {{ sentence_mar
+    id: d34613de-557d-4515-a133-71236412a675
+    jinja: 'Translate this from English into Wolof: {{ sentence_eng }} ||| {{ sentence_wol
       }}'
     metadata: *id001
-    name: equals-translation-por-mar
-    reference: Equals translation (Brazilian Portuguese into Marathi)
-  d7e12858-0939-446c-9cd6-183d864c6bec: !Template
+    name: translate-this-eng-wol
+    reference: Translate this from X to Y (English into Wolof)
+  d352c29c-15d7-40ef-9e53-36fd1943ca06: !Template
     answer_choices: null
-    id: d7e12858-0939-446c-9cd6-183d864c6bec
-    jinja: 'Indonesian: {{ sentence_ind }} = Hindi: ||| {{ sentence_hin }}'
+    id: d352c29c-15d7-40ef-9e53-36fd1943ca06
+    jinja: 'Translate this from Yoruba into French: {{ sentence_yor }} ||| {{ sentence_fra
+      }}'
     metadata: *id001
-    name: equals-translation-ind-hin
-    reference: Equals translation (Indonesian into Hindi)
-  d8476518-a4ca-457a-a9cb-ab6340ae8cd0: !Template
+    name: translate-this-yor-fra
+    reference: Translate this from X to Y (Yoruba into French)
+  d3545c0f-219b-46a5-a002-d89e44d4dea6: !Template
     answer_choices: null
-    id: d8476518-a4ca-457a-a9cb-ab6340ae8cd0
-    jinja: 'Malayalam: {{ sentence_mal }} = Xhosa: ||| {{ sentence_xho }}'
+    id: d3545c0f-219b-46a5-a002-d89e44d4dea6
+    jinja: 'Translate this from Hindi into Yoruba: {{ sentence_hin }} ||| {{ sentence_yor
+      }}'
     metadata: *id001
-    name: equals-translation-mal-xho
-    reference: Equals translation (Malayalam into Xhosa)
-  d87e13eb-f72d-4a76-b46a-d4cc2d024469: !Template
+    name: translate-this-hin-yor
+    reference: Translate this from X to Y (Hindi into Yoruba)
+  d3aaacfe-b839-4a91-abd4-522c597aa41a: !Template
     answer_choices: null
-    id: d87e13eb-f72d-4a76-b46a-d4cc2d024469
-    jinja: 'Vietnamese: {{ sentence_vie }} = simplified Chinese: ||| {{ sentence_zho_simpl
+    id: d3aaacfe-b839-4a91-abd4-522c597aa41a
+    jinja: 'Translate this from Punjabi into Telugu: {{ sentence_pan }} ||| {{ sentence_tel
       }}'
     metadata: *id001
-    name: equals-translation-vie-zho_simpl
-    reference: Equals translation (Vietnamese into simplified Chinese)
-  d90d134a-58e8-4f11-af56-d8a7a76983e8: !Template
+    name: translate-this-pan-tel
+    reference: Translate this from X to Y (Punjabi into Telugu)
+  d416d67c-2a61-4ca1-beef-7dad32810e6c: !Template
     answer_choices: null
-    id: d90d134a-58e8-4f11-af56-d8a7a76983e8
-    jinja: 'Marathi: {{ sentence_mar }} = Swahili: ||| {{ sentence_swh }}'
+    id: d416d67c-2a61-4ca1-beef-7dad32810e6c
+    jinja: 'Translate this from Yoruba into Telugu: {{ sentence_yor }} ||| {{ sentence_tel
+      }}'
     metadata: *id001
-    name: equals-translation-mar-swh
-    reference: Equals translation (Marathi into Swahili)
-  d92b5ed0-4ced-455d-9ebd-9ed03da19e47: !Template
+    name: translate-this-yor-tel
+    reference: Translate this from X to Y (Yoruba into Telugu)
+  d43b8b80-a276-4871-a6a5-e3564dbda2a7: !Template
     answer_choices: null
-    id: d92b5ed0-4ced-455d-9ebd-9ed03da19e47
-    jinja: 'Northern Sotho: {{ sentence_nso }} = Nepali: ||| {{ sentence_npi }}'
+    id: d43b8b80-a276-4871-a6a5-e3564dbda2a7
+    jinja: 'Translate this from English into simplified Chinese: {{ sentence_eng }}
+      ||| {{ sentence_zho_simpl }}'
     metadata: *id001
-    name: equals-translation-nso-npi
-    reference: Equals translation (Northern Sotho into Nepali)
-  d942147a-ea06-4074-966a-1a8d02172774: !Template
+    name: translate-this-eng-zho_simpl
+    reference: Translate this from X to Y (English into simplified Chinese)
+  d4973f86-a372-4611-8cc1-1757a40c54fc: !Template
     answer_choices: null
-    id: d942147a-ea06-4074-966a-1a8d02172774
-    jinja: 'Malayalam: {{ sentence_mal }} = Brazilian Portuguese: ||| {{ sentence_por
-      }}'
+    id: d4973f86-a372-4611-8cc1-1757a40c54fc
+    jinja: 'Translate this from Indonesian into Punjabi: {{ sentence_ind }} ||| {{
+      sentence_pan }}'
     metadata: *id001
-    name: equals-translation-mal-por
-    reference: Equals translation (Malayalam into Brazilian Portuguese)
-  d9793174-c209-4715-899b-54d5dabac3ca: !Template
+    name: translate-this-ind-pan
+    reference: Translate this from X to Y (Indonesian into Punjabi)
+  d4dea13b-9d50-4485-8e12-43b249475e07: !Template
     answer_choices: null
-    id: d9793174-c209-4715-899b-54d5dabac3ca
-    jinja: 'Tamil: {{ sentence_tam }} = Yoruba: ||| {{ sentence_yor }}'
+    id: d4dea13b-9d50-4485-8e12-43b249475e07
+    jinja: 'Translate this from Bengali into Telugu: {{ sentence_ben }} ||| {{ sentence_tel
+      }}'
     metadata: *id001
-    name: equals-translation-tam-yor
-    reference: Equals translation (Tamil into Yoruba)
-  d987c9f2-2078-4752-8130-d6c54ec58cf8: !Template
+    name: translate-this-ben-tel
+    reference: Translate this from X to Y (Bengali into Telugu)
+  d515de0d-6845-4668-a7f4-1c379393dc1f: !Template
     answer_choices: null
-    id: d987c9f2-2078-4752-8130-d6c54ec58cf8
-    jinja: 'Arabic: {{ sentence_ara }} = Igbo: ||| {{ sentence_ibo }}'
+    id: d515de0d-6845-4668-a7f4-1c379393dc1f
+    jinja: 'Translate this from Malayalam into Swahili: {{ sentence_mal }} ||| {{
+      sentence_swh }}'
     metadata: *id001
-    name: equals-translation-ara-ibo
-    reference: Equals translation (Arabic into Igbo)
-  d99b3b68-017f-4cbf-97b3-e209b260f0b2: !Template
+    name: translate-this-mal-swh
+    reference: Translate this from X to Y (Malayalam into Swahili)
+  d5404f3f-328a-4fa1-b8f0-f39b25f8f5ef: !Template
     answer_choices: null
-    id: d99b3b68-017f-4cbf-97b3-e209b260f0b2
-    jinja: 'Marathi: {{ sentence_mar }} = French: ||| {{ sentence_fra }}'
+    id: d5404f3f-328a-4fa1-b8f0-f39b25f8f5ef
+    jinja: 'Translate this from Indonesian into Nepali: {{ sentence_ind }} ||| {{
+      sentence_npi }}'
     metadata: *id001
-    name: equals-translation-mar-fra
-    reference: Equals translation (Marathi into French)
-  d9cb8f4b-41d8-4a65-9937-5d1cb6835483: !Template
+    name: translate-this-ind-npi
+    reference: Translate this from X to Y (Indonesian into Nepali)
+  d598cf6a-1bd3-442e-be70-6ca4eebbec3c: !Template
     answer_choices: null
-    id: d9cb8f4b-41d8-4a65-9937-5d1cb6835483
-    jinja: 'Igbo: {{ sentence_ibo }} = Nepali: ||| {{ sentence_npi }}'
+    id: d598cf6a-1bd3-442e-be70-6ca4eebbec3c
+    jinja: 'Translate this from Urdu into Xhosa: {{ sentence_urd }} ||| {{ sentence_xho
+      }}'
     metadata: *id001
-    name: equals-translation-ibo-npi
-    reference: Equals translation (Igbo into Nepali)
-  d9f6e431-e95d-49b8-8d69-3481a8f55794: !Template
+    name: translate-this-urd-xho
+    reference: Translate this from X to Y (Urdu into Xhosa)
+  d5e2f83a-e5cf-4d9c-9b14-c73015642676: !Template
     answer_choices: null
-    id: d9f6e431-e95d-49b8-8d69-3481a8f55794
-    jinja: 'English: {{ sentence_eng }} = Lingala: ||| {{ sentence_lin }}'
+    id: d5e2f83a-e5cf-4d9c-9b14-c73015642676
+    jinja: 'Translate this from traditional Chinese into Bengali: {{ sentence_zho_trad
+      }} ||| {{ sentence_ben }}'
     metadata: *id001
-    name: equals-translation-eng-lin
-    reference: Equals translation (English into Lingala)
-  da7f3949-aef9-4919-bbf7-41e09efa171e: !Template
+    name: translate-this-zho_trad-ben
+    reference: Translate this from X to Y (traditional Chinese into Bengali)
+  d640ed31-e1d5-4a53-8e79-ddd660ad0a0b: !Template
     answer_choices: null
-    id: da7f3949-aef9-4919-bbf7-41e09efa171e
-    jinja: 'Latin American Spanish: {{ sentence_spa }} = Igbo: ||| {{ sentence_ibo
+    id: d640ed31-e1d5-4a53-8e79-ddd660ad0a0b
+    jinja: 'Translate this from Arabic into Punjabi: {{ sentence_ara }} ||| {{ sentence_pan
       }}'
     metadata: *id001
-    name: equals-translation-spa-ibo
-    reference: Equals translation (Latin American Spanish into Igbo)
-  dab5a0f3-0f8d-4bfd-99bb-96ee4bc8487c: !Template
-    answer_choices: null
-    id: dab5a0f3-0f8d-4bfd-99bb-96ee4bc8487c
-    jinja: 'English: {{ sentence_eng }} = Marathi: ||| {{ sentence_mar }}'
-    metadata: *id001
-    name: equals-translation-eng-mar
-    reference: Equals translation (English into Marathi)
-  dac78e0d-2a2c-4295-972b-92a68a9d22bb: !Template
+    name: translate-this-ara-pan
+    reference: Translate this from X to Y (Arabic into Punjabi)
+  d7356cfc-3c3d-40a2-8aa4-58cb7197f7d4: !Template
     answer_choices: null
-    id: dac78e0d-2a2c-4295-972b-92a68a9d22bb
-    jinja: 'Vietnamese: {{ sentence_vie }} = French: ||| {{ sentence_fra }}'
+    id: d7356cfc-3c3d-40a2-8aa4-58cb7197f7d4
+    jinja: 'Translate this from Brazilian Portuguese into Wolof: {{ sentence_por }}
+      ||| {{ sentence_wol }}'
     metadata: *id001
-    name: equals-translation-vie-fra
-    reference: Equals translation (Vietnamese into French)
-  dadd7d6a-8c87-4725-9fe8-fb57448c84c2: !Template
+    name: translate-this-por-wol
+    reference: Translate this from X to Y (Brazilian Portuguese into Wolof)
+  d74e566a-d261-4483-9d7d-5f19aefee2f9: !Template
     answer_choices: null
-    id: dadd7d6a-8c87-4725-9fe8-fb57448c84c2
-    jinja: 'Yoruba: {{ sentence_yor }} = Lingala: ||| {{ sentence_lin }}'
+    id: d74e566a-d261-4483-9d7d-5f19aefee2f9
+    jinja: 'Translate this from Marathi into Oriya: {{ sentence_mar }} ||| {{ sentence_ory
+      }}'
     metadata: *id001
-    name: equals-translation-yor-lin
-    reference: Equals translation (Yoruba into Lingala)
-  db5f1ad8-ae8f-4c06-8f7e-13b4c3febc1e: !Template
+    name: translate-this-mar-ory
+    reference: Translate this from X to Y (Marathi into Oriya)
+  d7756485-333a-4dbe-9f47-5fa8161b0419: !Template
     answer_choices: null
-    id: db5f1ad8-ae8f-4c06-8f7e-13b4c3febc1e
-    jinja: 'Tamil: {{ sentence_tam }} = Bengali: ||| {{ sentence_ben }}'
+    id: d7756485-333a-4dbe-9f47-5fa8161b0419
+    jinja: 'Translate this from Northern Sotho into Urdu: {{ sentence_nso }} ||| {{
+      sentence_urd }}'
     metadata: *id001
-    name: equals-translation-tam-ben
-    reference: Equals translation (Tamil into Bengali)
-  dbc6517a-4e2b-4971-9fe9-fab31dd85560: !Template
+    name: translate-this-nso-urd
+    reference: Translate this from X to Y (Northern Sotho into Urdu)
+  d7b57fd3-581f-4b9c-8027-bfe0fd8ec161: !Template
     answer_choices: null
-    id: dbc6517a-4e2b-4971-9fe9-fab31dd85560
-    jinja: 'Zulu: {{ sentence_zul }} = Latin American Spanish: ||| {{ sentence_spa
+    id: d7b57fd3-581f-4b9c-8027-bfe0fd8ec161
+    jinja: 'Translate this from Nepali into Oriya: {{ sentence_npi }} ||| {{ sentence_ory
       }}'
     metadata: *id001
-    name: equals-translation-zul-spa
-    reference: Equals translation (Zulu into Latin American Spanish)
-  dbc7f834-4cef-4bba-9375-0ce631d9bb10: !Template
+    name: translate-this-npi-ory
+    reference: Translate this from X to Y (Nepali into Oriya)
+  d7c80564-5d86-4584-9b40-eb5c0dfd2318: !Template
     answer_choices: null
-    id: dbc7f834-4cef-4bba-9375-0ce631d9bb10
-    jinja: 'Tamil: {{ sentence_tam }} = English: ||| {{ sentence_eng }}'
+    id: d7c80564-5d86-4584-9b40-eb5c0dfd2318
+    jinja: 'Translate this from Yoruba into Hindi: {{ sentence_yor }} ||| {{ sentence_hin
+      }}'
     metadata: *id001
-    name: equals-translation-tam-eng
-    reference: Equals translation (Tamil into English)
-  dbd33409-c9d3-437a-a800-64ce3668f6eb: !Template
+    name: translate-this-yor-hin
+    reference: Translate this from X to Y (Yoruba into Hindi)
+  d7cf8e42-ed75-45a8-9cc8-a22323b6f937: !Template
     answer_choices: null
-    id: dbd33409-c9d3-437a-a800-64ce3668f6eb
-    jinja: 'Northern Sotho: {{ sentence_nso }} = Arabic: ||| {{ sentence_ara }}'
+    id: d7cf8e42-ed75-45a8-9cc8-a22323b6f937
+    jinja: 'Translate this from Igbo into Tamil: {{ sentence_ibo }} ||| {{ sentence_tam
+      }}'
     metadata: *id001
-    name: equals-translation-nso-ara
-    reference: Equals translation (Northern Sotho into Arabic)
-  dbd816ee-7346-427e-ace8-dd4afc5ed0d7: !Template
+    name: translate-this-ibo-tam
+    reference: Translate this from X to Y (Igbo into Tamil)
+  d84dd9bb-37d8-4e88-9430-7f6c9c0e655c: !Template
     answer_choices: null
-    id: dbd816ee-7346-427e-ace8-dd4afc5ed0d7
-    jinja: 'Nepali: {{ sentence_npi }} = Brazilian Portuguese: ||| {{ sentence_por
+    id: d84dd9bb-37d8-4e88-9430-7f6c9c0e655c
+    jinja: 'Translate this from Igbo into Bengali: {{ sentence_ibo }} ||| {{ sentence_ben
       }}'
     metadata: *id001
-    name: equals-translation-npi-por
-    reference: Equals translation (Nepali into Brazilian Portuguese)
-  dbe9e1a9-8c79-4f20-bec8-bc572b52c77c: !Template
+    name: translate-this-ibo-ben
+    reference: Translate this from X to Y (Igbo into Bengali)
+  d87b5066-48fe-4b4f-a9c7-d47210c19631: !Template
     answer_choices: null
-    id: dbe9e1a9-8c79-4f20-bec8-bc572b52c77c
-    jinja: 'Punjabi: {{ sentence_pan }} = Marathi: ||| {{ sentence_mar }}'
+    id: d87b5066-48fe-4b4f-a9c7-d47210c19631
+    jinja: 'Translate this from Punjabi into Bengali: {{ sentence_pan }} ||| {{ sentence_ben
+      }}'
     metadata: *id001
-    name: equals-translation-pan-mar
-    reference: Equals translation (Punjabi into Marathi)
-  dc4682c8-0d93-4f33-a160-dc6c345582f4: !Template
+    name: translate-this-pan-ben
+    reference: Translate this from X to Y (Punjabi into Bengali)
+  d8953340-9824-43c4-9f1b-0fc46a9be042: !Template
     answer_choices: null
-    id: dc4682c8-0d93-4f33-a160-dc6c345582f4
-    jinja: 'Yoruba: {{ sentence_yor }} = Arabic: ||| {{ sentence_ara }}'
+    id: d8953340-9824-43c4-9f1b-0fc46a9be042
+    jinja: 'Translate this from Latin American Spanish into Vietnamese: {{ sentence_spa
+      }} ||| {{ sentence_vie }}'
     metadata: *id001
-    name: equals-translation-yor-ara
-    reference: Equals translation (Yoruba into Arabic)
-  dcbf557c-d0cb-4b36-ba38-82d7e3e2f56f: !Template
+    name: translate-this-spa-vie
+    reference: Translate this from X to Y (Latin American Spanish into Vietnamese)
+  d8f96505-d6e8-4392-837b-4d04e198c76a: !Template
     answer_choices: null
-    id: dcbf557c-d0cb-4b36-ba38-82d7e3e2f56f
-    jinja: 'Xhosa: {{ sentence_xho }} = Igbo: ||| {{ sentence_ibo }}'
+    id: d8f96505-d6e8-4392-837b-4d04e198c76a
+    jinja: 'Translate this from Punjabi into Latin American Spanish: {{ sentence_pan
+      }} ||| {{ sentence_spa }}'
     metadata: *id001
-    name: equals-translation-xho-ibo
-    reference: Equals translation (Xhosa into Igbo)
-  dcce44de-5d4f-4fed-be2e-98e5cddb6dff: !Template
+    name: translate-this-pan-spa
+    reference: Translate this from X to Y (Punjabi into Latin American Spanish)
+  d937753f-ebb4-46f9-b75d-800cefdd4f30: !Template
     answer_choices: null
-    id: dcce44de-5d4f-4fed-be2e-98e5cddb6dff
-    jinja: 'Assamese: {{ sentence_asm }} = Xhosa: ||| {{ sentence_xho }}'
+    id: d937753f-ebb4-46f9-b75d-800cefdd4f30
+    jinja: 'Translate this from Indonesian into Latin American Spanish: {{ sentence_ind
+      }} ||| {{ sentence_spa }}'
     metadata: *id001
-    name: equals-translation-asm-xho
-    reference: Equals translation (Assamese into Xhosa)
-  dce44d28-7896-47d3-a14e-f31f861e9f33: !Template
+    name: translate-this-ind-spa
+    reference: Translate this from X to Y (Indonesian into Latin American Spanish)
+  d99f640a-0abe-4370-82a8-75f618cfa9ab: !Template
     answer_choices: null
-    id: dce44d28-7896-47d3-a14e-f31f861e9f33
-    jinja: 'Zulu: {{ sentence_zul }} = Lingala: ||| {{ sentence_lin }}'
+    id: d99f640a-0abe-4370-82a8-75f618cfa9ab
+    jinja: 'Translate this from Hindi into Lingala: {{ sentence_hin }} ||| {{ sentence_lin
+      }}'
     metadata: *id001
-    name: equals-translation-zul-lin
-    reference: Equals translation (Zulu into Lingala)
-  dcfd96d3-4c70-4dcc-8a1d-190e6252edae: !Template
+    name: translate-this-hin-lin
+    reference: Translate this from X to Y (Hindi into Lingala)
+  da222e1d-65c1-47cb-a151-53d4a121c34c: !Template
     answer_choices: null
-    id: dcfd96d3-4c70-4dcc-8a1d-190e6252edae
-    jinja: 'Malayalam: {{ sentence_mal }} = Assamese: ||| {{ sentence_asm }}'
+    id: da222e1d-65c1-47cb-a151-53d4a121c34c
+    jinja: 'Translate this from Tamil into traditional Chinese: {{ sentence_tam }}
+      ||| {{ sentence_zho_trad }}'
     metadata: *id001
-    name: equals-translation-mal-asm
-    reference: Equals translation (Malayalam into Assamese)
-  dd1d953c-7cc1-4609-a4c2-0296ca735c66: !Template
+    name: translate-this-tam-zho_trad
+    reference: Translate this from X to Y (Tamil into traditional Chinese)
+  da8f67c4-bea6-4c08-92cb-fa9a0b14c479: !Template
     answer_choices: null
-    id: dd1d953c-7cc1-4609-a4c2-0296ca735c66
-    jinja: 'Zulu: {{ sentence_zul }} = Swahili: ||| {{ sentence_swh }}'
+    id: da8f67c4-bea6-4c08-92cb-fa9a0b14c479
+    jinja: 'Translate this from Northern Sotho into Lingala: {{ sentence_nso }} |||
+      {{ sentence_lin }}'
     metadata: *id001
-    name: equals-translation-zul-swh
-    reference: Equals translation (Zulu into Swahili)
-  dd42edc9-7fde-445f-a44e-7e7a13cbebaa: !Template
+    name: translate-this-nso-lin
+    reference: Translate this from X to Y (Northern Sotho into Lingala)
+  da980ddb-bf65-4d64-a891-03ad4767374d: !Template
     answer_choices: null
-    id: dd42edc9-7fde-445f-a44e-7e7a13cbebaa
-    jinja: 'Bengali: {{ sentence_ben }} = Kannada: ||| {{ sentence_kan }}'
+    id: da980ddb-bf65-4d64-a891-03ad4767374d
+    jinja: 'Translate this from Tamil into Xhosa: {{ sentence_tam }} ||| {{ sentence_xho
+      }}'
     metadata: *id001
-    name: equals-translation-ben-kan
-    reference: Equals translation (Bengali into Kannada)
-  dd4ae7bc-3ea1-4cb3-b4aa-922ccfc6365e: !Template
+    name: translate-this-tam-xho
+    reference: Translate this from X to Y (Tamil into Xhosa)
+  db532d9d-e7df-45b4-8ffb-7054be6b200d: !Template
     answer_choices: null
-    id: dd4ae7bc-3ea1-4cb3-b4aa-922ccfc6365e
-    jinja: 'Gujarati: {{ sentence_guj }} = Vietnamese: ||| {{ sentence_vie }}'
+    id: db532d9d-e7df-45b4-8ffb-7054be6b200d
+    jinja: 'Translate this from Indonesian into Swahili: {{ sentence_ind }} ||| {{
+      sentence_swh }}'
     metadata: *id001
-    name: equals-translation-guj-vie
-    reference: Equals translation (Gujarati into Vietnamese)
-  ddb2ac4a-c4e4-4564-8fc3-ae033293af66: !Template
+    name: translate-this-ind-swh
+    reference: Translate this from X to Y (Indonesian into Swahili)
+  db7f5233-3a37-4ea8-97aa-10e6dbffaf6d: !Template
     answer_choices: null
-    id: ddb2ac4a-c4e4-4564-8fc3-ae033293af66
-    jinja: 'English: {{ sentence_eng }} = French: ||| {{ sentence_fra }}'
+    id: db7f5233-3a37-4ea8-97aa-10e6dbffaf6d
+    jinja: 'Translate this from Brazilian Portuguese into Gujarati: {{ sentence_por
+      }} ||| {{ sentence_guj }}'
     metadata: *id001
-    name: equals-translation-eng-fra
-    reference: Equals translation (English into French)
-  de2b9f79-057e-4407-a10f-6dff4c532c0b: !Template
+    name: translate-this-por-guj
+    reference: Translate this from X to Y (Brazilian Portuguese into Gujarati)
+  dc167b98-6e0e-41f9-a5b7-c3a6b4183f9b: !Template
     answer_choices: null
-    id: de2b9f79-057e-4407-a10f-6dff4c532c0b
-    jinja: 'Xhosa: {{ sentence_xho }} = Swahili: ||| {{ sentence_swh }}'
+    id: dc167b98-6e0e-41f9-a5b7-c3a6b4183f9b
+    jinja: 'Translate this from Wolof into Lingala: {{ sentence_wol }} ||| {{ sentence_lin
+      }}'
     metadata: *id001
-    name: equals-translation-xho-swh
-    reference: Equals translation (Xhosa into Swahili)
-  de38bfdb-43ff-4aff-a04a-44c43850f210: !Template
+    name: translate-this-wol-lin
+    reference: Translate this from X to Y (Wolof into Lingala)
+  dd07f9d9-1c72-4b00-9722-43bdfe198946: !Template
     answer_choices: null
-    id: de38bfdb-43ff-4aff-a04a-44c43850f210
-    jinja: 'Latin American Spanish: {{ sentence_spa }} = simplified Chinese: ||| {{
-      sentence_zho_simpl }}'
+    id: dd07f9d9-1c72-4b00-9722-43bdfe198946
+    jinja: 'Translate this from Indonesian into simplified Chinese: {{ sentence_ind
+      }} ||| {{ sentence_zho_simpl }}'
     metadata: *id001
-    name: equals-translation-spa-zho_simpl
-    reference: Equals translation (Latin American Spanish into simplified Chinese)
-  de749ef7-8541-4d04-9da5-faaf526a77c1: !Template
+    name: translate-this-ind-zho_simpl
+    reference: Translate this from X to Y (Indonesian into simplified Chinese)
+  dd9d340d-ded5-4483-adb8-3709c005c38e: !Template
     answer_choices: null
-    id: de749ef7-8541-4d04-9da5-faaf526a77c1
-    jinja: 'Tamil: {{ sentence_tam }} = Hindi: ||| {{ sentence_hin }}'
+    id: dd9d340d-ded5-4483-adb8-3709c005c38e
+    jinja: 'Translate this from Bengali into Lingala: {{ sentence_ben }} ||| {{ sentence_lin
+      }}'
     metadata: *id001
-    name: equals-translation-tam-hin
-    reference: Equals translation (Tamil into Hindi)
-  de7fd562-7a37-4465-b9c4-213a2b17479e: !Template
+    name: translate-this-ben-lin
+    reference: Translate this from X to Y (Bengali into Lingala)
+  ddadaaee-760d-4956-b102-3057de9bda4b: !Template
     answer_choices: null
-    id: de7fd562-7a37-4465-b9c4-213a2b17479e
-    jinja: 'Swahili: {{ sentence_swh }} = Northern Sotho: ||| {{ sentence_nso }}'
+    id: ddadaaee-760d-4956-b102-3057de9bda4b
+    jinja: 'Translate this from Latin American Spanish into English: {{ sentence_spa
+      }} ||| {{ sentence_eng }}'
     metadata: *id001
-    name: equals-translation-swh-nso
-    reference: Equals translation (Swahili into Northern Sotho)
-  df0da838-f3a4-4367-b54c-35325cf5ff88: !Template
+    name: translate-this-spa-eng
+    reference: Translate this from X to Y (Latin American Spanish into English)
+  ddb7f4e0-3561-4d1a-a34d-860e045fbbd6: !Template
     answer_choices: null
-    id: df0da838-f3a4-4367-b54c-35325cf5ff88
-    jinja: 'Yoruba: {{ sentence_yor }} = Brazilian Portuguese: ||| {{ sentence_por
+    id: ddb7f4e0-3561-4d1a-a34d-860e045fbbd6
+    jinja: 'Translate this from Igbo into Arabic: {{ sentence_ibo }} ||| {{ sentence_ara
       }}'
     metadata: *id001
-    name: equals-translation-yor-por
-    reference: Equals translation (Yoruba into Brazilian Portuguese)
-  df5336dc-10ff-414c-852b-82d5bb47b57b: !Template
+    name: translate-this-ibo-ara
+    reference: Translate this from X to Y (Igbo into Arabic)
+  ddcbd6c4-87d3-443b-8bee-b6aeddcd6aeb: !Template
     answer_choices: null
-    id: df5336dc-10ff-414c-852b-82d5bb47b57b
-    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Malayalam: ||| {{ sentence_mal
-      }}'
+    id: ddcbd6c4-87d3-443b-8bee-b6aeddcd6aeb
+    jinja: 'Translate this from Latin American Spanish into Wolof: {{ sentence_spa
+      }} ||| {{ sentence_wol }}'
     metadata: *id001
-    name: equals-translation-por-mal
-    reference: Equals translation (Brazilian Portuguese into Malayalam)
-  df80b93c-951d-44ed-9f84-fe315b7910b5: !Template
+    name: translate-this-spa-wol
+    reference: Translate this from X to Y (Latin American Spanish into Wolof)
+  de2d6c1c-3bd9-46f9-a54b-7ece586eafcb: !Template
     answer_choices: null
-    id: df80b93c-951d-44ed-9f84-fe315b7910b5
-    jinja: 'Oriya: {{ sentence_ory }} = Assamese: ||| {{ sentence_asm }}'
+    id: de2d6c1c-3bd9-46f9-a54b-7ece586eafcb
+    jinja: 'Translate this from simplified Chinese into English: {{ sentence_zho_simpl
+      }} ||| {{ sentence_eng }}'
     metadata: *id001
-    name: equals-translation-ory-asm
-    reference: Equals translation (Oriya into Assamese)
-  dfd65400-0337-454a-a947-3626f92ba3e5: !Template
+    name: translate-this-zho_simpl-eng
+    reference: Translate this from X to Y (simplified Chinese into English)
+  de378c70-2ef6-4015-8d86-a28bb85f5b1d: !Template
     answer_choices: null
-    id: dfd65400-0337-454a-a947-3626f92ba3e5
-    jinja: 'Yoruba: {{ sentence_yor }} = Swahili: ||| {{ sentence_swh }}'
+    id: de378c70-2ef6-4015-8d86-a28bb85f5b1d
+    jinja: 'Translate this from simplified Chinese into Swahili: {{ sentence_zho_simpl
+      }} ||| {{ sentence_swh }}'
     metadata: *id001
-    name: equals-translation-yor-swh
-    reference: Equals translation (Yoruba into Swahili)
-  e0b26f49-42f7-4214-94b1-a325df9439a6: !Template
+    name: translate-this-zho_simpl-swh
+    reference: Translate this from X to Y (simplified Chinese into Swahili)
+  de63c320-633f-480a-a4bb-bc568b46c80d: !Template
     answer_choices: null
-    id: e0b26f49-42f7-4214-94b1-a325df9439a6
-    jinja: 'Swahili: {{ sentence_swh }} = Hindi: ||| {{ sentence_hin }}'
+    id: de63c320-633f-480a-a4bb-bc568b46c80d
+    jinja: 'Translate this from Igbo into Latin American Spanish: {{ sentence_ibo
+      }} ||| {{ sentence_spa }}'
     metadata: *id001
-    name: equals-translation-swh-hin
-    reference: Equals translation (Swahili into Hindi)
-  e1022cba-e707-4893-b7fe-6165937e9a7e: !Template
+    name: translate-this-ibo-spa
+    reference: Translate this from X to Y (Igbo into Latin American Spanish)
+  dea1744f-b21c-420a-89ab-ddf56678cfe6: !Template
     answer_choices: null
-    id: e1022cba-e707-4893-b7fe-6165937e9a7e
-    jinja: 'Zulu: {{ sentence_zul }} = Kannada: ||| {{ sentence_kan }}'
+    id: dea1744f-b21c-420a-89ab-ddf56678cfe6
+    jinja: 'Translate this from Vietnamese into simplified Chinese: {{ sentence_vie
+      }} ||| {{ sentence_zho_simpl }}'
     metadata: *id001
-    name: equals-translation-zul-kan
-    reference: Equals translation (Zulu into Kannada)
-  e1085b1f-5c93-4669-ad5a-640265ef375a: !Template
+    name: translate-this-vie-zho_simpl
+    reference: Translate this from X to Y (Vietnamese into simplified Chinese)
+  deaaafe3-6698-4bdb-a587-a27c9c5de119: !Template
     answer_choices: null
-    id: e1085b1f-5c93-4669-ad5a-640265ef375a
-    jinja: 'Nepali: {{ sentence_npi }} = Hindi: ||| {{ sentence_hin }}'
+    id: deaaafe3-6698-4bdb-a587-a27c9c5de119
+    jinja: 'Translate this from Yoruba into Igbo: {{ sentence_yor }} ||| {{ sentence_ibo
+      }}'
     metadata: *id001
-    name: equals-translation-npi-hin
-    reference: Equals translation (Nepali into Hindi)
-  e13dc516-db78-4d89-a5e3-25532dabe98a: !Template
+    name: translate-this-yor-ibo
+    reference: Translate this from X to Y (Yoruba into Igbo)
+  def35c44-92aa-4278-97f7-fd09f0b44090: !Template
     answer_choices: null
-    id: e13dc516-db78-4d89-a5e3-25532dabe98a
-    jinja: 'Tamil: {{ sentence_tam }} = Oriya: ||| {{ sentence_ory }}'
+    id: def35c44-92aa-4278-97f7-fd09f0b44090
+    jinja: 'Translate this from Tamil into Wolof: {{ sentence_tam }} ||| {{ sentence_wol
+      }}'
     metadata: *id001
-    name: equals-translation-tam-ory
-    reference: Equals translation (Tamil into Oriya)
-  e16c3fd3-b424-481a-929e-d39509fe32a2: !Template
+    name: translate-this-tam-wol
+    reference: Translate this from X to Y (Tamil into Wolof)
+  df265ffa-48e8-465a-804c-0ede43776cc0: !Template
     answer_choices: null
-    id: e16c3fd3-b424-481a-929e-d39509fe32a2
-    jinja: 'English: {{ sentence_eng }} = Catalan: ||| {{ sentence_cat }}'
+    id: df265ffa-48e8-465a-804c-0ede43776cc0
+    jinja: 'Translate this from French into Bengali: {{ sentence_fra }} ||| {{ sentence_ben
+      }}'
     metadata: *id001
-    name: equals-translation-eng-cat
-    reference: Equals translation (English into Catalan)
-  e1af09f5-28bf-4fff-9124-1b1ae848fdc2: !Template
+    name: translate-this-fra-ben
+    reference: Translate this from X to Y (French into Bengali)
+  e0001faa-815f-4f44-9c12-fb140ef7cd0f: !Template
     answer_choices: null
-    id: e1af09f5-28bf-4fff-9124-1b1ae848fdc2
-    jinja: 'English: {{ sentence_eng }} = Urdu: ||| {{ sentence_urd }}'
+    id: e0001faa-815f-4f44-9c12-fb140ef7cd0f
+    jinja: 'Translate this from Oriya into Punjabi: {{ sentence_ory }} ||| {{ sentence_pan
+      }}'
     metadata: *id001
-    name: equals-translation-eng-urd
-    reference: Equals translation (English into Urdu)
-  e20cf970-3bce-4d9c-bdfe-7f7c7d8772a7: !Template
+    name: translate-this-ory-pan
+    reference: Translate this from X to Y (Oriya into Punjabi)
+  e00c5ba2-82a2-4c2d-a4a6-4b567dae9a12: !Template
     answer_choices: null
-    id: e20cf970-3bce-4d9c-bdfe-7f7c7d8772a7
-    jinja: 'Assamese: {{ sentence_asm }} = simplified Chinese: ||| {{ sentence_zho_simpl
+    id: e00c5ba2-82a2-4c2d-a4a6-4b567dae9a12
+    jinja: 'Translate this from Marathi into Catalan: {{ sentence_mar }} ||| {{ sentence_cat
       }}'
     metadata: *id001
-    name: equals-translation-asm-zho_simpl
-    reference: Equals translation (Assamese into simplified Chinese)
-  e284ceb2-215f-4076-9cbc-a29d1c42aac0: !Template
+    name: translate-this-mar-cat
+    reference: Translate this from X to Y (Marathi into Catalan)
+  e021baf1-3691-4cf0-bd98-6c0fd54fe366: !Template
     answer_choices: null
-    id: e284ceb2-215f-4076-9cbc-a29d1c42aac0
-    jinja: 'Catalan: {{ sentence_cat }} = Xhosa: ||| {{ sentence_xho }}'
+    id: e021baf1-3691-4cf0-bd98-6c0fd54fe366
+    jinja: 'Translate this from Gujarati into Northern Sotho: {{ sentence_guj }} |||
+      {{ sentence_nso }}'
     metadata: *id001
-    name: equals-translation-cat-xho
-    reference: Equals translation (Catalan into Xhosa)
-  e30e82c7-4793-438a-8ce3-7bdfe922a535: !Template
+    name: translate-this-guj-nso
+    reference: Translate this from X to Y (Gujarati into Northern Sotho)
+  e0447e32-a327-46d6-91a8-075434871445: !Template
     answer_choices: null
-    id: e30e82c7-4793-438a-8ce3-7bdfe922a535
-    jinja: 'Lingala: {{ sentence_lin }} = Marathi: ||| {{ sentence_mar }}'
+    id: e0447e32-a327-46d6-91a8-075434871445
+    jinja: 'Translate this from simplified Chinese into Oriya: {{ sentence_zho_simpl
+      }} ||| {{ sentence_ory }}'
     metadata: *id001
-    name: equals-translation-lin-mar
-    reference: Equals translation (Lingala into Marathi)
-  e3152014-1ea9-40f3-a330-7c2db346294b: !Template
+    name: translate-this-zho_simpl-ory
+    reference: Translate this from X to Y (simplified Chinese into Oriya)
+  e05341d6-d1d6-4630-85cb-b6f7deb11b60: !Template
     answer_choices: null
-    id: e3152014-1ea9-40f3-a330-7c2db346294b
-    jinja: 'Catalan: {{ sentence_cat }} = Swahili: ||| {{ sentence_swh }}'
+    id: e05341d6-d1d6-4630-85cb-b6f7deb11b60
+    jinja: 'Translate this from Tamil into Kannada: {{ sentence_tam }} ||| {{ sentence_kan
+      }}'
     metadata: *id001
-    name: equals-translation-cat-swh
-    reference: Equals translation (Catalan into Swahili)
-  e31dfd99-8f8a-4192-bb8f-453e067eddcd: !Template
+    name: translate-this-tam-kan
+    reference: Translate this from X to Y (Tamil into Kannada)
+  e0aa1623-858c-49cc-a40f-3aabef4389d0: !Template
     answer_choices: null
-    id: e31dfd99-8f8a-4192-bb8f-453e067eddcd
-    jinja: 'Lingala: {{ sentence_lin }} = Xhosa: ||| {{ sentence_xho }}'
+    id: e0aa1623-858c-49cc-a40f-3aabef4389d0
+    jinja: 'Translate this from Indonesian into Catalan: {{ sentence_ind }} ||| {{
+      sentence_cat }}'
     metadata: *id001
-    name: equals-translation-lin-xho
-    reference: Equals translation (Lingala into Xhosa)
-  e32cf900-6b5a-4c13-a391-02e1fe648b19: !Template
+    name: translate-this-ind-cat
+    reference: Translate this from X to Y (Indonesian into Catalan)
+  e0ab44b1-5102-4bf1-a2d8-c934f0fcb9f3: !Template
     answer_choices: null
-    id: e32cf900-6b5a-4c13-a391-02e1fe648b19
-    jinja: 'Assamese: {{ sentence_asm }} = Zulu: ||| {{ sentence_zul }}'
+    id: e0ab44b1-5102-4bf1-a2d8-c934f0fcb9f3
+    jinja: 'Translate this from simplified Chinese into Arabic: {{ sentence_zho_simpl
+      }} ||| {{ sentence_ara }}'
     metadata: *id001
-    name: equals-translation-asm-zul
-    reference: Equals translation (Assamese into Zulu)
-  e34fb8a8-3c3f-423b-8d35-90aadfa75fc2: !Template
+    name: translate-this-zho_simpl-ara
+    reference: Translate this from X to Y (simplified Chinese into Arabic)
+  e0d3734e-5c8d-4b33-9cf5-316376d63a3d: !Template
     answer_choices: null
-    id: e34fb8a8-3c3f-423b-8d35-90aadfa75fc2
-    jinja: 'Punjabi: {{ sentence_pan }} = Malayalam: ||| {{ sentence_mal }}'
+    id: e0d3734e-5c8d-4b33-9cf5-316376d63a3d
+    jinja: 'Translate this from Urdu into Swahili: {{ sentence_urd }} ||| {{ sentence_swh
+      }}'
     metadata: *id001
-    name: equals-translation-pan-mal
-    reference: Equals translation (Punjabi into Malayalam)
-  e35a8f3f-a069-4e31-8684-4030774e1521: !Template
+    name: translate-this-urd-swh
+    reference: Translate this from X to Y (Urdu into Swahili)
+  e0d5eee8-6794-46d3-b009-4be4c1ab68d0: !Template
     answer_choices: null
-    id: e35a8f3f-a069-4e31-8684-4030774e1521
-    jinja: 'Arabic: {{ sentence_ara }} = Nepali: ||| {{ sentence_npi }}'
+    id: e0d5eee8-6794-46d3-b009-4be4c1ab68d0
+    jinja: 'Translate this from Indonesian into Marathi: {{ sentence_ind }} ||| {{
+      sentence_mar }}'
     metadata: *id001
-    name: equals-translation-ara-npi
-    reference: Equals translation (Arabic into Nepali)
-  e3952c62-16c6-4f5d-a500-5ed9d53c395d: !Template
+    name: translate-this-ind-mar
+    reference: Translate this from X to Y (Indonesian into Marathi)
+  e0e6a62f-3945-4f00-ba41-d34cc6b85a95: !Template
     answer_choices: null
-    id: e3952c62-16c6-4f5d-a500-5ed9d53c395d
-    jinja: 'Oriya: {{ sentence_ory }} = Malayalam: ||| {{ sentence_mal }}'
+    id: e0e6a62f-3945-4f00-ba41-d34cc6b85a95
+    jinja: 'Translate this from Zulu into Igbo: {{ sentence_zul }} ||| {{ sentence_ibo
+      }}'
     metadata: *id001
-    name: equals-translation-ory-mal
-    reference: Equals translation (Oriya into Malayalam)
-  e3c2bfa2-1596-4f31-af9c-2358133e7271: !Template
+    name: translate-this-zul-ibo
+    reference: Translate this from X to Y (Zulu into Igbo)
+  e1911915-6af0-4bd6-8832-31ef770a02b9: !Template
     answer_choices: null
-    id: e3c2bfa2-1596-4f31-af9c-2358133e7271
-    jinja: 'Marathi: {{ sentence_mar }} = Vietnamese: ||| {{ sentence_vie }}'
+    id: e1911915-6af0-4bd6-8832-31ef770a02b9
+    jinja: 'Translate this from Marathi into Kannada: {{ sentence_mar }} ||| {{ sentence_kan
+      }}'
     metadata: *id001
-    name: equals-translation-mar-vie
-    reference: Equals translation (Marathi into Vietnamese)
-  e46c14e3-db70-48f6-9351-02a58ba2b1a8: !Template
+    name: translate-this-mar-kan
+    reference: Translate this from X to Y (Marathi into Kannada)
+  e1c2c82b-7786-4aae-95c1-feee1d5842af: !Template
     answer_choices: null
-    id: e46c14e3-db70-48f6-9351-02a58ba2b1a8
-    jinja: 'Gujarati: {{ sentence_guj }} = Kannada: ||| {{ sentence_kan }}'
+    id: e1c2c82b-7786-4aae-95c1-feee1d5842af
+    jinja: 'Translate this from Urdu into Punjabi: {{ sentence_urd }} ||| {{ sentence_pan
+      }}'
     metadata: *id001
-    name: equals-translation-guj-kan
-    reference: Equals translation (Gujarati into Kannada)
-  e51cf0c5-6d08-4690-b6b0-92762d024ad9: !Template
+    name: translate-this-urd-pan
+    reference: Translate this from X to Y (Urdu into Punjabi)
+  e1e8d51b-2422-4228-ada7-8f0b40eb1846: !Template
     answer_choices: null
-    id: e51cf0c5-6d08-4690-b6b0-92762d024ad9
-    jinja: 'Yoruba: {{ sentence_yor }} = Malayalam: ||| {{ sentence_mal }}'
+    id: e1e8d51b-2422-4228-ada7-8f0b40eb1846
+    jinja: 'Translate this from Marathi into Hindi: {{ sentence_mar }} ||| {{ sentence_hin
+      }}'
     metadata: *id001
-    name: equals-translation-yor-mal
-    reference: Equals translation (Yoruba into Malayalam)
-  e53a297c-32cb-495d-8953-7e338882259e: !Template
+    name: translate-this-mar-hin
+    reference: Translate this from X to Y (Marathi into Hindi)
+  e227367a-810f-4269-8b9e-932bf4659ab1: !Template
     answer_choices: null
-    id: e53a297c-32cb-495d-8953-7e338882259e
-    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Zulu: ||| {{ sentence_zul }}'
+    id: e227367a-810f-4269-8b9e-932bf4659ab1
+    jinja: 'Translate this from Tamil into Swahili: {{ sentence_tam }} ||| {{ sentence_swh
+      }}'
     metadata: *id001
-    name: equals-translation-por-zul
-    reference: Equals translation (Brazilian Portuguese into Zulu)
-  e54043d5-1af1-486f-b27d-8dfbf2b8d203: !Template
+    name: translate-this-tam-swh
+    reference: Translate this from X to Y (Tamil into Swahili)
+  e2298511-03d1-47e3-9818-22655829503d: !Template
     answer_choices: null
-    id: e54043d5-1af1-486f-b27d-8dfbf2b8d203
-    jinja: 'Kannada: {{ sentence_kan }} = Yoruba: ||| {{ sentence_yor }}'
+    id: e2298511-03d1-47e3-9818-22655829503d
+    jinja: 'Translate this from Malayalam into Punjabi: {{ sentence_mal }} ||| {{
+      sentence_pan }}'
     metadata: *id001
-    name: equals-translation-kan-yor
-    reference: Equals translation (Kannada into Yoruba)
-  e550f2a1-3bbf-47e1-a743-12b1aec6746b: !Template
+    name: translate-this-mal-pan
+    reference: Translate this from X to Y (Malayalam into Punjabi)
+  e33eb5a0-6d21-4ea6-9e5f-00ec622278d7: !Template
     answer_choices: null
-    id: e550f2a1-3bbf-47e1-a743-12b1aec6746b
-    jinja: 'Telugu: {{ sentence_tel }} = Latin American Spanish: ||| {{ sentence_spa
-      }}'
+    id: e33eb5a0-6d21-4ea6-9e5f-00ec622278d7
+    jinja: 'Translate this from Telugu into Latin American Spanish: {{ sentence_tel
+      }} ||| {{ sentence_spa }}'
     metadata: *id001
-    name: equals-translation-tel-spa
-    reference: Equals translation (Telugu into Latin American Spanish)
-  e58f4ea4-07bb-4605-9310-709b1d300293: !Template
+    name: translate-this-tel-spa
+    reference: Translate this from X to Y (Telugu into Latin American Spanish)
+  e3954e61-c3a4-416c-a770-aeb628b283b4: !Template
     answer_choices: null
-    id: e58f4ea4-07bb-4605-9310-709b1d300293
-    jinja: 'Malayalam: {{ sentence_mal }} = traditional Chinese: ||| {{ sentence_zho_trad
+    id: e3954e61-c3a4-416c-a770-aeb628b283b4
+    jinja: 'Translate this from Xhosa into Urdu: {{ sentence_xho }} ||| {{ sentence_urd
       }}'
     metadata: *id001
-    name: equals-translation-mal-zho_trad
-    reference: Equals translation (Malayalam into traditional Chinese)
-  e63d7f33-ba3c-450b-b292-9ea833833870: !Template
+    name: translate-this-xho-urd
+    reference: Translate this from X to Y (Xhosa into Urdu)
+  e3dbc8ff-7709-4dc7-999b-e1e5f4e1e846: !Template
     answer_choices: null
-    id: e63d7f33-ba3c-450b-b292-9ea833833870
-    jinja: 'Vietnamese: {{ sentence_vie }} = Gujarati: ||| {{ sentence_guj }}'
+    id: e3dbc8ff-7709-4dc7-999b-e1e5f4e1e846
+    jinja: 'Translate this from Brazilian Portuguese into simplified Chinese: {{ sentence_por
+      }} ||| {{ sentence_zho_simpl }}'
     metadata: *id001
-    name: equals-translation-vie-guj
-    reference: Equals translation (Vietnamese into Gujarati)
-  e69c9823-a749-4c88-9178-5c6a8fd9fa26: !Template
+    name: translate-this-por-zho_simpl
+    reference: Translate this from X to Y (Brazilian Portuguese into simplified Chinese)
+  e52530f9-83b4-408f-acdd-b045163e7920: !Template
     answer_choices: null
-    id: e69c9823-a749-4c88-9178-5c6a8fd9fa26
-    jinja: 'Urdu: {{ sentence_urd }} = English: ||| {{ sentence_eng }}'
+    id: e52530f9-83b4-408f-acdd-b045163e7920
+    jinja: 'Translate this from Kannada into Igbo: {{ sentence_kan }} ||| {{ sentence_ibo
+      }}'
     metadata: *id001
-    name: equals-translation-urd-eng
-    reference: Equals translation (Urdu into English)
-  e7412fbd-c17e-45a5-b153-fe1714222ae1: !Template
+    name: translate-this-kan-ibo
+    reference: Translate this from X to Y (Kannada into Igbo)
+  e5608923-4056-4476-b17c-ed3c38d179da: !Template
     answer_choices: null
-    id: e7412fbd-c17e-45a5-b153-fe1714222ae1
-    jinja: 'Bengali: {{ sentence_ben }} = simplified Chinese: ||| {{ sentence_zho_simpl
-      }}'
+    id: e5608923-4056-4476-b17c-ed3c38d179da
+    jinja: 'Translate this from Marathi into Indonesian: {{ sentence_mar }} ||| {{
+      sentence_ind }}'
     metadata: *id001
-    name: equals-translation-ben-zho_simpl
-    reference: Equals translation (Bengali into simplified Chinese)
-  e7a3ceb1-4119-4157-9a64-1a2f1886752b: !Template
+    name: translate-this-mar-ind
+    reference: Translate this from X to Y (Marathi into Indonesian)
+  e5e9a927-f0ac-4621-8846-b04314c89693: !Template
     answer_choices: null
-    id: e7a3ceb1-4119-4157-9a64-1a2f1886752b
-    jinja: 'Catalan: {{ sentence_cat }} = Malayalam: ||| {{ sentence_mal }}'
+    id: e5e9a927-f0ac-4621-8846-b04314c89693
+    jinja: 'Translate this from Gujarati into Lingala: {{ sentence_guj }} ||| {{ sentence_lin
+      }}'
     metadata: *id001
-    name: equals-translation-cat-mal
-    reference: Equals translation (Catalan into Malayalam)
-  e833bd7e-0f92-42b0-a358-7c8e3bf5b419: !Template
+    name: translate-this-guj-lin
+    reference: Translate this from X to Y (Gujarati into Lingala)
+  e60f097c-b0b1-48e5-b32f-65c03110631a: !Template
     answer_choices: null
-    id: e833bd7e-0f92-42b0-a358-7c8e3bf5b419
-    jinja: 'Vietnamese: {{ sentence_vie }} = Marathi: ||| {{ sentence_mar }}'
+    id: e60f097c-b0b1-48e5-b32f-65c03110631a
+    jinja: 'Translate this from Wolof into Punjabi: {{ sentence_wol }} ||| {{ sentence_pan
+      }}'
     metadata: *id001
-    name: equals-translation-vie-mar
-    reference: Equals translation (Vietnamese into Marathi)
-  e8451e06-a02f-413d-a629-ac897f09861e: !Template
+    name: translate-this-wol-pan
+    reference: Translate this from X to Y (Wolof into Punjabi)
+  e62aaa83-154c-4bf5-8900-4f87cc595d35: !Template
     answer_choices: null
-    id: e8451e06-a02f-413d-a629-ac897f09861e
-    jinja: 'Swahili: {{ sentence_swh }} = Bengali: ||| {{ sentence_ben }}'
+    id: e62aaa83-154c-4bf5-8900-4f87cc595d35
+    jinja: 'Translate this from Northern Sotho into Vietnamese: {{ sentence_nso }}
+      ||| {{ sentence_vie }}'
     metadata: *id001
-    name: equals-translation-swh-ben
-    reference: Equals translation (Swahili into Bengali)
-  e8f1fd32-ad63-4794-987f-6408f2650223: !Template
+    name: translate-this-nso-vie
+    reference: Translate this from X to Y (Northern Sotho into Vietnamese)
+  e6553933-a07d-477a-a43b-4a176e7b9283: !Template
     answer_choices: null
-    id: e8f1fd32-ad63-4794-987f-6408f2650223
-    jinja: 'Wolof: {{ sentence_wol }} = Igbo: ||| {{ sentence_ibo }}'
+    id: e6553933-a07d-477a-a43b-4a176e7b9283
+    jinja: 'Translate this from English into Malayalam: {{ sentence_eng }} ||| {{
+      sentence_mal }}'
     metadata: *id001
-    name: equals-translation-wol-ibo
-    reference: Equals translation (Wolof into Igbo)
-  e91c6272-19d0-4128-8911-f955946839c7: !Template
+    name: translate-this-eng-mal
+    reference: Translate this from X to Y (English into Malayalam)
+  e6a71e7d-6c9a-4856-8ee9-29cbedf97de7: !Template
     answer_choices: null
-    id: e91c6272-19d0-4128-8911-f955946839c7
-    jinja: 'Kannada: {{ sentence_kan }} = Oriya: ||| {{ sentence_ory }}'
+    id: e6a71e7d-6c9a-4856-8ee9-29cbedf97de7
+    jinja: 'Translate this from Nepali into Kannada: {{ sentence_npi }} ||| {{ sentence_kan
+      }}'
     metadata: *id001
-    name: equals-translation-kan-ory
-    reference: Equals translation (Kannada into Oriya)
-  e93b73fd-b3ec-4ea6-8efd-62f9099b8285: !Template
+    name: translate-this-npi-kan
+    reference: Translate this from X to Y (Nepali into Kannada)
+  e6cb9aa9-b184-42a6-9f70-d4dd1abef223: !Template
     answer_choices: null
-    id: e93b73fd-b3ec-4ea6-8efd-62f9099b8285
-    jinja: 'Xhosa: {{ sentence_xho }} = traditional Chinese: ||| {{ sentence_zho_trad
+    id: e6cb9aa9-b184-42a6-9f70-d4dd1abef223
+    jinja: 'Translate this from Wolof into Swahili: {{ sentence_wol }} ||| {{ sentence_swh
       }}'
     metadata: *id001
-    name: equals-translation-xho-zho_trad
-    reference: Equals translation (Xhosa into traditional Chinese)
-  e9432d91-367e-47b9-b16b-af7183189ba0: !Template
+    name: translate-this-wol-swh
+    reference: Translate this from X to Y (Wolof into Swahili)
+  e707087a-4294-4a3d-8d1f-a03a2884139d: !Template
     answer_choices: null
-    id: e9432d91-367e-47b9-b16b-af7183189ba0
-    jinja: 'Xhosa: {{ sentence_xho }} = Latin American Spanish: ||| {{ sentence_spa
+    id: e707087a-4294-4a3d-8d1f-a03a2884139d
+    jinja: 'Translate this from Nepali into Telugu: {{ sentence_npi }} ||| {{ sentence_tel
       }}'
     metadata: *id001
-    name: equals-translation-xho-spa
-    reference: Equals translation (Xhosa into Latin American Spanish)
-  e971dced-05fb-448b-8ffb-1e5feda8c550: !Template
+    name: translate-this-npi-tel
+    reference: Translate this from X to Y (Nepali into Telugu)
+  e76c254b-4318-44c0-ad73-3affac37348a: !Template
     answer_choices: null
-    id: e971dced-05fb-448b-8ffb-1e5feda8c550
-    jinja: 'Oriya: {{ sentence_ory }} = Catalan: ||| {{ sentence_cat }}'
+    id: e76c254b-4318-44c0-ad73-3affac37348a
+    jinja: 'Translate this from Gujarati into Telugu: {{ sentence_guj }} ||| {{ sentence_tel
+      }}'
     metadata: *id001
-    name: equals-translation-ory-cat
-    reference: Equals translation (Oriya into Catalan)
-  e9c27fac-c40b-49ae-822a-6f4983566280: !Template
+    name: translate-this-guj-tel
+    reference: Translate this from X to Y (Gujarati into Telugu)
+  e7845fb2-0409-41aa-b24d-bc4219d1cda4: !Template
     answer_choices: null
-    id: e9c27fac-c40b-49ae-822a-6f4983566280
-    jinja: 'Marathi: {{ sentence_mar }} = Indonesian: ||| {{ sentence_ind }}'
+    id: e7845fb2-0409-41aa-b24d-bc4219d1cda4
+    jinja: 'Translate this from Wolof into Marathi: {{ sentence_wol }} ||| {{ sentence_mar
+      }}'
     metadata: *id001
-    name: equals-translation-mar-ind
-    reference: Equals translation (Marathi into Indonesian)
-  ea0acf9d-c1e9-4a21-a9b5-8b1c839c7b10: !Template
+    name: translate-this-wol-mar
+    reference: Translate this from X to Y (Wolof into Marathi)
+  e7beaab5-84ad-4857-84db-998a4b408175: !Template
     answer_choices: null
-    id: ea0acf9d-c1e9-4a21-a9b5-8b1c839c7b10
-    jinja: 'Nepali: {{ sentence_npi }} = Lingala: ||| {{ sentence_lin }}'
+    id: e7beaab5-84ad-4857-84db-998a4b408175
+    jinja: 'Translate this from Swahili into Oriya: {{ sentence_swh }} ||| {{ sentence_ory
+      }}'
     metadata: *id001
-    name: equals-translation-npi-lin
-    reference: Equals translation (Nepali into Lingala)
-  ea3b1a7a-4a97-48ec-bcd2-7ee532036a5d: !Template
+    name: translate-this-swh-ory
+    reference: Translate this from X to Y (Swahili into Oriya)
+  e7e7e6bb-9fc9-4f91-ba30-f9e81b1e7315: !Template
     answer_choices: null
-    id: ea3b1a7a-4a97-48ec-bcd2-7ee532036a5d
-    jinja: 'Arabic: {{ sentence_ara }} = Hindi: ||| {{ sentence_hin }}'
+    id: e7e7e6bb-9fc9-4f91-ba30-f9e81b1e7315
+    jinja: 'Translate this from Catalan into Brazilian Portuguese: {{ sentence_cat
+      }} ||| {{ sentence_por }}'
     metadata: *id001
-    name: equals-translation-ara-hin
-    reference: Equals translation (Arabic into Hindi)
-  ea4a0c1e-1b19-4bbb-80f4-7bbfbb562ffe: !Template
+    name: translate-this-cat-por
+    reference: Translate this from X to Y (Catalan into Brazilian Portuguese)
+  e80e5f8f-9942-485b-8bff-d2b0f77374eb: !Template
     answer_choices: null
-    id: ea4a0c1e-1b19-4bbb-80f4-7bbfbb562ffe
-    jinja: 'Lingala: {{ sentence_lin }} = Brazilian Portuguese: ||| {{ sentence_por
+    id: e80e5f8f-9942-485b-8bff-d2b0f77374eb
+    jinja: 'Translate this from Kannada into Zulu: {{ sentence_kan }} ||| {{ sentence_zul
       }}'
     metadata: *id001
-    name: equals-translation-lin-por
-    reference: Equals translation (Lingala into Brazilian Portuguese)
-  ea7bdfa6-f321-4fe5-bca4-89738343499b: !Template
+    name: translate-this-kan-zul
+    reference: Translate this from X to Y (Kannada into Zulu)
+  e8601c55-1ea6-4540-9787-d3384e575591: !Template
     answer_choices: null
-    id: ea7bdfa6-f321-4fe5-bca4-89738343499b
-    jinja: 'Igbo: {{ sentence_ibo }} = Northern Sotho: ||| {{ sentence_nso }}'
+    id: e8601c55-1ea6-4540-9787-d3384e575591
+    jinja: 'Translate this from simplified Chinese into Urdu: {{ sentence_zho_simpl
+      }} ||| {{ sentence_urd }}'
     metadata: *id001
-    name: equals-translation-ibo-nso
-    reference: Equals translation (Igbo into Northern Sotho)
-  eb999ed9-7227-42a7-945d-916fb8e731f2: !Template
+    name: translate-this-zho_simpl-urd
+    reference: Translate this from X to Y (simplified Chinese into Urdu)
+  e87cfde9-b6ea-4bba-ae03-2b0709775634: !Template
     answer_choices: null
-    id: eb999ed9-7227-42a7-945d-916fb8e731f2
-    jinja: 'Telugu: {{ sentence_tel }} = Swahili: ||| {{ sentence_swh }}'
+    id: e87cfde9-b6ea-4bba-ae03-2b0709775634
+    jinja: 'Translate this from Latin American Spanish into Brazilian Portuguese:
+      {{ sentence_spa }} ||| {{ sentence_por }}'
     metadata: *id001
-    name: equals-translation-tel-swh
-    reference: Equals translation (Telugu into Swahili)
-  ebc88c2d-d1c7-4c88-9efa-b759cd22b3b5: !Template
+    name: translate-this-spa-por
+    reference: Translate this from X to Y (Latin American Spanish into Brazilian Portuguese)
+  e8e21c4f-bd2b-418a-aa63-aa7858c78872: !Template
     answer_choices: null
-    id: ebc88c2d-d1c7-4c88-9efa-b759cd22b3b5
-    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Catalan: ||| {{ sentence_cat
+    id: e8e21c4f-bd2b-418a-aa63-aa7858c78872
+    jinja: 'Translate this from Oriya into Marathi: {{ sentence_ory }} ||| {{ sentence_mar
       }}'
     metadata: *id001
-    name: equals-translation-por-cat
-    reference: Equals translation (Brazilian Portuguese into Catalan)
-  ebde914b-8b60-47be-a202-f98aaa683842: !Template
+    name: translate-this-ory-mar
+    reference: Translate this from X to Y (Oriya into Marathi)
+  e9ec69f6-c632-4047-9475-5bd18f407fef: !Template
     answer_choices: null
-    id: ebde914b-8b60-47be-a202-f98aaa683842
-    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Kannada: ||| {{ sentence_kan
+    id: e9ec69f6-c632-4047-9475-5bd18f407fef
+    jinja: 'Translate this from Tamil into Oriya: {{ sentence_tam }} ||| {{ sentence_ory
       }}'
     metadata: *id001
-    name: equals-translation-zho_simpl-kan
-    reference: Equals translation (simplified Chinese into Kannada)
-  ec29bab4-36db-4019-9864-c093b4246f90: !Template
+    name: translate-this-tam-ory
+    reference: Translate this from X to Y (Tamil into Oriya)
+  ea0b2a3f-b4f3-415e-8c59-b0340208726d: !Template
     answer_choices: null
-    id: ec29bab4-36db-4019-9864-c093b4246f90
-    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Yoruba: ||| {{ sentence_yor
+    id: ea0b2a3f-b4f3-415e-8c59-b0340208726d
+    jinja: 'Translate this from Zulu into Catalan: {{ sentence_zul }} ||| {{ sentence_cat
       }}'
     metadata: *id001
-    name: equals-translation-zho_simpl-yor
-    reference: Equals translation (simplified Chinese into Yoruba)
-  ec57f00c-ec46-435a-93dc-f179eb7a415d: !Template
+    name: translate-this-zul-cat
+    reference: Translate this from X to Y (Zulu into Catalan)
+  ea4a25ab-4cf4-4926-88bc-bb2adc3e4f3d: !Template
     answer_choices: null
-    id: ec57f00c-ec46-435a-93dc-f179eb7a415d
-    jinja: 'Xhosa: {{ sentence_xho }} = Kannada: ||| {{ sentence_kan }}'
+    id: ea4a25ab-4cf4-4926-88bc-bb2adc3e4f3d
+    jinja: 'Translate this from simplified Chinese into Catalan: {{ sentence_zho_simpl
+      }} ||| {{ sentence_cat }}'
     metadata: *id001
-    name: equals-translation-xho-kan
-    reference: Equals translation (Xhosa into Kannada)
-  ec668fa7-f1cd-4694-956b-e9d0c05a998c: !Template
+    name: translate-this-zho_simpl-cat
+    reference: Translate this from X to Y (simplified Chinese into Catalan)
+  eadb3ae1-f9de-433c-aade-6614053e8ccb: !Template
     answer_choices: null
-    id: ec668fa7-f1cd-4694-956b-e9d0c05a998c
-    jinja: 'Zulu: {{ sentence_zul }} = Gujarati: ||| {{ sentence_guj }}'
+    id: eadb3ae1-f9de-433c-aade-6614053e8ccb
+    jinja: 'Translate this from Gujarati into Oriya: {{ sentence_guj }} ||| {{ sentence_ory
+      }}'
     metadata: *id001
-    name: equals-translation-zul-guj
-    reference: Equals translation (Zulu into Gujarati)
-  ec6f10b3-e616-4a19-aa2d-52ba61bf1ef2: !Template
+    name: translate-this-guj-ory
+    reference: Translate this from X to Y (Gujarati into Oriya)
+  eb473c1c-a9d6-46ba-aea4-7bc94ec2803c: !Template
     answer_choices: null
-    id: ec6f10b3-e616-4a19-aa2d-52ba61bf1ef2
-    jinja: 'Urdu: {{ sentence_urd }} = Oriya: ||| {{ sentence_ory }}'
+    id: eb473c1c-a9d6-46ba-aea4-7bc94ec2803c
+    jinja: 'Translate this from Lingala into Zulu: {{ sentence_lin }} ||| {{ sentence_zul
+      }}'
     metadata: *id001
-    name: equals-translation-urd-ory
-    reference: Equals translation (Urdu into Oriya)
-  ecfd58dc-08df-45d0-87c4-8433d1865c4a: !Template
+    name: translate-this-lin-zul
+    reference: Translate this from X to Y (Lingala into Zulu)
+  ec6386ff-a6b5-4447-9e53-ba6ac608f016: !Template
     answer_choices: null
-    id: ecfd58dc-08df-45d0-87c4-8433d1865c4a
-    jinja: 'Wolof: {{ sentence_wol }} = Marathi: ||| {{ sentence_mar }}'
+    id: ec6386ff-a6b5-4447-9e53-ba6ac608f016
+    jinja: 'Translate this from Hindi into Kannada: {{ sentence_hin }} ||| {{ sentence_kan
+      }}'
     metadata: *id001
-    name: equals-translation-wol-mar
-    reference: Equals translation (Wolof into Marathi)
-  ed23d7a5-758e-4b5c-86ec-2d6faaba783b: !Template
+    name: translate-this-hin-kan
+    reference: Translate this from X to Y (Hindi into Kannada)
+  ece55c22-4752-438f-a13a-1ef8fdc01750: !Template
     answer_choices: null
-    id: ed23d7a5-758e-4b5c-86ec-2d6faaba783b
-    jinja: 'Telugu: {{ sentence_tel }} = English: ||| {{ sentence_eng }}'
+    id: ece55c22-4752-438f-a13a-1ef8fdc01750
+    jinja: 'Translate this from Brazilian Portuguese into Igbo: {{ sentence_por }}
+      ||| {{ sentence_ibo }}'
     metadata: *id001
-    name: equals-translation-tel-eng
-    reference: Equals translation (Telugu into English)
-  ed3996c8-45a6-47a6-971b-85652505697c: !Template
+    name: translate-this-por-ibo
+    reference: Translate this from X to Y (Brazilian Portuguese into Igbo)
+  ed87992b-9728-4dc4-a699-dd74cb451133: !Template
     answer_choices: null
-    id: ed3996c8-45a6-47a6-971b-85652505697c
-    jinja: 'Northern Sotho: {{ sentence_nso }} = Latin American Spanish: ||| {{ sentence_spa
+    id: ed87992b-9728-4dc4-a699-dd74cb451133
+    jinja: 'Translate this from Lingala into Gujarati: {{ sentence_lin }} ||| {{ sentence_guj
       }}'
     metadata: *id001
-    name: equals-translation-nso-spa
-    reference: Equals translation (Northern Sotho into Latin American Spanish)
-  ed56187c-cdb7-4eef-b6d9-7a22b8d9bd97: !Template
+    name: translate-this-lin-guj
+    reference: Translate this from X to Y (Lingala into Gujarati)
+  edca82dd-591c-4421-ae6e-2626214a026f: !Template
+    answer_choices: null
+    id: edca82dd-591c-4421-ae6e-2626214a026f
+    jinja: 'Translate this from Assamese into Lingala: {{ sentence_asm }} ||| {{ sentence_lin
+      }}'
+    metadata: *id001
+    name: translate-this-asm-lin
+    reference: Translate this from X to Y (Assamese into Lingala)
+  ee140d7e-5f58-4417-a3b8-21ee17e234e6: !Template
+    answer_choices: null
+    id: ee140d7e-5f58-4417-a3b8-21ee17e234e6
+    jinja: 'Translate this from Northern Sotho into Indonesian: {{ sentence_nso }}
+      ||| {{ sentence_ind }}'
+    metadata: *id001
+    name: translate-this-nso-ind
+    reference: Translate this from X to Y (Northern Sotho into Indonesian)
+  ee2555d2-95b4-4667-bb7b-1cc4a2095a92: !Template
     answer_choices: null
-    id: ed56187c-cdb7-4eef-b6d9-7a22b8d9bd97
-    jinja: 'Malayalam: {{ sentence_mal }} = Yoruba: ||| {{ sentence_yor }}'
+    id: ee2555d2-95b4-4667-bb7b-1cc4a2095a92
+    jinja: 'Translate this from Wolof into Arabic: {{ sentence_wol }} ||| {{ sentence_ara
+      }}'
     metadata: *id001
-    name: equals-translation-mal-yor
-    reference: Equals translation (Malayalam into Yoruba)
-  eddc41e0-1d42-48c9-88a6-2699b877714d: !Template
+    name: translate-this-wol-ara
+    reference: Translate this from X to Y (Wolof into Arabic)
+  ee3c91d7-b4ca-4780-ae72-565422a54d23: !Template
     answer_choices: null
-    id: eddc41e0-1d42-48c9-88a6-2699b877714d
-    jinja: 'Hindi: {{ sentence_hin }} = Lingala: ||| {{ sentence_lin }}'
+    id: ee3c91d7-b4ca-4780-ae72-565422a54d23
+    jinja: 'Translate this from Assamese into Wolof: {{ sentence_asm }} ||| {{ sentence_wol
+      }}'
     metadata: *id001
-    name: equals-translation-hin-lin
-    reference: Equals translation (Hindi into Lingala)
-  ee388a36-cd92-4214-9953-22ea09abbc97: !Template
+    name: translate-this-asm-wol
+    reference: Translate this from X to Y (Assamese into Wolof)
+  ee62420e-0175-47ed-a087-e3734a7dd1f8: !Template
     answer_choices: null
-    id: ee388a36-cd92-4214-9953-22ea09abbc97
-    jinja: 'Urdu: {{ sentence_urd }} = Hindi: ||| {{ sentence_hin }}'
+    id: ee62420e-0175-47ed-a087-e3734a7dd1f8
+    jinja: 'Translate this from Marathi into Arabic: {{ sentence_mar }} ||| {{ sentence_ara
+      }}'
     metadata: *id001
-    name: equals-translation-urd-hin
-    reference: Equals translation (Urdu into Hindi)
-  ef515427-5b62-4cbb-a2ec-91540d7207fc: !Template
+    name: translate-this-mar-ara
+    reference: Translate this from X to Y (Marathi into Arabic)
+  ee75f29a-ff92-4bac-b773-467eabc015ea: !Template
     answer_choices: null
-    id: ef515427-5b62-4cbb-a2ec-91540d7207fc
-    jinja: 'Punjabi: {{ sentence_pan }} = traditional Chinese: ||| {{ sentence_zho_trad
+    id: ee75f29a-ff92-4bac-b773-467eabc015ea
+    jinja: 'Translate this from Indonesian into Oriya: {{ sentence_ind }} ||| {{ sentence_ory
       }}'
     metadata: *id001
-    name: equals-translation-pan-zho_trad
-    reference: Equals translation (Punjabi into traditional Chinese)
-  ef5ca22f-e188-49da-81b2-b93a0d97da49: !Template
+    name: translate-this-ind-ory
+    reference: Translate this from X to Y (Indonesian into Oriya)
+  ee87defd-ff56-48f8-862e-be388fd3a40d: !Template
     answer_choices: null
-    id: ef5ca22f-e188-49da-81b2-b93a0d97da49
-    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Indonesian: ||| {{ sentence_ind
+    id: ee87defd-ff56-48f8-862e-be388fd3a40d
+    jinja: 'Translate this from Zulu into Telugu: {{ sentence_zul }} ||| {{ sentence_tel
       }}'
     metadata: *id001
-    name: equals-translation-zho_trad-ind
-    reference: Equals translation (traditional Chinese into Indonesian)
-  ef63119e-4c07-4c3e-9f91-6d80464da7e0: !Template
+    name: translate-this-zul-tel
+    reference: Translate this from X to Y (Zulu into Telugu)
+  eefd3bd0-11dd-482a-a6fd-8b8b78364020: !Template
     answer_choices: null
-    id: ef63119e-4c07-4c3e-9f91-6d80464da7e0
-    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Xhosa: ||| {{ sentence_xho
+    id: eefd3bd0-11dd-482a-a6fd-8b8b78364020
+    jinja: 'Translate this from Arabic into Yoruba: {{ sentence_ara }} ||| {{ sentence_yor
       }}'
     metadata: *id001
-    name: equals-translation-zho_simpl-xho
-    reference: Equals translation (simplified Chinese into Xhosa)
-  ef6395ca-2137-4fd8-ab39-d22770d16aa9: !Template
+    name: translate-this-ara-yor
+    reference: Translate this from X to Y (Arabic into Yoruba)
+  ef48e6ab-b474-4069-8543-bcaa29731712: !Template
     answer_choices: null
-    id: ef6395ca-2137-4fd8-ab39-d22770d16aa9
-    jinja: 'Zulu: {{ sentence_zul }} = Northern Sotho: ||| {{ sentence_nso }}'
+    id: ef48e6ab-b474-4069-8543-bcaa29731712
+    jinja: 'Translate this from Urdu into Latin American Spanish: {{ sentence_urd
+      }} ||| {{ sentence_spa }}'
     metadata: *id001
-    name: equals-translation-zul-nso
-    reference: Equals translation (Zulu into Northern Sotho)
-  ef8277bc-7fc6-4ebe-997e-94e94a78f880: !Template
+    name: translate-this-urd-spa
+    reference: Translate this from X to Y (Urdu into Latin American Spanish)
+  efbc4e49-2900-458a-b12d-c25a17fee05b: !Template
     answer_choices: null
-    id: ef8277bc-7fc6-4ebe-997e-94e94a78f880
-    jinja: 'Swahili: {{ sentence_swh }} = Xhosa: ||| {{ sentence_xho }}'
+    id: efbc4e49-2900-458a-b12d-c25a17fee05b
+    jinja: 'Translate this from Hindi into Latin American Spanish: {{ sentence_hin
+      }} ||| {{ sentence_spa }}'
     metadata: *id001
-    name: equals-translation-swh-xho
-    reference: Equals translation (Swahili into Xhosa)
-  ef8cbfd9-e8e2-4911-b298-5ca0dddf21ed: !Template
+    name: translate-this-hin-spa
+    reference: Translate this from X to Y (Hindi into Latin American Spanish)
+  efdaad42-0d87-4908-80d6-a80f13b89982: !Template
     answer_choices: null
-    id: ef8cbfd9-e8e2-4911-b298-5ca0dddf21ed
-    jinja: 'Vietnamese: {{ sentence_vie }} = English: ||| {{ sentence_eng }}'
+    id: efdaad42-0d87-4908-80d6-a80f13b89982
+    jinja: 'Translate this from Kannada into Catalan: {{ sentence_kan }} ||| {{ sentence_cat
+      }}'
     metadata: *id001
-    name: equals-translation-vie-eng
-    reference: Equals translation (Vietnamese into English)
-  f0df1e2c-7cf7-479c-a7e7-3a7d7f6c702b: !Template
+    name: translate-this-kan-cat
+    reference: Translate this from X to Y (Kannada into Catalan)
+  efe2bc14-cdfd-462b-b96b-7aa446563824: !Template
     answer_choices: null
-    id: f0df1e2c-7cf7-479c-a7e7-3a7d7f6c702b
-    jinja: 'Malayalam: {{ sentence_mal }} = Nepali: ||| {{ sentence_npi }}'
+    id: efe2bc14-cdfd-462b-b96b-7aa446563824
+    jinja: 'Translate this from Malayalam into traditional Chinese: {{ sentence_mal
+      }} ||| {{ sentence_zho_trad }}'
     metadata: *id001
-    name: equals-translation-mal-npi
-    reference: Equals translation (Malayalam into Nepali)
-  f157fe01-063a-41b1-8244-4119a12e5b14: !Template
+    name: translate-this-mal-zho_trad
+    reference: Translate this from X to Y (Malayalam into traditional Chinese)
+  efe437d9-d524-4e8c-a21b-cbfdbaf631fb: !Template
     answer_choices: null
-    id: f157fe01-063a-41b1-8244-4119a12e5b14
-    jinja: 'Latin American Spanish: {{ sentence_spa }} = Arabic: ||| {{ sentence_ara
+    id: efe437d9-d524-4e8c-a21b-cbfdbaf631fb
+    jinja: 'Translate this from Telugu into Urdu: {{ sentence_tel }} ||| {{ sentence_urd
       }}'
     metadata: *id001
-    name: equals-translation-spa-ara
-    reference: Equals translation (Latin American Spanish into Arabic)
-  f1d83c9c-1751-4e52-a5a3-29f3bc568ce3: !Template
+    name: translate-this-tel-urd
+    reference: Translate this from X to Y (Telugu into Urdu)
+  f01ac1a4-fdfa-49c7-b742-48128f4c0984: !Template
     answer_choices: null
-    id: f1d83c9c-1751-4e52-a5a3-29f3bc568ce3
-    jinja: 'Bengali: {{ sentence_ben }} = Gujarati: ||| {{ sentence_guj }}'
+    id: f01ac1a4-fdfa-49c7-b742-48128f4c0984
+    jinja: 'Translate this from Marathi into French: {{ sentence_mar }} ||| {{ sentence_fra
+      }}'
     metadata: *id001
-    name: equals-translation-ben-guj
-    reference: Equals translation (Bengali into Gujarati)
-  f1f5bf39-8184-4245-a815-345891e7d5e8: !Template
+    name: translate-this-mar-fra
+    reference: Translate this from X to Y (Marathi into French)
+  f01ce632-31d4-4b01-b352-e2d70b49a4c4: !Template
     answer_choices: null
-    id: f1f5bf39-8184-4245-a815-345891e7d5e8
-    jinja: 'Indonesian: {{ sentence_ind }} = Tamil: ||| {{ sentence_tam }}'
+    id: f01ce632-31d4-4b01-b352-e2d70b49a4c4
+    jinja: 'Translate this from Kannada into Marathi: {{ sentence_kan }} ||| {{ sentence_mar
+      }}'
     metadata: *id001
-    name: equals-translation-ind-tam
-    reference: Equals translation (Indonesian into Tamil)
-  f270c087-e402-4cde-b94d-73060cf71c8f: !Template
+    name: translate-this-kan-mar
+    reference: Translate this from X to Y (Kannada into Marathi)
+  f01d3921-b511-4987-9f2d-2e9bc12516fd: !Template
     answer_choices: null
-    id: f270c087-e402-4cde-b94d-73060cf71c8f
-    jinja: 'Lingala: {{ sentence_lin }} = traditional Chinese: ||| {{ sentence_zho_trad
+    id: f01d3921-b511-4987-9f2d-2e9bc12516fd
+    jinja: 'Translate this from Oriya into Vietnamese: {{ sentence_ory }} ||| {{ sentence_vie
       }}'
     metadata: *id001
-    name: equals-translation-lin-zho_trad
-    reference: Equals translation (Lingala into traditional Chinese)
-  f2c15a7d-d17c-4e18-b472-ee7ef120ac56: !Template
+    name: translate-this-ory-vie
+    reference: Translate this from X to Y (Oriya into Vietnamese)
+  f023ff21-3f36-4757-bce9-c1370325c7e1: !Template
     answer_choices: null
-    id: f2c15a7d-d17c-4e18-b472-ee7ef120ac56
-    jinja: 'French: {{ sentence_fra }} = Tamil: ||| {{ sentence_tam }}'
+    id: f023ff21-3f36-4757-bce9-c1370325c7e1
+    jinja: 'Translate this from Marathi into Nepali: {{ sentence_mar }} ||| {{ sentence_npi
+      }}'
     metadata: *id001
-    name: equals-translation-fra-tam
-    reference: Equals translation (French into Tamil)
-  f2c17768-5777-49a9-aa63-a8ee1856f9f4: !Template
+    name: translate-this-mar-npi
+    reference: Translate this from X to Y (Marathi into Nepali)
+  f07681d7-66a2-4c6c-9787-662f220460fb: !Template
     answer_choices: null
-    id: f2c17768-5777-49a9-aa63-a8ee1856f9f4
-    jinja: 'Urdu: {{ sentence_urd }} = Latin American Spanish: ||| {{ sentence_spa
+    id: f07681d7-66a2-4c6c-9787-662f220460fb
+    jinja: 'Translate this from Malayalam into Igbo: {{ sentence_mal }} ||| {{ sentence_ibo
       }}'
     metadata: *id001
-    name: equals-translation-urd-spa
-    reference: Equals translation (Urdu into Latin American Spanish)
-  f2d3ea8c-c0b8-4961-bfcd-a3922fb7b3b3: !Template
+    name: translate-this-mal-ibo
+    reference: Translate this from X to Y (Malayalam into Igbo)
+  f0843bb8-5d42-4a0a-b69d-01f5c95a88bf: !Template
     answer_choices: null
-    id: f2d3ea8c-c0b8-4961-bfcd-a3922fb7b3b3
-    jinja: 'Igbo: {{ sentence_ibo }} = French: ||| {{ sentence_fra }}'
+    id: f0843bb8-5d42-4a0a-b69d-01f5c95a88bf
+    jinja: 'Translate this from Northern Sotho into Telugu: {{ sentence_nso }} |||
+      {{ sentence_tel }}'
     metadata: *id001
-    name: equals-translation-ibo-fra
-    reference: Equals translation (Igbo into French)
-  f305a44c-dffd-4133-bf4f-421c558a45ca: !Template
+    name: translate-this-nso-tel
+    reference: Translate this from X to Y (Northern Sotho into Telugu)
+  f086694a-6295-405e-b090-b825ef427574: !Template
     answer_choices: null
-    id: f305a44c-dffd-4133-bf4f-421c558a45ca
-    jinja: 'Catalan: {{ sentence_cat }} = Urdu: ||| {{ sentence_urd }}'
+    id: f086694a-6295-405e-b090-b825ef427574
+    jinja: 'Translate this from Catalan into Northern Sotho: {{ sentence_cat }} |||
+      {{ sentence_nso }}'
     metadata: *id001
-    name: equals-translation-cat-urd
-    reference: Equals translation (Catalan into Urdu)
-  f30afdf9-1557-4b58-866f-6a078c573830: !Template
+    name: translate-this-cat-nso
+    reference: Translate this from X to Y (Catalan into Northern Sotho)
+  f0e43f53-5411-42e9-a4db-fe8118155861: !Template
     answer_choices: null
-    id: f30afdf9-1557-4b58-866f-6a078c573830
-    jinja: 'Kannada: {{ sentence_kan }} = Arabic: ||| {{ sentence_ara }}'
+    id: f0e43f53-5411-42e9-a4db-fe8118155861
+    jinja: 'Translate this from Vietnamese into French: {{ sentence_vie }} ||| {{
+      sentence_fra }}'
     metadata: *id001
-    name: equals-translation-kan-ara
-    reference: Equals translation (Kannada into Arabic)
-  f38c8749-62b5-4ccc-b88e-58d819bdc08c: !Template
+    name: translate-this-vie-fra
+    reference: Translate this from X to Y (Vietnamese into French)
+  f112c0b9-3b55-4e45-8f04-5335ff10d362: !Template
     answer_choices: null
-    id: f38c8749-62b5-4ccc-b88e-58d819bdc08c
-    jinja: 'Yoruba: {{ sentence_yor }} = Bengali: ||| {{ sentence_ben }}'
+    id: f112c0b9-3b55-4e45-8f04-5335ff10d362
+    jinja: 'Translate this from Tamil into Brazilian Portuguese: {{ sentence_tam }}
+      ||| {{ sentence_por }}'
     metadata: *id001
-    name: equals-translation-yor-ben
-    reference: Equals translation (Yoruba into Bengali)
-  f3ef5d1f-7cc6-4622-83e7-a6cc1e28af83: !Template
+    name: translate-this-tam-por
+    reference: Translate this from X to Y (Tamil into Brazilian Portuguese)
+  f188f5f4-da4f-437b-808d-c22fcd5e8220: !Template
     answer_choices: null
-    id: f3ef5d1f-7cc6-4622-83e7-a6cc1e28af83
-    jinja: 'Malayalam: {{ sentence_mal }} = Hindi: ||| {{ sentence_hin }}'
+    id: f188f5f4-da4f-437b-808d-c22fcd5e8220
+    jinja: 'Translate this from Malayalam into Assamese: {{ sentence_mal }} ||| {{
+      sentence_asm }}'
     metadata: *id001
-    name: equals-translation-mal-hin
-    reference: Equals translation (Malayalam into Hindi)
-  f3ef6ab4-142a-41e0-a876-bf14fd0ddfa0: !Template
+    name: translate-this-mal-asm
+    reference: Translate this from X to Y (Malayalam into Assamese)
+  f23ffad2-7fbb-4e14-9577-3d83ade39d6e: !Template
     answer_choices: null
-    id: f3ef6ab4-142a-41e0-a876-bf14fd0ddfa0
-    jinja: 'Kannada: {{ sentence_kan }} = Xhosa: ||| {{ sentence_xho }}'
+    id: f23ffad2-7fbb-4e14-9577-3d83ade39d6e
+    jinja: 'Translate this from Punjabi into Yoruba: {{ sentence_pan }} ||| {{ sentence_yor
+      }}'
     metadata: *id001
-    name: equals-translation-kan-xho
-    reference: Equals translation (Kannada into Xhosa)
-  f4a14f5b-e80c-45ab-ab4f-02d3d86b4e47: !Template
+    name: translate-this-pan-yor
+    reference: Translate this from X to Y (Punjabi into Yoruba)
+  f26bed06-a456-4085-8873-5d64b5e8c3c5: !Template
     answer_choices: null
-    id: f4a14f5b-e80c-45ab-ab4f-02d3d86b4e47
-    jinja: 'Urdu: {{ sentence_urd }} = Xhosa: ||| {{ sentence_xho }}'
+    id: f26bed06-a456-4085-8873-5d64b5e8c3c5
+    jinja: 'Translate this from Wolof into Bengali: {{ sentence_wol }} ||| {{ sentence_ben
+      }}'
     metadata: *id001
-    name: equals-translation-urd-xho
-    reference: Equals translation (Urdu into Xhosa)
-  f5ac60a3-0bc6-4330-9d06-6bff8b50adcd: !Template
+    name: translate-this-wol-ben
+    reference: Translate this from X to Y (Wolof into Bengali)
+  f2e74d7d-8188-4b5b-bab7-14616aead5d4: !Template
     answer_choices: null
-    id: f5ac60a3-0bc6-4330-9d06-6bff8b50adcd
-    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = French: ||| {{ sentence_fra
+    id: f2e74d7d-8188-4b5b-bab7-14616aead5d4
+    jinja: 'Translate this from Indonesian into Xhosa: {{ sentence_ind }} ||| {{ sentence_xho
       }}'
     metadata: *id001
-    name: equals-translation-zho_simpl-fra
-    reference: Equals translation (simplified Chinese into French)
-  f5bf5f13-4112-4656-8e37-4ea6e2bdeeb7: !Template
+    name: translate-this-ind-xho
+    reference: Translate this from X to Y (Indonesian into Xhosa)
+  f310c3f0-d7d6-48e2-82fa-856764d96968: !Template
     answer_choices: null
-    id: f5bf5f13-4112-4656-8e37-4ea6e2bdeeb7
-    jinja: 'Arabic: {{ sentence_ara }} = Vietnamese: ||| {{ sentence_vie }}'
+    id: f310c3f0-d7d6-48e2-82fa-856764d96968
+    jinja: 'Translate this from Yoruba into Kannada: {{ sentence_yor }} ||| {{ sentence_kan
+      }}'
     metadata: *id001
-    name: equals-translation-ara-vie
-    reference: Equals translation (Arabic into Vietnamese)
-  f5df7c86-5cef-4d86-ab41-027a6ddc3b34: !Template
+    name: translate-this-yor-kan
+    reference: Translate this from X to Y (Yoruba into Kannada)
+  f3efd0c9-945a-4ea4-b151-09262b9117e1: !Template
     answer_choices: null
-    id: f5df7c86-5cef-4d86-ab41-027a6ddc3b34
-    jinja: 'Urdu: {{ sentence_urd }} = traditional Chinese: ||| {{ sentence_zho_trad
+    id: f3efd0c9-945a-4ea4-b151-09262b9117e1
+    jinja: 'Translate this from Assamese into Telugu: {{ sentence_asm }} ||| {{ sentence_tel
       }}'
     metadata: *id001
-    name: equals-translation-urd-zho_trad
-    reference: Equals translation (Urdu into traditional Chinese)
-  f5e609dd-a026-4d0f-86f3-5558988fd294: !Template
+    name: translate-this-asm-tel
+    reference: Translate this from X to Y (Assamese into Telugu)
+  f3efdde0-e1fa-491c-9fe6-0bffe700963e: !Template
     answer_choices: null
-    id: f5e609dd-a026-4d0f-86f3-5558988fd294
-    jinja: 'Oriya: {{ sentence_ory }} = Indonesian: ||| {{ sentence_ind }}'
+    id: f3efdde0-e1fa-491c-9fe6-0bffe700963e
+    jinja: 'Translate this from traditional Chinese into Arabic: {{ sentence_zho_trad
+      }} ||| {{ sentence_ara }}'
     metadata: *id001
-    name: equals-translation-ory-ind
-    reference: Equals translation (Oriya into Indonesian)
-  f5f03820-705d-478d-944d-141900ee6049: !Template
+    name: translate-this-zho_trad-ara
+    reference: Translate this from X to Y (traditional Chinese into Arabic)
+  f41aadd4-3a3c-42ab-82d7-5082750e893d: !Template
     answer_choices: null
-    id: f5f03820-705d-478d-944d-141900ee6049
-    jinja: 'Igbo: {{ sentence_ibo }} = Brazilian Portuguese: ||| {{ sentence_por }}'
+    id: f41aadd4-3a3c-42ab-82d7-5082750e893d
+    jinja: 'Translate this from Oriya into Brazilian Portuguese: {{ sentence_ory }}
+      ||| {{ sentence_por }}'
     metadata: *id001
-    name: equals-translation-ibo-por
-    reference: Equals translation (Igbo into Brazilian Portuguese)
-  f5fec6af-0684-4dd0-91ff-16aa0bb3d993: !Template
+    name: translate-this-ory-por
+    reference: Translate this from X to Y (Oriya into Brazilian Portuguese)
+  f4ef8074-7e0c-40ca-9006-93139cafbf5d: !Template
     answer_choices: null
-    id: f5fec6af-0684-4dd0-91ff-16aa0bb3d993
-    jinja: 'Malayalam: {{ sentence_mal }} = Oriya: ||| {{ sentence_ory }}'
+    id: f4ef8074-7e0c-40ca-9006-93139cafbf5d
+    jinja: 'Translate this from Wolof into Assamese: {{ sentence_wol }} ||| {{ sentence_asm
+      }}'
     metadata: *id001
-    name: equals-translation-mal-ory
-    reference: Equals translation (Malayalam into Oriya)
-  f6119abb-2511-4f5d-b750-b7680ac668ec: !Template
+    name: translate-this-wol-asm
+    reference: Translate this from X to Y (Wolof into Assamese)
+  f4f02b8c-3eb7-43c0-8658-fa00b58b2cba: !Template
     answer_choices: null
-    id: f6119abb-2511-4f5d-b750-b7680ac668ec
-    jinja: 'Kannada: {{ sentence_kan }} = Marathi: ||| {{ sentence_mar }}'
+    id: f4f02b8c-3eb7-43c0-8658-fa00b58b2cba
+    jinja: 'Translate this from Xhosa into Marathi: {{ sentence_xho }} ||| {{ sentence_mar
+      }}'
     metadata: *id001
-    name: equals-translation-kan-mar
-    reference: Equals translation (Kannada into Marathi)
-  f614de9d-e359-4aa7-a28f-7c10d9c15119: !Template
+    name: translate-this-xho-mar
+    reference: Translate this from X to Y (Xhosa into Marathi)
+  f58fc195-a902-47be-a673-df83cb196637: !Template
     answer_choices: null
-    id: f614de9d-e359-4aa7-a28f-7c10d9c15119
-    jinja: 'Urdu: {{ sentence_urd }} = Punjabi: ||| {{ sentence_pan }}'
+    id: f58fc195-a902-47be-a673-df83cb196637
+    jinja: 'Translate this from simplified Chinese into Lingala: {{ sentence_zho_simpl
+      }} ||| {{ sentence_lin }}'
     metadata: *id001
-    name: equals-translation-urd-pan
-    reference: Equals translation (Urdu into Punjabi)
-  f6b58c96-022f-4cb3-972c-65c5819d8317: !Template
+    name: translate-this-zho_simpl-lin
+    reference: Translate this from X to Y (simplified Chinese into Lingala)
+  f5a04658-994f-4039-ae76-4fc1ba41a0eb: !Template
     answer_choices: null
-    id: f6b58c96-022f-4cb3-972c-65c5819d8317
-    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Telugu: ||| {{ sentence_tel
+    id: f5a04658-994f-4039-ae76-4fc1ba41a0eb
+    jinja: 'Translate this from Wolof into French: {{ sentence_wol }} ||| {{ sentence_fra
       }}'
     metadata: *id001
-    name: equals-translation-por-tel
-    reference: Equals translation (Brazilian Portuguese into Telugu)
-  f6c76ce7-7447-4da9-aa76-9b815220452a: !Template
+    name: translate-this-wol-fra
+    reference: Translate this from X to Y (Wolof into French)
+  f63c4a9c-af61-47f2-b6c0-4916dfea4b44: !Template
     answer_choices: null
-    id: f6c76ce7-7447-4da9-aa76-9b815220452a
-    jinja: 'Latin American Spanish: {{ sentence_spa }} = Xhosa: ||| {{ sentence_xho
+    id: f63c4a9c-af61-47f2-b6c0-4916dfea4b44
+    jinja: 'Translate this from Malayalam into Arabic: {{ sentence_mal }} ||| {{ sentence_ara
       }}'
     metadata: *id001
-    name: equals-translation-spa-xho
-    reference: Equals translation (Latin American Spanish into Xhosa)
-  f6dcf25b-b761-42c1-97d5-7f21de854f98: !Template
+    name: translate-this-mal-ara
+    reference: Translate this from X to Y (Malayalam into Arabic)
+  f727f10f-56bc-4a09-a1d1-53d4eda80d9d: !Template
     answer_choices: null
-    id: f6dcf25b-b761-42c1-97d5-7f21de854f98
-    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Bengali: ||| {{ sentence_ben
+    id: f727f10f-56bc-4a09-a1d1-53d4eda80d9d
+    jinja: 'Translate this from Xhosa into Indonesian: {{ sentence_xho }} ||| {{ sentence_ind
       }}'
     metadata: *id001
-    name: equals-translation-zho_trad-ben
-    reference: Equals translation (traditional Chinese into Bengali)
-  f7504594-a588-4e15-8bd5-660d64128e59: !Template
+    name: translate-this-xho-ind
+    reference: Translate this from X to Y (Xhosa into Indonesian)
+  f72c69b7-d7d8-4234-8da5-c4906ad576fc: !Template
     answer_choices: null
-    id: f7504594-a588-4e15-8bd5-660d64128e59
-    jinja: 'Oriya: {{ sentence_ory }} = English: ||| {{ sentence_eng }}'
+    id: f72c69b7-d7d8-4234-8da5-c4906ad576fc
+    jinja: 'Translate this from Igbo into Brazilian Portuguese: {{ sentence_ibo }}
+      ||| {{ sentence_por }}'
     metadata: *id001
-    name: equals-translation-ory-eng
-    reference: Equals translation (Oriya into English)
-  f7695da3-0fa9-4b83-b7a2-8824ff089ffa: !Template
+    name: translate-this-ibo-por
+    reference: Translate this from X to Y (Igbo into Brazilian Portuguese)
+  f75c5ba9-7bda-4963-bdc3-015050473a72: !Template
     answer_choices: null
-    id: f7695da3-0fa9-4b83-b7a2-8824ff089ffa
-    jinja: 'Arabic: {{ sentence_ara }} = Kannada: ||| {{ sentence_kan }}'
+    id: f75c5ba9-7bda-4963-bdc3-015050473a72
+    jinja: 'Translate this from Latin American Spanish into Catalan: {{ sentence_spa
+      }} ||| {{ sentence_cat }}'
     metadata: *id001
-    name: equals-translation-ara-kan
-    reference: Equals translation (Arabic into Kannada)
-  f77d8296-92e9-4550-83c5-adcd5d90b791: !Template
+    name: translate-this-spa-cat
+    reference: Translate this from X to Y (Latin American Spanish into Catalan)
+  f7ec9c9c-d60a-43ed-b464-6a6a793b3fa8: !Template
     answer_choices: null
-    id: f77d8296-92e9-4550-83c5-adcd5d90b791
-    jinja: 'Bengali: {{ sentence_ben }} = Brazilian Portuguese: ||| {{ sentence_por
+    id: f7ec9c9c-d60a-43ed-b464-6a6a793b3fa8
+    jinja: 'Translate this from Assamese into Bengali: {{ sentence_asm }} ||| {{ sentence_ben
       }}'
     metadata: *id001
-    name: equals-translation-ben-por
-    reference: Equals translation (Bengali into Brazilian Portuguese)
-  f81d894c-d4b5-4624-a8d3-53eef2174451: !Template
+    name: translate-this-asm-ben
+    reference: Translate this from X to Y (Assamese into Bengali)
+  f84ff479-2bce-4e05-85c9-fb8d3dbf48a7: !Template
     answer_choices: null
-    id: f81d894c-d4b5-4624-a8d3-53eef2174451
-    jinja: 'English: {{ sentence_eng }} = Zulu: ||| {{ sentence_zul }}'
+    id: f84ff479-2bce-4e05-85c9-fb8d3dbf48a7
+    jinja: 'Translate this from Catalan into Nepali: {{ sentence_cat }} ||| {{ sentence_npi
+      }}'
     metadata: *id001
-    name: equals-translation-eng-zul
-    reference: Equals translation (English into Zulu)
-  f8489544-8d94-41a8-b25b-49eec69b353b: !Template
+    name: translate-this-cat-npi
+    reference: Translate this from X to Y (Catalan into Nepali)
+  f8534e41-f498-4454-98a1-fc8fbb884311: !Template
     answer_choices: null
-    id: f8489544-8d94-41a8-b25b-49eec69b353b
-    jinja: 'French: {{ sentence_fra }} = traditional Chinese: ||| {{ sentence_zho_trad
+    id: f8534e41-f498-4454-98a1-fc8fbb884311
+    jinja: 'Translate this from Assamese into Igbo: {{ sentence_asm }} ||| {{ sentence_ibo
       }}'
     metadata: *id001
-    name: equals-translation-fra-zho_trad
-    reference: Equals translation (French into traditional Chinese)
-  f8b473be-cf7d-483b-84d1-424f5c87b53c: !Template
+    name: translate-this-asm-ibo
+    reference: Translate this from X to Y (Assamese into Igbo)
+  f8c9edbb-257f-4d36-be8b-ef7d0726a930: !Template
     answer_choices: null
-    id: f8b473be-cf7d-483b-84d1-424f5c87b53c
-    jinja: 'Xhosa: {{ sentence_xho }} = English: ||| {{ sentence_eng }}'
+    id: f8c9edbb-257f-4d36-be8b-ef7d0726a930
+    jinja: 'Translate this from Gujarati into Xhosa: {{ sentence_guj }} ||| {{ sentence_xho
+      }}'
     metadata: *id001
-    name: equals-translation-xho-eng
-    reference: Equals translation (Xhosa into English)
-  f8e9f632-80e1-4f86-aadd-db1cb81af476: !Template
+    name: translate-this-guj-xho
+    reference: Translate this from X to Y (Gujarati into Xhosa)
+  f91f582c-c5c0-4dd3-a1fe-aa114f7f26c2: !Template
     answer_choices: null
-    id: f8e9f632-80e1-4f86-aadd-db1cb81af476
-    jinja: 'Punjabi: {{ sentence_pan }} = Telugu: ||| {{ sentence_tel }}'
+    id: f91f582c-c5c0-4dd3-a1fe-aa114f7f26c2
+    jinja: 'Translate this from Marathi into simplified Chinese: {{ sentence_mar }}
+      ||| {{ sentence_zho_simpl }}'
     metadata: *id001
-    name: equals-translation-pan-tel
-    reference: Equals translation (Punjabi into Telugu)
-  f98ff40f-acb4-45d7-968a-b59c56239d4f: !Template
+    name: translate-this-mar-zho_simpl
+    reference: Translate this from X to Y (Marathi into simplified Chinese)
+  f955418d-0cd4-497b-8d30-e05d6d632540: !Template
     answer_choices: null
-    id: f98ff40f-acb4-45d7-968a-b59c56239d4f
-    jinja: 'Hindi: {{ sentence_hin }} = Swahili: ||| {{ sentence_swh }}'
+    id: f955418d-0cd4-497b-8d30-e05d6d632540
+    jinja: 'Translate this from simplified Chinese into Northern Sotho: {{ sentence_zho_simpl
+      }} ||| {{ sentence_nso }}'
     metadata: *id001
-    name: equals-translation-hin-swh
-    reference: Equals translation (Hindi into Swahili)
-  fa36a027-5eb8-4fd6-a5f3-f330389fc712: !Template
+    name: translate-this-zho_simpl-nso
+    reference: Translate this from X to Y (simplified Chinese into Northern Sotho)
+  f9ea792f-0894-4281-a88b-0903bf2d7660: !Template
     answer_choices: null
-    id: fa36a027-5eb8-4fd6-a5f3-f330389fc712
-    jinja: 'Swahili: {{ sentence_swh }} = Zulu: ||| {{ sentence_zul }}'
+    id: f9ea792f-0894-4281-a88b-0903bf2d7660
+    jinja: 'Translate this from English into Northern Sotho: {{ sentence_eng }} |||
+      {{ sentence_nso }}'
     metadata: *id001
-    name: equals-translation-swh-zul
-    reference: Equals translation (Swahili into Zulu)
-  fa753fe3-6a2e-423d-b76c-7830783599dd: !Template
+    name: translate-this-eng-nso
+    reference: Translate this from X to Y (English into Northern Sotho)
+  fa53e3df-d995-4f36-9a1f-6a126cae3fa4: !Template
     answer_choices: null
-    id: fa753fe3-6a2e-423d-b76c-7830783599dd
-    jinja: 'Northern Sotho: {{ sentence_nso }} = Telugu: ||| {{ sentence_tel }}'
+    id: fa53e3df-d995-4f36-9a1f-6a126cae3fa4
+    jinja: 'Translate this from Catalan into Indonesian: {{ sentence_cat }} ||| {{
+      sentence_ind }}'
     metadata: *id001
-    name: equals-translation-nso-tel
-    reference: Equals translation (Northern Sotho into Telugu)
-  fa7e3219-05b2-46bb-8824-28bb0e539b76: !Template
+    name: translate-this-cat-ind
+    reference: Translate this from X to Y (Catalan into Indonesian)
+  fa545807-bdb7-44e9-898b-95bd91013743: !Template
     answer_choices: null
-    id: fa7e3219-05b2-46bb-8824-28bb0e539b76
-    jinja: 'Bengali: {{ sentence_ben }} = Northern Sotho: ||| {{ sentence_nso }}'
+    id: fa545807-bdb7-44e9-898b-95bd91013743
+    jinja: 'Translate this from Vietnamese into Igbo: {{ sentence_vie }} ||| {{ sentence_ibo
+      }}'
     metadata: *id001
-    name: equals-translation-ben-nso
-    reference: Equals translation (Bengali into Northern Sotho)
-  faed7f34-4698-4f67-afe8-1d6205396617: !Template
+    name: translate-this-vie-ibo
+    reference: Translate this from X to Y (Vietnamese into Igbo)
+  fae0080c-b3cf-4308-a900-e67bb320a510: !Template
     answer_choices: null
-    id: faed7f34-4698-4f67-afe8-1d6205396617
-    jinja: 'Vietnamese: {{ sentence_vie }} = Urdu: ||| {{ sentence_urd }}'
+    id: fae0080c-b3cf-4308-a900-e67bb320a510
+    jinja: 'Translate this from Yoruba into Marathi: {{ sentence_yor }} ||| {{ sentence_mar
+      }}'
     metadata: *id001
-    name: equals-translation-vie-urd
-    reference: Equals translation (Vietnamese into Urdu)
-  fb21891e-c877-4afa-8dea-b573ce3611fa: !Template
+    name: translate-this-yor-mar
+    reference: Translate this from X to Y (Yoruba into Marathi)
+  fbb44e04-c0be-4dd0-8ceb-65e3effa1952: !Template
     answer_choices: null
-    id: fb21891e-c877-4afa-8dea-b573ce3611fa
-    jinja: 'Xhosa: {{ sentence_xho }} = Lingala: ||| {{ sentence_lin }}'
+    id: fbb44e04-c0be-4dd0-8ceb-65e3effa1952
+    jinja: 'Translate this from Lingala into Punjabi: {{ sentence_lin }} ||| {{ sentence_pan
+      }}'
     metadata: *id001
-    name: equals-translation-xho-lin
-    reference: Equals translation (Xhosa into Lingala)
-  fb520452-3303-48c5-b7d4-c27c66cde9be: !Template
+    name: translate-this-lin-pan
+    reference: Translate this from X to Y (Lingala into Punjabi)
+  fc6453f1-b7e8-4198-8f08-bcff636aac9f: !Template
     answer_choices: null
-    id: fb520452-3303-48c5-b7d4-c27c66cde9be
-    jinja: 'Vietnamese: {{ sentence_vie }} = Igbo: ||| {{ sentence_ibo }}'
+    id: fc6453f1-b7e8-4198-8f08-bcff636aac9f
+    jinja: 'Translate this from Brazilian Portuguese into Punjabi: {{ sentence_por
+      }} ||| {{ sentence_pan }}'
     metadata: *id001
-    name: equals-translation-vie-ibo
-    reference: Equals translation (Vietnamese into Igbo)
-  fb64a78a-4bb3-49d9-871c-193ea0fbe3cc: !Template
+    name: translate-this-por-pan
+    reference: Translate this from X to Y (Brazilian Portuguese into Punjabi)
+  fcc49e8b-157d-4c3e-9a7e-b161b5f21e79: !Template
     answer_choices: null
-    id: fb64a78a-4bb3-49d9-871c-193ea0fbe3cc
-    jinja: 'Northern Sotho: {{ sentence_nso }} = Tamil: ||| {{ sentence_tam }}'
+    id: fcc49e8b-157d-4c3e-9a7e-b161b5f21e79
+    jinja: 'Translate this from Bengali into Assamese: {{ sentence_ben }} ||| {{ sentence_asm
+      }}'
     metadata: *id001
-    name: equals-translation-nso-tam
-    reference: Equals translation (Northern Sotho into Tamil)
-  fbac54ea-b62c-4d9b-97b3-1fd738d9a2fb: !Template
+    name: translate-this-ben-asm
+    reference: Translate this from X to Y (Bengali into Assamese)
+  fccf6caf-9a63-4069-bfdd-ff85256b1779: !Template
     answer_choices: null
-    id: fbac54ea-b62c-4d9b-97b3-1fd738d9a2fb
-    jinja: 'Yoruba: {{ sentence_yor }} = Catalan: ||| {{ sentence_cat }}'
+    id: fccf6caf-9a63-4069-bfdd-ff85256b1779
+    jinja: 'Translate this from Northern Sotho into Marathi: {{ sentence_nso }} |||
+      {{ sentence_mar }}'
     metadata: *id001
-    name: equals-translation-yor-cat
-    reference: Equals translation (Yoruba into Catalan)
-  fbffaa37-a842-4559-97fa-67e19825f3e3: !Template
+    name: translate-this-nso-mar
+    reference: Translate this from X to Y (Northern Sotho into Marathi)
+  fd0e5655-ccac-4a11-a1bf-79678c0858b1: !Template
     answer_choices: null
-    id: fbffaa37-a842-4559-97fa-67e19825f3e3
-    jinja: 'Indonesian: {{ sentence_ind }} = Punjabi: ||| {{ sentence_pan }}'
+    id: fd0e5655-ccac-4a11-a1bf-79678c0858b1
+    jinja: 'Translate this from Hindi into Wolof: {{ sentence_hin }} ||| {{ sentence_wol
+      }}'
     metadata: *id001
-    name: equals-translation-ind-pan
-    reference: Equals translation (Indonesian into Punjabi)
-  fc9ac44c-d56d-4e88-8c1b-4dcf10ed2be6: !Template
+    name: translate-this-hin-wol
+    reference: Translate this from X to Y (Hindi into Wolof)
+  fd24ee3f-8ed3-4b53-9bb8-90294e9bc9ef: !Template
     answer_choices: null
-    id: fc9ac44c-d56d-4e88-8c1b-4dcf10ed2be6
-    jinja: 'Yoruba: {{ sentence_yor }} = Xhosa: ||| {{ sentence_xho }}'
+    id: fd24ee3f-8ed3-4b53-9bb8-90294e9bc9ef
+    jinja: 'Translate this from Catalan into Bengali: {{ sentence_cat }} ||| {{ sentence_ben
+      }}'
     metadata: *id001
-    name: equals-translation-yor-xho
-    reference: Equals translation (Yoruba into Xhosa)
-  fcdf3c65-460c-4e86-a875-b8c39cc8c320: !Template
+    name: translate-this-cat-ben
+    reference: Translate this from X to Y (Catalan into Bengali)
+  fd366982-6cc3-456c-b1fe-29fc695151ad: !Template
     answer_choices: null
-    id: fcdf3c65-460c-4e86-a875-b8c39cc8c320
-    jinja: 'Indonesian: {{ sentence_ind }} = Yoruba: ||| {{ sentence_yor }}'
+    id: fd366982-6cc3-456c-b1fe-29fc695151ad
+    jinja: 'Translate this from Igbo into Nepali: {{ sentence_ibo }} ||| {{ sentence_npi
+      }}'
     metadata: *id001
-    name: equals-translation-ind-yor
-    reference: Equals translation (Indonesian into Yoruba)
-  fd036427-12f1-4e95-84fa-2bb07fce17cd: !Template
+    name: translate-this-ibo-npi
+    reference: Translate this from X to Y (Igbo into Nepali)
+  fd6bbfc0-13cd-4fe3-b7b3-d3e3eee64f62: !Template
     answer_choices: null
-    id: fd036427-12f1-4e95-84fa-2bb07fce17cd
-    jinja: 'English: {{ sentence_eng }} = Brazilian Portuguese: ||| {{ sentence_por
+    id: fd6bbfc0-13cd-4fe3-b7b3-d3e3eee64f62
+    jinja: 'Translate this from Punjabi into Lingala: {{ sentence_pan }} ||| {{ sentence_lin
       }}'
     metadata: *id001
-    name: equals-translation-eng-por
-    reference: Equals translation (English into Brazilian Portuguese)
-  fd1e1370-1920-499c-8503-943fa9b88347: !Template
+    name: translate-this-pan-lin
+    reference: Translate this from X to Y (Punjabi into Lingala)
+  fd7aa6fa-2357-4d52-9fab-0f91c9c57adf: !Template
     answer_choices: null
-    id: fd1e1370-1920-499c-8503-943fa9b88347
-    jinja: 'Wolof: {{ sentence_wol }} = Latin American Spanish: ||| {{ sentence_spa
-      }}'
+    id: fd7aa6fa-2357-4d52-9fab-0f91c9c57adf
+    jinja: 'Translate this from Northern Sotho into Nepali: {{ sentence_nso }} |||
+      {{ sentence_npi }}'
     metadata: *id001
-    name: equals-translation-wol-spa
-    reference: Equals translation (Wolof into Latin American Spanish)
-  fd5a1cec-8a53-4bc9-a577-c4afdc8a6d3f: !Template
+    name: translate-this-nso-npi
+    reference: Translate this from X to Y (Northern Sotho into Nepali)
+  fd9155cf-34f2-4c31-b285-87fd77ac6bc4: !Template
     answer_choices: null
-    id: fd5a1cec-8a53-4bc9-a577-c4afdc8a6d3f
-    jinja: 'Northern Sotho: {{ sentence_nso }} = English: ||| {{ sentence_eng }}'
+    id: fd9155cf-34f2-4c31-b285-87fd77ac6bc4
+    jinja: 'Translate this from French into Brazilian Portuguese: {{ sentence_fra
+      }} ||| {{ sentence_por }}'
     metadata: *id001
-    name: equals-translation-nso-eng
-    reference: Equals translation (Northern Sotho into English)
-  fe6d226e-ef74-4173-a3df-fcb27f33b254: !Template
+    name: translate-this-fra-por
+    reference: Translate this from X to Y (French into Brazilian Portuguese)
+  fda16240-7133-4fb3-9399-fad4b22e6cf7: !Template
     answer_choices: null
-    id: fe6d226e-ef74-4173-a3df-fcb27f33b254
-    jinja: 'Urdu: {{ sentence_urd }} = Catalan: ||| {{ sentence_cat }}'
+    id: fda16240-7133-4fb3-9399-fad4b22e6cf7
+    jinja: 'Translate this from Punjabi into Northern Sotho: {{ sentence_pan }} |||
+      {{ sentence_nso }}'
     metadata: *id001
-    name: equals-translation-urd-cat
-    reference: Equals translation (Urdu into Catalan)
-  fe753e50-d0f3-4dc3-9264-1675cde47880: !Template
+    name: translate-this-pan-nso
+    reference: Translate this from X to Y (Punjabi into Northern Sotho)
+  fdd84b23-00c7-40df-a229-124ce87ee94a: !Template
     answer_choices: null
-    id: fe753e50-d0f3-4dc3-9264-1675cde47880
-    jinja: 'Indonesian: {{ sentence_ind }} = Bengali: ||| {{ sentence_ben }}'
+    id: fdd84b23-00c7-40df-a229-124ce87ee94a
+    jinja: 'Translate this from Malayalam into simplified Chinese: {{ sentence_mal
+      }} ||| {{ sentence_zho_simpl }}'
     metadata: *id001
-    name: equals-translation-ind-ben
-    reference: Equals translation (Indonesian into Bengali)
-  fe7d959a-a243-43de-951b-43fa9a893d79: !Template
+    name: translate-this-mal-zho_simpl
+    reference: Translate this from X to Y (Malayalam into simplified Chinese)
+  fded522d-6efc-430a-af49-69921d62846a: !Template
     answer_choices: null
-    id: fe7d959a-a243-43de-951b-43fa9a893d79
-    jinja: 'Northern Sotho: {{ sentence_nso }} = simplified Chinese: ||| {{ sentence_zho_simpl
+    id: fded522d-6efc-430a-af49-69921d62846a
+    jinja: 'Translate this from Assamese into Urdu: {{ sentence_asm }} ||| {{ sentence_urd
       }}'
     metadata: *id001
-    name: equals-translation-nso-zho_simpl
-    reference: Equals translation (Northern Sotho into simplified Chinese)
-  ff1a8a5a-85bb-4fde-a416-5114f0fca1db: !Template
+    name: translate-this-asm-urd
+    reference: Translate this from X to Y (Assamese into Urdu)
+  fe147c33-6cc1-4296-bdae-588789521618: !Template
     answer_choices: null
-    id: ff1a8a5a-85bb-4fde-a416-5114f0fca1db
-    jinja: 'Kannada: {{ sentence_kan }} = Assamese: ||| {{ sentence_asm }}'
+    id: fe147c33-6cc1-4296-bdae-588789521618
+    jinja: 'Translate this from Kannada into Assamese: {{ sentence_kan }} ||| {{ sentence_asm
+      }}'
     metadata: *id001
-    name: equals-translation-kan-asm
-    reference: Equals translation (Kannada into Assamese)
-  fffd1ef8-c28c-4aa6-84b8-5e2b785a285f: !Template
+    name: translate-this-kan-asm
+    reference: Translate this from X to Y (Kannada into Assamese)
+  fe2f39b2-9cd0-4408-b700-f683d72e0c82: !Template
     answer_choices: null
-    id: fffd1ef8-c28c-4aa6-84b8-5e2b785a285f
-    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Malayalam: ||| {{ sentence_mal
+    id: fe2f39b2-9cd0-4408-b700-f683d72e0c82
+    jinja: 'Translate this from Arabic into Bengali: {{ sentence_ara }} ||| {{ sentence_ben
       }}'
     metadata: *id001
-    name: equals-translation-zho_trad-mal
-    reference: Equals translation (traditional Chinese into Malayalam)
+    name: translate-this-ara-ben
+    reference: Translate this from X to Y (Arabic into Bengali)
+  fe324eef-5568-4ecf-b465-d8ab58d4ffa1: !Template
+    answer_choices: null
+    id: fe324eef-5568-4ecf-b465-d8ab58d4ffa1
+    jinja: 'Translate this from Gujarati into Swahili: {{ sentence_guj }} ||| {{ sentence_swh
+      }}'
+    metadata: *id001
+    name: translate-this-guj-swh
+    reference: Translate this from X to Y (Gujarati into Swahili)
+  ffc496b0-c8e3-49ec-a77d-65424cb0ce04: !Template
+    answer_choices: null
+    id: ffc496b0-c8e3-49ec-a77d-65424cb0ce04
+    jinja: 'Translate this from English into Vietnamese: {{ sentence_eng }} ||| {{
+      sentence_vie }}'
+    metadata: *id001
+    name: translate-this-eng-vie
+    reference: Translate this from X to Y (English into Vietnamese)
+  ffd7419c-3587-48eb-8689-8e340a694167: !Template
+    answer_choices: null
+    id: ffd7419c-3587-48eb-8689-8e340a694167
+    jinja: 'Translate this from Northern Sotho into simplified Chinese: {{ sentence_nso
+      }} ||| {{ sentence_zho_simpl }}'
+    metadata: *id001
+    name: translate-this-nso-zho_simpl
+    reference: Translate this from X to Y (Northern Sotho into simplified Chinese)

From 3eee29124a8d3d46528eca9936f7d46712548b6b Mon Sep 17 00:00:00 2001
From: Rachel Bawden <rachel.bawden@inria.fr@users.noreply.github.com>
Date: Tue, 27 Sep 2022 16:28:50 +0200
Subject: [PATCH 28/31] update flores prompts to xglm

---
 .../gsarti/flores_101/all/templates.yaml      | 10155 +++++++---------
 1 file changed, 4721 insertions(+), 5434 deletions(-)

diff --git a/promptsource/templates/gsarti/flores_101/all/templates.yaml b/promptsource/templates/gsarti/flores_101/all/templates.yaml
index 2aa4aa6a1..ca90019c4 100644
--- a/promptsource/templates/gsarti/flores_101/all/templates.yaml
+++ b/promptsource/templates/gsarti/flores_101/all/templates.yaml
@@ -1,7459 +1,6746 @@
 dataset: gsarti/flores_101/all
 templates:
-  001f35c4-803b-4e45-9f44-db9c572e82a3: !Template
+  004a7b63-f9a6-4af2-aca7-bfe889d0a711: !Template
     answer_choices: null
-    id: 001f35c4-803b-4e45-9f44-db9c572e82a3
-    jinja: 'Translate this from Kannada into Malayalam: {{ sentence_kan }} ||| {{
-      sentence_mal }}'
+    id: 004a7b63-f9a6-4af2-aca7-bfe889d0a711
+    jinja: 'Yoruba: {{ sentence_yor }} = Assamese: ||| {{ sentence_asm }}'
     metadata: &id001 !TemplateMetadata
       choices_in_prompt: false
       metrics:
       - BLEU
       original_task: true
-    name: translate-this-kan-mal
-    reference: Translate this from X to Y (Kannada into Malayalam)
-  00515c6e-9875-4490-92fe-ae32c25c8ac6: !Template
+    name: flores-xglm-Yoruba-Assamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  016a03fc-fa6e-463e-a0a1-0ec1f24c75a9: !Template
     answer_choices: null
-    id: 00515c6e-9875-4490-92fe-ae32c25c8ac6
-    jinja: 'Translate this from Gujarati into Latin American Spanish: {{ sentence_guj
-      }} ||| {{ sentence_spa }}'
+    id: 016a03fc-fa6e-463e-a0a1-0ec1f24c75a9
+    jinja: 'Arabic: {{ sentence_ara }} = Igbo: ||| {{ sentence_ibo }}'
     metadata: *id001
-    name: translate-this-guj-spa
-    reference: Translate this from X to Y (Gujarati into Latin American Spanish)
-  0054f41e-3dae-4e97-9e00-5c304e46c77f: !Template
+    name: flores-xglm-Arabic-Igbo
+    reference: 'L1: [sent1] = L2: [sent2]'
+  017ab125-8225-437a-a1d2-d9e97f05de9c: !Template
     answer_choices: null
-    id: 0054f41e-3dae-4e97-9e00-5c304e46c77f
-    jinja: 'Translate this from Igbo into Malayalam: {{ sentence_ibo }} ||| {{ sentence_mal
-      }}'
-    metadata: *id001
-    name: translate-this-ibo-mal
-    reference: Translate this from X to Y (Igbo into Malayalam)
-  01cc2fb1-a912-48b3-ae4c-93a35fedd2b5: !Template
-    answer_choices: null
-    id: 01cc2fb1-a912-48b3-ae4c-93a35fedd2b5
-    jinja: 'Translate this from Punjabi into Tamil: {{ sentence_pan }} ||| {{ sentence_tam
-      }}'
+    id: 017ab125-8225-437a-a1d2-d9e97f05de9c
+    jinja: 'Marathi: {{ sentence_mar }} = Igbo: ||| {{ sentence_ibo }}'
     metadata: *id001
-    name: translate-this-pan-tam
-    reference: Translate this from X to Y (Punjabi into Tamil)
-  01d563f6-6e8f-4772-8809-716752041e7f: !Template
+    name: flores-xglm-Marathi-Igbo
+    reference: 'L1: [sent1] = L2: [sent2]'
+  01d1c84c-023c-44f6-a23b-a5076afbbe1e: !Template
     answer_choices: null
-    id: 01d563f6-6e8f-4772-8809-716752041e7f
-    jinja: 'Translate this from Swahili into Tamil: {{ sentence_swh }} ||| {{ sentence_tam
+    id: 01d1c84c-023c-44f6-a23b-a5076afbbe1e
+    jinja: 'Urdu: {{ sentence_urd }} = traditional Chinese: ||| {{ sentence_zho_trad
       }}'
     metadata: *id001
-    name: translate-this-swh-tam
-    reference: Translate this from X to Y (Swahili into Tamil)
-  01e07968-fea7-401c-a9c2-ebe5db45c21b: !Template
+    name: flores-xglm-Urdu-traditional Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  020cbb73-b074-4c89-b536-16a7bc1f1463: !Template
     answer_choices: null
-    id: 01e07968-fea7-401c-a9c2-ebe5db45c21b
-    jinja: 'Translate this from French into Zulu: {{ sentence_fra }} ||| {{ sentence_zul
-      }}'
+    id: 020cbb73-b074-4c89-b536-16a7bc1f1463
+    jinja: 'Swahili: {{ sentence_swh }} = Lingala: ||| {{ sentence_lin }}'
     metadata: *id001
-    name: translate-this-fra-zul
-    reference: Translate this from X to Y (French into Zulu)
-  021bbacb-93a7-465e-a53f-880b08b7eb4b: !Template
+    name: flores-xglm-Swahili-Lingala
+    reference: 'L1: [sent1] = L2: [sent2]'
+  02274304-871a-4418-a668-44039dffd06f: !Template
     answer_choices: null
-    id: 021bbacb-93a7-465e-a53f-880b08b7eb4b
-    jinja: 'Translate this from Yoruba into Bengali: {{ sentence_yor }} ||| {{ sentence_ben
-      }}'
+    id: 02274304-871a-4418-a668-44039dffd06f
+    jinja: 'Punjabi: {{ sentence_pan }} = Zulu: ||| {{ sentence_zul }}'
     metadata: *id001
-    name: translate-this-yor-ben
-    reference: Translate this from X to Y (Yoruba into Bengali)
-  0232d41d-1bf4-4319-9550-2391ae9eed39: !Template
+    name: flores-xglm-Punjabi-Zulu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  0241470f-9065-4cee-903e-67ce7c200740: !Template
     answer_choices: null
-    id: 0232d41d-1bf4-4319-9550-2391ae9eed39
-    jinja: 'Translate this from Arabic into Assamese: {{ sentence_ara }} ||| {{ sentence_asm
-      }}'
+    id: 0241470f-9065-4cee-903e-67ce7c200740
+    jinja: 'Assamese: {{ sentence_asm }} = Kannada: ||| {{ sentence_kan }}'
     metadata: *id001
-    name: translate-this-ara-asm
-    reference: Translate this from X to Y (Arabic into Assamese)
-  024df579-251e-4c51-8a7a-77e96478d522: !Template
+    name: flores-xglm-Assamese-Kannada
+    reference: 'L1: [sent1] = L2: [sent2]'
+  02fa1aef-1bf7-47a0-a0da-46914d8369b4: !Template
     answer_choices: null
-    id: 024df579-251e-4c51-8a7a-77e96478d522
-    jinja: 'Translate this from Catalan into Kannada: {{ sentence_cat }} ||| {{ sentence_kan
-      }}'
+    id: 02fa1aef-1bf7-47a0-a0da-46914d8369b4
+    jinja: 'Kannada: {{ sentence_kan }} = Urdu: ||| {{ sentence_urd }}'
     metadata: *id001
-    name: translate-this-cat-kan
-    reference: Translate this from X to Y (Catalan into Kannada)
-  026c6bd5-c385-46c0-8d9c-84d51bacbf8a: !Template
+    name: flores-xglm-Kannada-Urdu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  03289e21-5d5f-4061-9688-9da6383e559c: !Template
     answer_choices: null
-    id: 026c6bd5-c385-46c0-8d9c-84d51bacbf8a
-    jinja: 'Translate this from Brazilian Portuguese into Vietnamese: {{ sentence_por
-      }} ||| {{ sentence_vie }}'
+    id: 03289e21-5d5f-4061-9688-9da6383e559c
+    jinja: 'Telugu: {{ sentence_tel }} = Arabic: ||| {{ sentence_ara }}'
     metadata: *id001
-    name: translate-this-por-vie
-    reference: Translate this from X to Y (Brazilian Portuguese into Vietnamese)
-  02ce19f9-7cc0-41b1-aa6c-55c7253f3869: !Template
+    name: flores-xglm-Telugu-Arabic
+    reference: 'L1: [sent1] = L2: [sent2]'
+  0332f397-4aec-4485-99fc-9b879152f927: !Template
     answer_choices: null
-    id: 02ce19f9-7cc0-41b1-aa6c-55c7253f3869
-    jinja: 'Translate this from Malayalam into Bengali: {{ sentence_mal }} ||| {{
-      sentence_ben }}'
+    id: 0332f397-4aec-4485-99fc-9b879152f927
+    jinja: 'Bengali: {{ sentence_ben }} = Catalan: ||| {{ sentence_cat }}'
     metadata: *id001
-    name: translate-this-mal-ben
-    reference: Translate this from X to Y (Malayalam into Bengali)
-  034c9811-d2d5-4e1a-bb1f-1e0d12431e86: !Template
+    name: flores-xglm-Bengali-Catalan
+    reference: 'L1: [sent1] = L2: [sent2]'
+  03e3072f-7249-430d-b9d6-2e0fbbdae255: !Template
     answer_choices: null
-    id: 034c9811-d2d5-4e1a-bb1f-1e0d12431e86
-    jinja: 'Translate this from Punjabi into French: {{ sentence_pan }} ||| {{ sentence_fra
+    id: 03e3072f-7249-430d-b9d6-2e0fbbdae255
+    jinja: 'Swahili: {{ sentence_swh }} = Latin American Spanish: ||| {{ sentence_spa
       }}'
     metadata: *id001
-    name: translate-this-pan-fra
-    reference: Translate this from X to Y (Punjabi into French)
-  03b919e1-d8dd-4ef1-bbf3-e4deeef43715: !Template
+    name: flores-xglm-Swahili-Latin American Spanish
+    reference: 'L1: [sent1] = L2: [sent2]'
+  03f796ce-918d-4c68-aa62-b16b9d8a17e6: !Template
     answer_choices: null
-    id: 03b919e1-d8dd-4ef1-bbf3-e4deeef43715
-    jinja: 'Translate this from English into Arabic: {{ sentence_eng }} ||| {{ sentence_ara
-      }}'
+    id: 03f796ce-918d-4c68-aa62-b16b9d8a17e6
+    jinja: 'Gujarati: {{ sentence_guj }} = French: ||| {{ sentence_fra }}'
     metadata: *id001
-    name: translate-this-eng-ara
-    reference: Translate this from X to Y (English into Arabic)
-  04b4d534-7a72-4680-875b-e33177f2ddc7: !Template
+    name: flores-xglm-Gujarati-French
+    reference: 'L1: [sent1] = L2: [sent2]'
+  0445fffe-c6ae-4a21-908d-aa304f2d4c02: !Template
     answer_choices: null
-    id: 04b4d534-7a72-4680-875b-e33177f2ddc7
-    jinja: 'Translate this from Malayalam into Urdu: {{ sentence_mal }} ||| {{ sentence_urd
-      }}'
+    id: 0445fffe-c6ae-4a21-908d-aa304f2d4c02
+    jinja: 'Bengali: {{ sentence_ben }} = Xhosa: ||| {{ sentence_xho }}'
     metadata: *id001
-    name: translate-this-mal-urd
-    reference: Translate this from X to Y (Malayalam into Urdu)
-  052bf69b-45e0-45c4-bf51-9b298f6a2918: !Template
+    name: flores-xglm-Bengali-Xhosa
+    reference: 'L1: [sent1] = L2: [sent2]'
+  047b96cc-fe45-4168-9cb2-e04474fdff04: !Template
     answer_choices: null
-    id: 052bf69b-45e0-45c4-bf51-9b298f6a2918
-    jinja: 'Translate this from Gujarati into Igbo: {{ sentence_guj }} ||| {{ sentence_ibo
-      }}'
+    id: 047b96cc-fe45-4168-9cb2-e04474fdff04
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Zulu: ||| {{ sentence_zul }}'
     metadata: *id001
-    name: translate-this-guj-ibo
-    reference: Translate this from X to Y (Gujarati into Igbo)
-  052e70a0-fb78-431a-804e-dabe3597f006: !Template
+    name: flores-xglm-Brazilian Portuguese-Zulu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  051597bd-292f-414b-b3db-2cb44caf1eda: !Template
     answer_choices: null
-    id: 052e70a0-fb78-431a-804e-dabe3597f006
-    jinja: 'Translate this from Oriya into Bengali: {{ sentence_ory }} ||| {{ sentence_ben
-      }}'
+    id: 051597bd-292f-414b-b3db-2cb44caf1eda
+    jinja: 'Zulu: {{ sentence_zul }} = Malayalam: ||| {{ sentence_mal }}'
     metadata: *id001
-    name: translate-this-ory-ben
-    reference: Translate this from X to Y (Oriya into Bengali)
-  05673e56-d8d7-4418-b7af-3d9da89c0123: !Template
+    name: flores-xglm-Zulu-Malayalam
+    reference: 'L1: [sent1] = L2: [sent2]'
+  0525bcb2-bc48-4c7d-94fc-9c9593fd8d1e: !Template
     answer_choices: null
-    id: 05673e56-d8d7-4418-b7af-3d9da89c0123
-    jinja: 'Translate this from Assamese into Yoruba: {{ sentence_asm }} ||| {{ sentence_yor
-      }}'
+    id: 0525bcb2-bc48-4c7d-94fc-9c9593fd8d1e
+    jinja: 'Bengali: {{ sentence_ben }} = Wolof: ||| {{ sentence_wol }}'
     metadata: *id001
-    name: translate-this-asm-yor
-    reference: Translate this from X to Y (Assamese into Yoruba)
-  0589bb4b-88ce-4d44-9c7d-40a0451ffd9f: !Template
+    name: flores-xglm-Bengali-Wolof
+    reference: 'L1: [sent1] = L2: [sent2]'
+  05a50c44-068f-4e75-9ce9-b7cbfbdcde42: !Template
     answer_choices: null
-    id: 0589bb4b-88ce-4d44-9c7d-40a0451ffd9f
-    jinja: 'Translate this from Arabic into Swahili: {{ sentence_ara }} ||| {{ sentence_swh
-      }}'
+    id: 05a50c44-068f-4e75-9ce9-b7cbfbdcde42
+    jinja: 'Kannada: {{ sentence_kan }} = Swahili: ||| {{ sentence_swh }}'
     metadata: *id001
-    name: translate-this-ara-swh
-    reference: Translate this from X to Y (Arabic into Swahili)
-  05c80379-9513-4c65-a58d-b0dbbb81cf7b: !Template
+    name: flores-xglm-Kannada-Swahili
+    reference: 'L1: [sent1] = L2: [sent2]'
+  05da2b49-a71e-44fc-97cf-8e45b26f34c0: !Template
     answer_choices: null
-    id: 05c80379-9513-4c65-a58d-b0dbbb81cf7b
-    jinja: 'Translate this from Northern Sotho into Zulu: {{ sentence_nso }} ||| {{
-      sentence_zul }}'
+    id: 05da2b49-a71e-44fc-97cf-8e45b26f34c0
+    jinja: 'Xhosa: {{ sentence_xho }} = Northern Sotho: ||| {{ sentence_nso }}'
     metadata: *id001
-    name: translate-this-nso-zul
-    reference: Translate this from X to Y (Northern Sotho into Zulu)
-  05d66472-473b-45f6-8efc-aab26991ca83: !Template
+    name: flores-xglm-Xhosa-Northern Sotho
+    reference: 'L1: [sent1] = L2: [sent2]'
+  06066fab-9de2-45b1-a3ad-cce44cfe8f99: !Template
     answer_choices: null
-    id: 05d66472-473b-45f6-8efc-aab26991ca83
-    jinja: 'Translate this from Oriya into Assamese: {{ sentence_ory }} ||| {{ sentence_asm
-      }}'
+    id: 06066fab-9de2-45b1-a3ad-cce44cfe8f99
+    jinja: 'Igbo: {{ sentence_ibo }} = Catalan: ||| {{ sentence_cat }}'
     metadata: *id001
-    name: translate-this-ory-asm
-    reference: Translate this from X to Y (Oriya into Assamese)
-  05f353b8-f572-449d-a746-d6c7d75b1460: !Template
+    name: flores-xglm-Igbo-Catalan
+    reference: 'L1: [sent1] = L2: [sent2]'
+  0633c024-7ab4-4e07-ab28-cce5096eb20a: !Template
     answer_choices: null
-    id: 05f353b8-f572-449d-a746-d6c7d75b1460
-    jinja: 'Translate this from Lingala into Oriya: {{ sentence_lin }} ||| {{ sentence_ory
-      }}'
+    id: 0633c024-7ab4-4e07-ab28-cce5096eb20a
+    jinja: 'Igbo: {{ sentence_ibo }} = Oriya: ||| {{ sentence_ory }}'
     metadata: *id001
-    name: translate-this-lin-ory
-    reference: Translate this from X to Y (Lingala into Oriya)
-  0655d7ae-932e-476d-b4c0-6b37fa08b863: !Template
+    name: flores-xglm-Igbo-Oriya
+    reference: 'L1: [sent1] = L2: [sent2]'
+  064a4dba-2cd1-40da-9d17-ab4f01845c30: !Template
     answer_choices: null
-    id: 0655d7ae-932e-476d-b4c0-6b37fa08b863
-    jinja: 'Translate this from Telugu into Wolof: {{ sentence_tel }} ||| {{ sentence_wol
-      }}'
+    id: 064a4dba-2cd1-40da-9d17-ab4f01845c30
+    jinja: 'Telugu: {{ sentence_tel }} = English: ||| {{ sentence_eng }}'
     metadata: *id001
-    name: translate-this-tel-wol
-    reference: Translate this from X to Y (Telugu into Wolof)
-  06633612-5fc3-47e4-9bdb-9979ec2a906a: !Template
+    name: flores-xglm-Telugu-English
+    reference: 'L1: [sent1] = L2: [sent2]'
+  066c1dc2-c4df-4158-8bba-3aa1776b3b4d: !Template
     answer_choices: null
-    id: 06633612-5fc3-47e4-9bdb-9979ec2a906a
-    jinja: 'Translate this from Brazilian Portuguese into Northern Sotho: {{ sentence_por
-      }} ||| {{ sentence_nso }}'
+    id: 066c1dc2-c4df-4158-8bba-3aa1776b3b4d
+    jinja: 'Yoruba: {{ sentence_yor }} = English: ||| {{ sentence_eng }}'
     metadata: *id001
-    name: translate-this-por-nso
-    reference: Translate this from X to Y (Brazilian Portuguese into Northern Sotho)
-  0688b325-b9f5-46be-885f-8d50870a4796: !Template
+    name: flores-xglm-Yoruba-English
+    reference: 'L1: [sent1] = L2: [sent2]'
+  0684c751-fd1a-4cf8-95a9-c1b6b58f6070: !Template
     answer_choices: null
-    id: 0688b325-b9f5-46be-885f-8d50870a4796
-    jinja: 'Translate this from Yoruba into traditional Chinese: {{ sentence_yor }}
-      ||| {{ sentence_zho_trad }}'
+    id: 0684c751-fd1a-4cf8-95a9-c1b6b58f6070
+    jinja: 'Nepali: {{ sentence_npi }} = Urdu: ||| {{ sentence_urd }}'
     metadata: *id001
-    name: translate-this-yor-zho_trad
-    reference: Translate this from X to Y (Yoruba into traditional Chinese)
-  06b52db2-5f52-48bf-b691-0743c53dca05: !Template
+    name: flores-xglm-Nepali-Urdu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  0725d6e9-a404-439b-9b7b-c3303665076e: !Template
     answer_choices: null
-    id: 06b52db2-5f52-48bf-b691-0743c53dca05
-    jinja: 'Translate this from Urdu into traditional Chinese: {{ sentence_urd }}
-      ||| {{ sentence_zho_trad }}'
+    id: 0725d6e9-a404-439b-9b7b-c3303665076e
+    jinja: 'French: {{ sentence_fra }} = Wolof: ||| {{ sentence_wol }}'
     metadata: *id001
-    name: translate-this-urd-zho_trad
-    reference: Translate this from X to Y (Urdu into traditional Chinese)
-  0733c1a2-af3b-44c8-bcb2-249573583c19: !Template
+    name: flores-xglm-French-Wolof
+    reference: 'L1: [sent1] = L2: [sent2]'
+  0761a012-dc8e-4303-8715-710581ee22fd: !Template
     answer_choices: null
-    id: 0733c1a2-af3b-44c8-bcb2-249573583c19
-    jinja: 'Translate this from Oriya into Nepali: {{ sentence_ory }} ||| {{ sentence_npi
+    id: 0761a012-dc8e-4303-8715-710581ee22fd
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Xhosa: ||| {{ sentence_xho
       }}'
     metadata: *id001
-    name: translate-this-ory-npi
-    reference: Translate this from X to Y (Oriya into Nepali)
-  076f4692-4fbb-4250-8b53-faded47498bd: !Template
+    name: flores-xglm-Brazilian Portuguese-Xhosa
+    reference: 'L1: [sent1] = L2: [sent2]'
+  076a7c6c-68d6-406c-bbff-8533b968cb03: !Template
     answer_choices: null
-    id: 076f4692-4fbb-4250-8b53-faded47498bd
-    jinja: 'Translate this from Punjabi into Vietnamese: {{ sentence_pan }} ||| {{
-      sentence_vie }}'
+    id: 076a7c6c-68d6-406c-bbff-8533b968cb03
+    jinja: 'Bengali: {{ sentence_ben }} = Hindi: ||| {{ sentence_hin }}'
     metadata: *id001
-    name: translate-this-pan-vie
-    reference: Translate this from X to Y (Punjabi into Vietnamese)
-  0771d683-74a8-4d90-91ba-846c34370b1e: !Template
+    name: flores-xglm-Bengali-Hindi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  0815ad82-1d66-4405-9d69-c024ad66770a: !Template
     answer_choices: null
-    id: 0771d683-74a8-4d90-91ba-846c34370b1e
-    jinja: 'Translate this from Hindi into Catalan: {{ sentence_hin }} ||| {{ sentence_cat
+    id: 0815ad82-1d66-4405-9d69-c024ad66770a
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Yoruba: ||| {{ sentence_yor
       }}'
     metadata: *id001
-    name: translate-this-hin-cat
-    reference: Translate this from X to Y (Hindi into Catalan)
-  07db41a3-d393-4a80-bfac-901510404e24: !Template
+    name: flores-xglm-simplified Chinese-Yoruba
+    reference: 'L1: [sent1] = L2: [sent2]'
+  08654e71-7329-4db3-b78b-4de07a0d64fb: !Template
     answer_choices: null
-    id: 07db41a3-d393-4a80-bfac-901510404e24
-    jinja: 'Translate this from Telugu into French: {{ sentence_tel }} ||| {{ sentence_fra
-      }}'
+    id: 08654e71-7329-4db3-b78b-4de07a0d64fb
+    jinja: 'Marathi: {{ sentence_mar }} = Catalan: ||| {{ sentence_cat }}'
     metadata: *id001
-    name: translate-this-tel-fra
-    reference: Translate this from X to Y (Telugu into French)
-  07dcce5a-8a45-411a-b76e-082fb29a1c0e: !Template
+    name: flores-xglm-Marathi-Catalan
+    reference: 'L1: [sent1] = L2: [sent2]'
+  091040dd-45f8-40b8-b6f7-d899f5aecf4a: !Template
     answer_choices: null
-    id: 07dcce5a-8a45-411a-b76e-082fb29a1c0e
-    jinja: 'Translate this from Xhosa into Oriya: {{ sentence_xho }} ||| {{ sentence_ory
+    id: 091040dd-45f8-40b8-b6f7-d899f5aecf4a
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Tamil: ||| {{ sentence_tam
       }}'
     metadata: *id001
-    name: translate-this-xho-ory
-    reference: Translate this from X to Y (Xhosa into Oriya)
-  07fa19bb-93cf-4a9d-9056-a3e7b082ccb6: !Template
+    name: flores-xglm-simplified Chinese-Tamil
+    reference: 'L1: [sent1] = L2: [sent2]'
+  096542a4-3795-4e28-8225-b5f85a939685: !Template
     answer_choices: null
-    id: 07fa19bb-93cf-4a9d-9056-a3e7b082ccb6
-    jinja: 'Translate this from Arabic into Zulu: {{ sentence_ara }} ||| {{ sentence_zul
+    id: 096542a4-3795-4e28-8225-b5f85a939685
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Assamese: ||| {{ sentence_asm
       }}'
     metadata: *id001
-    name: translate-this-ara-zul
-    reference: Translate this from X to Y (Arabic into Zulu)
-  08aefda0-a815-4c05-82a0-98606a411095: !Template
+    name: flores-xglm-Brazilian Portuguese-Assamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  097a868e-259e-4e21-8f18-5a1e10e37c16: !Template
     answer_choices: null
-    id: 08aefda0-a815-4c05-82a0-98606a411095
-    jinja: 'Translate this from Punjabi into Catalan: {{ sentence_pan }} ||| {{ sentence_cat
-      }}'
+    id: 097a868e-259e-4e21-8f18-5a1e10e37c16
+    jinja: 'Oriya: {{ sentence_ory }} = Tamil: ||| {{ sentence_tam }}'
     metadata: *id001
-    name: translate-this-pan-cat
-    reference: Translate this from X to Y (Punjabi into Catalan)
-  092c5a74-aca0-404e-9028-a65760814ae5: !Template
+    name: flores-xglm-Oriya-Tamil
+    reference: 'L1: [sent1] = L2: [sent2]'
+  09920380-4763-4974-8f54-1a08178963d4: !Template
     answer_choices: null
-    id: 092c5a74-aca0-404e-9028-a65760814ae5
-    jinja: 'Translate this from Zulu into Marathi: {{ sentence_zul }} ||| {{ sentence_mar
-      }}'
+    id: 09920380-4763-4974-8f54-1a08178963d4
+    jinja: 'Catalan: {{ sentence_cat }} = Punjabi: ||| {{ sentence_pan }}'
     metadata: *id001
-    name: translate-this-zul-mar
-    reference: Translate this from X to Y (Zulu into Marathi)
-  093345cc-bba4-4bec-89f5-b851cd738200: !Template
+    name: flores-xglm-Catalan-Punjabi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  0994a0e9-df98-4d55-85e1-5477ce0d1095: !Template
     answer_choices: null
-    id: 093345cc-bba4-4bec-89f5-b851cd738200
-    jinja: 'Translate this from Swahili into Hindi: {{ sentence_swh }} ||| {{ sentence_hin
-      }}'
+    id: 0994a0e9-df98-4d55-85e1-5477ce0d1095
+    jinja: 'Oriya: {{ sentence_ory }} = Bengali: ||| {{ sentence_ben }}'
     metadata: *id001
-    name: translate-this-swh-hin
-    reference: Translate this from X to Y (Swahili into Hindi)
-  095967e5-4b72-44db-8b8a-055804f82f4d: !Template
+    name: flores-xglm-Oriya-Bengali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  09c482d3-3dfd-4272-b28e-dfd9cb992f39: !Template
     answer_choices: null
-    id: 095967e5-4b72-44db-8b8a-055804f82f4d
-    jinja: 'Translate this from Kannada into Nepali: {{ sentence_kan }} ||| {{ sentence_npi
-      }}'
+    id: 09c482d3-3dfd-4272-b28e-dfd9cb992f39
+    jinja: 'Catalan: {{ sentence_cat }} = Oriya: ||| {{ sentence_ory }}'
     metadata: *id001
-    name: translate-this-kan-npi
-    reference: Translate this from X to Y (Kannada into Nepali)
-  0966cd67-8bf8-434a-8f04-2d4d7148e02b: !Template
+    name: flores-xglm-Catalan-Oriya
+    reference: 'L1: [sent1] = L2: [sent2]'
+  09cfcc75-ef54-4ea0-91a6-b73a22ef6905: !Template
     answer_choices: null
-    id: 0966cd67-8bf8-434a-8f04-2d4d7148e02b
-    jinja: 'Translate this from Gujarati into Marathi: {{ sentence_guj }} ||| {{ sentence_mar
-      }}'
+    id: 09cfcc75-ef54-4ea0-91a6-b73a22ef6905
+    jinja: 'French: {{ sentence_fra }} = Yoruba: ||| {{ sentence_yor }}'
     metadata: *id001
-    name: translate-this-guj-mar
-    reference: Translate this from X to Y (Gujarati into Marathi)
-  097b6d08-0162-4cec-81b2-efcba008f86e: !Template
+    name: flores-xglm-French-Yoruba
+    reference: 'L1: [sent1] = L2: [sent2]'
+  0a471bdf-6122-4a7e-94ff-d4582367c455: !Template
     answer_choices: null
-    id: 097b6d08-0162-4cec-81b2-efcba008f86e
-    jinja: 'Translate this from Latin American Spanish into Kannada: {{ sentence_spa
-      }} ||| {{ sentence_kan }}'
+    id: 0a471bdf-6122-4a7e-94ff-d4582367c455
+    jinja: 'Vietnamese: {{ sentence_vie }} = Xhosa: ||| {{ sentence_xho }}'
     metadata: *id001
-    name: translate-this-spa-kan
-    reference: Translate this from X to Y (Latin American Spanish into Kannada)
-  09d2d1b0-a7f9-43b0-99bc-1a096eb02b7b: !Template
+    name: flores-xglm-Vietnamese-Xhosa
+    reference: 'L1: [sent1] = L2: [sent2]'
+  0b1ad715-d810-4c3a-a6a0-5baeb9f99cc8: !Template
     answer_choices: null
-    id: 09d2d1b0-a7f9-43b0-99bc-1a096eb02b7b
-    jinja: 'Translate this from Igbo into Vietnamese: {{ sentence_ibo }} ||| {{ sentence_vie
-      }}'
+    id: 0b1ad715-d810-4c3a-a6a0-5baeb9f99cc8
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Latin American Spanish:
+      ||| {{ sentence_spa }}'
     metadata: *id001
-    name: translate-this-ibo-vie
-    reference: Translate this from X to Y (Igbo into Vietnamese)
-  0a7de7bd-5344-4b30-becb-d22cb1cd5049: !Template
+    name: flores-xglm-simplified Chinese-Latin American Spanish
+    reference: 'L1: [sent1] = L2: [sent2]'
+  0b5aed70-fd70-445f-9f68-18678a346ca8: !Template
     answer_choices: null
-    id: 0a7de7bd-5344-4b30-becb-d22cb1cd5049
-    jinja: 'Translate this from Wolof into Northern Sotho: {{ sentence_wol }} |||
-      {{ sentence_nso }}'
+    id: 0b5aed70-fd70-445f-9f68-18678a346ca8
+    jinja: 'Assamese: {{ sentence_asm }} = Zulu: ||| {{ sentence_zul }}'
     metadata: *id001
-    name: translate-this-wol-nso
-    reference: Translate this from X to Y (Wolof into Northern Sotho)
-  0a7f058f-5347-43f8-84d8-b125b92f919e: !Template
+    name: flores-xglm-Assamese-Zulu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  0b6b28b0-1ec4-479e-a7de-1dac64baec09: !Template
     answer_choices: null
-    id: 0a7f058f-5347-43f8-84d8-b125b92f919e
-    jinja: 'Translate this from Indonesian into Zulu: {{ sentence_ind }} ||| {{ sentence_zul
-      }}'
+    id: 0b6b28b0-1ec4-479e-a7de-1dac64baec09
+    jinja: 'Gujarati: {{ sentence_guj }} = Xhosa: ||| {{ sentence_xho }}'
     metadata: *id001
-    name: translate-this-ind-zul
-    reference: Translate this from X to Y (Indonesian into Zulu)
-  0ac78754-ea53-41ed-bffb-b7e0900d7312: !Template
+    name: flores-xglm-Gujarati-Xhosa
+    reference: 'L1: [sent1] = L2: [sent2]'
+  0be2ded6-143a-45cf-ac6a-91d24783ac43: !Template
     answer_choices: null
-    id: 0ac78754-ea53-41ed-bffb-b7e0900d7312
-    jinja: 'Translate this from Zulu into Arabic: {{ sentence_zul }} ||| {{ sentence_ara
-      }}'
+    id: 0be2ded6-143a-45cf-ac6a-91d24783ac43
+    jinja: 'Hindi: {{ sentence_hin }} = Xhosa: ||| {{ sentence_xho }}'
     metadata: *id001
-    name: translate-this-zul-ara
-    reference: Translate this from X to Y (Zulu into Arabic)
-  0af3e0f1-2360-4afb-b4af-023ed6d995be: !Template
+    name: flores-xglm-Hindi-Xhosa
+    reference: 'L1: [sent1] = L2: [sent2]'
+  0cc1f61e-aecf-41fd-9abf-8e5eaf0e5324: !Template
     answer_choices: null
-    id: 0af3e0f1-2360-4afb-b4af-023ed6d995be
-    jinja: 'Translate this from Brazilian Portuguese into Tamil: {{ sentence_por }}
-      ||| {{ sentence_tam }}'
+    id: 0cc1f61e-aecf-41fd-9abf-8e5eaf0e5324
+    jinja: 'French: {{ sentence_fra }} = Lingala: ||| {{ sentence_lin }}'
     metadata: *id001
-    name: translate-this-por-tam
-    reference: Translate this from X to Y (Brazilian Portuguese into Tamil)
-  0b0c374e-ab5e-49e8-91bd-dcb42df8ffef: !Template
+    name: flores-xglm-French-Lingala
+    reference: 'L1: [sent1] = L2: [sent2]'
+  0cf66eb4-7b68-4a31-a3f8-cd01e34293db: !Template
     answer_choices: null
-    id: 0b0c374e-ab5e-49e8-91bd-dcb42df8ffef
-    jinja: 'Translate this from Bengali into Kannada: {{ sentence_ben }} ||| {{ sentence_kan
-      }}'
+    id: 0cf66eb4-7b68-4a31-a3f8-cd01e34293db
+    jinja: 'Catalan: {{ sentence_cat }} = Assamese: ||| {{ sentence_asm }}'
     metadata: *id001
-    name: translate-this-ben-kan
-    reference: Translate this from X to Y (Bengali into Kannada)
-  0b31cb20-9fa8-44fb-8ad3-2d12a6270933: !Template
+    name: flores-xglm-Catalan-Assamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  0d5642a6-c2bf-4a7f-8a79-85264cd38903: !Template
     answer_choices: null
-    id: 0b31cb20-9fa8-44fb-8ad3-2d12a6270933
-    jinja: 'Translate this from Swahili into English: {{ sentence_swh }} ||| {{ sentence_eng
+    id: 0d5642a6-c2bf-4a7f-8a79-85264cd38903
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Malayalam: ||| {{ sentence_mal
       }}'
     metadata: *id001
-    name: translate-this-swh-eng
-    reference: Translate this from X to Y (Swahili into English)
-  0b41045f-dfdb-4601-91cf-24167e601af0: !Template
+    name: flores-xglm-simplified Chinese-Malayalam
+    reference: 'L1: [sent1] = L2: [sent2]'
+  0db340f9-7fc8-4ea1-9d24-9a32d15fa4f2: !Template
     answer_choices: null
-    id: 0b41045f-dfdb-4601-91cf-24167e601af0
-    jinja: 'Translate this from English into Punjabi: {{ sentence_eng }} ||| {{ sentence_pan
+    id: 0db340f9-7fc8-4ea1-9d24-9a32d15fa4f2
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Marathi: ||| {{ sentence_mar
       }}'
     metadata: *id001
-    name: translate-this-eng-pan
-    reference: Translate this from X to Y (English into Punjabi)
-  0bf007f5-8c77-4346-b6eb-511ffe543e91: !Template
+    name: flores-xglm-traditional Chinese-Marathi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  0dc3553a-5033-4e79-bf70-18d14dc37a0b: !Template
     answer_choices: null
-    id: 0bf007f5-8c77-4346-b6eb-511ffe543e91
-    jinja: 'Translate this from Urdu into English: {{ sentence_urd }} ||| {{ sentence_eng
-      }}'
+    id: 0dc3553a-5033-4e79-bf70-18d14dc37a0b
+    jinja: 'Zulu: {{ sentence_zul }} = Tamil: ||| {{ sentence_tam }}'
     metadata: *id001
-    name: translate-this-urd-eng
-    reference: Translate this from X to Y (Urdu into English)
-  0c0fd64b-3117-4898-b7a9-28905679eadb: !Template
+    name: flores-xglm-Zulu-Tamil
+    reference: 'L1: [sent1] = L2: [sent2]'
+  0dd71d66-7982-40b7-bf3a-bb5fa67f2db4: !Template
     answer_choices: null
-    id: 0c0fd64b-3117-4898-b7a9-28905679eadb
-    jinja: 'Translate this from Igbo into Indonesian: {{ sentence_ibo }} ||| {{ sentence_ind
+    id: 0dd71d66-7982-40b7-bf3a-bb5fa67f2db4
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Arabic: ||| {{ sentence_ara
       }}'
     metadata: *id001
-    name: translate-this-ibo-ind
-    reference: Translate this from X to Y (Igbo into Indonesian)
-  0caa450d-fcab-4c63-99de-be23dce00ea9: !Template
+    name: flores-xglm-Brazilian Portuguese-Arabic
+    reference: 'L1: [sent1] = L2: [sent2]'
+  0dfedc1b-4e5d-4a00-a807-e44bd702c674: !Template
     answer_choices: null
-    id: 0caa450d-fcab-4c63-99de-be23dce00ea9
-    jinja: 'Translate this from Assamese into Catalan: {{ sentence_asm }} ||| {{ sentence_cat
+    id: 0dfedc1b-4e5d-4a00-a807-e44bd702c674
+    jinja: 'Vietnamese: {{ sentence_vie }} = Latin American Spanish: ||| {{ sentence_spa
       }}'
     metadata: *id001
-    name: translate-this-asm-cat
-    reference: Translate this from X to Y (Assamese into Catalan)
-  0ccf060e-7c7a-451d-923a-95607d4ffa05: !Template
+    name: flores-xglm-Vietnamese-Latin American Spanish
+    reference: 'L1: [sent1] = L2: [sent2]'
+  0e03f4d1-35e2-4d6b-860e-2d2c2e975452: !Template
     answer_choices: null
-    id: 0ccf060e-7c7a-451d-923a-95607d4ffa05
-    jinja: 'Translate this from Wolof into Brazilian Portuguese: {{ sentence_wol }}
-      ||| {{ sentence_por }}'
+    id: 0e03f4d1-35e2-4d6b-860e-2d2c2e975452
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = Northern Sotho: ||| {{ sentence_nso
+      }}'
     metadata: *id001
-    name: translate-this-wol-por
-    reference: Translate this from X to Y (Wolof into Brazilian Portuguese)
-  0cd546c4-7b6f-46fa-a090-2cb3a8132aed: !Template
+    name: flores-xglm-Latin American Spanish-Northern Sotho
+    reference: 'L1: [sent1] = L2: [sent2]'
+  0e23b333-574a-40b1-aeec-695d43c047ea: !Template
     answer_choices: null
-    id: 0cd546c4-7b6f-46fa-a090-2cb3a8132aed
-    jinja: 'Translate this from Marathi into Vietnamese: {{ sentence_mar }} ||| {{
-      sentence_vie }}'
+    id: 0e23b333-574a-40b1-aeec-695d43c047ea
+    jinja: 'Gujarati: {{ sentence_guj }} = Yoruba: ||| {{ sentence_yor }}'
     metadata: *id001
-    name: translate-this-mar-vie
-    reference: Translate this from X to Y (Marathi into Vietnamese)
-  0cf979ef-a218-4368-898b-6028eb87c11f: !Template
+    name: flores-xglm-Gujarati-Yoruba
+    reference: 'L1: [sent1] = L2: [sent2]'
+  0e8b6b3d-40fa-40a6-9446-6e2d17725bae: !Template
     answer_choices: null
-    id: 0cf979ef-a218-4368-898b-6028eb87c11f
-    jinja: 'Translate this from Wolof into Kannada: {{ sentence_wol }} ||| {{ sentence_kan
-      }}'
+    id: 0e8b6b3d-40fa-40a6-9446-6e2d17725bae
+    jinja: 'Lingala: {{ sentence_lin }} = French: ||| {{ sentence_fra }}'
     metadata: *id001
-    name: translate-this-wol-kan
-    reference: Translate this from X to Y (Wolof into Kannada)
-  0d5043dc-9bff-4b5f-b033-d690cbb36703: !Template
+    name: flores-xglm-Lingala-French
+    reference: 'L1: [sent1] = L2: [sent2]'
+  0f9c10d2-c244-481a-b93e-1b2d8b567dba: !Template
     answer_choices: null
-    id: 0d5043dc-9bff-4b5f-b033-d690cbb36703
-    jinja: 'Translate this from Lingala into Assamese: {{ sentence_lin }} ||| {{ sentence_asm
-      }}'
+    id: 0f9c10d2-c244-481a-b93e-1b2d8b567dba
+    jinja: 'Malayalam: {{ sentence_mal }} = Yoruba: ||| {{ sentence_yor }}'
     metadata: *id001
-    name: translate-this-lin-asm
-    reference: Translate this from X to Y (Lingala into Assamese)
-  0d8284fb-92cb-4b7b-8ec0-c247d07f3f14: !Template
+    name: flores-xglm-Malayalam-Yoruba
+    reference: 'L1: [sent1] = L2: [sent2]'
+  0fa66cf9-fd11-43f7-a044-15db8c7dd6fb: !Template
     answer_choices: null
-    id: 0d8284fb-92cb-4b7b-8ec0-c247d07f3f14
-    jinja: 'Translate this from Hindi into Indonesian: {{ sentence_hin }} ||| {{ sentence_ind
-      }}'
+    id: 0fa66cf9-fd11-43f7-a044-15db8c7dd6fb
+    jinja: 'French: {{ sentence_fra }} = Swahili: ||| {{ sentence_swh }}'
     metadata: *id001
-    name: translate-this-hin-ind
-    reference: Translate this from X to Y (Hindi into Indonesian)
-  0e82e83e-29e4-44a8-9743-2ddaf9ecbaf6: !Template
+    name: flores-xglm-French-Swahili
+    reference: 'L1: [sent1] = L2: [sent2]'
+  0fc767dd-c176-4996-80b2-db86e30de5a8: !Template
     answer_choices: null
-    id: 0e82e83e-29e4-44a8-9743-2ddaf9ecbaf6
-    jinja: 'Translate this from Assamese into simplified Chinese: {{ sentence_asm
-      }} ||| {{ sentence_zho_simpl }}'
+    id: 0fc767dd-c176-4996-80b2-db86e30de5a8
+    jinja: 'Wolof: {{ sentence_wol }} = Igbo: ||| {{ sentence_ibo }}'
     metadata: *id001
-    name: translate-this-asm-zho_simpl
-    reference: Translate this from X to Y (Assamese into simplified Chinese)
-  0ea71c68-99ec-404e-a6c1-1a8c733ec22d: !Template
+    name: flores-xglm-Wolof-Igbo
+    reference: 'L1: [sent1] = L2: [sent2]'
+  0fd81c05-76b1-461f-b3a9-97d694ccbdcd: !Template
     answer_choices: null
-    id: 0ea71c68-99ec-404e-a6c1-1a8c733ec22d
-    jinja: 'Translate this from Telugu into Tamil: {{ sentence_tel }} ||| {{ sentence_tam
-      }}'
+    id: 0fd81c05-76b1-461f-b3a9-97d694ccbdcd
+    jinja: 'Gujarati: {{ sentence_guj }} = Bengali: ||| {{ sentence_ben }}'
     metadata: *id001
-    name: translate-this-tel-tam
-    reference: Translate this from X to Y (Telugu into Tamil)
-  0ec14075-6c63-4e7c-b2f5-74e87cb30a51: !Template
+    name: flores-xglm-Gujarati-Bengali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  0fff5f60-fa97-4d48-b4b5-5aee4bac8368: !Template
     answer_choices: null
-    id: 0ec14075-6c63-4e7c-b2f5-74e87cb30a51
-    jinja: 'Translate this from simplified Chinese into Malayalam: {{ sentence_zho_simpl
-      }} ||| {{ sentence_mal }}'
+    id: 0fff5f60-fa97-4d48-b4b5-5aee4bac8368
+    jinja: 'Northern Sotho: {{ sentence_nso }} = Bengali: ||| {{ sentence_ben }}'
     metadata: *id001
-    name: translate-this-zho_simpl-mal
-    reference: Translate this from X to Y (simplified Chinese into Malayalam)
-  0ec7d1df-fd0c-4e8a-8345-fcc67866a1e4: !Template
+    name: flores-xglm-Northern Sotho-Bengali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  101339cf-0c45-4c1b-849e-989126975e80: !Template
     answer_choices: null
-    id: 0ec7d1df-fd0c-4e8a-8345-fcc67866a1e4
-    jinja: 'Translate this from Arabic into Marathi: {{ sentence_ara }} ||| {{ sentence_mar
-      }}'
+    id: 101339cf-0c45-4c1b-849e-989126975e80
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = simplified Chinese: ||| {{
+      sentence_zho_simpl }}'
     metadata: *id001
-    name: translate-this-ara-mar
-    reference: Translate this from X to Y (Arabic into Marathi)
-  0f0569af-dffb-4d52-83ee-65cf0ffb2115: !Template
+    name: flores-xglm-Brazilian Portuguese-simplified Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  104ae981-4a36-4cbe-8a93-577027107b80: !Template
     answer_choices: null
-    id: 0f0569af-dffb-4d52-83ee-65cf0ffb2115
-    jinja: 'Translate this from Brazilian Portuguese into Nepali: {{ sentence_por
-      }} ||| {{ sentence_npi }}'
+    id: 104ae981-4a36-4cbe-8a93-577027107b80
+    jinja: 'Zulu: {{ sentence_zul }} = Northern Sotho: ||| {{ sentence_nso }}'
     metadata: *id001
-    name: translate-this-por-npi
-    reference: Translate this from X to Y (Brazilian Portuguese into Nepali)
-  0f7582ba-2432-4a51-b765-1ed575bdabfa: !Template
+    name: flores-xglm-Zulu-Northern Sotho
+    reference: 'L1: [sent1] = L2: [sent2]'
+  1066a274-15fc-499f-86a7-8dbfcda8b31b: !Template
     answer_choices: null
-    id: 0f7582ba-2432-4a51-b765-1ed575bdabfa
-    jinja: 'Translate this from Malayalam into Wolof: {{ sentence_mal }} ||| {{ sentence_wol
+    id: 1066a274-15fc-499f-86a7-8dbfcda8b31b
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Indonesian: ||| {{ sentence_ind
       }}'
     metadata: *id001
-    name: translate-this-mal-wol
-    reference: Translate this from X to Y (Malayalam into Wolof)
-  0f901e7c-69cb-4283-8e71-a3d5c8a26f3a: !Template
+    name: flores-xglm-simplified Chinese-Indonesian
+    reference: 'L1: [sent1] = L2: [sent2]'
+  10d97d1b-677e-49a6-84b9-5b9cddf580d3: !Template
     answer_choices: null
-    id: 0f901e7c-69cb-4283-8e71-a3d5c8a26f3a
-    jinja: 'Translate this from Lingala into traditional Chinese: {{ sentence_lin
-      }} ||| {{ sentence_zho_trad }}'
+    id: 10d97d1b-677e-49a6-84b9-5b9cddf580d3
+    jinja: 'Marathi: {{ sentence_mar }} = Nepali: ||| {{ sentence_npi }}'
     metadata: *id001
-    name: translate-this-lin-zho_trad
-    reference: Translate this from X to Y (Lingala into traditional Chinese)
-  10220cbd-deb0-4dd0-a74a-4a84b72ac7a0: !Template
+    name: flores-xglm-Marathi-Nepali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  10ecf2c9-f036-4d14-92a8-bdfd5ecdaede: !Template
     answer_choices: null
-    id: 10220cbd-deb0-4dd0-a74a-4a84b72ac7a0
-    jinja: 'Translate this from Wolof into traditional Chinese: {{ sentence_wol }}
-      ||| {{ sentence_zho_trad }}'
+    id: 10ecf2c9-f036-4d14-92a8-bdfd5ecdaede
+    jinja: 'Urdu: {{ sentence_urd }} = Malayalam: ||| {{ sentence_mal }}'
     metadata: *id001
-    name: translate-this-wol-zho_trad
-    reference: Translate this from X to Y (Wolof into traditional Chinese)
-  107cc328-d74a-4838-9493-d2214f43c0bc: !Template
+    name: flores-xglm-Urdu-Malayalam
+    reference: 'L1: [sent1] = L2: [sent2]'
+  1151f40e-cda2-4a24-81de-c49afb668a1c: !Template
     answer_choices: null
-    id: 107cc328-d74a-4838-9493-d2214f43c0bc
-    jinja: 'Translate this from Hindi into Punjabi: {{ sentence_hin }} ||| {{ sentence_pan
+    id: 1151f40e-cda2-4a24-81de-c49afb668a1c
+    jinja: 'Igbo: {{ sentence_ibo }} = traditional Chinese: ||| {{ sentence_zho_trad
       }}'
     metadata: *id001
-    name: translate-this-hin-pan
-    reference: Translate this from X to Y (Hindi into Punjabi)
-  10c302e0-6fe1-4b14-be43-1890eb1dec38: !Template
+    name: flores-xglm-Igbo-traditional Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  11585c3e-9b5f-4e6a-aef8-a85b9184b88b: !Template
     answer_choices: null
-    id: 10c302e0-6fe1-4b14-be43-1890eb1dec38
-    jinja: 'Translate this from Telugu into Northern Sotho: {{ sentence_tel }} |||
-      {{ sentence_nso }}'
+    id: 11585c3e-9b5f-4e6a-aef8-a85b9184b88b
+    jinja: 'Yoruba: {{ sentence_yor }} = Kannada: ||| {{ sentence_kan }}'
     metadata: *id001
-    name: translate-this-tel-nso
-    reference: Translate this from X to Y (Telugu into Northern Sotho)
-  110b9e69-ce7c-40c3-a902-2f0178fee510: !Template
+    name: flores-xglm-Yoruba-Kannada
+    reference: 'L1: [sent1] = L2: [sent2]'
+  119319e9-3a6d-4a0d-872e-8f5946e9bc8d: !Template
     answer_choices: null
-    id: 110b9e69-ce7c-40c3-a902-2f0178fee510
-    jinja: 'Translate this from English into Swahili: {{ sentence_eng }} ||| {{ sentence_swh
+    id: 119319e9-3a6d-4a0d-872e-8f5946e9bc8d
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = Vietnamese: ||| {{ sentence_vie
       }}'
     metadata: *id001
-    name: translate-this-eng-swh
-    reference: Translate this from X to Y (English into Swahili)
-  110d90af-b345-4042-8b12-4ff73a543f68: !Template
+    name: flores-xglm-Latin American Spanish-Vietnamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  119e168c-ff2b-4614-a6fa-9b781dce191b: !Template
     answer_choices: null
-    id: 110d90af-b345-4042-8b12-4ff73a543f68
-    jinja: 'Translate this from Gujarati into Catalan: {{ sentence_guj }} ||| {{ sentence_cat
-      }}'
+    id: 119e168c-ff2b-4614-a6fa-9b781dce191b
+    jinja: 'Nepali: {{ sentence_npi }} = Zulu: ||| {{ sentence_zul }}'
     metadata: *id001
-    name: translate-this-guj-cat
-    reference: Translate this from X to Y (Gujarati into Catalan)
-  1140d648-0765-44a1-8517-70012aa27ffc: !Template
+    name: flores-xglm-Nepali-Zulu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  11f5ffb4-e38a-40d3-b2f2-6762d0146163: !Template
     answer_choices: null
-    id: 1140d648-0765-44a1-8517-70012aa27ffc
-    jinja: 'Translate this from Punjabi into Nepali: {{ sentence_pan }} ||| {{ sentence_npi
-      }}'
+    id: 11f5ffb4-e38a-40d3-b2f2-6762d0146163
+    jinja: 'Igbo: {{ sentence_ibo }} = Nepali: ||| {{ sentence_npi }}'
     metadata: *id001
-    name: translate-this-pan-npi
-    reference: Translate this from X to Y (Punjabi into Nepali)
-  115f8db1-0269-493d-bd58-4515dfe4925e: !Template
+    name: flores-xglm-Igbo-Nepali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  12a661c5-1c15-4eda-8220-cb96ce9f3526: !Template
     answer_choices: null
-    id: 115f8db1-0269-493d-bd58-4515dfe4925e
-    jinja: 'Translate this from Tamil into Arabic: {{ sentence_tam }} ||| {{ sentence_ara
-      }}'
+    id: 12a661c5-1c15-4eda-8220-cb96ce9f3526
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Urdu: ||| {{ sentence_urd }}'
     metadata: *id001
-    name: translate-this-tam-ara
-    reference: Translate this from X to Y (Tamil into Arabic)
-  116d5e63-1d3e-4beb-8ec1-581a646d894f: !Template
+    name: flores-xglm-Brazilian Portuguese-Urdu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  12e73509-7871-4b11-b4dd-66ec6366993e: !Template
     answer_choices: null
-    id: 116d5e63-1d3e-4beb-8ec1-581a646d894f
-    jinja: 'Translate this from Nepali into Urdu: {{ sentence_npi }} ||| {{ sentence_urd
-      }}'
+    id: 12e73509-7871-4b11-b4dd-66ec6366993e
+    jinja: 'Urdu: {{ sentence_urd }} = Lingala: ||| {{ sentence_lin }}'
     metadata: *id001
-    name: translate-this-npi-urd
-    reference: Translate this from X to Y (Nepali into Urdu)
-  12e8c597-db86-44c6-9366-8a123e6a2473: !Template
+    name: flores-xglm-Urdu-Lingala
+    reference: 'L1: [sent1] = L2: [sent2]'
+  130c7f50-30e7-4467-aeb6-f0046830722e: !Template
     answer_choices: null
-    id: 12e8c597-db86-44c6-9366-8a123e6a2473
-    jinja: 'Translate this from Catalan into Yoruba: {{ sentence_cat }} ||| {{ sentence_yor
-      }}'
+    id: 130c7f50-30e7-4467-aeb6-f0046830722e
+    jinja: 'Urdu: {{ sentence_urd }} = Swahili: ||| {{ sentence_swh }}'
     metadata: *id001
-    name: translate-this-cat-yor
-    reference: Translate this from X to Y (Catalan into Yoruba)
-  130f4ac9-c7bd-416c-b0de-16aff884367c: !Template
+    name: flores-xglm-Urdu-Swahili
+    reference: 'L1: [sent1] = L2: [sent2]'
+  134993cb-6a6c-449a-8974-ababea07c9b1: !Template
     answer_choices: null
-    id: 130f4ac9-c7bd-416c-b0de-16aff884367c
-    jinja: 'Translate this from Swahili into Punjabi: {{ sentence_swh }} ||| {{ sentence_pan
-      }}'
+    id: 134993cb-6a6c-449a-8974-ababea07c9b1
+    jinja: 'Indonesian: {{ sentence_ind }} = Wolof: ||| {{ sentence_wol }}'
     metadata: *id001
-    name: translate-this-swh-pan
-    reference: Translate this from X to Y (Swahili into Punjabi)
-  1311aaf3-1c33-4a9e-8704-c6b847b23824: !Template
+    name: flores-xglm-Indonesian-Wolof
+    reference: 'L1: [sent1] = L2: [sent2]'
+  137d3bf3-85f7-49ff-ab52-2e56522522a6: !Template
     answer_choices: null
-    id: 1311aaf3-1c33-4a9e-8704-c6b847b23824
-    jinja: 'Translate this from Nepali into Marathi: {{ sentence_npi }} ||| {{ sentence_mar
-      }}'
+    id: 137d3bf3-85f7-49ff-ab52-2e56522522a6
+    jinja: 'English: {{ sentence_eng }} = Hindi: ||| {{ sentence_hin }}'
     metadata: *id001
-    name: translate-this-npi-mar
-    reference: Translate this from X to Y (Nepali into Marathi)
-  13317eb7-5d5d-4b10-96a8-8816b1e78804: !Template
+    name: flores-xglm-English-Hindi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  145c8ecc-39f6-41d9-81ac-e7f9e2403ee9: !Template
     answer_choices: null
-    id: 13317eb7-5d5d-4b10-96a8-8816b1e78804
-    jinja: 'Translate this from Igbo into Yoruba: {{ sentence_ibo }} ||| {{ sentence_yor
-      }}'
+    id: 145c8ecc-39f6-41d9-81ac-e7f9e2403ee9
+    jinja: 'Hindi: {{ sentence_hin }} = Urdu: ||| {{ sentence_urd }}'
     metadata: *id001
-    name: translate-this-ibo-yor
-    reference: Translate this from X to Y (Igbo into Yoruba)
-  13337391-74eb-46f2-a51e-79ef655e7ef5: !Template
+    name: flores-xglm-Hindi-Urdu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  149e6df1-891b-4bf1-acfc-46e0f8cc2e5d: !Template
     answer_choices: null
-    id: 13337391-74eb-46f2-a51e-79ef655e7ef5
-    jinja: 'Translate this from simplified Chinese into Vietnamese: {{ sentence_zho_simpl
-      }} ||| {{ sentence_vie }}'
+    id: 149e6df1-891b-4bf1-acfc-46e0f8cc2e5d
+    jinja: 'Oriya: {{ sentence_ory }} = French: ||| {{ sentence_fra }}'
     metadata: *id001
-    name: translate-this-zho_simpl-vie
-    reference: Translate this from X to Y (simplified Chinese into Vietnamese)
-  135cfef3-2812-44e2-81e8-51508d5978e5: !Template
+    name: flores-xglm-Oriya-French
+    reference: 'L1: [sent1] = L2: [sent2]'
+  14dcb0e3-ead7-4f23-81a0-112bc665458a: !Template
     answer_choices: null
-    id: 135cfef3-2812-44e2-81e8-51508d5978e5
-    jinja: 'Translate this from Telugu into Nepali: {{ sentence_tel }} ||| {{ sentence_npi
-      }}'
+    id: 14dcb0e3-ead7-4f23-81a0-112bc665458a
+    jinja: 'Northern Sotho: {{ sentence_nso }} = Arabic: ||| {{ sentence_ara }}'
     metadata: *id001
-    name: translate-this-tel-npi
-    reference: Translate this from X to Y (Telugu into Nepali)
-  1389dc7b-42b9-47b8-8c4a-ae6c6270615a: !Template
+    name: flores-xglm-Northern Sotho-Arabic
+    reference: 'L1: [sent1] = L2: [sent2]'
+  14e78d7e-f25b-4731-8e64-1debbca6459b: !Template
     answer_choices: null
-    id: 1389dc7b-42b9-47b8-8c4a-ae6c6270615a
-    jinja: 'Translate this from Zulu into Northern Sotho: {{ sentence_zul }} ||| {{
-      sentence_nso }}'
+    id: 14e78d7e-f25b-4731-8e64-1debbca6459b
+    jinja: 'Urdu: {{ sentence_urd }} = Northern Sotho: ||| {{ sentence_nso }}'
     metadata: *id001
-    name: translate-this-zul-nso
-    reference: Translate this from X to Y (Zulu into Northern Sotho)
-  13a2c229-1087-4774-8dc9-807c02506da0: !Template
+    name: flores-xglm-Urdu-Northern Sotho
+    reference: 'L1: [sent1] = L2: [sent2]'
+  153e2dbc-f7d1-458a-b73e-afa5368f8c2b: !Template
     answer_choices: null
-    id: 13a2c229-1087-4774-8dc9-807c02506da0
-    jinja: 'Translate this from Kannada into Indonesian: {{ sentence_kan }} ||| {{
-      sentence_ind }}'
+    id: 153e2dbc-f7d1-458a-b73e-afa5368f8c2b
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = Nepali: ||| {{ sentence_npi
+      }}'
     metadata: *id001
-    name: translate-this-kan-ind
-    reference: Translate this from X to Y (Kannada into Indonesian)
-  147306da-18ca-4a56-9ada-621e45cb4497: !Template
+    name: flores-xglm-Latin American Spanish-Nepali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  1591a215-ad87-45ab-9a2e-b385fc714e5f: !Template
     answer_choices: null
-    id: 147306da-18ca-4a56-9ada-621e45cb4497
-    jinja: 'Translate this from traditional Chinese into Oriya: {{ sentence_zho_trad
-      }} ||| {{ sentence_ory }}'
+    id: 1591a215-ad87-45ab-9a2e-b385fc714e5f
+    jinja: 'Indonesian: {{ sentence_ind }} = Brazilian Portuguese: ||| {{ sentence_por
+      }}'
     metadata: *id001
-    name: translate-this-zho_trad-ory
-    reference: Translate this from X to Y (traditional Chinese into Oriya)
-  14818e49-b74a-4659-976b-0904135d9c81: !Template
+    name: flores-xglm-Indonesian-Brazilian Portuguese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  159a37f6-de02-4a4a-a208-7f0a80458206: !Template
     answer_choices: null
-    id: 14818e49-b74a-4659-976b-0904135d9c81
-    jinja: 'Translate this from Northern Sotho into Yoruba: {{ sentence_nso }} |||
-      {{ sentence_yor }}'
+    id: 159a37f6-de02-4a4a-a208-7f0a80458206
+    jinja: 'English: {{ sentence_eng }} = Swahili: ||| {{ sentence_swh }}'
     metadata: *id001
-    name: translate-this-nso-yor
-    reference: Translate this from X to Y (Northern Sotho into Yoruba)
-  14a79036-bcfa-477e-b037-1706b2528dd7: !Template
+    name: flores-xglm-English-Swahili
+    reference: 'L1: [sent1] = L2: [sent2]'
+  163d4dd5-a84d-434d-88aa-790adc77f749: !Template
     answer_choices: null
-    id: 14a79036-bcfa-477e-b037-1706b2528dd7
-    jinja: 'Translate this from Gujarati into Arabic: {{ sentence_guj }} ||| {{ sentence_ara
-      }}'
+    id: 163d4dd5-a84d-434d-88aa-790adc77f749
+    jinja: 'Xhosa: {{ sentence_xho }} = Swahili: ||| {{ sentence_swh }}'
     metadata: *id001
-    name: translate-this-guj-ara
-    reference: Translate this from X to Y (Gujarati into Arabic)
-  14bdcf3b-9aa5-4923-a04b-e6a58ed2317a: !Template
+    name: flores-xglm-Xhosa-Swahili
+    reference: 'L1: [sent1] = L2: [sent2]'
+  1653af76-9b6b-4305-8a6c-eaf083640d7f: !Template
     answer_choices: null
-    id: 14bdcf3b-9aa5-4923-a04b-e6a58ed2317a
-    jinja: 'Translate this from Bengali into Xhosa: {{ sentence_ben }} ||| {{ sentence_xho
+    id: 1653af76-9b6b-4305-8a6c-eaf083640d7f
+    jinja: 'Gujarati: {{ sentence_guj }} = Urdu: ||| {{ sentence_urd }}'
+    metadata: *id001
+    name: flores-xglm-Gujarati-Urdu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  165aa4fb-b978-43d6-9291-87fc6c845dbb: !Template
+    answer_choices: null
+    id: 165aa4fb-b978-43d6-9291-87fc6c845dbb
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Malayalam: ||| {{ sentence_mal
       }}'
     metadata: *id001
-    name: translate-this-ben-xho
-    reference: Translate this from X to Y (Bengali into Xhosa)
-  1503a0bc-470e-48d1-8373-ad545b997837: !Template
+    name: flores-xglm-Brazilian Portuguese-Malayalam
+    reference: 'L1: [sent1] = L2: [sent2]'
+  1699379a-8e52-4005-abc5-510592aae521: !Template
     answer_choices: null
-    id: 1503a0bc-470e-48d1-8373-ad545b997837
-    jinja: 'Translate this from simplified Chinese into Yoruba: {{ sentence_zho_simpl
-      }} ||| {{ sentence_yor }}'
+    id: 1699379a-8e52-4005-abc5-510592aae521
+    jinja: 'Malayalam: {{ sentence_mal }} = Marathi: ||| {{ sentence_mar }}'
     metadata: *id001
-    name: translate-this-zho_simpl-yor
-    reference: Translate this from X to Y (simplified Chinese into Yoruba)
-  15860579-484d-41cc-848a-166e091d3225: !Template
+    name: flores-xglm-Malayalam-Marathi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  17b32731-275f-4bef-a181-dea34ba480a1: !Template
     answer_choices: null
-    id: 15860579-484d-41cc-848a-166e091d3225
-    jinja: 'Translate this from Urdu into Arabic: {{ sentence_urd }} ||| {{ sentence_ara
-      }}'
+    id: 17b32731-275f-4bef-a181-dea34ba480a1
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Latin American Spanish:
+      ||| {{ sentence_spa }}'
     metadata: *id001
-    name: translate-this-urd-ara
-    reference: Translate this from X to Y (Urdu into Arabic)
-  159d3e86-b5fd-47bc-8054-d92d6d59a962: !Template
+    name: flores-xglm-traditional Chinese-Latin American Spanish
+    reference: 'L1: [sent1] = L2: [sent2]'
+  1833d779-af76-410d-bddf-59eab4b24a36: !Template
     answer_choices: null
-    id: 159d3e86-b5fd-47bc-8054-d92d6d59a962
-    jinja: 'Translate this from Igbo into French: {{ sentence_ibo }} ||| {{ sentence_fra
-      }}'
+    id: 1833d779-af76-410d-bddf-59eab4b24a36
+    jinja: 'Kannada: {{ sentence_kan }} = Nepali: ||| {{ sentence_npi }}'
     metadata: *id001
-    name: translate-this-ibo-fra
-    reference: Translate this from X to Y (Igbo into French)
-  163916e9-26b8-4ffa-9d76-20bda69855a1: !Template
+    name: flores-xglm-Kannada-Nepali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  1850b9fe-df14-4b01-924e-4c91d151106b: !Template
     answer_choices: null
-    id: 163916e9-26b8-4ffa-9d76-20bda69855a1
-    jinja: 'Translate this from Telugu into Arabic: {{ sentence_tel }} ||| {{ sentence_ara
-      }}'
+    id: 1850b9fe-df14-4b01-924e-4c91d151106b
+    jinja: 'Indonesian: {{ sentence_ind }} = Telugu: ||| {{ sentence_tel }}'
     metadata: *id001
-    name: translate-this-tel-ara
-    reference: Translate this from X to Y (Telugu into Arabic)
-  16393805-de51-47d7-a518-5de076cec320: !Template
+    name: flores-xglm-Indonesian-Telugu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  18ac2145-145a-46bf-8786-0846f60c4d9d: !Template
     answer_choices: null
-    id: 16393805-de51-47d7-a518-5de076cec320
-    jinja: 'Translate this from Swahili into Indonesian: {{ sentence_swh }} ||| {{
-      sentence_ind }}'
+    id: 18ac2145-145a-46bf-8786-0846f60c4d9d
+    jinja: 'English: {{ sentence_eng }} = Telugu: ||| {{ sentence_tel }}'
     metadata: *id001
-    name: translate-this-swh-ind
-    reference: Translate this from X to Y (Swahili into Indonesian)
-  1652753f-8945-4a09-99da-79842caee4e7: !Template
+    name: flores-xglm-English-Telugu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  18e222da-ee05-471e-a173-03f3192732a1: !Template
     answer_choices: null
-    id: 1652753f-8945-4a09-99da-79842caee4e7
-    jinja: 'Translate this from Kannada into English: {{ sentence_kan }} ||| {{ sentence_eng
-      }}'
+    id: 18e222da-ee05-471e-a173-03f3192732a1
+    jinja: 'Igbo: {{ sentence_ibo }} = Tamil: ||| {{ sentence_tam }}'
     metadata: *id001
-    name: translate-this-kan-eng
-    reference: Translate this from X to Y (Kannada into English)
-  166df24b-f5c7-4b97-a703-71f70a8a7eb6: !Template
+    name: flores-xglm-Igbo-Tamil
+    reference: 'L1: [sent1] = L2: [sent2]'
+  19151c7c-9a3d-4751-ad65-eca637be912e: !Template
     answer_choices: null
-    id: 166df24b-f5c7-4b97-a703-71f70a8a7eb6
-    jinja: 'Translate this from Kannada into Northern Sotho: {{ sentence_kan }} |||
-      {{ sentence_nso }}'
+    id: 19151c7c-9a3d-4751-ad65-eca637be912e
+    jinja: 'Tamil: {{ sentence_tam }} = Lingala: ||| {{ sentence_lin }}'
     metadata: *id001
-    name: translate-this-kan-nso
-    reference: Translate this from X to Y (Kannada into Northern Sotho)
-  1674fec7-5c6c-40d2-8629-6015f0c7c4e6: !Template
+    name: flores-xglm-Tamil-Lingala
+    reference: 'L1: [sent1] = L2: [sent2]'
+  19178730-4b67-4216-836a-466d27d83833: !Template
     answer_choices: null
-    id: 1674fec7-5c6c-40d2-8629-6015f0c7c4e6
-    jinja: 'Translate this from Indonesian into French: {{ sentence_ind }} ||| {{
-      sentence_fra }}'
+    id: 19178730-4b67-4216-836a-466d27d83833
+    jinja: 'French: {{ sentence_fra }} = Zulu: ||| {{ sentence_zul }}'
     metadata: *id001
-    name: translate-this-ind-fra
-    reference: Translate this from X to Y (Indonesian into French)
-  169b6e1c-1fe2-49b6-bac5-f51a296770f6: !Template
+    name: flores-xglm-French-Zulu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  19efa69a-96c6-405e-a3de-652fb88d5267: !Template
     answer_choices: null
-    id: 169b6e1c-1fe2-49b6-bac5-f51a296770f6
-    jinja: 'Translate this from Kannada into Lingala: {{ sentence_kan }} ||| {{ sentence_lin
-      }}'
+    id: 19efa69a-96c6-405e-a3de-652fb88d5267
+    jinja: 'Yoruba: {{ sentence_yor }} = Marathi: ||| {{ sentence_mar }}'
     metadata: *id001
-    name: translate-this-kan-lin
-    reference: Translate this from X to Y (Kannada into Lingala)
-  16ce03a0-84bb-4f5f-ae79-fa33ba58ccd7: !Template
+    name: flores-xglm-Yoruba-Marathi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  1a0e8f2e-a661-498c-8b68-12aab27d8ae2: !Template
     answer_choices: null
-    id: 16ce03a0-84bb-4f5f-ae79-fa33ba58ccd7
-    jinja: 'Translate this from Indonesian into Wolof: {{ sentence_ind }} ||| {{ sentence_wol
-      }}'
+    id: 1a0e8f2e-a661-498c-8b68-12aab27d8ae2
+    jinja: 'English: {{ sentence_eng }} = Malayalam: ||| {{ sentence_mal }}'
     metadata: *id001
-    name: translate-this-ind-wol
-    reference: Translate this from X to Y (Indonesian into Wolof)
-  17993474-0ae9-49d4-b87d-d2ceabdacd11: !Template
+    name: flores-xglm-English-Malayalam
+    reference: 'L1: [sent1] = L2: [sent2]'
+  1ac0fa0e-b0fe-4aa7-9982-17a5bcc82e95: !Template
     answer_choices: null
-    id: 17993474-0ae9-49d4-b87d-d2ceabdacd11
-    jinja: 'Translate this from Latin American Spanish into French: {{ sentence_spa
-      }} ||| {{ sentence_fra }}'
+    id: 1ac0fa0e-b0fe-4aa7-9982-17a5bcc82e95
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = traditional Chinese: |||
+      {{ sentence_zho_trad }}'
     metadata: *id001
-    name: translate-this-spa-fra
-    reference: Translate this from X to Y (Latin American Spanish into French)
-  17c98210-51f9-4c07-85a9-4dd950a7806c: !Template
+    name: flores-xglm-simplified Chinese-traditional Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  1ae8403b-847b-4013-aa85-af1f181f6130: !Template
     answer_choices: null
-    id: 17c98210-51f9-4c07-85a9-4dd950a7806c
-    jinja: 'Translate this from Hindi into Gujarati: {{ sentence_hin }} ||| {{ sentence_guj
-      }}'
+    id: 1ae8403b-847b-4013-aa85-af1f181f6130
+    jinja: 'Gujarati: {{ sentence_guj }} = Telugu: ||| {{ sentence_tel }}'
     metadata: *id001
-    name: translate-this-hin-guj
-    reference: Translate this from X to Y (Hindi into Gujarati)
-  17dc11cb-b83a-4917-98fb-55b5b02bdf11: !Template
+    name: flores-xglm-Gujarati-Telugu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  1b9cbd9c-c44b-4ecc-9860-50a7a46cb329: !Template
     answer_choices: null
-    id: 17dc11cb-b83a-4917-98fb-55b5b02bdf11
-    jinja: 'Translate this from Punjabi into Wolof: {{ sentence_pan }} ||| {{ sentence_wol
-      }}'
+    id: 1b9cbd9c-c44b-4ecc-9860-50a7a46cb329
+    jinja: 'Hindi: {{ sentence_hin }} = Lingala: ||| {{ sentence_lin }}'
     metadata: *id001
-    name: translate-this-pan-wol
-    reference: Translate this from X to Y (Punjabi into Wolof)
-  1818067d-9f73-4c42-a893-86b5c61a250e: !Template
+    name: flores-xglm-Hindi-Lingala
+    reference: 'L1: [sent1] = L2: [sent2]'
+  1bb93b5e-8d18-4f6f-bb88-3db4923a12be: !Template
     answer_choices: null
-    id: 1818067d-9f73-4c42-a893-86b5c61a250e
-    jinja: 'Translate this from Zulu into Indonesian: {{ sentence_zul }} ||| {{ sentence_ind
+    id: 1bb93b5e-8d18-4f6f-bb88-3db4923a12be
+    jinja: 'Urdu: {{ sentence_urd }} = Latin American Spanish: ||| {{ sentence_spa
       }}'
     metadata: *id001
-    name: translate-this-zul-ind
-    reference: Translate this from X to Y (Zulu into Indonesian)
-  185043f9-280d-40c1-bf86-c20a09ac2a2e: !Template
+    name: flores-xglm-Urdu-Latin American Spanish
+    reference: 'L1: [sent1] = L2: [sent2]'
+  1bbf2db4-e161-4da3-9935-6305ced976fe: !Template
     answer_choices: null
-    id: 185043f9-280d-40c1-bf86-c20a09ac2a2e
-    jinja: 'Translate this from Xhosa into traditional Chinese: {{ sentence_xho }}
-      ||| {{ sentence_zho_trad }}'
+    id: 1bbf2db4-e161-4da3-9935-6305ced976fe
+    jinja: 'Yoruba: {{ sentence_yor }} = Swahili: ||| {{ sentence_swh }}'
     metadata: *id001
-    name: translate-this-xho-zho_trad
-    reference: Translate this from X to Y (Xhosa into traditional Chinese)
-  1870794a-8e55-45ee-be94-12f5c8312bb9: !Template
+    name: flores-xglm-Yoruba-Swahili
+    reference: 'L1: [sent1] = L2: [sent2]'
+  1be12d97-5f88-42d6-89c6-5f107f3c02d5: !Template
     answer_choices: null
-    id: 1870794a-8e55-45ee-be94-12f5c8312bb9
-    jinja: 'Translate this from Malayalam into Brazilian Portuguese: {{ sentence_mal
-      }} ||| {{ sentence_por }}'
+    id: 1be12d97-5f88-42d6-89c6-5f107f3c02d5
+    jinja: 'Yoruba: {{ sentence_yor }} = Arabic: ||| {{ sentence_ara }}'
     metadata: *id001
-    name: translate-this-mal-por
-    reference: Translate this from X to Y (Malayalam into Brazilian Portuguese)
-  1882ee4b-b246-4088-934b-1fa7c22dc0f8: !Template
+    name: flores-xglm-Yoruba-Arabic
+    reference: 'L1: [sent1] = L2: [sent2]'
+  1be26707-e89a-442d-9b58-7a3a44807239: !Template
     answer_choices: null
-    id: 1882ee4b-b246-4088-934b-1fa7c22dc0f8
-    jinja: 'Translate this from Brazilian Portuguese into Xhosa: {{ sentence_por }}
-      ||| {{ sentence_xho }}'
+    id: 1be26707-e89a-442d-9b58-7a3a44807239
+    jinja: 'Translate this from Swahili into English: {{ sentence_swh }} ||| {{ sentence_eng
+      }}'
     metadata: *id001
-    name: translate-this-por-xho
-    reference: Translate this from X to Y (Brazilian Portuguese into Xhosa)
-  18b08067-f5d5-4969-ad6b-de7244a10b36: !Template
+    name: translate-this-swh-eng
+    reference: Basic translate (Swahili into English)
+  1c01aaff-e63f-4993-b00c-7d3fbfad70e4: !Template
     answer_choices: null
-    id: 18b08067-f5d5-4969-ad6b-de7244a10b36
-    jinja: 'Translate this from Zulu into Bengali: {{ sentence_zul }} ||| {{ sentence_ben
+    id: 1c01aaff-e63f-4993-b00c-7d3fbfad70e4
+    jinja: 'Igbo: {{ sentence_ibo }} = simplified Chinese: ||| {{ sentence_zho_simpl
       }}'
     metadata: *id001
-    name: translate-this-zul-ben
-    reference: Translate this from X to Y (Zulu into Bengali)
-  190de4f8-f74a-4282-85c7-2afb1116e74e: !Template
+    name: flores-xglm-Igbo-simplified Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  1c197d02-bbf0-4fb3-a4f2-f7100b848953: !Template
     answer_choices: null
-    id: 190de4f8-f74a-4282-85c7-2afb1116e74e
-    jinja: 'Translate this from Bengali into Indonesian: {{ sentence_ben }} ||| {{
-      sentence_ind }}'
+    id: 1c197d02-bbf0-4fb3-a4f2-f7100b848953
+    jinja: 'Urdu: {{ sentence_urd }} = French: ||| {{ sentence_fra }}'
     metadata: *id001
-    name: translate-this-ben-ind
-    reference: Translate this from X to Y (Bengali into Indonesian)
-  193cacf5-82de-4c84-8736-220697270b5d: !Template
+    name: flores-xglm-Urdu-French
+    reference: 'L1: [sent1] = L2: [sent2]'
+  1c4c611e-d13b-4e14-b86c-9e37faaac387: !Template
     answer_choices: null
-    id: 193cacf5-82de-4c84-8736-220697270b5d
-    jinja: 'Translate this from Oriya into Wolof: {{ sentence_ory }} ||| {{ sentence_wol
-      }}'
+    id: 1c4c611e-d13b-4e14-b86c-9e37faaac387
+    jinja: 'Oriya: {{ sentence_ory }} = Assamese: ||| {{ sentence_asm }}'
     metadata: *id001
-    name: translate-this-ory-wol
-    reference: Translate this from X to Y (Oriya into Wolof)
-  19ea9a97-438c-492e-bb22-997a0951550d: !Template
+    name: flores-xglm-Oriya-Assamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  1c724bf5-2e6b-43ff-a48b-62ccac2beba6: !Template
     answer_choices: null
-    id: 19ea9a97-438c-492e-bb22-997a0951550d
-    jinja: 'Translate this from Xhosa into Lingala: {{ sentence_xho }} ||| {{ sentence_lin
+    id: 1c724bf5-2e6b-43ff-a48b-62ccac2beba6
+    jinja: 'Arabic: {{ sentence_ara }} = Brazilian Portuguese: ||| {{ sentence_por
       }}'
     metadata: *id001
-    name: translate-this-xho-lin
-    reference: Translate this from X to Y (Xhosa into Lingala)
-  19ec789e-db60-4509-a4d4-5c4fd46b1595: !Template
+    name: flores-xglm-Arabic-Brazilian Portuguese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  1ceee89b-3b7b-457a-be55-e71da056dc24: !Template
     answer_choices: null
-    id: 19ec789e-db60-4509-a4d4-5c4fd46b1595
-    jinja: 'Translate this from English into Catalan: {{ sentence_eng }} ||| {{ sentence_cat
-      }}'
+    id: 1ceee89b-3b7b-457a-be55-e71da056dc24
+    jinja: 'English: {{ sentence_eng }} = Indonesian: ||| {{ sentence_ind }}'
     metadata: *id001
-    name: translate-this-eng-cat
-    reference: Translate this from X to Y (English into Catalan)
-  19f3e2e1-6b5e-40cb-92e3-425d55386618: !Template
+    name: flores-xglm-English-Indonesian
+    reference: 'L1: [sent1] = L2: [sent2]'
+  1d2a5aa0-955e-4053-8412-727a8e3b0e52: !Template
     answer_choices: null
-    id: 19f3e2e1-6b5e-40cb-92e3-425d55386618
-    jinja: 'Translate this from Kannada into Vietnamese: {{ sentence_kan }} ||| {{
-      sentence_vie }}'
+    id: 1d2a5aa0-955e-4053-8412-727a8e3b0e52
+    jinja: 'French: {{ sentence_fra }} = Arabic: ||| {{ sentence_ara }}'
     metadata: *id001
-    name: translate-this-kan-vie
-    reference: Translate this from X to Y (Kannada into Vietnamese)
-  19f859d8-6b0b-4e58-861a-385f3c0706a6: !Template
+    name: flores-xglm-French-Arabic
+    reference: 'L1: [sent1] = L2: [sent2]'
+  1d642cb8-19eb-40fb-a3e1-08255ab52741: !Template
     answer_choices: null
-    id: 19f859d8-6b0b-4e58-861a-385f3c0706a6
-    jinja: 'Translate this from Arabic into Lingala: {{ sentence_ara }} ||| {{ sentence_lin
-      }}'
+    id: 1d642cb8-19eb-40fb-a3e1-08255ab52741
+    jinja: 'Bengali: {{ sentence_ben }} = Vietnamese: ||| {{ sentence_vie }}'
     metadata: *id001
-    name: translate-this-ara-lin
-    reference: Translate this from X to Y (Arabic into Lingala)
-  1a3cad9d-1cf7-40b1-9a04-52165f60f4f7: !Template
+    name: flores-xglm-Bengali-Vietnamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  1d9fa2bd-95aa-4aea-b262-c41b644aa0a5: !Template
     answer_choices: null
-    id: 1a3cad9d-1cf7-40b1-9a04-52165f60f4f7
-    jinja: 'Translate this from Punjabi into Marathi: {{ sentence_pan }} ||| {{ sentence_mar
-      }}'
+    id: 1d9fa2bd-95aa-4aea-b262-c41b644aa0a5
+    jinja: 'Xhosa: {{ sentence_xho }} = Gujarati: ||| {{ sentence_guj }}'
     metadata: *id001
-    name: translate-this-pan-mar
-    reference: Translate this from X to Y (Punjabi into Marathi)
-  1a785463-beae-4fd4-a0f3-412fd1e352c3: !Template
+    name: flores-xglm-Xhosa-Gujarati
+    reference: 'L1: [sent1] = L2: [sent2]'
+  1da29eba-b225-44da-baa7-20755e197bfd: !Template
     answer_choices: null
-    id: 1a785463-beae-4fd4-a0f3-412fd1e352c3
-    jinja: 'Translate this from Arabic into Hindi: {{ sentence_ara }} ||| {{ sentence_hin
-      }}'
+    id: 1da29eba-b225-44da-baa7-20755e197bfd
+    jinja: 'Urdu: {{ sentence_urd }} = Zulu: ||| {{ sentence_zul }}'
     metadata: *id001
-    name: translate-this-ara-hin
-    reference: Translate this from X to Y (Arabic into Hindi)
-  1b0532eb-bc81-45dd-be55-edf5392e3a0b: !Template
+    name: flores-xglm-Urdu-Zulu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  1dc74d83-7c7e-4c73-b1f1-ee4afe1d614d: !Template
     answer_choices: null
-    id: 1b0532eb-bc81-45dd-be55-edf5392e3a0b
-    jinja: 'Translate this from Gujarati into Punjabi: {{ sentence_guj }} ||| {{ sentence_pan
+    id: 1dc74d83-7c7e-4c73-b1f1-ee4afe1d614d
+    jinja: 'French: {{ sentence_fra }} = simplified Chinese: ||| {{ sentence_zho_simpl
       }}'
     metadata: *id001
-    name: translate-this-guj-pan
-    reference: Translate this from X to Y (Gujarati into Punjabi)
-  1b1db2d8-5050-48f5-b2fe-cd1b2c381747: !Template
+    name: flores-xglm-French-simplified Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  1dcdb25e-da39-4662-b62f-1a1e6014f5e3: !Template
     answer_choices: null
-    id: 1b1db2d8-5050-48f5-b2fe-cd1b2c381747
-    jinja: 'Translate this from Igbo into Northern Sotho: {{ sentence_ibo }} ||| {{
-      sentence_nso }}'
+    id: 1dcdb25e-da39-4662-b62f-1a1e6014f5e3
+    jinja: 'Telugu: {{ sentence_tel }} = Bengali: ||| {{ sentence_ben }}'
     metadata: *id001
-    name: translate-this-ibo-nso
-    reference: Translate this from X to Y (Igbo into Northern Sotho)
-  1b46ca1f-89f1-4510-bb89-1dd928e566fc: !Template
+    name: flores-xglm-Telugu-Bengali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  1e59893b-634b-483f-ac46-b84cddd19bb6: !Template
     answer_choices: null
-    id: 1b46ca1f-89f1-4510-bb89-1dd928e566fc
-    jinja: 'Translate this from Punjabi into Oriya: {{ sentence_pan }} ||| {{ sentence_ory
-      }}'
+    id: 1e59893b-634b-483f-ac46-b84cddd19bb6
+    jinja: 'Malayalam: {{ sentence_mal }} = Bengali: ||| {{ sentence_ben }}'
     metadata: *id001
-    name: translate-this-pan-ory
-    reference: Translate this from X to Y (Punjabi into Oriya)
-  1b5112ea-46eb-4f38-977d-e752b87101cf: !Template
+    name: flores-xglm-Malayalam-Bengali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  1f37ab1d-2096-47da-98ce-edfc65382375: !Template
     answer_choices: null
-    id: 1b5112ea-46eb-4f38-977d-e752b87101cf
-    jinja: 'Translate this from Gujarati into French: {{ sentence_guj }} ||| {{ sentence_fra
-      }}'
+    id: 1f37ab1d-2096-47da-98ce-edfc65382375
+    jinja: 'Northern Sotho: {{ sentence_nso }} = Yoruba: ||| {{ sentence_yor }}'
     metadata: *id001
-    name: translate-this-guj-fra
-    reference: Translate this from X to Y (Gujarati into French)
-  1b804921-b9fa-4dca-ae0f-830d482265e7: !Template
+    name: flores-xglm-Northern Sotho-Yoruba
+    reference: 'L1: [sent1] = L2: [sent2]'
+  1f4462dd-a550-4a61-a677-a2cbf37cb040: !Template
     answer_choices: null
-    id: 1b804921-b9fa-4dca-ae0f-830d482265e7
-    jinja: 'Translate this from Tamil into Urdu: {{ sentence_tam }} ||| {{ sentence_urd
-      }}'
+    id: 1f4462dd-a550-4a61-a677-a2cbf37cb040
+    jinja: 'Bengali: {{ sentence_ben }} = Yoruba: ||| {{ sentence_yor }}'
     metadata: *id001
-    name: translate-this-tam-urd
-    reference: Translate this from X to Y (Tamil into Urdu)
-  1bd2c4a5-593a-40bb-aceb-975925fab443: !Template
+    name: flores-xglm-Bengali-Yoruba
+    reference: 'L1: [sent1] = L2: [sent2]'
+  1f5b42e4-3b8a-411e-93b9-b09a3b76942c: !Template
     answer_choices: null
-    id: 1bd2c4a5-593a-40bb-aceb-975925fab443
-    jinja: 'Translate this from Xhosa into Bengali: {{ sentence_xho }} ||| {{ sentence_ben
-      }}'
+    id: 1f5b42e4-3b8a-411e-93b9-b09a3b76942c
+    jinja: 'Urdu: {{ sentence_urd }} = Yoruba: ||| {{ sentence_yor }}'
     metadata: *id001
-    name: translate-this-xho-ben
-    reference: Translate this from X to Y (Xhosa into Bengali)
-  1be26707-e89a-442d-9b58-7a3a44807239: !Template
+    name: flores-xglm-Urdu-Yoruba
+    reference: 'L1: [sent1] = L2: [sent2]'
+  1f77c107-dde7-4d37-8f63-cc7ade059899: !Template
     answer_choices: null
-    id: 1be26707-e89a-442d-9b58-7a3a44807239
-    jinja: 'Translate this from Swahili into English: {{ sentence_swh }} ||| {{ sentence_eng
+    id: 1f77c107-dde7-4d37-8f63-cc7ade059899
+    jinja: 'Igbo: {{ sentence_ibo }} = Latin American Spanish: ||| {{ sentence_spa
       }}'
     metadata: *id001
-    name: translate-this-swh-eng
-    reference: Basic translate (Swahili into English)
-  1c026e1a-edea-40f4-b345-792eee944933: !Template
+    name: flores-xglm-Igbo-Latin American Spanish
+    reference: 'L1: [sent1] = L2: [sent2]'
+  1fc5ce1e-ca94-4447-aff7-a23742eac615: !Template
     answer_choices: null
-    id: 1c026e1a-edea-40f4-b345-792eee944933
-    jinja: 'Translate this from Yoruba into Indonesian: {{ sentence_yor }} ||| {{
-      sentence_ind }}'
+    id: 1fc5ce1e-ca94-4447-aff7-a23742eac615
+    jinja: 'Lingala: {{ sentence_lin }} = Arabic: ||| {{ sentence_ara }}'
     metadata: *id001
-    name: translate-this-yor-ind
-    reference: Translate this from X to Y (Yoruba into Indonesian)
-  1c48c468-e5c1-4f3f-b690-e4826af29628: !Template
+    name: flores-xglm-Lingala-Arabic
+    reference: 'L1: [sent1] = L2: [sent2]'
+  1fc72c3e-d6e9-474e-8a74-b069776c21a9: !Template
     answer_choices: null
-    id: 1c48c468-e5c1-4f3f-b690-e4826af29628
-    jinja: 'Translate this from Bengali into Northern Sotho: {{ sentence_ben }} |||
-      {{ sentence_nso }}'
+    id: 1fc72c3e-d6e9-474e-8a74-b069776c21a9
+    jinja: 'Arabic: {{ sentence_ara }} = Latin American Spanish: ||| {{ sentence_spa
+      }}'
     metadata: *id001
-    name: translate-this-ben-nso
-    reference: Translate this from X to Y (Bengali into Northern Sotho)
-  1c8a1da9-2f9c-4f60-9338-0b32e745d741: !Template
+    name: flores-xglm-Arabic-Latin American Spanish
+    reference: 'L1: [sent1] = L2: [sent2]'
+  1ffceeb3-9731-46b2-8eee-8a2d97ad0478: !Template
     answer_choices: null
-    id: 1c8a1da9-2f9c-4f60-9338-0b32e745d741
-    jinja: 'Translate this from Gujarati into Tamil: {{ sentence_guj }} ||| {{ sentence_tam
-      }}'
+    id: 1ffceeb3-9731-46b2-8eee-8a2d97ad0478
+    jinja: 'Assamese: {{ sentence_asm }} = Telugu: ||| {{ sentence_tel }}'
     metadata: *id001
-    name: translate-this-guj-tam
-    reference: Translate this from X to Y (Gujarati into Tamil)
-  1c99636a-8164-4702-bd66-bc95f926a2d5: !Template
+    name: flores-xglm-Assamese-Telugu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  200b2f5a-c72d-453e-9b72-609543cfcab2: !Template
     answer_choices: null
-    id: 1c99636a-8164-4702-bd66-bc95f926a2d5
-    jinja: 'Translate this from Assamese into Arabic: {{ sentence_asm }} ||| {{ sentence_ara
-      }}'
+    id: 200b2f5a-c72d-453e-9b72-609543cfcab2
+    jinja: 'Bengali: {{ sentence_ben }} = Nepali: ||| {{ sentence_npi }}'
     metadata: *id001
-    name: translate-this-asm-ara
-    reference: Translate this from X to Y (Assamese into Arabic)
-  1cd77509-f943-4d03-a890-63d9e5a6d078: !Template
+    name: flores-xglm-Bengali-Nepali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  20511528-ce2c-4280-be3d-d0a28624baa0: !Template
     answer_choices: null
-    id: 1cd77509-f943-4d03-a890-63d9e5a6d078
-    jinja: 'Translate this from simplified Chinese into French: {{ sentence_zho_simpl
-      }} ||| {{ sentence_fra }}'
+    id: 20511528-ce2c-4280-be3d-d0a28624baa0
+    jinja: 'Kannada: {{ sentence_kan }} = Marathi: ||| {{ sentence_mar }}'
     metadata: *id001
-    name: translate-this-zho_simpl-fra
-    reference: Translate this from X to Y (simplified Chinese into French)
-  1d57fe30-d284-4f47-8970-7b418905168c: !Template
+    name: flores-xglm-Kannada-Marathi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  207f3f6f-6404-4ded-b7e4-1dff543d95cb: !Template
     answer_choices: null
-    id: 1d57fe30-d284-4f47-8970-7b418905168c
-    jinja: 'Translate this from Bengali into Nepali: {{ sentence_ben }} ||| {{ sentence_npi
+    id: 207f3f6f-6404-4ded-b7e4-1dff543d95cb
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Lingala: ||| {{ sentence_lin
       }}'
     metadata: *id001
-    name: translate-this-ben-npi
-    reference: Translate this from X to Y (Bengali into Nepali)
-  1d94da1e-ae31-4267-a409-1dfe830a9065: !Template
+    name: flores-xglm-traditional Chinese-Lingala
+    reference: 'L1: [sent1] = L2: [sent2]'
+  208092dc-37c0-4595-a5f1-27348809dd73: !Template
     answer_choices: null
-    id: 1d94da1e-ae31-4267-a409-1dfe830a9065
-    jinja: 'Translate this from Swahili into Latin American Spanish: {{ sentence_swh
-      }} ||| {{ sentence_spa }}'
+    id: 208092dc-37c0-4595-a5f1-27348809dd73
+    jinja: 'Arabic: {{ sentence_ara }} = Bengali: ||| {{ sentence_ben }}'
     metadata: *id001
-    name: translate-this-swh-spa
-    reference: Translate this from X to Y (Swahili into Latin American Spanish)
-  1da2a120-68fb-4497-b85c-b7070cbdd8fd: !Template
+    name: flores-xglm-Arabic-Bengali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  208a1811-231e-4739-bb18-0b0a1e78c4ed: !Template
     answer_choices: null
-    id: 1da2a120-68fb-4497-b85c-b7070cbdd8fd
-    jinja: 'Translate this from Yoruba into Zulu: {{ sentence_yor }} ||| {{ sentence_zul
+    id: 208a1811-231e-4739-bb18-0b0a1e78c4ed
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = Zulu: ||| {{ sentence_zul
       }}'
     metadata: *id001
-    name: translate-this-yor-zul
-    reference: Translate this from X to Y (Yoruba into Zulu)
-  1da963cd-0eaa-404c-9472-8048ac8c2d0f: !Template
+    name: flores-xglm-Latin American Spanish-Zulu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  20df9882-c194-4eec-bcc1-424213b6b132: !Template
     answer_choices: null
-    id: 1da963cd-0eaa-404c-9472-8048ac8c2d0f
-    jinja: 'Translate this from Nepali into Catalan: {{ sentence_npi }} ||| {{ sentence_cat
-      }}'
+    id: 20df9882-c194-4eec-bcc1-424213b6b132
+    jinja: 'Kannada: {{ sentence_kan }} = Hindi: ||| {{ sentence_hin }}'
     metadata: *id001
-    name: translate-this-npi-cat
-    reference: Translate this from X to Y (Nepali into Catalan)
-  1db7247a-fa42-42cc-8f7b-454e58fbc321: !Template
+    name: flores-xglm-Kannada-Hindi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  2109171f-5616-473e-9065-ee87e7ae4c13: !Template
     answer_choices: null
-    id: 1db7247a-fa42-42cc-8f7b-454e58fbc321
-    jinja: 'Translate this from Vietnamese into Yoruba: {{ sentence_vie }} ||| {{
-      sentence_yor }}'
+    id: 2109171f-5616-473e-9065-ee87e7ae4c13
+    jinja: 'Zulu: {{ sentence_zul }} = English: ||| {{ sentence_eng }}'
     metadata: *id001
-    name: translate-this-vie-yor
-    reference: Translate this from X to Y (Vietnamese into Yoruba)
-  1dfde017-a35e-4990-879d-4b51cee4268f: !Template
+    name: flores-xglm-Zulu-English
+    reference: 'L1: [sent1] = L2: [sent2]'
+  21383202-9275-440a-accc-cb7845ad4e52: !Template
     answer_choices: null
-    id: 1dfde017-a35e-4990-879d-4b51cee4268f
-    jinja: 'Translate this from Latin American Spanish into Oriya: {{ sentence_spa
-      }} ||| {{ sentence_ory }}'
+    id: 21383202-9275-440a-accc-cb7845ad4e52
+    jinja: 'Malayalam: {{ sentence_mal }} = Brazilian Portuguese: ||| {{ sentence_por
+      }}'
     metadata: *id001
-    name: translate-this-spa-ory
-    reference: Translate this from X to Y (Latin American Spanish into Oriya)
-  1e06a528-3d70-41c9-a29e-00ed496812e5: !Template
+    name: flores-xglm-Malayalam-Brazilian Portuguese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  216720b9-dc32-4467-b3e5-0fa0f56e3901: !Template
     answer_choices: null
-    id: 1e06a528-3d70-41c9-a29e-00ed496812e5
-    jinja: 'Translate this from Punjabi into Kannada: {{ sentence_pan }} ||| {{ sentence_kan
+    id: 216720b9-dc32-4467-b3e5-0fa0f56e3901
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = English: ||| {{ sentence_eng
       }}'
     metadata: *id001
-    name: translate-this-pan-kan
-    reference: Translate this from X to Y (Punjabi into Kannada)
-  1e199736-1a4e-4d7e-8e7b-4cebeb61baff: !Template
+    name: flores-xglm-traditional Chinese-English
+    reference: 'L1: [sent1] = L2: [sent2]'
+  221ab397-1842-4f76-9f3a-ae51ef431303: !Template
     answer_choices: null
-    id: 1e199736-1a4e-4d7e-8e7b-4cebeb61baff
-    jinja: 'Translate this from Assamese into Indonesian: {{ sentence_asm }} ||| {{
-      sentence_ind }}'
+    id: 221ab397-1842-4f76-9f3a-ae51ef431303
+    jinja: 'Kannada: {{ sentence_kan }} = Malayalam: ||| {{ sentence_mal }}'
     metadata: *id001
-    name: translate-this-asm-ind
-    reference: Translate this from X to Y (Assamese into Indonesian)
-  1eb9c5d8-ca5b-4cec-826b-2dace629f4ea: !Template
+    name: flores-xglm-Kannada-Malayalam
+    reference: 'L1: [sent1] = L2: [sent2]'
+  2260f8cc-3964-4e4d-ba0d-dbf80ebe35b0: !Template
     answer_choices: null
-    id: 1eb9c5d8-ca5b-4cec-826b-2dace629f4ea
-    jinja: 'Translate this from Arabic into Malayalam: {{ sentence_ara }} ||| {{ sentence_mal
-      }}'
+    id: 2260f8cc-3964-4e4d-ba0d-dbf80ebe35b0
+    jinja: 'Vietnamese: {{ sentence_vie }} = Telugu: ||| {{ sentence_tel }}'
     metadata: *id001
-    name: translate-this-ara-mal
-    reference: Translate this from X to Y (Arabic into Malayalam)
-  1ec53eb3-95c0-4bfd-a338-afb936b017d5: !Template
+    name: flores-xglm-Vietnamese-Telugu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  22adbfeb-b538-46ff-989d-384d3bcf96ba: !Template
     answer_choices: null
-    id: 1ec53eb3-95c0-4bfd-a338-afb936b017d5
-    jinja: 'Translate this from Northern Sotho into Brazilian Portuguese: {{ sentence_nso
-      }} ||| {{ sentence_por }}'
+    id: 22adbfeb-b538-46ff-989d-384d3bcf96ba
+    jinja: 'Kannada: {{ sentence_kan }} = Arabic: ||| {{ sentence_ara }}'
     metadata: *id001
-    name: translate-this-nso-por
-    reference: Translate this from X to Y (Northern Sotho into Brazilian Portuguese)
-  1ee9458a-fc7d-4709-9635-c673565d4d1d: !Template
+    name: flores-xglm-Kannada-Arabic
+    reference: 'L1: [sent1] = L2: [sent2]'
+  2302e6b4-1343-485b-814a-06fbfc8045c4: !Template
     answer_choices: null
-    id: 1ee9458a-fc7d-4709-9635-c673565d4d1d
-    jinja: 'Translate this from Assamese into Gujarati: {{ sentence_asm }} ||| {{
-      sentence_guj }}'
+    id: 2302e6b4-1343-485b-814a-06fbfc8045c4
+    jinja: 'Vietnamese: {{ sentence_vie }} = Indonesian: ||| {{ sentence_ind }}'
     metadata: *id001
-    name: translate-this-asm-guj
-    reference: Translate this from X to Y (Assamese into Gujarati)
-  1f192952-e827-42e6-998d-a9bdf77d10f0: !Template
+    name: flores-xglm-Vietnamese-Indonesian
+    reference: 'L1: [sent1] = L2: [sent2]'
+  234a2728-87a9-4994-bc31-b662508ac8f7: !Template
     answer_choices: null
-    id: 1f192952-e827-42e6-998d-a9bdf77d10f0
-    jinja: 'Translate this from French into Xhosa: {{ sentence_fra }} ||| {{ sentence_xho
-      }}'
+    id: 234a2728-87a9-4994-bc31-b662508ac8f7
+    jinja: 'Igbo: {{ sentence_ibo }} = Telugu: ||| {{ sentence_tel }}'
     metadata: *id001
-    name: translate-this-fra-xho
-    reference: Translate this from X to Y (French into Xhosa)
-  1f758a9d-5b92-4d83-b585-86e91ee9f4c0: !Template
+    name: flores-xglm-Igbo-Telugu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  23748f87-f7b7-4941-bfc9-3b3456fe9980: !Template
     answer_choices: null
-    id: 1f758a9d-5b92-4d83-b585-86e91ee9f4c0
-    jinja: 'Translate this from Swahili into Vietnamese: {{ sentence_swh }} ||| {{
-      sentence_vie }}'
+    id: 23748f87-f7b7-4941-bfc9-3b3456fe9980
+    jinja: 'Nepali: {{ sentence_npi }} = Malayalam: ||| {{ sentence_mal }}'
     metadata: *id001
-    name: translate-this-swh-vie
-    reference: Translate this from X to Y (Swahili into Vietnamese)
-  1faf05e9-20d2-4be9-8bfa-ea424851ad14: !Template
+    name: flores-xglm-Nepali-Malayalam
+    reference: 'L1: [sent1] = L2: [sent2]'
+  23a9353f-7105-44b3-907e-5513c595fb0c: !Template
     answer_choices: null
-    id: 1faf05e9-20d2-4be9-8bfa-ea424851ad14
-    jinja: 'Translate this from Oriya into Tamil: {{ sentence_ory }} ||| {{ sentence_tam
+    id: 23a9353f-7105-44b3-907e-5513c595fb0c
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = Lingala: ||| {{ sentence_lin
       }}'
     metadata: *id001
-    name: translate-this-ory-tam
-    reference: Translate this from X to Y (Oriya into Tamil)
-  1fd99b2f-2e66-44fe-9a99-bd2c2d5577e6: !Template
+    name: flores-xglm-Latin American Spanish-Lingala
+    reference: 'L1: [sent1] = L2: [sent2]'
+  23e1bad6-4d4e-4235-a664-4566610d4ff8: !Template
     answer_choices: null
-    id: 1fd99b2f-2e66-44fe-9a99-bd2c2d5577e6
-    jinja: 'Translate this from Nepali into Vietnamese: {{ sentence_npi }} ||| {{
-      sentence_vie }}'
+    id: 23e1bad6-4d4e-4235-a664-4566610d4ff8
+    jinja: 'French: {{ sentence_fra }} = Catalan: ||| {{ sentence_cat }}'
     metadata: *id001
-    name: translate-this-npi-vie
-    reference: Translate this from X to Y (Nepali into Vietnamese)
-  2002f881-95c0-4c70-854c-97f4ba3bb7e9: !Template
+    name: flores-xglm-French-Catalan
+    reference: 'L1: [sent1] = L2: [sent2]'
+  243f8719-d2e3-4b9a-9c94-ad3d2fb8d1e6: !Template
     answer_choices: null
-    id: 2002f881-95c0-4c70-854c-97f4ba3bb7e9
-    jinja: 'Translate this from Marathi into Wolof: {{ sentence_mar }} ||| {{ sentence_wol
-      }}'
+    id: 243f8719-d2e3-4b9a-9c94-ad3d2fb8d1e6
+    jinja: 'Kannada: {{ sentence_kan }} = Assamese: ||| {{ sentence_asm }}'
     metadata: *id001
-    name: translate-this-mar-wol
-    reference: Translate this from X to Y (Marathi into Wolof)
-  2013c774-365f-424f-8f46-f9f98d748445: !Template
+    name: flores-xglm-Kannada-Assamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  24952259-5698-4927-8161-8b14b81c20c2: !Template
     answer_choices: null
-    id: 2013c774-365f-424f-8f46-f9f98d748445
-    jinja: 'Translate this from Malayalam into Xhosa: {{ sentence_mal }} ||| {{ sentence_xho
-      }}'
+    id: 24952259-5698-4927-8161-8b14b81c20c2
+    jinja: 'Igbo: {{ sentence_ibo }} = English: ||| {{ sentence_eng }}'
     metadata: *id001
-    name: translate-this-mal-xho
-    reference: Translate this from X to Y (Malayalam into Xhosa)
-  2067f3a4-e8ae-4ed5-b190-f3c48a8c1555: !Template
+    name: flores-xglm-Igbo-English
+    reference: 'L1: [sent1] = L2: [sent2]'
+  24d62137-e2a7-4b68-8e86-f6040fa2fcf6: !Template
     answer_choices: null
-    id: 2067f3a4-e8ae-4ed5-b190-f3c48a8c1555
-    jinja: 'Translate this from Kannada into Swahili: {{ sentence_kan }} ||| {{ sentence_swh
-      }}'
+    id: 24d62137-e2a7-4b68-8e86-f6040fa2fcf6
+    jinja: 'Marathi: {{ sentence_mar }} = Gujarati: ||| {{ sentence_guj }}'
     metadata: *id001
-    name: translate-this-kan-swh
-    reference: Translate this from X to Y (Kannada into Swahili)
-  2100e746-fe40-4785-a417-311b1e30843d: !Template
+    name: flores-xglm-Marathi-Gujarati
+    reference: 'L1: [sent1] = L2: [sent2]'
+  25191a92-a46c-491b-9a1d-e93066d8f4cd: !Template
     answer_choices: null
-    id: 2100e746-fe40-4785-a417-311b1e30843d
-    jinja: 'Translate this from Malayalam into Tamil: {{ sentence_mal }} ||| {{ sentence_tam
-      }}'
+    id: 25191a92-a46c-491b-9a1d-e93066d8f4cd
+    jinja: 'Gujarati: {{ sentence_guj }} = Hindi: ||| {{ sentence_hin }}'
     metadata: *id001
-    name: translate-this-mal-tam
-    reference: Translate this from X to Y (Malayalam into Tamil)
-  219ee43d-b7e6-410a-b311-0ed98e6dc1ee: !Template
+    name: flores-xglm-Gujarati-Hindi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  2694723e-8e89-40f0-ba3c-e1586ac3d5c5: !Template
     answer_choices: null
-    id: 219ee43d-b7e6-410a-b311-0ed98e6dc1ee
-    jinja: 'Translate this from Indonesian into Hindi: {{ sentence_ind }} ||| {{ sentence_hin
-      }}'
+    id: 2694723e-8e89-40f0-ba3c-e1586ac3d5c5
+    jinja: 'Oriya: {{ sentence_ory }} = Northern Sotho: ||| {{ sentence_nso }}'
     metadata: *id001
-    name: translate-this-ind-hin
-    reference: Translate this from X to Y (Indonesian into Hindi)
-  21c441f8-5d88-46e8-b8b1-8bdc985bb290: !Template
+    name: flores-xglm-Oriya-Northern Sotho
+    reference: 'L1: [sent1] = L2: [sent2]'
+  26b563af-7a82-441d-a7e0-07007ed8dac4: !Template
     answer_choices: null
-    id: 21c441f8-5d88-46e8-b8b1-8bdc985bb290
-    jinja: 'Translate this from Yoruba into Wolof: {{ sentence_yor }} ||| {{ sentence_wol
-      }}'
+    id: 26b563af-7a82-441d-a7e0-07007ed8dac4
+    jinja: 'Malayalam: {{ sentence_mal }} = Telugu: ||| {{ sentence_tel }}'
     metadata: *id001
-    name: translate-this-yor-wol
-    reference: Translate this from X to Y (Yoruba into Wolof)
-  23c8ebae-0208-4885-bb5a-4d62296f53fb: !Template
+    name: flores-xglm-Malayalam-Telugu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  270459c2-cf1e-41d4-8957-ddedfac7198b: !Template
     answer_choices: null
-    id: 23c8ebae-0208-4885-bb5a-4d62296f53fb
-    jinja: 'Translate this from simplified Chinese into Assamese: {{ sentence_zho_simpl
-      }} ||| {{ sentence_asm }}'
+    id: 270459c2-cf1e-41d4-8957-ddedfac7198b
+    jinja: 'English: {{ sentence_eng }} = Northern Sotho: ||| {{ sentence_nso }}'
     metadata: *id001
-    name: translate-this-zho_simpl-asm
-    reference: Translate this from X to Y (simplified Chinese into Assamese)
-  23dba84e-4c9f-42e5-8ee3-04f226e5b0eb: !Template
+    name: flores-xglm-English-Northern Sotho
+    reference: 'L1: [sent1] = L2: [sent2]'
+  27660322-527b-44cf-96ba-797907a8dc44: !Template
     answer_choices: null
-    id: 23dba84e-4c9f-42e5-8ee3-04f226e5b0eb
-    jinja: 'Translate this from Tamil into Nepali: {{ sentence_tam }} ||| {{ sentence_npi
-      }}'
+    id: 27660322-527b-44cf-96ba-797907a8dc44
+    jinja: 'Malayalam: {{ sentence_mal }} = Igbo: ||| {{ sentence_ibo }}'
     metadata: *id001
-    name: translate-this-tam-npi
-    reference: Translate this from X to Y (Tamil into Nepali)
-  23e37cc6-85e4-4e8f-8a01-464e17b92fb6: !Template
+    name: flores-xglm-Malayalam-Igbo
+    reference: 'L1: [sent1] = L2: [sent2]'
+  276b6da2-828e-454a-a96e-35e80823dd7e: !Template
     answer_choices: null
-    id: 23e37cc6-85e4-4e8f-8a01-464e17b92fb6
-    jinja: 'Translate this from Zulu into Gujarati: {{ sentence_zul }} ||| {{ sentence_guj
-      }}'
+    id: 276b6da2-828e-454a-a96e-35e80823dd7e
+    jinja: 'Marathi: {{ sentence_mar }} = Northern Sotho: ||| {{ sentence_nso }}'
     metadata: *id001
-    name: translate-this-zul-guj
-    reference: Translate this from X to Y (Zulu into Gujarati)
-  2404b553-0bdd-4dc4-88a6-edf2e01a4042: !Template
+    name: flores-xglm-Marathi-Northern Sotho
+    reference: 'L1: [sent1] = L2: [sent2]'
+  279ba12c-8332-4f4f-91fe-7bd3d6256a09: !Template
     answer_choices: null
-    id: 2404b553-0bdd-4dc4-88a6-edf2e01a4042
-    jinja: 'Translate this from Xhosa into Zulu: {{ sentence_xho }} ||| {{ sentence_zul
-      }}'
+    id: 279ba12c-8332-4f4f-91fe-7bd3d6256a09
+    jinja: 'Catalan: {{ sentence_cat }} = Urdu: ||| {{ sentence_urd }}'
     metadata: *id001
-    name: translate-this-xho-zul
-    reference: Translate this from X to Y (Xhosa into Zulu)
-  241c9607-8be1-4675-afe2-1e64efe0ed5a: !Template
+    name: flores-xglm-Catalan-Urdu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  27f1c351-32e4-49b9-bed5-53db17d91343: !Template
     answer_choices: null
-    id: 241c9607-8be1-4675-afe2-1e64efe0ed5a
-    jinja: 'Translate this from Lingala into Urdu: {{ sentence_lin }} ||| {{ sentence_urd
+    id: 27f1c351-32e4-49b9-bed5-53db17d91343
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = English: ||| {{ sentence_eng
       }}'
     metadata: *id001
-    name: translate-this-lin-urd
-    reference: Translate this from X to Y (Lingala into Urdu)
-  24bf6dcf-ba57-4597-b9c0-961cd59c8de1: !Template
+    name: flores-xglm-Latin American Spanish-English
+    reference: 'L1: [sent1] = L2: [sent2]'
+  27f3561c-614f-4018-99b0-b64ec8ff0f90: !Template
     answer_choices: null
-    id: 24bf6dcf-ba57-4597-b9c0-961cd59c8de1
-    jinja: 'Translate this from Marathi into Punjabi: {{ sentence_mar }} ||| {{ sentence_pan
-      }}'
+    id: 27f3561c-614f-4018-99b0-b64ec8ff0f90
+    jinja: 'Nepali: {{ sentence_npi }} = Indonesian: ||| {{ sentence_ind }}'
     metadata: *id001
-    name: translate-this-mar-pan
-    reference: Translate this from X to Y (Marathi into Punjabi)
-  24c47820-3a64-4c03-9cc6-c27d881498a6: !Template
+    name: flores-xglm-Nepali-Indonesian
+    reference: 'L1: [sent1] = L2: [sent2]'
+  2894fd61-5850-4dc5-bada-fde7df05e11b: !Template
     answer_choices: null
-    id: 24c47820-3a64-4c03-9cc6-c27d881498a6
-    jinja: 'Translate this from Swahili into Telugu: {{ sentence_swh }} ||| {{ sentence_tel
+    id: 2894fd61-5850-4dc5-bada-fde7df05e11b
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Yoruba: ||| {{ sentence_yor
       }}'
     metadata: *id001
-    name: translate-this-swh-tel
-    reference: Translate this from X to Y (Swahili into Telugu)
-  2527702c-4ba3-45cf-a2b0-042296bb80fc: !Template
+    name: flores-xglm-Brazilian Portuguese-Yoruba
+    reference: 'L1: [sent1] = L2: [sent2]'
+  28b5e46e-1a98-4402-b5e2-8e95fa105f17: !Template
     answer_choices: null
-    id: 2527702c-4ba3-45cf-a2b0-042296bb80fc
-    jinja: 'Translate this from Igbo into Zulu: {{ sentence_ibo }} ||| {{ sentence_zul
-      }}'
+    id: 28b5e46e-1a98-4402-b5e2-8e95fa105f17
+    jinja: 'Northern Sotho: {{ sentence_nso }} = Zulu: ||| {{ sentence_zul }}'
     metadata: *id001
-    name: translate-this-ibo-zul
-    reference: Translate this from X to Y (Igbo into Zulu)
-  25561beb-bbe6-4ed0-a925-84c66249be43: !Template
+    name: flores-xglm-Northern Sotho-Zulu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  292561ae-ffd8-437c-8e28-90a2c1c4851f: !Template
     answer_choices: null
-    id: 25561beb-bbe6-4ed0-a925-84c66249be43
-    jinja: 'Translate this from Marathi into Yoruba: {{ sentence_mar }} ||| {{ sentence_yor
-      }}'
+    id: 292561ae-ffd8-437c-8e28-90a2c1c4851f
+    jinja: 'Marathi: {{ sentence_mar }} = Assamese: ||| {{ sentence_asm }}'
     metadata: *id001
-    name: translate-this-mar-yor
-    reference: Translate this from X to Y (Marathi into Yoruba)
-  25a02e1c-508a-4e65-a227-44e92cc0aefb: !Template
+    name: flores-xglm-Marathi-Assamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  29b82320-28e5-49f3-8606-8b13fde78b13: !Template
     answer_choices: null
-    id: 25a02e1c-508a-4e65-a227-44e92cc0aefb
-    jinja: 'Translate this from French into Arabic: {{ sentence_fra }} ||| {{ sentence_ara
+    id: 29b82320-28e5-49f3-8606-8b13fde78b13
+    jinja: 'Punjabi: {{ sentence_pan }} = simplified Chinese: ||| {{ sentence_zho_simpl
       }}'
     metadata: *id001
-    name: translate-this-fra-ara
-    reference: Translate this from X to Y (French into Arabic)
-  25abe5a3-c64e-462b-b94b-87138e83b9be: !Template
+    name: flores-xglm-Punjabi-simplified Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  2a08d8a6-ba33-4a48-8691-01301b87fd4b: !Template
     answer_choices: null
-    id: 25abe5a3-c64e-462b-b94b-87138e83b9be
-    jinja: 'Translate this from Igbo into Swahili: {{ sentence_ibo }} ||| {{ sentence_swh
-      }}'
+    id: 2a08d8a6-ba33-4a48-8691-01301b87fd4b
+    jinja: 'Indonesian: {{ sentence_ind }} = Punjabi: ||| {{ sentence_pan }}'
     metadata: *id001
-    name: translate-this-ibo-swh
-    reference: Translate this from X to Y (Igbo into Swahili)
-  262e7428-28e6-4b13-b918-3da32d20278d: !Template
+    name: flores-xglm-Indonesian-Punjabi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  2a143988-fe33-45a7-8e91-2c3c121184f2: !Template
     answer_choices: null
-    id: 262e7428-28e6-4b13-b918-3da32d20278d
-    jinja: 'Translate this from Lingala into Arabic: {{ sentence_lin }} ||| {{ sentence_ara
-      }}'
+    id: 2a143988-fe33-45a7-8e91-2c3c121184f2
+    jinja: 'Gujarati: {{ sentence_guj }} = Oriya: ||| {{ sentence_ory }}'
     metadata: *id001
-    name: translate-this-lin-ara
-    reference: Translate this from X to Y (Lingala into Arabic)
-  26975a8b-6685-406c-b867-3bf06a6f16f7: !Template
+    name: flores-xglm-Gujarati-Oriya
+    reference: 'L1: [sent1] = L2: [sent2]'
+  2a38c944-1dc5-4d48-be78-1a25980b03ab: !Template
     answer_choices: null
-    id: 26975a8b-6685-406c-b867-3bf06a6f16f7
-    jinja: 'Translate this from Catalan into Wolof: {{ sentence_cat }} ||| {{ sentence_wol
-      }}'
+    id: 2a38c944-1dc5-4d48-be78-1a25980b03ab
+    jinja: 'Xhosa: {{ sentence_xho }} = Nepali: ||| {{ sentence_npi }}'
     metadata: *id001
-    name: translate-this-cat-wol
-    reference: Translate this from X to Y (Catalan into Wolof)
-  27611c76-4b91-4100-8c28-d554679c190f: !Template
+    name: flores-xglm-Xhosa-Nepali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  2a7134a7-e8e8-4447-bd54-076e96f4137f: !Template
     answer_choices: null
-    id: 27611c76-4b91-4100-8c28-d554679c190f
-    jinja: 'Translate this from Kannada into Gujarati: {{ sentence_kan }} ||| {{ sentence_guj
-      }}'
+    id: 2a7134a7-e8e8-4447-bd54-076e96f4137f
+    jinja: 'Yoruba: {{ sentence_yor }} = Igbo: ||| {{ sentence_ibo }}'
     metadata: *id001
-    name: translate-this-kan-guj
-    reference: Translate this from X to Y (Kannada into Gujarati)
-  27621fb6-56c8-43ee-b828-671291565912: !Template
+    name: flores-xglm-Yoruba-Igbo
+    reference: 'L1: [sent1] = L2: [sent2]'
+  2ad8ecb8-b4b3-4aff-95d8-822f46a0d8b1: !Template
     answer_choices: null
-    id: 27621fb6-56c8-43ee-b828-671291565912
-    jinja: 'Translate this from Catalan into traditional Chinese: {{ sentence_cat
-      }} ||| {{ sentence_zho_trad }}'
+    id: 2ad8ecb8-b4b3-4aff-95d8-822f46a0d8b1
+    jinja: 'Hindi: {{ sentence_hin }} = Yoruba: ||| {{ sentence_yor }}'
     metadata: *id001
-    name: translate-this-cat-zho_trad
-    reference: Translate this from X to Y (Catalan into traditional Chinese)
-  27c54806-c7b5-4f2a-a2be-d2465a446795: !Template
+    name: flores-xglm-Hindi-Yoruba
+    reference: 'L1: [sent1] = L2: [sent2]'
+  2b49de04-424e-4150-ae90-4d9b1fa17603: !Template
     answer_choices: null
-    id: 27c54806-c7b5-4f2a-a2be-d2465a446795
-    jinja: 'Translate this from Lingala into Nepali: {{ sentence_lin }} ||| {{ sentence_npi
-      }}'
+    id: 2b49de04-424e-4150-ae90-4d9b1fa17603
+    jinja: 'Hindi: {{ sentence_hin }} = Wolof: ||| {{ sentence_wol }}'
     metadata: *id001
-    name: translate-this-lin-npi
-    reference: Translate this from X to Y (Lingala into Nepali)
-  27dad36b-5f7e-425f-b53d-91b7624d21dd: !Template
+    name: flores-xglm-Hindi-Wolof
+    reference: 'L1: [sent1] = L2: [sent2]'
+  2b69c00c-fc6f-4bda-9cf9-5053830cc32c: !Template
     answer_choices: null
-    id: 27dad36b-5f7e-425f-b53d-91b7624d21dd
-    jinja: 'Translate this from Bengali into Arabic: {{ sentence_ben }} ||| {{ sentence_ara
-      }}'
+    id: 2b69c00c-fc6f-4bda-9cf9-5053830cc32c
+    jinja: 'Telugu: {{ sentence_tel }} = Catalan: ||| {{ sentence_cat }}'
     metadata: *id001
-    name: translate-this-ben-ara
-    reference: Translate this from X to Y (Bengali into Arabic)
-  280b1f9a-e8cb-4da9-823f-6935fbd17b75: !Template
+    name: flores-xglm-Telugu-Catalan
+    reference: 'L1: [sent1] = L2: [sent2]'
+  2b8f1b72-5ac3-46fe-bccd-b57ee4910f99: !Template
     answer_choices: null
-    id: 280b1f9a-e8cb-4da9-823f-6935fbd17b75
-    jinja: 'Translate this from Bengali into Gujarati: {{ sentence_ben }} ||| {{ sentence_guj
-      }}'
+    id: 2b8f1b72-5ac3-46fe-bccd-b57ee4910f99
+    jinja: 'English: {{ sentence_eng }} = Nepali: ||| {{ sentence_npi }}'
     metadata: *id001
-    name: translate-this-ben-guj
-    reference: Translate this from X to Y (Bengali into Gujarati)
-  28465f39-b955-4466-adc9-bf4dd689834e: !Template
+    name: flores-xglm-English-Nepali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  2ba1d7ba-429c-46a2-8ff7-38454641b98f: !Template
     answer_choices: null
-    id: 28465f39-b955-4466-adc9-bf4dd689834e
-    jinja: 'Translate this from Urdu into Yoruba: {{ sentence_urd }} ||| {{ sentence_yor
-      }}'
+    id: 2ba1d7ba-429c-46a2-8ff7-38454641b98f
+    jinja: 'Assamese: {{ sentence_asm }} = Hindi: ||| {{ sentence_hin }}'
     metadata: *id001
-    name: translate-this-urd-yor
-    reference: Translate this from X to Y (Urdu into Yoruba)
-  290ff393-62e4-4620-88a5-f962067e04be: !Template
+    name: flores-xglm-Assamese-Hindi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  2c65bf55-3fe8-4b23-8543-dd08dcb52001: !Template
     answer_choices: null
-    id: 290ff393-62e4-4620-88a5-f962067e04be
-    jinja: 'Translate this from Hindi into Nepali: {{ sentence_hin }} ||| {{ sentence_npi
-      }}'
+    id: 2c65bf55-3fe8-4b23-8543-dd08dcb52001
+    jinja: 'Punjabi: {{ sentence_pan }} = Bengali: ||| {{ sentence_ben }}'
     metadata: *id001
-    name: translate-this-hin-npi
-    reference: Translate this from X to Y (Hindi into Nepali)
-  296881ff-cba0-4239-ad8d-8f1afd75e4e3: !Template
+    name: flores-xglm-Punjabi-Bengali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  2c897643-c858-429f-964d-b66dcd4cc788: !Template
     answer_choices: null
-    id: 296881ff-cba0-4239-ad8d-8f1afd75e4e3
-    jinja: 'Translate this from Northern Sotho into Hindi: {{ sentence_nso }} |||
-      {{ sentence_hin }}'
+    id: 2c897643-c858-429f-964d-b66dcd4cc788
+    jinja: 'Marathi: {{ sentence_mar }} = Hindi: ||| {{ sentence_hin }}'
     metadata: *id001
-    name: translate-this-nso-hin
-    reference: Translate this from X to Y (Northern Sotho into Hindi)
-  297998dd-c54e-4c71-a13f-c486ac901c7a: !Template
+    name: flores-xglm-Marathi-Hindi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  2cf75531-18a0-4644-8efe-604abf0bc099: !Template
     answer_choices: null
-    id: 297998dd-c54e-4c71-a13f-c486ac901c7a
-    jinja: 'Translate this from Hindi into French: {{ sentence_hin }} ||| {{ sentence_fra
-      }}'
+    id: 2cf75531-18a0-4644-8efe-604abf0bc099
+    jinja: 'Hindi: {{ sentence_hin }} = Vietnamese: ||| {{ sentence_vie }}'
     metadata: *id001
-    name: translate-this-hin-fra
-    reference: Translate this from X to Y (Hindi into French)
-  299ec5f1-e534-48bf-a90f-ee75319a1cf4: !Template
+    name: flores-xglm-Hindi-Vietnamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  2d04820f-739d-4eef-a669-262d75de7543: !Template
     answer_choices: null
-    id: 299ec5f1-e534-48bf-a90f-ee75319a1cf4
-    jinja: 'Translate this from Swahili into traditional Chinese: {{ sentence_swh
-      }} ||| {{ sentence_zho_trad }}'
+    id: 2d04820f-739d-4eef-a669-262d75de7543
+    jinja: 'Hindi: {{ sentence_hin }} = Indonesian: ||| {{ sentence_ind }}'
     metadata: *id001
-    name: translate-this-swh-zho_trad
-    reference: Translate this from X to Y (Swahili into traditional Chinese)
-  29c57eea-4508-4984-a10f-ae37c684a18a: !Template
+    name: flores-xglm-Hindi-Indonesian
+    reference: 'L1: [sent1] = L2: [sent2]'
+  2d36e3e6-04e6-4156-926c-f217f52d51e0: !Template
     answer_choices: null
-    id: 29c57eea-4508-4984-a10f-ae37c684a18a
-    jinja: 'Translate this from Telugu into Yoruba: {{ sentence_tel }} ||| {{ sentence_yor
-      }}'
+    id: 2d36e3e6-04e6-4156-926c-f217f52d51e0
+    jinja: 'Indonesian: {{ sentence_ind }} = French: ||| {{ sentence_fra }}'
     metadata: *id001
-    name: translate-this-tel-yor
-    reference: Translate this from X to Y (Telugu into Yoruba)
-  2a221475-0a6e-4005-9891-54757e5f4053: !Template
+    name: flores-xglm-Indonesian-French
+    reference: 'L1: [sent1] = L2: [sent2]'
+  2d42407d-16c9-44df-bbae-11cafb1e0d66: !Template
     answer_choices: null
-    id: 2a221475-0a6e-4005-9891-54757e5f4053
-    jinja: 'Translate this from Oriya into Swahili: {{ sentence_ory }} ||| {{ sentence_swh
-      }}'
+    id: 2d42407d-16c9-44df-bbae-11cafb1e0d66
+    jinja: 'Igbo: {{ sentence_ibo }} = Vietnamese: ||| {{ sentence_vie }}'
     metadata: *id001
-    name: translate-this-ory-swh
-    reference: Translate this from X to Y (Oriya into Swahili)
-  2a288032-b05a-4a4e-aae4-276ff52a8f7b: !Template
+    name: flores-xglm-Igbo-Vietnamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  2dcc8a54-929e-45aa-b320-c1ce23303a1b: !Template
     answer_choices: null
-    id: 2a288032-b05a-4a4e-aae4-276ff52a8f7b
-    jinja: 'Translate this from Telugu into Kannada: {{ sentence_tel }} ||| {{ sentence_kan
-      }}'
+    id: 2dcc8a54-929e-45aa-b320-c1ce23303a1b
+    jinja: 'Lingala: {{ sentence_lin }} = English: ||| {{ sentence_eng }}'
     metadata: *id001
-    name: translate-this-tel-kan
-    reference: Translate this from X to Y (Telugu into Kannada)
-  2a6b28ea-e609-4c47-8151-f400ed06a734: !Template
+    name: flores-xglm-Lingala-English
+    reference: 'L1: [sent1] = L2: [sent2]'
+  2dd4f17f-6e5c-4969-bd53-707dd125f1b1: !Template
     answer_choices: null
-    id: 2a6b28ea-e609-4c47-8151-f400ed06a734
-    jinja: 'Translate this from Malayalam into French: {{ sentence_mal }} ||| {{ sentence_fra
-      }}'
+    id: 2dd4f17f-6e5c-4969-bd53-707dd125f1b1
+    jinja: 'Assamese: {{ sentence_asm }} = Igbo: ||| {{ sentence_ibo }}'
     metadata: *id001
-    name: translate-this-mal-fra
-    reference: Translate this from X to Y (Malayalam into French)
-  2aaa64f1-e471-4776-964b-55f1d45e2471: !Template
+    name: flores-xglm-Assamese-Igbo
+    reference: 'L1: [sent1] = L2: [sent2]'
+  2e001a66-4b37-4b01-9fc8-0172ae427eec: !Template
     answer_choices: null
-    id: 2aaa64f1-e471-4776-964b-55f1d45e2471
-    jinja: 'Translate this from Xhosa into Telugu: {{ sentence_xho }} ||| {{ sentence_tel
-      }}'
+    id: 2e001a66-4b37-4b01-9fc8-0172ae427eec
+    jinja: 'Catalan: {{ sentence_cat }} = Bengali: ||| {{ sentence_ben }}'
     metadata: *id001
-    name: translate-this-xho-tel
-    reference: Translate this from X to Y (Xhosa into Telugu)
-  2b6418d9-cdb1-488d-b43d-8518e06b3d23: !Template
+    name: flores-xglm-Catalan-Bengali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  2e57972b-e75e-47d7-97e6-15041a5fae47: !Template
     answer_choices: null
-    id: 2b6418d9-cdb1-488d-b43d-8518e06b3d23
-    jinja: 'Translate this from Vietnamese into Telugu: {{ sentence_vie }} ||| {{
-      sentence_tel }}'
+    id: 2e57972b-e75e-47d7-97e6-15041a5fae47
+    jinja: 'Vietnamese: {{ sentence_vie }} = English: ||| {{ sentence_eng }}'
     metadata: *id001
-    name: translate-this-vie-tel
-    reference: Translate this from X to Y (Vietnamese into Telugu)
-  2b8d733c-f3f4-4580-b4ee-7ebeeefc294a: !Template
+    name: flores-xglm-Vietnamese-English
+    reference: 'L1: [sent1] = L2: [sent2]'
+  2e7128e0-227d-462d-9898-e4dc700f16a1: !Template
     answer_choices: null
-    id: 2b8d733c-f3f4-4580-b4ee-7ebeeefc294a
-    jinja: 'Translate this from Urdu into Lingala: {{ sentence_urd }} ||| {{ sentence_lin
-      }}'
+    id: 2e7128e0-227d-462d-9898-e4dc700f16a1
+    jinja: 'French: {{ sentence_fra }} = Vietnamese: ||| {{ sentence_vie }}'
     metadata: *id001
-    name: translate-this-urd-lin
-    reference: Translate this from X to Y (Urdu into Lingala)
-  2b92f96b-7298-4c0d-acbb-12bff3a2d380: !Template
+    name: flores-xglm-French-Vietnamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  2e76c1a6-c949-46ba-8f3c-02f01a16cb52: !Template
     answer_choices: null
-    id: 2b92f96b-7298-4c0d-acbb-12bff3a2d380
-    jinja: 'Translate this from Urdu into Marathi: {{ sentence_urd }} ||| {{ sentence_mar
-      }}'
+    id: 2e76c1a6-c949-46ba-8f3c-02f01a16cb52
+    jinja: 'Telugu: {{ sentence_tel }} = Zulu: ||| {{ sentence_zul }}'
     metadata: *id001
-    name: translate-this-urd-mar
-    reference: Translate this from X to Y (Urdu into Marathi)
-  2c71f763-0f0b-4d60-bfe0-69bc50fe6b25: !Template
+    name: flores-xglm-Telugu-Zulu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  2e7a342b-b8b7-47da-8a93-28d56c93d58e: !Template
     answer_choices: null
-    id: 2c71f763-0f0b-4d60-bfe0-69bc50fe6b25
-    jinja: 'Translate this from simplified Chinese into Kannada: {{ sentence_zho_simpl
-      }} ||| {{ sentence_kan }}'
+    id: 2e7a342b-b8b7-47da-8a93-28d56c93d58e
+    jinja: 'Marathi: {{ sentence_mar }} = Lingala: ||| {{ sentence_lin }}'
     metadata: *id001
-    name: translate-this-zho_simpl-kan
-    reference: Translate this from X to Y (simplified Chinese into Kannada)
-  2d5750e4-1a8e-4306-8a84-9951f7384573: !Template
+    name: flores-xglm-Marathi-Lingala
+    reference: 'L1: [sent1] = L2: [sent2]'
+  2e9e0081-2d25-478f-8396-fc2aac413fc1: !Template
     answer_choices: null
-    id: 2d5750e4-1a8e-4306-8a84-9951f7384573
-    jinja: 'Translate this from Zulu into Lingala: {{ sentence_zul }} ||| {{ sentence_lin
-      }}'
+    id: 2e9e0081-2d25-478f-8396-fc2aac413fc1
+    jinja: 'Urdu: {{ sentence_urd }} = Igbo: ||| {{ sentence_ibo }}'
     metadata: *id001
-    name: translate-this-zul-lin
-    reference: Translate this from X to Y (Zulu into Lingala)
-  2e41de33-5e4a-4069-9922-20e79cd95026: !Template
+    name: flores-xglm-Urdu-Igbo
+    reference: 'L1: [sent1] = L2: [sent2]'
+  2ef6d95c-999e-4993-94b6-4e4102c37584: !Template
     answer_choices: null
-    id: 2e41de33-5e4a-4069-9922-20e79cd95026
-    jinja: 'Translate this from Xhosa into Wolof: {{ sentence_xho }} ||| {{ sentence_wol
-      }}'
+    id: 2ef6d95c-999e-4993-94b6-4e4102c37584
+    jinja: 'Marathi: {{ sentence_mar }} = Zulu: ||| {{ sentence_zul }}'
     metadata: *id001
-    name: translate-this-xho-wol
-    reference: Translate this from X to Y (Xhosa into Wolof)
-  2ea91d13-ebc7-40ad-a470-2cf6dfb3c86f: !Template
+    name: flores-xglm-Marathi-Zulu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  2efd1c02-0782-449a-b95d-ceca9dab1d0e: !Template
     answer_choices: null
-    id: 2ea91d13-ebc7-40ad-a470-2cf6dfb3c86f
-    jinja: 'Translate this from Catalan into Punjabi: {{ sentence_cat }} ||| {{ sentence_pan
-      }}'
+    id: 2efd1c02-0782-449a-b95d-ceca9dab1d0e
+    jinja: 'French: {{ sentence_fra }} = Punjabi: ||| {{ sentence_pan }}'
     metadata: *id001
-    name: translate-this-cat-pan
-    reference: Translate this from X to Y (Catalan into Punjabi)
-  2eea0581-9ec5-45f1-a9c8-ef5946ce8276: !Template
+    name: flores-xglm-French-Punjabi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  2f1cda00-4331-4335-8736-0ad09457f84e: !Template
     answer_choices: null
-    id: 2eea0581-9ec5-45f1-a9c8-ef5946ce8276
-    jinja: 'Translate this from Kannada into Xhosa: {{ sentence_kan }} ||| {{ sentence_xho
-      }}'
+    id: 2f1cda00-4331-4335-8736-0ad09457f84e
+    jinja: 'Wolof: {{ sentence_wol }} = Arabic: ||| {{ sentence_ara }}'
     metadata: *id001
-    name: translate-this-kan-xho
-    reference: Translate this from X to Y (Kannada into Xhosa)
-  2f8930cb-6243-469f-b387-099a2a393272: !Template
+    name: flores-xglm-Wolof-Arabic
+    reference: 'L1: [sent1] = L2: [sent2]'
+  2f7d3b00-8fac-4c76-b142-170e8adaf3f9: !Template
     answer_choices: null
-    id: 2f8930cb-6243-469f-b387-099a2a393272
-    jinja: 'Translate this from Yoruba into Xhosa: {{ sentence_yor }} ||| {{ sentence_xho
-      }}'
+    id: 2f7d3b00-8fac-4c76-b142-170e8adaf3f9
+    jinja: 'Swahili: {{ sentence_swh }} = Yoruba: ||| {{ sentence_yor }}'
     metadata: *id001
-    name: translate-this-yor-xho
-    reference: Translate this from X to Y (Yoruba into Xhosa)
-  2fb9afe2-68ae-4968-926b-370bced69e4e: !Template
+    name: flores-xglm-Swahili-Yoruba
+    reference: 'L1: [sent1] = L2: [sent2]'
+  2f7df5f7-4287-4f13-b298-271d20fa4a3e: !Template
     answer_choices: null
-    id: 2fb9afe2-68ae-4968-926b-370bced69e4e
-    jinja: 'Translate this from Oriya into simplified Chinese: {{ sentence_ory }}
-      ||| {{ sentence_zho_simpl }}'
+    id: 2f7df5f7-4287-4f13-b298-271d20fa4a3e
+    jinja: 'Hindi: {{ sentence_hin }} = Tamil: ||| {{ sentence_tam }}'
     metadata: *id001
-    name: translate-this-ory-zho_simpl
-    reference: Translate this from X to Y (Oriya into simplified Chinese)
-  2fef735f-65a1-45e4-87b3-2f2a4380ea6c: !Template
+    name: flores-xglm-Hindi-Tamil
+    reference: 'L1: [sent1] = L2: [sent2]'
+  2f82a9c7-d959-4893-95d0-a61f056346bb: !Template
     answer_choices: null
-    id: 2fef735f-65a1-45e4-87b3-2f2a4380ea6c
-    jinja: 'Translate this from Swahili into simplified Chinese: {{ sentence_swh }}
-      ||| {{ sentence_zho_simpl }}'
+    id: 2f82a9c7-d959-4893-95d0-a61f056346bb
+    jinja: 'Swahili: {{ sentence_swh }} = Gujarati: ||| {{ sentence_guj }}'
     metadata: *id001
-    name: translate-this-swh-zho_simpl
-    reference: Translate this from X to Y (Swahili into simplified Chinese)
-  2ff136e1-70d1-4cd5-a516-647d98387333: !Template
+    name: flores-xglm-Swahili-Gujarati
+    reference: 'L1: [sent1] = L2: [sent2]'
+  2f8ef8f1-48fd-4444-990a-f4c4cc500b39: !Template
     answer_choices: null
-    id: 2ff136e1-70d1-4cd5-a516-647d98387333
-    jinja: 'Translate this from Kannada into French: {{ sentence_kan }} ||| {{ sentence_fra
-      }}'
+    id: 2f8ef8f1-48fd-4444-990a-f4c4cc500b39
+    jinja: 'English: {{ sentence_eng }} = Gujarati: ||| {{ sentence_guj }}'
     metadata: *id001
-    name: translate-this-kan-fra
-    reference: Translate this from X to Y (Kannada into French)
-  30414a5c-ed89-47fb-a95a-871fa42d2e71: !Template
+    name: flores-xglm-English-Gujarati
+    reference: 'L1: [sent1] = L2: [sent2]'
+  2ff9354a-baba-49dc-97d9-6dd1c7a0a6e8: !Template
     answer_choices: null
-    id: 30414a5c-ed89-47fb-a95a-871fa42d2e71
-    jinja: 'Translate this from Vietnamese into Gujarati: {{ sentence_vie }} ||| {{
-      sentence_guj }}'
+    id: 2ff9354a-baba-49dc-97d9-6dd1c7a0a6e8
+    jinja: 'Bengali: {{ sentence_ben }} = Igbo: ||| {{ sentence_ibo }}'
     metadata: *id001
-    name: translate-this-vie-guj
-    reference: Translate this from X to Y (Vietnamese into Gujarati)
-  30f047ad-947b-4514-a629-9229150dce7f: !Template
+    name: flores-xglm-Bengali-Igbo
+    reference: 'L1: [sent1] = L2: [sent2]'
+  30d9aed2-7529-4466-9857-167d57a734f1: !Template
     answer_choices: null
-    id: 30f047ad-947b-4514-a629-9229150dce7f
-    jinja: 'Translate this from Wolof into Latin American Spanish: {{ sentence_wol
-      }} ||| {{ sentence_spa }}'
+    id: 30d9aed2-7529-4466-9857-167d57a734f1
+    jinja: 'Urdu: {{ sentence_urd }} = Wolof: ||| {{ sentence_wol }}'
     metadata: *id001
-    name: translate-this-wol-spa
-    reference: Translate this from X to Y (Wolof into Latin American Spanish)
-  312c8f54-ba00-42ce-968d-8ba6f0eba95e: !Template
+    name: flores-xglm-Urdu-Wolof
+    reference: 'L1: [sent1] = L2: [sent2]'
+  315d1d79-b778-4bc5-b5ec-a0d696bf1e18: !Template
     answer_choices: null
-    id: 312c8f54-ba00-42ce-968d-8ba6f0eba95e
-    jinja: 'Translate this from Telugu into Marathi: {{ sentence_tel }} ||| {{ sentence_mar
-      }}'
+    id: 315d1d79-b778-4bc5-b5ec-a0d696bf1e18
+    jinja: 'Urdu: {{ sentence_urd }} = Nepali: ||| {{ sentence_npi }}'
     metadata: *id001
-    name: translate-this-tel-mar
-    reference: Translate this from X to Y (Telugu into Marathi)
-  316b9162-5eed-4724-8e31-b1027b0dbcb3: !Template
+    name: flores-xglm-Urdu-Nepali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  3165b1f5-33f5-4355-9914-62012e86c1be: !Template
     answer_choices: null
-    id: 316b9162-5eed-4724-8e31-b1027b0dbcb3
-    jinja: 'Translate this from Kannada into Oriya: {{ sentence_kan }} ||| {{ sentence_ory
+    id: 3165b1f5-33f5-4355-9914-62012e86c1be
+    jinja: 'Bengali: {{ sentence_ben }} = Brazilian Portuguese: ||| {{ sentence_por
       }}'
     metadata: *id001
-    name: translate-this-kan-ory
-    reference: Translate this from X to Y (Kannada into Oriya)
-  31a179a3-3218-4dcf-ac18-a0b353b2061c: !Template
+    name: flores-xglm-Bengali-Brazilian Portuguese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  3205d58d-9bb8-4aed-87e8-4d0f7d6a03b9: !Template
     answer_choices: null
-    id: 31a179a3-3218-4dcf-ac18-a0b353b2061c
-    jinja: 'Translate this from Zulu into Hindi: {{ sentence_zul }} ||| {{ sentence_hin
-      }}'
+    id: 3205d58d-9bb8-4aed-87e8-4d0f7d6a03b9
+    jinja: 'Telugu: {{ sentence_tel }} = Xhosa: ||| {{ sentence_xho }}'
     metadata: *id001
-    name: translate-this-zul-hin
-    reference: Translate this from X to Y (Zulu into Hindi)
-  31aa9a3b-e873-4e62-b79e-8c9e367fdc75: !Template
+    name: flores-xglm-Telugu-Xhosa
+    reference: 'L1: [sent1] = L2: [sent2]'
+  329a4e0f-b184-4db3-8c2a-ac231ddf155b: !Template
     answer_choices: null
-    id: 31aa9a3b-e873-4e62-b79e-8c9e367fdc75
-    jinja: 'Translate this from French into Marathi: {{ sentence_fra }} ||| {{ sentence_mar
-      }}'
+    id: 329a4e0f-b184-4db3-8c2a-ac231ddf155b
+    jinja: 'English: {{ sentence_eng }} = Marathi: ||| {{ sentence_mar }}'
     metadata: *id001
-    name: translate-this-fra-mar
-    reference: Translate this from X to Y (French into Marathi)
-  31d2c373-908a-459b-8a55-90596af3dab0: !Template
+    name: flores-xglm-English-Marathi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  32b1123e-2c91-473d-b8bc-ca2d3d7f264e: !Template
     answer_choices: null
-    id: 31d2c373-908a-459b-8a55-90596af3dab0
-    jinja: 'Translate this from Tamil into Malayalam: {{ sentence_tam }} ||| {{ sentence_mal
-      }}'
+    id: 32b1123e-2c91-473d-b8bc-ca2d3d7f264e
+    jinja: 'Kannada: {{ sentence_kan }} = Catalan: ||| {{ sentence_cat }}'
     metadata: *id001
-    name: translate-this-tam-mal
-    reference: Translate this from X to Y (Tamil into Malayalam)
-  31dfa16f-c885-473a-8a8c-625e0424f956: !Template
+    name: flores-xglm-Kannada-Catalan
+    reference: 'L1: [sent1] = L2: [sent2]'
+  32c4e3d7-0720-4d9b-809a-69377d4fc57e: !Template
     answer_choices: null
-    id: 31dfa16f-c885-473a-8a8c-625e0424f956
-    jinja: 'Translate this from Kannada into Punjabi: {{ sentence_kan }} ||| {{ sentence_pan
+    id: 32c4e3d7-0720-4d9b-809a-69377d4fc57e
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = French: ||| {{ sentence_fra
       }}'
     metadata: *id001
-    name: translate-this-kan-pan
-    reference: Translate this from X to Y (Kannada into Punjabi)
-  321789ba-70b2-48a9-818e-bb3dbc374c6f: !Template
+    name: flores-xglm-traditional Chinese-French
+    reference: 'L1: [sent1] = L2: [sent2]'
+  33648ad9-2c22-4057-8a6e-aa00cfb0993f: !Template
     answer_choices: null
-    id: 321789ba-70b2-48a9-818e-bb3dbc374c6f
-    jinja: 'Translate this from Malayalam into Telugu: {{ sentence_mal }} ||| {{ sentence_tel
-      }}'
+    id: 33648ad9-2c22-4057-8a6e-aa00cfb0993f
+    jinja: 'Yoruba: {{ sentence_yor }} = Tamil: ||| {{ sentence_tam }}'
     metadata: *id001
-    name: translate-this-mal-tel
-    reference: Translate this from X to Y (Malayalam into Telugu)
-  329221b2-a552-4621-9044-330866e31d0d: !Template
+    name: flores-xglm-Yoruba-Tamil
+    reference: 'L1: [sent1] = L2: [sent2]'
+  338e57bd-8f38-4bf6-81fe-6fce4ce73205: !Template
     answer_choices: null
-    id: 329221b2-a552-4621-9044-330866e31d0d
-    jinja: 'Translate this from Urdu into Malayalam: {{ sentence_urd }} ||| {{ sentence_mal
-      }}'
+    id: 338e57bd-8f38-4bf6-81fe-6fce4ce73205
+    jinja: 'Telugu: {{ sentence_tel }} = Wolof: ||| {{ sentence_wol }}'
     metadata: *id001
-    name: translate-this-urd-mal
-    reference: Translate this from X to Y (Urdu into Malayalam)
-  332eba4f-7450-4ef8-8043-55d2760d3438: !Template
+    name: flores-xglm-Telugu-Wolof
+    reference: 'L1: [sent1] = L2: [sent2]'
+  33a455ea-fc36-44f4-9883-10caa2d65447: !Template
     answer_choices: null
-    id: 332eba4f-7450-4ef8-8043-55d2760d3438
-    jinja: 'Translate this from Northern Sotho into Kannada: {{ sentence_nso }} |||
-      {{ sentence_kan }}'
+    id: 33a455ea-fc36-44f4-9883-10caa2d65447
+    jinja: 'Catalan: {{ sentence_cat }} = Gujarati: ||| {{ sentence_guj }}'
     metadata: *id001
-    name: translate-this-nso-kan
-    reference: Translate this from X to Y (Northern Sotho into Kannada)
-  334268dd-3037-4e7c-900e-95d1f9933672: !Template
+    name: flores-xglm-Catalan-Gujarati
+    reference: 'L1: [sent1] = L2: [sent2]'
+  3457c11a-7c76-49c5-8cb8-10805102e80e: !Template
     answer_choices: null
-    id: 334268dd-3037-4e7c-900e-95d1f9933672
-    jinja: 'Translate this from French into simplified Chinese: {{ sentence_fra }}
-      ||| {{ sentence_zho_simpl }}'
+    id: 3457c11a-7c76-49c5-8cb8-10805102e80e
+    jinja: 'English: {{ sentence_eng }} = Catalan: ||| {{ sentence_cat }}'
     metadata: *id001
-    name: translate-this-fra-zho_simpl
-    reference: Translate this from X to Y (French into simplified Chinese)
-  335738fd-bae8-42ca-b8e8-42c6d4c67486: !Template
+    name: flores-xglm-English-Catalan
+    reference: 'L1: [sent1] = L2: [sent2]'
+  346e53d8-7f02-4e3c-a846-6eefc4916cde: !Template
     answer_choices: null
-    id: 335738fd-bae8-42ca-b8e8-42c6d4c67486
-    jinja: 'Translate this from Punjabi into Swahili: {{ sentence_pan }} ||| {{ sentence_swh
-      }}'
+    id: 346e53d8-7f02-4e3c-a846-6eefc4916cde
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = traditional Chinese: |||
+      {{ sentence_zho_trad }}'
+    metadata: *id001
+    name: flores-xglm-Latin American Spanish-traditional Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  34d56504-c288-4401-b475-0a1d88b33e41: !Template
+    answer_choices: null
+    id: 34d56504-c288-4401-b475-0a1d88b33e41
+    jinja: 'English: {{ sentence_eng }} = Xhosa: ||| {{ sentence_xho }}'
     metadata: *id001
-    name: translate-this-pan-swh
-    reference: Translate this from X to Y (Punjabi into Swahili)
-  340c0617-1eb6-4271-abb1-4951e2d788b5: !Template
+    name: flores-xglm-English-Xhosa
+    reference: 'L1: [sent1] = L2: [sent2]'
+  356ae8e2-70d8-4f97-b5c1-593e817f2d54: !Template
     answer_choices: null
-    id: 340c0617-1eb6-4271-abb1-4951e2d788b5
-    jinja: 'Translate this from Marathi into Malayalam: {{ sentence_mar }} ||| {{
-      sentence_mal }}'
+    id: 356ae8e2-70d8-4f97-b5c1-593e817f2d54
+    jinja: 'French: {{ sentence_fra }} = Hindi: ||| {{ sentence_hin }}'
     metadata: *id001
-    name: translate-this-mar-mal
-    reference: Translate this from X to Y (Marathi into Malayalam)
-  34245bfa-a59a-4fd6-ba51-5d75b699dbe8: !Template
+    name: flores-xglm-French-Hindi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  35820e34-11d0-4347-82d9-80dd6dc138e1: !Template
     answer_choices: null
-    id: 34245bfa-a59a-4fd6-ba51-5d75b699dbe8
-    jinja: 'Translate this from Oriya into English: {{ sentence_ory }} ||| {{ sentence_eng
+    id: 35820e34-11d0-4347-82d9-80dd6dc138e1
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Catalan: ||| {{ sentence_cat
       }}'
     metadata: *id001
-    name: translate-this-ory-eng
-    reference: Translate this from X to Y (Oriya into English)
-  342b2e83-a2ce-48bb-af68-07c27f45df0d: !Template
+    name: flores-xglm-simplified Chinese-Catalan
+    reference: 'L1: [sent1] = L2: [sent2]'
+  35dd4581-17ce-437b-b076-9e8ca69359d9: !Template
     answer_choices: null
-    id: 342b2e83-a2ce-48bb-af68-07c27f45df0d
-    jinja: 'Translate this from Zulu into Nepali: {{ sentence_zul }} ||| {{ sentence_npi
+    id: 35dd4581-17ce-437b-b076-9e8ca69359d9
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Nepali: ||| {{ sentence_npi
       }}'
     metadata: *id001
-    name: translate-this-zul-npi
-    reference: Translate this from X to Y (Zulu into Nepali)
-  343af426-cf35-4573-af03-5b511214c228: !Template
+    name: flores-xglm-traditional Chinese-Nepali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  360b876d-e991-46ff-8c31-4f380f824f53: !Template
     answer_choices: null
-    id: 343af426-cf35-4573-af03-5b511214c228
-    jinja: 'Translate this from Catalan into Marathi: {{ sentence_cat }} ||| {{ sentence_mar
+    id: 360b876d-e991-46ff-8c31-4f380f824f53
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Oriya: ||| {{ sentence_ory
       }}'
     metadata: *id001
-    name: translate-this-cat-mar
-    reference: Translate this from X to Y (Catalan into Marathi)
-  34484e56-eb9b-40c4-905e-81502e3f572f: !Template
+    name: flores-xglm-Brazilian Portuguese-Oriya
+    reference: 'L1: [sent1] = L2: [sent2]'
+  3667ceb8-8c95-4fb1-b2c5-24ef3977838f: !Template
     answer_choices: null
-    id: 34484e56-eb9b-40c4-905e-81502e3f572f
-    jinja: 'Translate this from Malayalam into Latin American Spanish: {{ sentence_mal
-      }} ||| {{ sentence_spa }}'
+    id: 3667ceb8-8c95-4fb1-b2c5-24ef3977838f
+    jinja: 'Yoruba: {{ sentence_yor }} = Hindi: ||| {{ sentence_hin }}'
     metadata: *id001
-    name: translate-this-mal-spa
-    reference: Translate this from X to Y (Malayalam into Latin American Spanish)
-  345ca784-292c-46b2-b7d0-630dd811a2bd: !Template
+    name: flores-xglm-Yoruba-Hindi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  36b30aa5-a949-41e8-93ef-11ad05571e71: !Template
     answer_choices: null
-    id: 345ca784-292c-46b2-b7d0-630dd811a2bd
-    jinja: 'Translate this from Vietnamese into Arabic: {{ sentence_vie }} ||| {{
-      sentence_ara }}'
+    id: 36b30aa5-a949-41e8-93ef-11ad05571e71
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = Kannada: ||| {{ sentence_kan
+      }}'
     metadata: *id001
-    name: translate-this-vie-ara
-    reference: Translate this from X to Y (Vietnamese into Arabic)
-  3488421b-64b2-4cb6-91b5-a87ff94c5fca: !Template
+    name: flores-xglm-Latin American Spanish-Kannada
+    reference: 'L1: [sent1] = L2: [sent2]'
+  36e583d2-cfed-4830-9e31-3779f9e57817: !Template
     answer_choices: null
-    id: 3488421b-64b2-4cb6-91b5-a87ff94c5fca
-    jinja: 'Translate this from Lingala into Igbo: {{ sentence_lin }} ||| {{ sentence_ibo
+    id: 36e583d2-cfed-4830-9e31-3779f9e57817
+    jinja: 'English: {{ sentence_eng }} = Latin American Spanish: ||| {{ sentence_spa
       }}'
     metadata: *id001
-    name: translate-this-lin-ibo
-    reference: Translate this from X to Y (Lingala into Igbo)
-  34f82676-2894-46aa-9573-a6f72151ade5: !Template
+    name: flores-xglm-English-Latin American Spanish
+    reference: 'L1: [sent1] = L2: [sent2]'
+  375d2ef4-5151-4749-821f-0c19c89db84e: !Template
     answer_choices: null
-    id: 34f82676-2894-46aa-9573-a6f72151ade5
-    jinja: 'Translate this from Vietnamese into Brazilian Portuguese: {{ sentence_vie
-      }} ||| {{ sentence_por }}'
+    id: 375d2ef4-5151-4749-821f-0c19c89db84e
+    jinja: 'Swahili: {{ sentence_swh }} = Northern Sotho: ||| {{ sentence_nso }}'
     metadata: *id001
-    name: translate-this-vie-por
-    reference: Translate this from X to Y (Vietnamese into Brazilian Portuguese)
-  35450008-fbcd-42b7-b29d-da2db101a989: !Template
+    name: flores-xglm-Swahili-Northern Sotho
+    reference: 'L1: [sent1] = L2: [sent2]'
+  37a43357-c92a-4cd8-b3bd-3ea4bb39a407: !Template
     answer_choices: null
-    id: 35450008-fbcd-42b7-b29d-da2db101a989
-    jinja: 'Translate this from Nepali into Gujarati: {{ sentence_npi }} ||| {{ sentence_guj
-      }}'
+    id: 37a43357-c92a-4cd8-b3bd-3ea4bb39a407
+    jinja: 'Punjabi: {{ sentence_pan }} = Arabic: ||| {{ sentence_ara }}'
     metadata: *id001
-    name: translate-this-npi-guj
-    reference: Translate this from X to Y (Nepali into Gujarati)
-  354965d8-cb27-4b7f-874f-ccc7c18704d5: !Template
+    name: flores-xglm-Punjabi-Arabic
+    reference: 'L1: [sent1] = L2: [sent2]'
+  37f37716-9ba1-44c3-ab21-c4be0bf0a43f: !Template
     answer_choices: null
-    id: 354965d8-cb27-4b7f-874f-ccc7c18704d5
-    jinja: 'Translate this from Indonesian into Gujarati: {{ sentence_ind }} ||| {{
-      sentence_guj }}'
+    id: 37f37716-9ba1-44c3-ab21-c4be0bf0a43f
+    jinja: 'Swahili: {{ sentence_swh }} = Punjabi: ||| {{ sentence_pan }}'
     metadata: *id001
-    name: translate-this-ind-guj
-    reference: Translate this from X to Y (Indonesian into Gujarati)
-  357d0e4c-d65d-4867-aa06-0459c20cf4d3: !Template
+    name: flores-xglm-Swahili-Punjabi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  384bbfbc-a7c1-422d-9270-9654fd7c6c78: !Template
     answer_choices: null
-    id: 357d0e4c-d65d-4867-aa06-0459c20cf4d3
-    jinja: 'Translate this from simplified Chinese into Igbo: {{ sentence_zho_simpl
-      }} ||| {{ sentence_ibo }}'
+    id: 384bbfbc-a7c1-422d-9270-9654fd7c6c78
+    jinja: 'Wolof: {{ sentence_wol }} = simplified Chinese: ||| {{ sentence_zho_simpl
+      }}'
     metadata: *id001
-    name: translate-this-zho_simpl-ibo
-    reference: Translate this from X to Y (simplified Chinese into Igbo)
-  35f6cf6c-bd5d-411f-ae85-2e37dad81ecf: !Template
+    name: flores-xglm-Wolof-simplified Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  390e13e7-d054-4e9b-b7a0-8e325835f209: !Template
     answer_choices: null
-    id: 35f6cf6c-bd5d-411f-ae85-2e37dad81ecf
-    jinja: 'Translate this from Vietnamese into Northern Sotho: {{ sentence_vie }}
-      ||| {{ sentence_nso }}'
+    id: 390e13e7-d054-4e9b-b7a0-8e325835f209
+    jinja: 'Vietnamese: {{ sentence_vie }} = Catalan: ||| {{ sentence_cat }}'
     metadata: *id001
-    name: translate-this-vie-nso
-    reference: Translate this from X to Y (Vietnamese into Northern Sotho)
-  3653c669-046e-4b85-b1a9-589550efc882: !Template
+    name: flores-xglm-Vietnamese-Catalan
+    reference: 'L1: [sent1] = L2: [sent2]'
+  393f23bb-1c6c-41fa-98cf-0ca71d7a9fcb: !Template
     answer_choices: null
-    id: 3653c669-046e-4b85-b1a9-589550efc882
-    jinja: 'Translate this from Yoruba into Gujarati: {{ sentence_yor }} ||| {{ sentence_guj
-      }}'
+    id: 393f23bb-1c6c-41fa-98cf-0ca71d7a9fcb
+    jinja: 'Hindi: {{ sentence_hin }} = Zulu: ||| {{ sentence_zul }}'
     metadata: *id001
-    name: translate-this-yor-guj
-    reference: Translate this from X to Y (Yoruba into Gujarati)
-  36c19d61-a33f-4ee1-8e02-3d6e44035be0: !Template
+    name: flores-xglm-Hindi-Zulu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  39cc23d6-7e24-4919-a1d2-4b5d61313bf5: !Template
     answer_choices: null
-    id: 36c19d61-a33f-4ee1-8e02-3d6e44035be0
-    jinja: 'Translate this from Igbo into Kannada: {{ sentence_ibo }} ||| {{ sentence_kan
+    id: 39cc23d6-7e24-4919-a1d2-4b5d61313bf5
+    jinja: 'Bengali: {{ sentence_ben }} = Latin American Spanish: ||| {{ sentence_spa
       }}'
     metadata: *id001
-    name: translate-this-ibo-kan
-    reference: Translate this from X to Y (Igbo into Kannada)
-  37374ee3-1885-4621-b013-2cd1e72d82e9: !Template
+    name: flores-xglm-Bengali-Latin American Spanish
+    reference: 'L1: [sent1] = L2: [sent2]'
+  39cff4da-bd7f-4732-92de-d9cf253dbadf: !Template
     answer_choices: null
-    id: 37374ee3-1885-4621-b013-2cd1e72d82e9
-    jinja: 'Translate this from Brazilian Portuguese into Oriya: {{ sentence_por }}
-      ||| {{ sentence_ory }}'
+    id: 39cff4da-bd7f-4732-92de-d9cf253dbadf
+    jinja: 'Malayalam: {{ sentence_mal }} = Arabic: ||| {{ sentence_ara }}'
     metadata: *id001
-    name: translate-this-por-ory
-    reference: Translate this from X to Y (Brazilian Portuguese into Oriya)
-  379d3096-f2fe-449f-b205-363fd989132e: !Template
+    name: flores-xglm-Malayalam-Arabic
+    reference: 'L1: [sent1] = L2: [sent2]'
+  39f74686-bad9-4016-b687-5399f4d327bc: !Template
     answer_choices: null
-    id: 379d3096-f2fe-449f-b205-363fd989132e
-    jinja: 'Translate this from Latin American Spanish into Telugu: {{ sentence_spa
-      }} ||| {{ sentence_tel }}'
+    id: 39f74686-bad9-4016-b687-5399f4d327bc
+    jinja: 'Hindi: {{ sentence_hin }} = Marathi: ||| {{ sentence_mar }}'
     metadata: *id001
-    name: translate-this-spa-tel
-    reference: Translate this from X to Y (Latin American Spanish into Telugu)
-  37b2f096-998e-43b2-bbfb-2172de8133e6: !Template
+    name: flores-xglm-Hindi-Marathi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  3a0793a0-edd9-4c67-88f7-9671ac68ccd0: !Template
     answer_choices: null
-    id: 37b2f096-998e-43b2-bbfb-2172de8133e6
-    jinja: 'Translate this from traditional Chinese into Vietnamese: {{ sentence_zho_trad
-      }} ||| {{ sentence_vie }}'
+    id: 3a0793a0-edd9-4c67-88f7-9671ac68ccd0
+    jinja: 'Kannada: {{ sentence_kan }} = Northern Sotho: ||| {{ sentence_nso }}'
     metadata: *id001
-    name: translate-this-zho_trad-vie
-    reference: Translate this from X to Y (traditional Chinese into Vietnamese)
-  37b81518-04b5-4042-8694-3bef0799a56d: !Template
+    name: flores-xglm-Kannada-Northern Sotho
+    reference: 'L1: [sent1] = L2: [sent2]'
+  3ad26239-3d8d-4ba8-9014-0acd1851d8c2: !Template
     answer_choices: null
-    id: 37b81518-04b5-4042-8694-3bef0799a56d
-    jinja: 'Translate this from Catalan into French: {{ sentence_cat }} ||| {{ sentence_fra
-      }}'
+    id: 3ad26239-3d8d-4ba8-9014-0acd1851d8c2
+    jinja: 'French: {{ sentence_fra }} = Urdu: ||| {{ sentence_urd }}'
     metadata: *id001
-    name: translate-this-cat-fra
-    reference: Translate this from X to Y (Catalan into French)
-  381faccd-e25c-4417-a3ab-b6b200478f6a: !Template
+    name: flores-xglm-French-Urdu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  3b250452-fd48-4409-8f04-c79669f2c851: !Template
     answer_choices: null
-    id: 381faccd-e25c-4417-a3ab-b6b200478f6a
-    jinja: 'Translate this from Tamil into Bengali: {{ sentence_tam }} ||| {{ sentence_ben
-      }}'
+    id: 3b250452-fd48-4409-8f04-c79669f2c851
+    jinja: 'Northern Sotho: {{ sentence_nso }} = Igbo: ||| {{ sentence_ibo }}'
     metadata: *id001
-    name: translate-this-tam-ben
-    reference: Translate this from X to Y (Tamil into Bengali)
-  3845a21c-2db9-40b9-903f-878c8e8d9a6c: !Template
+    name: flores-xglm-Northern Sotho-Igbo
+    reference: 'L1: [sent1] = L2: [sent2]'
+  3c0a688b-9d98-4cee-8c0f-66062c59d1c5: !Template
     answer_choices: null
-    id: 3845a21c-2db9-40b9-903f-878c8e8d9a6c
-    jinja: 'Translate this from Vietnamese into Malayalam: {{ sentence_vie }} |||
-      {{ sentence_mal }}'
+    id: 3c0a688b-9d98-4cee-8c0f-66062c59d1c5
+    jinja: 'French: {{ sentence_fra }} = Malayalam: ||| {{ sentence_mal }}'
     metadata: *id001
-    name: translate-this-vie-mal
-    reference: Translate this from X to Y (Vietnamese into Malayalam)
-  38a522d9-2059-48e8-bcb3-e32cebb59e65: !Template
+    name: flores-xglm-French-Malayalam
+    reference: 'L1: [sent1] = L2: [sent2]'
+  3c43e131-8c92-4ba7-8991-a5b3b2dddf96: !Template
     answer_choices: null
-    id: 38a522d9-2059-48e8-bcb3-e32cebb59e65
-    jinja: 'Translate this from Xhosa into Yoruba: {{ sentence_xho }} ||| {{ sentence_yor
-      }}'
+    id: 3c43e131-8c92-4ba7-8991-a5b3b2dddf96
+    jinja: 'French: {{ sentence_fra }} = Nepali: ||| {{ sentence_npi }}'
     metadata: *id001
-    name: translate-this-xho-yor
-    reference: Translate this from X to Y (Xhosa into Yoruba)
-  38b7ba72-c011-456c-ae6f-f43b0d79354b: !Template
+    name: flores-xglm-French-Nepali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  3d2ab771-57ae-4b1e-897f-b06136b57f9c: !Template
     answer_choices: null
-    id: 38b7ba72-c011-456c-ae6f-f43b0d79354b
-    jinja: 'Translate this from simplified Chinese into traditional Chinese: {{ sentence_zho_simpl
-      }} ||| {{ sentence_zho_trad }}'
+    id: 3d2ab771-57ae-4b1e-897f-b06136b57f9c
+    jinja: 'Zulu: {{ sentence_zul }} = Brazilian Portuguese: ||| {{ sentence_por }}'
     metadata: *id001
-    name: translate-this-zho_simpl-zho_trad
-    reference: Translate this from X to Y (simplified Chinese into traditional Chinese)
-  38b7cbac-4a2a-423f-a069-8be28c2f854d: !Template
+    name: flores-xglm-Zulu-Brazilian Portuguese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  3d4e2c53-fb9e-4998-9ca9-46a5b463a253: !Template
     answer_choices: null
-    id: 38b7cbac-4a2a-423f-a069-8be28c2f854d
-    jinja: 'Translate this from Catalan into Latin American Spanish: {{ sentence_cat
-      }} ||| {{ sentence_spa }}'
+    id: 3d4e2c53-fb9e-4998-9ca9-46a5b463a253
+    jinja: 'Hindi: {{ sentence_hin }} = Telugu: ||| {{ sentence_tel }}'
     metadata: *id001
-    name: translate-this-cat-spa
-    reference: Translate this from X to Y (Catalan into Latin American Spanish)
-  38bee26a-2696-4fa6-baf6-66a94e5c8c1f: !Template
+    name: flores-xglm-Hindi-Telugu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  3d9f9bb7-f5a3-44c8-8757-a91e23cc4c0e: !Template
     answer_choices: null
-    id: 38bee26a-2696-4fa6-baf6-66a94e5c8c1f
-    jinja: 'Translate this from Hindi into Swahili: {{ sentence_hin }} ||| {{ sentence_swh
+    id: 3d9f9bb7-f5a3-44c8-8757-a91e23cc4c0e
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Wolof: ||| {{ sentence_wol
       }}'
     metadata: *id001
-    name: translate-this-hin-swh
-    reference: Translate this from X to Y (Hindi into Swahili)
-  38ee45d8-125c-46b6-ac5c-531c769ddb1f: !Template
+    name: flores-xglm-Brazilian Portuguese-Wolof
+    reference: 'L1: [sent1] = L2: [sent2]'
+  3da2d922-b145-47b1-b940-c87cfbbf55c2: !Template
+    answer_choices: null
+    id: 3da2d922-b145-47b1-b940-c87cfbbf55c2
+    jinja: 'Nepali: {{ sentence_npi }} = French: ||| {{ sentence_fra }}'
+    metadata: *id001
+    name: flores-xglm-Nepali-French
+    reference: 'L1: [sent1] = L2: [sent2]'
+  3dbcb38a-3a1b-4437-b657-0445d8ce9763: !Template
     answer_choices: null
-    id: 38ee45d8-125c-46b6-ac5c-531c769ddb1f
-    jinja: 'Translate this from Igbo into Assamese: {{ sentence_ibo }} ||| {{ sentence_asm
+    id: 3dbcb38a-3a1b-4437-b657-0445d8ce9763
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Catalan: ||| {{ sentence_cat
       }}'
     metadata: *id001
-    name: translate-this-ibo-asm
-    reference: Translate this from X to Y (Igbo into Assamese)
-  39963263-7b8d-47b9-ba6b-9896a900010a: !Template
+    name: flores-xglm-Brazilian Portuguese-Catalan
+    reference: 'L1: [sent1] = L2: [sent2]'
+  3dd2c852-eace-4f00-996e-9f865f97f8bc: !Template
     answer_choices: null
-    id: 39963263-7b8d-47b9-ba6b-9896a900010a
-    jinja: 'Translate this from Zulu into simplified Chinese: {{ sentence_zul }} |||
-      {{ sentence_zho_simpl }}'
+    id: 3dd2c852-eace-4f00-996e-9f865f97f8bc
+    jinja: 'French: {{ sentence_fra }} = Marathi: ||| {{ sentence_mar }}'
     metadata: *id001
-    name: translate-this-zul-zho_simpl
-    reference: Translate this from X to Y (Zulu into simplified Chinese)
-  39d3a733-a5d1-436f-b84e-469c10653413: !Template
+    name: flores-xglm-French-Marathi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  3e473838-5726-4619-913d-ca7621fe5d4b: !Template
     answer_choices: null
-    id: 39d3a733-a5d1-436f-b84e-469c10653413
-    jinja: 'Translate this from Yoruba into Nepali: {{ sentence_yor }} ||| {{ sentence_npi
-      }}'
+    id: 3e473838-5726-4619-913d-ca7621fe5d4b
+    jinja: 'Arabic: {{ sentence_ara }} = Catalan: ||| {{ sentence_cat }}'
     metadata: *id001
-    name: translate-this-yor-npi
-    reference: Translate this from X to Y (Yoruba into Nepali)
-  39db63c0-0592-44fe-bbfe-a265b602bd6c: !Template
+    name: flores-xglm-Arabic-Catalan
+    reference: 'L1: [sent1] = L2: [sent2]'
+  3e579917-cc0f-4b60-b6f9-f049efc65847: !Template
     answer_choices: null
-    id: 39db63c0-0592-44fe-bbfe-a265b602bd6c
-    jinja: 'Translate this from Zulu into French: {{ sentence_zul }} ||| {{ sentence_fra
-      }}'
+    id: 3e579917-cc0f-4b60-b6f9-f049efc65847
+    jinja: 'Hindi: {{ sentence_hin }} = Bengali: ||| {{ sentence_ben }}'
     metadata: *id001
-    name: translate-this-zul-fra
-    reference: Translate this from X to Y (Zulu into French)
-  3a172f2b-74af-4523-ba1e-2124158b725f: !Template
+    name: flores-xglm-Hindi-Bengali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  3ea6cce5-a7e8-42a5-824f-cf068f32efc4: !Template
     answer_choices: null
-    id: 3a172f2b-74af-4523-ba1e-2124158b725f
-    jinja: 'Translate this from Telugu into Hindi: {{ sentence_tel }} ||| {{ sentence_hin
-      }}'
+    id: 3ea6cce5-a7e8-42a5-824f-cf068f32efc4
+    jinja: 'Kannada: {{ sentence_kan }} = Gujarati: ||| {{ sentence_guj }}'
     metadata: *id001
-    name: translate-this-tel-hin
-    reference: Translate this from X to Y (Telugu into Hindi)
-  3a27a4ab-8023-4863-a557-dcf911e653a5: !Template
+    name: flores-xglm-Kannada-Gujarati
+    reference: 'L1: [sent1] = L2: [sent2]'
+  3ec79b2b-cf31-4117-98a6-29e9bb669716: !Template
     answer_choices: null
-    id: 3a27a4ab-8023-4863-a557-dcf911e653a5
-    jinja: 'Translate this from Bengali into English: {{ sentence_ben }} ||| {{ sentence_eng
-      }}'
+    id: 3ec79b2b-cf31-4117-98a6-29e9bb669716
+    jinja: 'Igbo: {{ sentence_ibo }} = Assamese: ||| {{ sentence_asm }}'
     metadata: *id001
-    name: translate-this-ben-eng
-    reference: Translate this from X to Y (Bengali into English)
-  3a9272ed-b11b-4f01-a24e-6cf719e6c312: !Template
+    name: flores-xglm-Igbo-Assamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  3ede8413-b029-4750-b17d-4e674d51f30b: !Template
     answer_choices: null
-    id: 3a9272ed-b11b-4f01-a24e-6cf719e6c312
-    jinja: 'Translate this from Wolof into simplified Chinese: {{ sentence_wol }}
-      ||| {{ sentence_zho_simpl }}'
+    id: 3ede8413-b029-4750-b17d-4e674d51f30b
+    jinja: 'Zulu: {{ sentence_zul }} = Assamese: ||| {{ sentence_asm }}'
     metadata: *id001
-    name: translate-this-wol-zho_simpl
-    reference: Translate this from X to Y (Wolof into simplified Chinese)
-  3a92eb4b-ab1d-4ece-bbca-70e4dbccfed5: !Template
+    name: flores-xglm-Zulu-Assamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  3ee240b2-8c38-45d0-a0db-916d1a196a03: !Template
     answer_choices: null
-    id: 3a92eb4b-ab1d-4ece-bbca-70e4dbccfed5
-    jinja: 'Translate this from Vietnamese into Nepali: {{ sentence_vie }} ||| {{
-      sentence_npi }}'
+    id: 3ee240b2-8c38-45d0-a0db-916d1a196a03
+    jinja: 'Tamil: {{ sentence_tam }} = Bengali: ||| {{ sentence_ben }}'
     metadata: *id001
-    name: translate-this-vie-npi
-    reference: Translate this from X to Y (Vietnamese into Nepali)
-  3b496a5b-678a-4ecc-a5fb-1c01e79413fb: !Template
+    name: flores-xglm-Tamil-Bengali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  3efdee79-7d76-41bd-85b9-e15f2e30db78: !Template
     answer_choices: null
-    id: 3b496a5b-678a-4ecc-a5fb-1c01e79413fb
-    jinja: 'Translate this from Malayalam into Yoruba: {{ sentence_mal }} ||| {{ sentence_yor
+    id: 3efdee79-7d76-41bd-85b9-e15f2e30db78
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Catalan: ||| {{ sentence_cat
       }}'
     metadata: *id001
-    name: translate-this-mal-yor
-    reference: Translate this from X to Y (Malayalam into Yoruba)
-  3c51b4e9-b72d-45c1-adfc-0bb65c20f3d7: !Template
+    name: flores-xglm-traditional Chinese-Catalan
+    reference: 'L1: [sent1] = L2: [sent2]'
+  3f0a813f-ae58-4451-9148-fc1019fbe975: !Template
     answer_choices: null
-    id: 3c51b4e9-b72d-45c1-adfc-0bb65c20f3d7
-    jinja: 'Translate this from Latin American Spanish into Malayalam: {{ sentence_spa
-      }} ||| {{ sentence_mal }}'
+    id: 3f0a813f-ae58-4451-9148-fc1019fbe975
+    jinja: 'Assamese: {{ sentence_asm }} = Gujarati: ||| {{ sentence_guj }}'
     metadata: *id001
-    name: translate-this-spa-mal
-    reference: Translate this from X to Y (Latin American Spanish into Malayalam)
-  3cd20a11-9e88-4fc7-908c-12bb9c39371f: !Template
+    name: flores-xglm-Assamese-Gujarati
+    reference: 'L1: [sent1] = L2: [sent2]'
+  3f701318-3cf7-402f-8e24-6abdc11cab0d: !Template
     answer_choices: null
-    id: 3cd20a11-9e88-4fc7-908c-12bb9c39371f
-    jinja: 'Translate this from Hindi into Brazilian Portuguese: {{ sentence_hin }}
-      ||| {{ sentence_por }}'
+    id: 3f701318-3cf7-402f-8e24-6abdc11cab0d
+    jinja: 'Zulu: {{ sentence_zul }} = Telugu: ||| {{ sentence_tel }}'
     metadata: *id001
-    name: translate-this-hin-por
-    reference: Translate this from X to Y (Hindi into Brazilian Portuguese)
-  3d0bd5a0-6094-4f2b-a7fa-4a279b2432ca: !Template
+    name: flores-xglm-Zulu-Telugu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  3f93d582-6062-4744-adfc-554ef968397f: !Template
     answer_choices: null
-    id: 3d0bd5a0-6094-4f2b-a7fa-4a279b2432ca
-    jinja: 'Translate this from simplified Chinese into Wolof: {{ sentence_zho_simpl
-      }} ||| {{ sentence_wol }}'
+    id: 3f93d582-6062-4744-adfc-554ef968397f
+    jinja: 'Northern Sotho: {{ sentence_nso }} = Marathi: ||| {{ sentence_mar }}'
     metadata: *id001
-    name: translate-this-zho_simpl-wol
-    reference: Translate this from X to Y (simplified Chinese into Wolof)
-  3d33b995-be66-41fc-b3f9-5a779b4b142b: !Template
+    name: flores-xglm-Northern Sotho-Marathi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  3fa7185f-7d9f-4a96-8713-586c3559eab1: !Template
     answer_choices: null
-    id: 3d33b995-be66-41fc-b3f9-5a779b4b142b
-    jinja: 'Translate this from Indonesian into Igbo: {{ sentence_ind }} ||| {{ sentence_ibo
-      }}'
+    id: 3fa7185f-7d9f-4a96-8713-586c3559eab1
+    jinja: 'Yoruba: {{ sentence_yor }} = Zulu: ||| {{ sentence_zul }}'
     metadata: *id001
-    name: translate-this-ind-ibo
-    reference: Translate this from X to Y (Indonesian into Igbo)
-  3dad4846-e466-4d2f-89a8-d7a77f138617: !Template
+    name: flores-xglm-Yoruba-Zulu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  40d68ca1-20a1-4ec1-871c-a0c8954ab9bb: !Template
     answer_choices: null
-    id: 3dad4846-e466-4d2f-89a8-d7a77f138617
-    jinja: 'Translate this from Tamil into Northern Sotho: {{ sentence_tam }} |||
-      {{ sentence_nso }}'
+    id: 40d68ca1-20a1-4ec1-871c-a0c8954ab9bb
+    jinja: 'Indonesian: {{ sentence_ind }} = Tamil: ||| {{ sentence_tam }}'
     metadata: *id001
-    name: translate-this-tam-nso
-    reference: Translate this from X to Y (Tamil into Northern Sotho)
-  3ddd05ca-a388-487f-b1ef-37feffb8c364: !Template
+    name: flores-xglm-Indonesian-Tamil
+    reference: 'L1: [sent1] = L2: [sent2]'
+  41175256-318c-49ad-a27e-55ba43870e30: !Template
     answer_choices: null
-    id: 3ddd05ca-a388-487f-b1ef-37feffb8c364
-    jinja: 'Translate this from Indonesian into Tamil: {{ sentence_ind }} ||| {{ sentence_tam
-      }}'
+    id: 41175256-318c-49ad-a27e-55ba43870e30
+    jinja: 'Gujarati: {{ sentence_guj }} = Punjabi: ||| {{ sentence_pan }}'
     metadata: *id001
-    name: translate-this-ind-tam
-    reference: Translate this from X to Y (Indonesian into Tamil)
-  3e4f51cb-3705-4cb4-a864-566cefd21397: !Template
+    name: flores-xglm-Gujarati-Punjabi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  412862b5-2fa3-4f24-b092-2ba1afc12120: !Template
     answer_choices: null
-    id: 3e4f51cb-3705-4cb4-a864-566cefd21397
-    jinja: 'Translate this from English into Lingala: {{ sentence_eng }} ||| {{ sentence_lin
-      }}'
+    id: 412862b5-2fa3-4f24-b092-2ba1afc12120
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = simplified Chinese: |||
+      {{ sentence_zho_simpl }}'
     metadata: *id001
-    name: translate-this-eng-lin
-    reference: Translate this from X to Y (English into Lingala)
-  3e948529-8793-4846-b57b-8cd66ef29780: !Template
+    name: flores-xglm-traditional Chinese-simplified Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  4168035e-91ee-4900-8558-2964a5405792: !Template
     answer_choices: null
-    id: 3e948529-8793-4846-b57b-8cd66ef29780
-    jinja: 'Translate this from Brazilian Portuguese into Hindi: {{ sentence_por }}
-      ||| {{ sentence_hin }}'
+    id: 4168035e-91ee-4900-8558-2964a5405792
+    jinja: 'Lingala: {{ sentence_lin }} = Tamil: ||| {{ sentence_tam }}'
     metadata: *id001
-    name: translate-this-por-hin
-    reference: Translate this from X to Y (Brazilian Portuguese into Hindi)
-  3e95fc83-b9b6-4198-aa90-67e5f157d365: !Template
+    name: flores-xglm-Lingala-Tamil
+    reference: 'L1: [sent1] = L2: [sent2]'
+  416d0213-56cc-4f32-ac22-d6d2e531a4df: !Template
     answer_choices: null
-    id: 3e95fc83-b9b6-4198-aa90-67e5f157d365
-    jinja: 'Translate this from traditional Chinese into Urdu: {{ sentence_zho_trad
-      }} ||| {{ sentence_urd }}'
+    id: 416d0213-56cc-4f32-ac22-d6d2e531a4df
+    jinja: 'Vietnamese: {{ sentence_vie }} = Zulu: ||| {{ sentence_zul }}'
     metadata: *id001
-    name: translate-this-zho_trad-urd
-    reference: Translate this from X to Y (traditional Chinese into Urdu)
-  3f714327-f6aa-438b-b28e-2da107c89572: !Template
+    name: flores-xglm-Vietnamese-Zulu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  42c019f6-702c-4ae5-942e-4f43bb0ccdd9: !Template
     answer_choices: null
-    id: 3f714327-f6aa-438b-b28e-2da107c89572
-    jinja: 'Translate this from Xhosa into Arabic: {{ sentence_xho }} ||| {{ sentence_ara
+    id: 42c019f6-702c-4ae5-942e-4f43bb0ccdd9
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Swahili: ||| {{ sentence_swh
       }}'
     metadata: *id001
-    name: translate-this-xho-ara
-    reference: Translate this from X to Y (Xhosa into Arabic)
-  3f7fd9f3-6e50-4507-96ad-7a364638bd97: !Template
+    name: flores-xglm-simplified Chinese-Swahili
+    reference: 'L1: [sent1] = L2: [sent2]'
+  43787093-7d57-4bd3-b20d-770fa5a9c38a: !Template
     answer_choices: null
-    id: 3f7fd9f3-6e50-4507-96ad-7a364638bd97
-    jinja: 'Translate this from French into Oriya: {{ sentence_fra }} ||| {{ sentence_ory
-      }}'
+    id: 43787093-7d57-4bd3-b20d-770fa5a9c38a
+    jinja: 'Assamese: {{ sentence_asm }} = Northern Sotho: ||| {{ sentence_nso }}'
     metadata: *id001
-    name: translate-this-fra-ory
-    reference: Translate this from X to Y (French into Oriya)
-  3fee64be-c6fe-4e04-8a71-eeaa3d3c9e83: !Template
+    name: flores-xglm-Assamese-Northern Sotho
+    reference: 'L1: [sent1] = L2: [sent2]'
+  440e99e5-c32e-473e-807a-21b5b45fd206: !Template
     answer_choices: null
-    id: 3fee64be-c6fe-4e04-8a71-eeaa3d3c9e83
-    jinja: 'Translate this from Telugu into Vietnamese: {{ sentence_tel }} ||| {{
-      sentence_vie }}'
+    id: 440e99e5-c32e-473e-807a-21b5b45fd206
+    jinja: 'Marathi: {{ sentence_mar }} = Vietnamese: ||| {{ sentence_vie }}'
     metadata: *id001
-    name: translate-this-tel-vie
-    reference: Translate this from X to Y (Telugu into Vietnamese)
-  3fffeea8-4c30-4bba-b34e-e60817a367a0: !Template
+    name: flores-xglm-Marathi-Vietnamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  448839a2-542d-40ff-978c-223b5cfed8c4: !Template
     answer_choices: null
-    id: 3fffeea8-4c30-4bba-b34e-e60817a367a0
-    jinja: 'Translate this from traditional Chinese into Wolof: {{ sentence_zho_trad
-      }} ||| {{ sentence_wol }}'
+    id: 448839a2-542d-40ff-978c-223b5cfed8c4
+    jinja: 'Tamil: {{ sentence_tam }} = Hindi: ||| {{ sentence_hin }}'
     metadata: *id001
-    name: translate-this-zho_trad-wol
-    reference: Translate this from X to Y (traditional Chinese into Wolof)
-  405156e2-cdff-4a28-8188-92afe053dc3d: !Template
+    name: flores-xglm-Tamil-Hindi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  449bbc82-7628-4263-a66e-40ca45d16b58: !Template
     answer_choices: null
-    id: 405156e2-cdff-4a28-8188-92afe053dc3d
-    jinja: 'Translate this from Igbo into Urdu: {{ sentence_ibo }} ||| {{ sentence_urd
-      }}'
+    id: 449bbc82-7628-4263-a66e-40ca45d16b58
+    jinja: 'Wolof: {{ sentence_wol }} = Gujarati: ||| {{ sentence_guj }}'
     metadata: *id001
-    name: translate-this-ibo-urd
-    reference: Translate this from X to Y (Igbo into Urdu)
-  4079cb9e-f758-46b0-8dcc-24c2b819d796: !Template
+    name: flores-xglm-Wolof-Gujarati
+    reference: 'L1: [sent1] = L2: [sent2]'
+  44cec490-4feb-4215-b2fb-b6168276a2c0: !Template
     answer_choices: null
-    id: 4079cb9e-f758-46b0-8dcc-24c2b819d796
-    jinja: 'Translate this from Brazilian Portuguese into Telugu: {{ sentence_por
-      }} ||| {{ sentence_tel }}'
+    id: 44cec490-4feb-4215-b2fb-b6168276a2c0
+    jinja: 'Oriya: {{ sentence_ory }} = Xhosa: ||| {{ sentence_xho }}'
     metadata: *id001
-    name: translate-this-por-tel
-    reference: Translate this from X to Y (Brazilian Portuguese into Telugu)
-  4092ba77-fa26-417a-8ffa-cb85294e7a98: !Template
+    name: flores-xglm-Oriya-Xhosa
+    reference: 'L1: [sent1] = L2: [sent2]'
+  45a79487-f3b9-4ce0-a8c9-82599c728ce4: !Template
     answer_choices: null
-    id: 4092ba77-fa26-417a-8ffa-cb85294e7a98
-    jinja: 'Translate this from traditional Chinese into Punjabi: {{ sentence_zho_trad
-      }} ||| {{ sentence_pan }}'
+    id: 45a79487-f3b9-4ce0-a8c9-82599c728ce4
+    jinja: 'Catalan: {{ sentence_cat }} = Wolof: ||| {{ sentence_wol }}'
     metadata: *id001
-    name: translate-this-zho_trad-pan
-    reference: Translate this from X to Y (traditional Chinese into Punjabi)
-  4094240e-9e06-4bf3-82b4-391577ff5f4e: !Template
+    name: flores-xglm-Catalan-Wolof
+    reference: 'L1: [sent1] = L2: [sent2]'
+  45acf0b7-3de2-4a70-aee0-d567c12be6e1: !Template
     answer_choices: null
-    id: 4094240e-9e06-4bf3-82b4-391577ff5f4e
-    jinja: 'Translate this from Telugu into Xhosa: {{ sentence_tel }} ||| {{ sentence_xho
-      }}'
+    id: 45acf0b7-3de2-4a70-aee0-d567c12be6e1
+    jinja: 'Lingala: {{ sentence_lin }} = Gujarati: ||| {{ sentence_guj }}'
     metadata: *id001
-    name: translate-this-tel-xho
-    reference: Translate this from X to Y (Telugu into Xhosa)
-  409cf624-9310-4f11-a7ad-0e8fe451fda1: !Template
+    name: flores-xglm-Lingala-Gujarati
+    reference: 'L1: [sent1] = L2: [sent2]'
+  464d3bf3-5198-4103-b00b-de21cbde0e7f: !Template
     answer_choices: null
-    id: 409cf624-9310-4f11-a7ad-0e8fe451fda1
-    jinja: 'Translate this from Xhosa into Nepali: {{ sentence_xho }} ||| {{ sentence_npi
-      }}'
+    id: 464d3bf3-5198-4103-b00b-de21cbde0e7f
+    jinja: 'Punjabi: {{ sentence_pan }} = Kannada: ||| {{ sentence_kan }}'
     metadata: *id001
-    name: translate-this-xho-npi
-    reference: Translate this from X to Y (Xhosa into Nepali)
-  40da17a4-6be7-46e5-a22e-95c695c3f322: !Template
+    name: flores-xglm-Punjabi-Kannada
+    reference: 'L1: [sent1] = L2: [sent2]'
+  47030eed-2096-4e80-b115-ba1c46078316: !Template
     answer_choices: null
-    id: 40da17a4-6be7-46e5-a22e-95c695c3f322
-    jinja: 'Translate this from Swahili into Brazilian Portuguese: {{ sentence_swh
-      }} ||| {{ sentence_por }}'
+    id: 47030eed-2096-4e80-b115-ba1c46078316
+    jinja: 'Arabic: {{ sentence_ara }} = Punjabi: ||| {{ sentence_pan }}'
     metadata: *id001
-    name: translate-this-swh-por
-    reference: Translate this from X to Y (Swahili into Brazilian Portuguese)
-  40eeec9d-7814-4355-8a4f-3b59393edd3a: !Template
+    name: flores-xglm-Arabic-Punjabi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  47212d2d-c2d1-4d3d-9e09-84e57fd61d5d: !Template
     answer_choices: null
-    id: 40eeec9d-7814-4355-8a4f-3b59393edd3a
-    jinja: 'Translate this from Xhosa into Northern Sotho: {{ sentence_xho }} |||
-      {{ sentence_nso }}'
+    id: 47212d2d-c2d1-4d3d-9e09-84e57fd61d5d
+    jinja: 'Punjabi: {{ sentence_pan }} = Swahili: ||| {{ sentence_swh }}'
     metadata: *id001
-    name: translate-this-xho-nso
-    reference: Translate this from X to Y (Xhosa into Northern Sotho)
-  41110ab2-115f-4698-8a5a-b4adba6ab2c0: !Template
+    name: flores-xglm-Punjabi-Swahili
+    reference: 'L1: [sent1] = L2: [sent2]'
+  4723570a-a218-4804-b2f0-eaac01c51138: !Template
     answer_choices: null
-    id: 41110ab2-115f-4698-8a5a-b4adba6ab2c0
-    jinja: 'Translate this from Nepali into English: {{ sentence_npi }} ||| {{ sentence_eng
-      }}'
+    id: 4723570a-a218-4804-b2f0-eaac01c51138
+    jinja: 'Catalan: {{ sentence_cat }} = Hindi: ||| {{ sentence_hin }}'
     metadata: *id001
-    name: translate-this-npi-eng
-    reference: Translate this from X to Y (Nepali into English)
-  413d4501-09f8-4ef0-bf9b-a32cc055673f: !Template
+    name: flores-xglm-Catalan-Hindi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  472f56b2-a34b-4922-89b9-158c63e407a9: !Template
     answer_choices: null
-    id: 413d4501-09f8-4ef0-bf9b-a32cc055673f
-    jinja: 'Translate this from Indonesian into traditional Chinese: {{ sentence_ind
-      }} ||| {{ sentence_zho_trad }}'
+    id: 472f56b2-a34b-4922-89b9-158c63e407a9
+    jinja: 'Lingala: {{ sentence_lin }} = Assamese: ||| {{ sentence_asm }}'
     metadata: *id001
-    name: translate-this-ind-zho_trad
-    reference: Translate this from X to Y (Indonesian into traditional Chinese)
-  42072bc0-8833-4f06-b060-77b6b44a3a7a: !Template
+    name: flores-xglm-Lingala-Assamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  4810d989-c84c-4f55-9015-44d453df32af: !Template
     answer_choices: null
-    id: 42072bc0-8833-4f06-b060-77b6b44a3a7a
-    jinja: 'Translate this from Vietnamese into Catalan: {{ sentence_vie }} ||| {{
-      sentence_cat }}'
+    id: 4810d989-c84c-4f55-9015-44d453df32af
+    jinja: 'Punjabi: {{ sentence_pan }} = Oriya: ||| {{ sentence_ory }}'
     metadata: *id001
-    name: translate-this-vie-cat
-    reference: Translate this from X to Y (Vietnamese into Catalan)
-  424c49ee-a1f7-4fe1-b0fe-a1de8d4f1bc5: !Template
+    name: flores-xglm-Punjabi-Oriya
+    reference: 'L1: [sent1] = L2: [sent2]'
+  487e1dbc-ec7b-468a-ab16-880f0bfe9f07: !Template
     answer_choices: null
-    id: 424c49ee-a1f7-4fe1-b0fe-a1de8d4f1bc5
-    jinja: 'Translate this from Wolof into Xhosa: {{ sentence_wol }} ||| {{ sentence_xho
+    id: 487e1dbc-ec7b-468a-ab16-880f0bfe9f07
+    jinja: 'Hindi: {{ sentence_hin }} = Latin American Spanish: ||| {{ sentence_spa
       }}'
     metadata: *id001
-    name: translate-this-wol-xho
-    reference: Translate this from X to Y (Wolof into Xhosa)
-  42636c57-a285-4c0a-a920-66ae8d200edb: !Template
+    name: flores-xglm-Hindi-Latin American Spanish
+    reference: 'L1: [sent1] = L2: [sent2]'
+  491c9507-45ac-43c0-a81c-d82f8803c98e: !Template
     answer_choices: null
-    id: 42636c57-a285-4c0a-a920-66ae8d200edb
-    jinja: 'Translate this from Oriya into Indonesian: {{ sentence_ory }} ||| {{ sentence_ind
-      }}'
+    id: 491c9507-45ac-43c0-a81c-d82f8803c98e
+    jinja: 'Wolof: {{ sentence_wol }} = Lingala: ||| {{ sentence_lin }}'
     metadata: *id001
-    name: translate-this-ory-ind
-    reference: Translate this from X to Y (Oriya into Indonesian)
-  433175d4-eb1d-40db-bcc0-503959dbca5b: !Template
+    name: flores-xglm-Wolof-Lingala
+    reference: 'L1: [sent1] = L2: [sent2]'
+  492a6ea3-17e6-44b8-9328-a33f06cd6cc4: !Template
     answer_choices: null
-    id: 433175d4-eb1d-40db-bcc0-503959dbca5b
-    jinja: 'Translate this from Igbo into Telugu: {{ sentence_ibo }} ||| {{ sentence_tel
-      }}'
+    id: 492a6ea3-17e6-44b8-9328-a33f06cd6cc4
+    jinja: 'Wolof: {{ sentence_wol }} = Swahili: ||| {{ sentence_swh }}'
     metadata: *id001
-    name: translate-this-ibo-tel
-    reference: Translate this from X to Y (Igbo into Telugu)
-  43364b11-0681-48f5-abca-b678c0a872f5: !Template
+    name: flores-xglm-Wolof-Swahili
+    reference: 'L1: [sent1] = L2: [sent2]'
+  4988a402-dfc7-4c76-8b29-7040f5623888: !Template
     answer_choices: null
-    id: 43364b11-0681-48f5-abca-b678c0a872f5
-    jinja: 'Translate this from Nepali into Punjabi: {{ sentence_npi }} ||| {{ sentence_pan
-      }}'
+    id: 4988a402-dfc7-4c76-8b29-7040f5623888
+    jinja: 'Northern Sotho: {{ sentence_nso }} = Oriya: ||| {{ sentence_ory }}'
     metadata: *id001
-    name: translate-this-npi-pan
-    reference: Translate this from X to Y (Nepali into Punjabi)
-  4336faf4-7842-43ec-a54c-55df5e803cb0: !Template
+    name: flores-xglm-Northern Sotho-Oriya
+    reference: 'L1: [sent1] = L2: [sent2]'
+  49cf2615-47c6-4476-a18b-2b89ee5b0826: !Template
     answer_choices: null
-    id: 4336faf4-7842-43ec-a54c-55df5e803cb0
-    jinja: 'Translate this from Marathi into Tamil: {{ sentence_mar }} ||| {{ sentence_tam
-      }}'
+    id: 49cf2615-47c6-4476-a18b-2b89ee5b0826
+    jinja: 'Nepali: {{ sentence_npi }} = Northern Sotho: ||| {{ sentence_nso }}'
     metadata: *id001
-    name: translate-this-mar-tam
-    reference: Translate this from X to Y (Marathi into Tamil)
-  433da395-ef72-4bb8-a45a-37bfa0b5289a: !Template
+    name: flores-xglm-Nepali-Northern Sotho
+    reference: 'L1: [sent1] = L2: [sent2]'
+  4aa412df-fd7e-4755-bda3-6e4f1b36d942: !Template
     answer_choices: null
-    id: 433da395-ef72-4bb8-a45a-37bfa0b5289a
-    jinja: 'Translate this from Brazilian Portuguese into Zulu: {{ sentence_por }}
-      ||| {{ sentence_zul }}'
+    id: 4aa412df-fd7e-4755-bda3-6e4f1b36d942
+    jinja: 'Igbo: {{ sentence_ibo }} = Marathi: ||| {{ sentence_mar }}'
     metadata: *id001
-    name: translate-this-por-zul
-    reference: Translate this from X to Y (Brazilian Portuguese into Zulu)
-  43989767-99b9-4009-96b5-a1a001bfdcab: !Template
+    name: flores-xglm-Igbo-Marathi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  4ad8ce2b-015b-43f4-a386-a72c9a073b42: !Template
     answer_choices: null
-    id: 43989767-99b9-4009-96b5-a1a001bfdcab
-    jinja: 'Translate this from English into Urdu: {{ sentence_eng }} ||| {{ sentence_urd
-      }}'
+    id: 4ad8ce2b-015b-43f4-a386-a72c9a073b42
+    jinja: 'English: {{ sentence_eng }} = Yoruba: ||| {{ sentence_yor }}'
     metadata: *id001
-    name: translate-this-eng-urd
-    reference: Translate this from X to Y (English into Urdu)
-  4407e0c3-1b25-47ef-a2d3-55b1f2cc8a8e: !Template
+    name: flores-xglm-English-Yoruba
+    reference: 'L1: [sent1] = L2: [sent2]'
+  4afb2e7a-c1be-4946-8865-57d2b0dcb816: !Template
     answer_choices: null
-    id: 4407e0c3-1b25-47ef-a2d3-55b1f2cc8a8e
-    jinja: 'Translate this from traditional Chinese into Brazilian Portuguese: {{
-      sentence_zho_trad }} ||| {{ sentence_por }}'
+    id: 4afb2e7a-c1be-4946-8865-57d2b0dcb816
+    jinja: 'Urdu: {{ sentence_urd }} = Brazilian Portuguese: ||| {{ sentence_por }}'
     metadata: *id001
-    name: translate-this-zho_trad-por
-    reference: Translate this from X to Y (traditional Chinese into Brazilian Portuguese)
-  441cd9ad-20d1-4569-b809-10cf3af9f35b: !Template
+    name: flores-xglm-Urdu-Brazilian Portuguese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  4b09d39d-aa45-44bb-98df-d5bd692798cf: !Template
     answer_choices: null
-    id: 441cd9ad-20d1-4569-b809-10cf3af9f35b
-    jinja: 'Translate this from Northern Sotho into Assamese: {{ sentence_nso }} |||
-      {{ sentence_asm }}'
+    id: 4b09d39d-aa45-44bb-98df-d5bd692798cf
+    jinja: 'Vietnamese: {{ sentence_vie }} = simplified Chinese: ||| {{ sentence_zho_simpl
+      }}'
     metadata: *id001
-    name: translate-this-nso-asm
-    reference: Translate this from X to Y (Northern Sotho into Assamese)
-  44a5b8ae-29d6-43b8-93bc-79f33b790c76: !Template
+    name: flores-xglm-Vietnamese-simplified Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  4b3fc402-1f3d-4531-9d27-225e7295bf81: !Template
     answer_choices: null
-    id: 44a5b8ae-29d6-43b8-93bc-79f33b790c76
-    jinja: 'Translate this from Gujarati into Yoruba: {{ sentence_guj }} ||| {{ sentence_yor
-      }}'
+    id: 4b3fc402-1f3d-4531-9d27-225e7295bf81
+    jinja: 'Marathi: {{ sentence_mar }} = Arabic: ||| {{ sentence_ara }}'
     metadata: *id001
-    name: translate-this-guj-yor
-    reference: Translate this from X to Y (Gujarati into Yoruba)
-  44e82a53-f453-4dd4-a161-844274b5adb1: !Template
+    name: flores-xglm-Marathi-Arabic
+    reference: 'L1: [sent1] = L2: [sent2]'
+  4b6866f6-07ea-408b-a750-275a86cdd8fb: !Template
     answer_choices: null
-    id: 44e82a53-f453-4dd4-a161-844274b5adb1
-    jinja: 'Translate this from Yoruba into Swahili: {{ sentence_yor }} ||| {{ sentence_swh
-      }}'
+    id: 4b6866f6-07ea-408b-a750-275a86cdd8fb
+    jinja: 'Gujarati: {{ sentence_guj }} = Arabic: ||| {{ sentence_ara }}'
     metadata: *id001
-    name: translate-this-yor-swh
-    reference: Translate this from X to Y (Yoruba into Swahili)
-  4501268f-0be5-4422-9adb-b759568ccaea: !Template
+    name: flores-xglm-Gujarati-Arabic
+    reference: 'L1: [sent1] = L2: [sent2]'
+  4b911bed-9150-4bf8-acc3-4d1cce439665: !Template
     answer_choices: null
-    id: 4501268f-0be5-4422-9adb-b759568ccaea
-    jinja: 'Translate this from Catalan into Malayalam: {{ sentence_cat }} ||| {{
-      sentence_mal }}'
+    id: 4b911bed-9150-4bf8-acc3-4d1cce439665
+    jinja: 'English: {{ sentence_eng }} = Vietnamese: ||| {{ sentence_vie }}'
     metadata: *id001
-    name: translate-this-cat-mal
-    reference: Translate this from X to Y (Catalan into Malayalam)
-  454ee9f8-40b8-4b65-8e30-ce243882b5a8: !Template
+    name: flores-xglm-English-Vietnamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  4be46eec-6f77-49fc-8b6c-f7c3e3573316: !Template
     answer_choices: null
-    id: 454ee9f8-40b8-4b65-8e30-ce243882b5a8
-    jinja: 'Translate this from Assamese into Hindi: {{ sentence_asm }} ||| {{ sentence_hin
-      }}'
+    id: 4be46eec-6f77-49fc-8b6c-f7c3e3573316
+    jinja: 'Arabic: {{ sentence_ara }} = Indonesian: ||| {{ sentence_ind }}'
     metadata: *id001
-    name: translate-this-asm-hin
-    reference: Translate this from X to Y (Assamese into Hindi)
-  45544801-4274-45ca-a0a5-b88638e29353: !Template
+    name: flores-xglm-Arabic-Indonesian
+    reference: 'L1: [sent1] = L2: [sent2]'
+  4bf08d55-2714-4905-8e93-cb3de6ff3fb3: !Template
     answer_choices: null
-    id: 45544801-4274-45ca-a0a5-b88638e29353
-    jinja: 'Translate this from Catalan into Igbo: {{ sentence_cat }} ||| {{ sentence_ibo
+    id: 4bf08d55-2714-4905-8e93-cb3de6ff3fb3
+    jinja: 'Punjabi: {{ sentence_pan }} = Latin American Spanish: ||| {{ sentence_spa
       }}'
     metadata: *id001
-    name: translate-this-cat-ibo
-    reference: Translate this from X to Y (Catalan into Igbo)
-  4566d14f-30f6-410e-ba5c-89b36854db06: !Template
+    name: flores-xglm-Punjabi-Latin American Spanish
+    reference: 'L1: [sent1] = L2: [sent2]'
+  4c909817-eb62-4af5-99b6-2c6ed690794c: !Template
     answer_choices: null
-    id: 4566d14f-30f6-410e-ba5c-89b36854db06
-    jinja: 'Translate this from Telugu into Assamese: {{ sentence_tel }} ||| {{ sentence_asm
-      }}'
+    id: 4c909817-eb62-4af5-99b6-2c6ed690794c
+    jinja: 'Zulu: {{ sentence_zul }} = French: ||| {{ sentence_fra }}'
     metadata: *id001
-    name: translate-this-tel-asm
-    reference: Translate this from X to Y (Telugu into Assamese)
-  456facbe-e4a0-4794-b7b2-ef30fcdbac19: !Template
+    name: flores-xglm-Zulu-French
+    reference: 'L1: [sent1] = L2: [sent2]'
+  4ccd5c28-63d5-4ca5-ab04-34a2c41a238e: !Template
     answer_choices: null
-    id: 456facbe-e4a0-4794-b7b2-ef30fcdbac19
-    jinja: 'Translate this from Hindi into Northern Sotho: {{ sentence_hin }} |||
-      {{ sentence_nso }}'
+    id: 4ccd5c28-63d5-4ca5-ab04-34a2c41a238e
+    jinja: 'Xhosa: {{ sentence_xho }} = Catalan: ||| {{ sentence_cat }}'
     metadata: *id001
-    name: translate-this-hin-nso
-    reference: Translate this from X to Y (Hindi into Northern Sotho)
-  4582d845-8652-4f4b-a2bc-e06325767bcc: !Template
+    name: flores-xglm-Xhosa-Catalan
+    reference: 'L1: [sent1] = L2: [sent2]'
+  4cd18694-3673-4af8-862b-62debfafea9c: !Template
     answer_choices: null
-    id: 4582d845-8652-4f4b-a2bc-e06325767bcc
-    jinja: 'Translate this from Igbo into Hindi: {{ sentence_ibo }} ||| {{ sentence_hin
-      }}'
+    id: 4cd18694-3673-4af8-862b-62debfafea9c
+    jinja: 'Oriya: {{ sentence_ory }} = Igbo: ||| {{ sentence_ibo }}'
     metadata: *id001
-    name: translate-this-ibo-hin
-    reference: Translate this from X to Y (Igbo into Hindi)
-  45bfa964-3db6-4337-aee1-a2c85d6fbcca: !Template
+    name: flores-xglm-Oriya-Igbo
+    reference: 'L1: [sent1] = L2: [sent2]'
+  4cf38de6-3053-4337-bdb5-aa5ee01471ab: !Template
     answer_choices: null
-    id: 45bfa964-3db6-4337-aee1-a2c85d6fbcca
-    jinja: 'Translate this from Xhosa into Igbo: {{ sentence_xho }} ||| {{ sentence_ibo
-      }}'
+    id: 4cf38de6-3053-4337-bdb5-aa5ee01471ab
+    jinja: 'Xhosa: {{ sentence_xho }} = Malayalam: ||| {{ sentence_mal }}'
     metadata: *id001
-    name: translate-this-xho-ibo
-    reference: Translate this from X to Y (Xhosa into Igbo)
-  4664b40e-4d0a-4d9e-b5f3-76e685102e2b: !Template
+    name: flores-xglm-Xhosa-Malayalam
+    reference: 'L1: [sent1] = L2: [sent2]'
+  4d201752-0444-4630-a378-a9942f947a55: !Template
     answer_choices: null
-    id: 4664b40e-4d0a-4d9e-b5f3-76e685102e2b
-    jinja: 'Translate this from Yoruba into Oriya: {{ sentence_yor }} ||| {{ sentence_ory
-      }}'
+    id: 4d201752-0444-4630-a378-a9942f947a55
+    jinja: 'Nepali: {{ sentence_npi }} = Catalan: ||| {{ sentence_cat }}'
     metadata: *id001
-    name: translate-this-yor-ory
-    reference: Translate this from X to Y (Yoruba into Oriya)
-  46717134-5f6a-49e7-9bc2-521e3cf4e166: !Template
+    name: flores-xglm-Nepali-Catalan
+    reference: 'L1: [sent1] = L2: [sent2]'
+  4d77e174-294d-4608-baf9-80c07233e892: !Template
     answer_choices: null
-    id: 46717134-5f6a-49e7-9bc2-521e3cf4e166
-    jinja: 'Translate this from Assamese into Vietnamese: {{ sentence_asm }} ||| {{
-      sentence_vie }}'
+    id: 4d77e174-294d-4608-baf9-80c07233e892
+    jinja: 'Arabic: {{ sentence_ara }} = Xhosa: ||| {{ sentence_xho }}'
     metadata: *id001
-    name: translate-this-asm-vie
-    reference: Translate this from X to Y (Assamese into Vietnamese)
-  470ee47b-e7e3-4f17-b43d-5bb80cf89918: !Template
+    name: flores-xglm-Arabic-Xhosa
+    reference: 'L1: [sent1] = L2: [sent2]'
+  4da92f9d-4e28-456b-b0f2-a9f9cf08ec9b: !Template
     answer_choices: null
-    id: 470ee47b-e7e3-4f17-b43d-5bb80cf89918
-    jinja: 'Translate this from Xhosa into Kannada: {{ sentence_xho }} ||| {{ sentence_kan
+    id: 4da92f9d-4e28-456b-b0f2-a9f9cf08ec9b
+    jinja: 'Bengali: {{ sentence_ben }} = simplified Chinese: ||| {{ sentence_zho_simpl
       }}'
     metadata: *id001
-    name: translate-this-xho-kan
-    reference: Translate this from X to Y (Xhosa into Kannada)
-  473e84f3-4e5d-43cd-b515-6431236c43ea: !Template
+    name: flores-xglm-Bengali-simplified Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  4db9a3c6-d0d4-4172-bfc5-ad9cc7fbff82: !Template
     answer_choices: null
-    id: 473e84f3-4e5d-43cd-b515-6431236c43ea
-    jinja: 'Translate this from Latin American Spanish into Marathi: {{ sentence_spa
-      }} ||| {{ sentence_mar }}'
+    id: 4db9a3c6-d0d4-4172-bfc5-ad9cc7fbff82
+    jinja: 'Zulu: {{ sentence_zul }} = Swahili: ||| {{ sentence_swh }}'
     metadata: *id001
-    name: translate-this-spa-mar
-    reference: Translate this from X to Y (Latin American Spanish into Marathi)
-  4780b0c1-1253-4950-b371-972bd9ddfe7b: !Template
+    name: flores-xglm-Zulu-Swahili
+    reference: 'L1: [sent1] = L2: [sent2]'
+  4e1574e6-77f7-4352-8a8c-2f49838d350c: !Template
     answer_choices: null
-    id: 4780b0c1-1253-4950-b371-972bd9ddfe7b
-    jinja: 'Translate this from Urdu into Northern Sotho: {{ sentence_urd }} ||| {{
-      sentence_nso }}'
+    id: 4e1574e6-77f7-4352-8a8c-2f49838d350c
+    jinja: 'Malayalam: {{ sentence_mal }} = English: ||| {{ sentence_eng }}'
     metadata: *id001
-    name: translate-this-urd-nso
-    reference: Translate this from X to Y (Urdu into Northern Sotho)
-  47bdfc83-7b72-4db8-aedc-f3966401d6cf: !Template
+    name: flores-xglm-Malayalam-English
+    reference: 'L1: [sent1] = L2: [sent2]'
+  4e3af4c4-c9ad-4a94-a28f-ddc031dedf4e: !Template
     answer_choices: null
-    id: 47bdfc83-7b72-4db8-aedc-f3966401d6cf
-    jinja: 'Translate this from Kannada into Urdu: {{ sentence_kan }} ||| {{ sentence_urd
-      }}'
+    id: 4e3af4c4-c9ad-4a94-a28f-ddc031dedf4e
+    jinja: 'Punjabi: {{ sentence_pan }} = Marathi: ||| {{ sentence_mar }}'
     metadata: *id001
-    name: translate-this-kan-urd
-    reference: Translate this from X to Y (Kannada into Urdu)
-  47c1a97e-69a3-4192-bc57-87aff1d20524: !Template
+    name: flores-xglm-Punjabi-Marathi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  4e7427d4-2aea-4d3d-8a11-eecc7e54f6b0: !Template
     answer_choices: null
-    id: 47c1a97e-69a3-4192-bc57-87aff1d20524
-    jinja: 'Translate this from French into Northern Sotho: {{ sentence_fra }} |||
-      {{ sentence_nso }}'
+    id: 4e7427d4-2aea-4d3d-8a11-eecc7e54f6b0
+    jinja: 'Indonesian: {{ sentence_ind }} = Bengali: ||| {{ sentence_ben }}'
     metadata: *id001
-    name: translate-this-fra-nso
-    reference: Translate this from X to Y (French into Northern Sotho)
-  47c9d96a-de7e-4fca-a7d8-ae205f903030: !Template
+    name: flores-xglm-Indonesian-Bengali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  4ef22622-6abc-40a0-9219-d472d38d252a: !Template
     answer_choices: null
-    id: 47c9d96a-de7e-4fca-a7d8-ae205f903030
-    jinja: 'Translate this from English into Igbo: {{ sentence_eng }} ||| {{ sentence_ibo
-      }}'
+    id: 4ef22622-6abc-40a0-9219-d472d38d252a
+    jinja: 'Igbo: {{ sentence_ibo }} = Northern Sotho: ||| {{ sentence_nso }}'
     metadata: *id001
-    name: translate-this-eng-ibo
-    reference: Translate this from X to Y (English into Igbo)
-  47f4f93c-2be5-4f3d-a6cc-31687207ae27: !Template
+    name: flores-xglm-Igbo-Northern Sotho
+    reference: 'L1: [sent1] = L2: [sent2]'
+  4f4cedfd-ca87-4384-bd01-347c9d508fed: !Template
     answer_choices: null
-    id: 47f4f93c-2be5-4f3d-a6cc-31687207ae27
-    jinja: 'Translate this from Indonesian into Northern Sotho: {{ sentence_ind }}
-      ||| {{ sentence_nso }}'
+    id: 4f4cedfd-ca87-4384-bd01-347c9d508fed
+    jinja: 'Catalan: {{ sentence_cat }} = Lingala: ||| {{ sentence_lin }}'
     metadata: *id001
-    name: translate-this-ind-nso
-    reference: Translate this from X to Y (Indonesian into Northern Sotho)
-  482f0b3f-befa-43ca-b7a3-4b91653dab2d: !Template
+    name: flores-xglm-Catalan-Lingala
+    reference: 'L1: [sent1] = L2: [sent2]'
+  4fd94fd4-2c3b-44cd-915e-43d0fef4f505: !Template
     answer_choices: null
-    id: 482f0b3f-befa-43ca-b7a3-4b91653dab2d
-    jinja: 'Translate this from Bengali into Vietnamese: {{ sentence_ben }} ||| {{
-      sentence_vie }}'
+    id: 4fd94fd4-2c3b-44cd-915e-43d0fef4f505
+    jinja: 'Nepali: {{ sentence_npi }} = Bengali: ||| {{ sentence_ben }}'
     metadata: *id001
-    name: translate-this-ben-vie
-    reference: Translate this from X to Y (Bengali into Vietnamese)
-  4844c2bf-b6fe-4bd9-92a5-19eea7d722a4: !Template
+    name: flores-xglm-Nepali-Bengali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  50158c3a-d117-45df-af07-a15b32372442: !Template
     answer_choices: null
-    id: 4844c2bf-b6fe-4bd9-92a5-19eea7d722a4
-    jinja: 'Translate this from traditional Chinese into Catalan: {{ sentence_zho_trad
-      }} ||| {{ sentence_cat }}'
+    id: 50158c3a-d117-45df-af07-a15b32372442
+    jinja: 'Telugu: {{ sentence_tel }} = Northern Sotho: ||| {{ sentence_nso }}'
     metadata: *id001
-    name: translate-this-zho_trad-cat
-    reference: Translate this from X to Y (traditional Chinese into Catalan)
-  484b8f01-7dc2-46b4-9e3d-6b49e23b8568: !Template
+    name: flores-xglm-Telugu-Northern Sotho
+    reference: 'L1: [sent1] = L2: [sent2]'
+  50182ff8-d1ae-4a05-80ad-c144da80f206: !Template
     answer_choices: null
-    id: 484b8f01-7dc2-46b4-9e3d-6b49e23b8568
-    jinja: 'Translate this from Gujarati into simplified Chinese: {{ sentence_guj
-      }} ||| {{ sentence_zho_simpl }}'
+    id: 50182ff8-d1ae-4a05-80ad-c144da80f206
+    jinja: 'Catalan: {{ sentence_cat }} = Zulu: ||| {{ sentence_zul }}'
     metadata: *id001
-    name: translate-this-guj-zho_simpl
-    reference: Translate this from X to Y (Gujarati into simplified Chinese)
-  48f0072f-a620-4255-8c83-e444d4a8a561: !Template
+    name: flores-xglm-Catalan-Zulu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  5031d876-d89d-45e0-bb57-d74c2478b529: !Template
     answer_choices: null
-    id: 48f0072f-a620-4255-8c83-e444d4a8a561
-    jinja: 'Translate this from Catalan into simplified Chinese: {{ sentence_cat }}
-      ||| {{ sentence_zho_simpl }}'
+    id: 5031d876-d89d-45e0-bb57-d74c2478b529
+    jinja: 'Northern Sotho: {{ sentence_nso }} = Tamil: ||| {{ sentence_tam }}'
     metadata: *id001
-    name: translate-this-cat-zho_simpl
-    reference: Translate this from X to Y (Catalan into simplified Chinese)
-  49cf5a82-8878-4e0c-87a5-b6e5c5b8b5c9: !Template
+    name: flores-xglm-Northern Sotho-Tamil
+    reference: 'L1: [sent1] = L2: [sent2]'
+  5036fc3a-4930-4d54-b82d-fc3810c04fb9: !Template
     answer_choices: null
-    id: 49cf5a82-8878-4e0c-87a5-b6e5c5b8b5c9
-    jinja: 'Translate this from Tamil into Catalan: {{ sentence_tam }} ||| {{ sentence_cat
-      }}'
+    id: 5036fc3a-4930-4d54-b82d-fc3810c04fb9
+    jinja: 'Arabic: {{ sentence_ara }} = Zulu: ||| {{ sentence_zul }}'
     metadata: *id001
-    name: translate-this-tam-cat
-    reference: Translate this from X to Y (Tamil into Catalan)
-  4a1e916d-3518-44e0-bf6a-53411c1c119d: !Template
+    name: flores-xglm-Arabic-Zulu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  5091db17-4e3f-42f6-aaa5-d712b7b5f592: !Template
     answer_choices: null
-    id: 4a1e916d-3518-44e0-bf6a-53411c1c119d
-    jinja: 'Translate this from Igbo into Xhosa: {{ sentence_ibo }} ||| {{ sentence_xho
-      }}'
+    id: 5091db17-4e3f-42f6-aaa5-d712b7b5f592
+    jinja: 'Bengali: {{ sentence_ben }} = Oriya: ||| {{ sentence_ory }}'
     metadata: *id001
-    name: translate-this-ibo-xho
-    reference: Translate this from X to Y (Igbo into Xhosa)
-  4a232eef-4f79-4d33-930c-d230dc86366b: !Template
+    name: flores-xglm-Bengali-Oriya
+    reference: 'L1: [sent1] = L2: [sent2]'
+  5116af34-fcb5-4fe6-bd9b-18983d3fa2d6: !Template
     answer_choices: null
-    id: 4a232eef-4f79-4d33-930c-d230dc86366b
-    jinja: 'Translate this from Yoruba into simplified Chinese: {{ sentence_yor }}
-      ||| {{ sentence_zho_simpl }}'
+    id: 5116af34-fcb5-4fe6-bd9b-18983d3fa2d6
+    jinja: 'Wolof: {{ sentence_wol }} = French: ||| {{ sentence_fra }}'
     metadata: *id001
-    name: translate-this-yor-zho_simpl
-    reference: Translate this from X to Y (Yoruba into simplified Chinese)
-  4aaf80a3-aec2-4f98-a7f3-00df5b5ed719: !Template
+    name: flores-xglm-Wolof-French
+    reference: 'L1: [sent1] = L2: [sent2]'
+  51378729-8eef-428e-b23c-3404dcd6c1cc: !Template
     answer_choices: null
-    id: 4aaf80a3-aec2-4f98-a7f3-00df5b5ed719
-    jinja: 'Translate this from Assamese into Swahili: {{ sentence_asm }} ||| {{ sentence_swh
-      }}'
+    id: 51378729-8eef-428e-b23c-3404dcd6c1cc
+    jinja: 'Wolof: {{ sentence_wol }} = Nepali: ||| {{ sentence_npi }}'
     metadata: *id001
-    name: translate-this-asm-swh
-    reference: Translate this from X to Y (Assamese into Swahili)
-  4b42ac84-4900-494d-b7c2-6e4c80bf8801: !Template
+    name: flores-xglm-Wolof-Nepali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  520e88d2-53c4-40e4-a5de-2d4d048da0bf: !Template
     answer_choices: null
-    id: 4b42ac84-4900-494d-b7c2-6e4c80bf8801
-    jinja: 'Translate this from Marathi into Igbo: {{ sentence_mar }} ||| {{ sentence_ibo
-      }}'
+    id: 520e88d2-53c4-40e4-a5de-2d4d048da0bf
+    jinja: 'Bengali: {{ sentence_ben }} = Arabic: ||| {{ sentence_ara }}'
     metadata: *id001
-    name: translate-this-mar-ibo
-    reference: Translate this from X to Y (Marathi into Igbo)
-  4bb9769e-559c-4df0-b545-79006490b34b: !Template
+    name: flores-xglm-Bengali-Arabic
+    reference: 'L1: [sent1] = L2: [sent2]'
+  5227aaa3-2f20-4ca4-bea6-350f09465f17: !Template
     answer_choices: null
-    id: 4bb9769e-559c-4df0-b545-79006490b34b
-    jinja: 'Translate this from Bengali into Urdu: {{ sentence_ben }} ||| {{ sentence_urd
-      }}'
+    id: 5227aaa3-2f20-4ca4-bea6-350f09465f17
+    jinja: 'Assamese: {{ sentence_asm }} = Urdu: ||| {{ sentence_urd }}'
     metadata: *id001
-    name: translate-this-ben-urd
-    reference: Translate this from X to Y (Bengali into Urdu)
-  4bfb19d8-ac0e-4a5d-aafe-ea0b75f869c5: !Template
+    name: flores-xglm-Assamese-Urdu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  52cc955c-47ca-4104-a6a3-91b0856c3529: !Template
     answer_choices: null
-    id: 4bfb19d8-ac0e-4a5d-aafe-ea0b75f869c5
-    jinja: 'Translate this from Bengali into Brazilian Portuguese: {{ sentence_ben
-      }} ||| {{ sentence_por }}'
+    id: 52cc955c-47ca-4104-a6a3-91b0856c3529
+    jinja: 'Oriya: {{ sentence_ory }} = Punjabi: ||| {{ sentence_pan }}'
     metadata: *id001
-    name: translate-this-ben-por
-    reference: Translate this from X to Y (Bengali into Brazilian Portuguese)
-  4ce9228e-0655-4104-a9b7-ebc65af16380: !Template
+    name: flores-xglm-Oriya-Punjabi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  533867a7-1039-4d2e-9849-810a9aa5a850: !Template
     answer_choices: null
-    id: 4ce9228e-0655-4104-a9b7-ebc65af16380
-    jinja: 'Translate this from Oriya into Hindi: {{ sentence_ory }} ||| {{ sentence_hin
+    id: 533867a7-1039-4d2e-9849-810a9aa5a850
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Bengali: ||| {{ sentence_ben
       }}'
     metadata: *id001
-    name: translate-this-ory-hin
-    reference: Translate this from X to Y (Oriya into Hindi)
-  4cec6ec6-ae77-47cc-977a-a50f04eaf56d: !Template
+    name: flores-xglm-traditional Chinese-Bengali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  53dcf628-7348-45e1-ae23-c3bfbb9584e4: !Template
     answer_choices: null
-    id: 4cec6ec6-ae77-47cc-977a-a50f04eaf56d
-    jinja: 'Translate this from Nepali into simplified Chinese: {{ sentence_npi }}
-      ||| {{ sentence_zho_simpl }}'
+    id: 53dcf628-7348-45e1-ae23-c3bfbb9584e4
+    jinja: 'Malayalam: {{ sentence_mal }} = Hindi: ||| {{ sentence_hin }}'
     metadata: *id001
-    name: translate-this-npi-zho_simpl
-    reference: Translate this from X to Y (Nepali into simplified Chinese)
-  4d20162c-e2c2-4538-ba95-68d47647d1ec: !Template
+    name: flores-xglm-Malayalam-Hindi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  54471ecb-d9f5-4c9d-a1c2-4da15b995e8c: !Template
     answer_choices: null
-    id: 4d20162c-e2c2-4538-ba95-68d47647d1ec
-    jinja: 'Translate this from Urdu into Catalan: {{ sentence_urd }} ||| {{ sentence_cat
-      }}'
+    id: 54471ecb-d9f5-4c9d-a1c2-4da15b995e8c
+    jinja: 'Malayalam: {{ sentence_mal }} = French: ||| {{ sentence_fra }}'
     metadata: *id001
-    name: translate-this-urd-cat
-    reference: Translate this from X to Y (Urdu into Catalan)
-  4d6f75fd-88f9-4a3b-a2f2-4b815a23c792: !Template
+    name: flores-xglm-Malayalam-French
+    reference: 'L1: [sent1] = L2: [sent2]'
+  54475366-9e21-40ff-bb0c-456948d93382: !Template
     answer_choices: null
-    id: 4d6f75fd-88f9-4a3b-a2f2-4b815a23c792
-    jinja: 'Translate this from English into Tamil: {{ sentence_eng }} ||| {{ sentence_tam
-      }}'
+    id: 54475366-9e21-40ff-bb0c-456948d93382
+    jinja: 'Lingala: {{ sentence_lin }} = Catalan: ||| {{ sentence_cat }}'
     metadata: *id001
-    name: translate-this-eng-tam
-    reference: Translate this from X to Y (English into Tamil)
-  4dbc5988-ba93-4b0e-a737-e7db6ecfe2df: !Template
+    name: flores-xglm-Lingala-Catalan
+    reference: 'L1: [sent1] = L2: [sent2]'
+  5487e2c4-f5e1-43c5-bd02-b72d5c522861: !Template
     answer_choices: null
-    id: 4dbc5988-ba93-4b0e-a737-e7db6ecfe2df
-    jinja: 'Translate this from Punjabi into Arabic: {{ sentence_pan }} ||| {{ sentence_ara
-      }}'
+    id: 5487e2c4-f5e1-43c5-bd02-b72d5c522861
+    jinja: 'Yoruba: {{ sentence_yor }} = Vietnamese: ||| {{ sentence_vie }}'
     metadata: *id001
-    name: translate-this-pan-ara
-    reference: Translate this from X to Y (Punjabi into Arabic)
-  4de725a8-dd9b-4b56-b35b-e27d5c5f6448: !Template
+    name: flores-xglm-Yoruba-Vietnamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  549c224e-5645-4522-80e9-66bc340bc1f3: !Template
     answer_choices: null
-    id: 4de725a8-dd9b-4b56-b35b-e27d5c5f6448
-    jinja: 'Translate this from Vietnamese into Urdu: {{ sentence_vie }} ||| {{ sentence_urd
-      }}'
+    id: 549c224e-5645-4522-80e9-66bc340bc1f3
+    jinja: 'Swahili: {{ sentence_swh }} = Hindi: ||| {{ sentence_hin }}'
     metadata: *id001
-    name: translate-this-vie-urd
-    reference: Translate this from X to Y (Vietnamese into Urdu)
-  4df04a82-1b44-4d8f-9025-75298ada1885: !Template
+    name: flores-xglm-Swahili-Hindi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  54aed95f-6e08-4ae9-99a6-0f237ab74a94: !Template
     answer_choices: null
-    id: 4df04a82-1b44-4d8f-9025-75298ada1885
-    jinja: 'Translate this from Wolof into Gujarati: {{ sentence_wol }} ||| {{ sentence_guj
-      }}'
+    id: 54aed95f-6e08-4ae9-99a6-0f237ab74a94
+    jinja: 'Punjabi: {{ sentence_pan }} = Tamil: ||| {{ sentence_tam }}'
     metadata: *id001
-    name: translate-this-wol-guj
-    reference: Translate this from X to Y (Wolof into Gujarati)
-  4df5071a-28e4-49c3-b448-ef237763a4bc: !Template
+    name: flores-xglm-Punjabi-Tamil
+    reference: 'L1: [sent1] = L2: [sent2]'
+  54c291e0-6704-4083-8149-4f1e5a218228: !Template
     answer_choices: null
-    id: 4df5071a-28e4-49c3-b448-ef237763a4bc
-    jinja: 'Translate this from English into Yoruba: {{ sentence_eng }} ||| {{ sentence_yor
-      }}'
+    id: 54c291e0-6704-4083-8149-4f1e5a218228
+    jinja: 'Yoruba: {{ sentence_yor }} = Wolof: ||| {{ sentence_wol }}'
     metadata: *id001
-    name: translate-this-eng-yor
-    reference: Translate this from X to Y (English into Yoruba)
-  4df519fb-cff6-4b46-b42d-3c5c76e87429: !Template
+    name: flores-xglm-Yoruba-Wolof
+    reference: 'L1: [sent1] = L2: [sent2]'
+  55f4f950-2861-4166-8eb3-7ecbcef69123: !Template
     answer_choices: null
-    id: 4df519fb-cff6-4b46-b42d-3c5c76e87429
-    jinja: 'Translate this from Assamese into English: {{ sentence_asm }} ||| {{ sentence_eng
-      }}'
+    id: 55f4f950-2861-4166-8eb3-7ecbcef69123
+    jinja: 'Oriya: {{ sentence_ory }} = Hindi: ||| {{ sentence_hin }}'
     metadata: *id001
-    name: translate-this-asm-eng
-    reference: Translate this from X to Y (Assamese into English)
-  4f25b39e-925e-4109-aa80-876ee830cc93: !Template
+    name: flores-xglm-Oriya-Hindi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  562f70ab-7e32-44f3-a651-124dcb410a3a: !Template
     answer_choices: null
-    id: 4f25b39e-925e-4109-aa80-876ee830cc93
-    jinja: 'Translate this from Gujarati into Wolof: {{ sentence_guj }} ||| {{ sentence_wol
-      }}'
+    id: 562f70ab-7e32-44f3-a651-124dcb410a3a
+    jinja: 'Tamil: {{ sentence_tam }} = Punjabi: ||| {{ sentence_pan }}'
     metadata: *id001
-    name: translate-this-guj-wol
-    reference: Translate this from X to Y (Gujarati into Wolof)
-  4f2e6eb2-42fd-4714-9933-fe2d263ef841: !Template
+    name: flores-xglm-Tamil-Punjabi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  56359b16-fc4a-4928-9b61-b9b3437a487b: !Template
     answer_choices: null
-    id: 4f2e6eb2-42fd-4714-9933-fe2d263ef841
-    jinja: 'Translate this from Swahili into Arabic: {{ sentence_swh }} ||| {{ sentence_ara
-      }}'
+    id: 56359b16-fc4a-4928-9b61-b9b3437a487b
+    jinja: 'Lingala: {{ sentence_lin }} = Wolof: ||| {{ sentence_wol }}'
     metadata: *id001
-    name: translate-this-swh-ara
-    reference: Translate this from X to Y (Swahili into Arabic)
-  4fe8eb8b-8cbe-4bc2-9497-ad2b4535ae78: !Template
+    name: flores-xglm-Lingala-Wolof
+    reference: 'L1: [sent1] = L2: [sent2]'
+  567837f0-11b6-45c7-91c9-6496e1032d58: !Template
     answer_choices: null
-    id: 4fe8eb8b-8cbe-4bc2-9497-ad2b4535ae78
-    jinja: 'Translate this from Latin American Spanish into Igbo: {{ sentence_spa
-      }} ||| {{ sentence_ibo }}'
+    id: 567837f0-11b6-45c7-91c9-6496e1032d58
+    jinja: 'Vietnamese: {{ sentence_vie }} = Brazilian Portuguese: ||| {{ sentence_por
+      }}'
     metadata: *id001
-    name: translate-this-spa-ibo
-    reference: Translate this from X to Y (Latin American Spanish into Igbo)
-  502baae6-7c32-4940-8ffe-76e2488e2914: !Template
+    name: flores-xglm-Vietnamese-Brazilian Portuguese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  56d351f8-48ad-4451-83cf-033bad642c97: !Template
     answer_choices: null
-    id: 502baae6-7c32-4940-8ffe-76e2488e2914
-    jinja: 'Translate this from Gujarati into Urdu: {{ sentence_guj }} ||| {{ sentence_urd
-      }}'
+    id: 56d351f8-48ad-4451-83cf-033bad642c97
+    jinja: 'Gujarati: {{ sentence_guj }} = Kannada: ||| {{ sentence_kan }}'
     metadata: *id001
-    name: translate-this-guj-urd
-    reference: Translate this from X to Y (Gujarati into Urdu)
-  508ab782-58c3-4e45-b7ee-28411062c1a6: !Template
+    name: flores-xglm-Gujarati-Kannada
+    reference: 'L1: [sent1] = L2: [sent2]'
+  56fe94e7-5d85-4f97-a9ca-5113199eccf9: !Template
     answer_choices: null
-    id: 508ab782-58c3-4e45-b7ee-28411062c1a6
-    jinja: 'Translate this from Bengali into Catalan: {{ sentence_ben }} ||| {{ sentence_cat
+    id: 56fe94e7-5d85-4f97-a9ca-5113199eccf9
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Wolof: ||| {{ sentence_wol
       }}'
     metadata: *id001
-    name: translate-this-ben-cat
-    reference: Translate this from X to Y (Bengali into Catalan)
-  50b3125a-8706-4287-b9ea-6c8bc90375ed: !Template
+    name: flores-xglm-simplified Chinese-Wolof
+    reference: 'L1: [sent1] = L2: [sent2]'
+  5791d26a-6b32-44c5-b1d0-5ca6570e0bc8: !Template
     answer_choices: null
-    id: 50b3125a-8706-4287-b9ea-6c8bc90375ed
-    jinja: 'Translate this from Zulu into Tamil: {{ sentence_zul }} ||| {{ sentence_tam
+    id: 5791d26a-6b32-44c5-b1d0-5ca6570e0bc8
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Telugu: ||| {{ sentence_tel
       }}'
     metadata: *id001
-    name: translate-this-zul-tam
-    reference: Translate this from X to Y (Zulu into Tamil)
-  50ff7c64-8d93-4737-8d74-d122892d3481: !Template
+    name: flores-xglm-Brazilian Portuguese-Telugu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  57e7b46f-6f92-40bc-8838-15801abd20d0: !Template
     answer_choices: null
-    id: 50ff7c64-8d93-4737-8d74-d122892d3481
-    jinja: 'Translate this from Latin American Spanish into Gujarati: {{ sentence_spa
-      }} ||| {{ sentence_guj }}'
+    id: 57e7b46f-6f92-40bc-8838-15801abd20d0
+    jinja: 'Hindi: {{ sentence_hin }} = Punjabi: ||| {{ sentence_pan }}'
     metadata: *id001
-    name: translate-this-spa-guj
-    reference: Translate this from X to Y (Latin American Spanish into Gujarati)
-  513d62e5-92ec-4049-8724-7c91762799f4: !Template
+    name: flores-xglm-Hindi-Punjabi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  583c32c2-1e21-44c0-b0dc-78f9fbf28e4a: !Template
     answer_choices: null
-    id: 513d62e5-92ec-4049-8724-7c91762799f4
-    jinja: 'Translate this from Catalan into Telugu: {{ sentence_cat }} ||| {{ sentence_tel
-      }}'
+    id: 583c32c2-1e21-44c0-b0dc-78f9fbf28e4a
+    jinja: 'Yoruba: {{ sentence_yor }} = Xhosa: ||| {{ sentence_xho }}'
     metadata: *id001
-    name: translate-this-cat-tel
-    reference: Translate this from X to Y (Catalan into Telugu)
-  51598024-1dfd-47ec-9faa-fa1e9d3ccdae: !Template
+    name: flores-xglm-Yoruba-Xhosa
+    reference: 'L1: [sent1] = L2: [sent2]'
+  5848498f-0377-4133-8dc4-374181e21a1a: !Template
     answer_choices: null
-    id: 51598024-1dfd-47ec-9faa-fa1e9d3ccdae
-    jinja: 'Translate this from Latin American Spanish into Hindi: {{ sentence_spa
-      }} ||| {{ sentence_hin }}'
+    id: 5848498f-0377-4133-8dc4-374181e21a1a
+    jinja: 'Yoruba: {{ sentence_yor }} = Northern Sotho: ||| {{ sentence_nso }}'
     metadata: *id001
-    name: translate-this-spa-hin
-    reference: Translate this from X to Y (Latin American Spanish into Hindi)
-  51741d38-ae12-4394-8388-b53b96a62031: !Template
+    name: flores-xglm-Yoruba-Northern Sotho
+    reference: 'L1: [sent1] = L2: [sent2]'
+  586b0974-8068-402f-a9f7-5339fa3221f1: !Template
     answer_choices: null
-    id: 51741d38-ae12-4394-8388-b53b96a62031
-    jinja: 'Translate this from traditional Chinese into Yoruba: {{ sentence_zho_trad
-      }} ||| {{ sentence_yor }}'
+    id: 586b0974-8068-402f-a9f7-5339fa3221f1
+    jinja: 'Punjabi: {{ sentence_pan }} = Malayalam: ||| {{ sentence_mal }}'
     metadata: *id001
-    name: translate-this-zho_trad-yor
-    reference: Translate this from X to Y (traditional Chinese into Yoruba)
-  524ef92d-f4f9-4c5b-845f-658f61be834d: !Template
+    name: flores-xglm-Punjabi-Malayalam
+    reference: 'L1: [sent1] = L2: [sent2]'
+  58c63824-71cd-4fa5-b54e-ac85b5bdcbb2: !Template
     answer_choices: null
-    id: 524ef92d-f4f9-4c5b-845f-658f61be834d
-    jinja: 'Translate this from Kannada into Bengali: {{ sentence_kan }} ||| {{ sentence_ben
+    id: 58c63824-71cd-4fa5-b54e-ac85b5bdcbb2
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Malayalam: ||| {{ sentence_mal
       }}'
     metadata: *id001
-    name: translate-this-kan-ben
-    reference: Translate this from X to Y (Kannada into Bengali)
-  5253cded-dddf-47a2-81f2-1063d2821fac: !Template
+    name: flores-xglm-traditional Chinese-Malayalam
+    reference: 'L1: [sent1] = L2: [sent2]'
+  59231ce2-7139-4535-a9ac-0881deab01ff: !Template
     answer_choices: null
-    id: 5253cded-dddf-47a2-81f2-1063d2821fac
-    jinja: 'Translate this from Brazilian Portuguese into Indonesian: {{ sentence_por
-      }} ||| {{ sentence_ind }}'
+    id: 59231ce2-7139-4535-a9ac-0881deab01ff
+    jinja: 'Lingala: {{ sentence_lin }} = Punjabi: ||| {{ sentence_pan }}'
     metadata: *id001
-    name: translate-this-por-ind
-    reference: Translate this from X to Y (Brazilian Portuguese into Indonesian)
-  52553315-992a-4905-949d-ff236d053b0a: !Template
+    name: flores-xglm-Lingala-Punjabi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  592f783f-d1b4-4ba9-a401-0734acd331ff: !Template
     answer_choices: null
-    id: 52553315-992a-4905-949d-ff236d053b0a
-    jinja: 'Translate this from Indonesian into Urdu: {{ sentence_ind }} ||| {{ sentence_urd
-      }}'
+    id: 592f783f-d1b4-4ba9-a401-0734acd331ff
+    jinja: 'Catalan: {{ sentence_cat }} = Kannada: ||| {{ sentence_kan }}'
     metadata: *id001
-    name: translate-this-ind-urd
-    reference: Translate this from X to Y (Indonesian into Urdu)
-  5255c28c-1e33-4f62-be69-551de5cd9c98: !Template
+    name: flores-xglm-Catalan-Kannada
+    reference: 'L1: [sent1] = L2: [sent2]'
+  59f960c0-3835-4e0e-9dcc-c6b243d4a539: !Template
     answer_choices: null
-    id: 5255c28c-1e33-4f62-be69-551de5cd9c98
-    jinja: 'Translate this from Wolof into Nepali: {{ sentence_wol }} ||| {{ sentence_npi
-      }}'
+    id: 59f960c0-3835-4e0e-9dcc-c6b243d4a539
+    jinja: 'Punjabi: {{ sentence_pan }} = Telugu: ||| {{ sentence_tel }}'
     metadata: *id001
-    name: translate-this-wol-npi
-    reference: Translate this from X to Y (Wolof into Nepali)
-  529fd103-0f8e-460f-b994-5ba86880b0a9: !Template
+    name: flores-xglm-Punjabi-Telugu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  5a651b4b-c902-48c9-9ffd-cf4d443f472f: !Template
     answer_choices: null
-    id: 529fd103-0f8e-460f-b994-5ba86880b0a9
-    jinja: 'Translate this from English into Gujarati: {{ sentence_eng }} ||| {{ sentence_guj
-      }}'
+    id: 5a651b4b-c902-48c9-9ffd-cf4d443f472f
+    jinja: 'French: {{ sentence_fra }} = Northern Sotho: ||| {{ sentence_nso }}'
     metadata: *id001
-    name: translate-this-eng-guj
-    reference: Translate this from X to Y (English into Gujarati)
-  52e7f161-ea37-4071-93e1-d818e7bac353: !Template
+    name: flores-xglm-French-Northern Sotho
+    reference: 'L1: [sent1] = L2: [sent2]'
+  5aba99b7-7765-4475-b499-afcbff5de414: !Template
     answer_choices: null
-    id: 52e7f161-ea37-4071-93e1-d818e7bac353
-    jinja: 'Translate this from Northern Sotho into traditional Chinese: {{ sentence_nso
-      }} ||| {{ sentence_zho_trad }}'
+    id: 5aba99b7-7765-4475-b499-afcbff5de414
+    jinja: 'Bengali: {{ sentence_ben }} = Urdu: ||| {{ sentence_urd }}'
     metadata: *id001
-    name: translate-this-nso-zho_trad
-    reference: Translate this from X to Y (Northern Sotho into traditional Chinese)
-  52f247f2-7c53-4689-b8ff-514b2b5e77bd: !Template
+    name: flores-xglm-Bengali-Urdu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  5afc6163-946b-4411-b371-8d9f4dd58e57: !Template
     answer_choices: null
-    id: 52f247f2-7c53-4689-b8ff-514b2b5e77bd
-    jinja: 'Translate this from Bengali into Igbo: {{ sentence_ben }} ||| {{ sentence_ibo
-      }}'
+    id: 5afc6163-946b-4411-b371-8d9f4dd58e57
+    jinja: 'English: {{ sentence_eng }} = Lingala: ||| {{ sentence_lin }}'
     metadata: *id001
-    name: translate-this-ben-ibo
-    reference: Translate this from X to Y (Bengali into Igbo)
-  52f88171-dc5b-4319-997c-99d864680c4d: !Template
+    name: flores-xglm-English-Lingala
+    reference: 'L1: [sent1] = L2: [sent2]'
+  5b019d0d-2865-42d8-8dd9-f45f15094499: !Template
     answer_choices: null
-    id: 52f88171-dc5b-4319-997c-99d864680c4d
-    jinja: 'Translate this from Wolof into Tamil: {{ sentence_wol }} ||| {{ sentence_tam
+    id: 5b019d0d-2865-42d8-8dd9-f45f15094499
+    jinja: 'Igbo: {{ sentence_ibo }} = Bengali: ||| {{ sentence_ben }}'
+    metadata: *id001
+    name: flores-xglm-Igbo-Bengali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  5b593b02-3650-4148-a14d-64eb66454846: !Template
+    answer_choices: null
+    id: 5b593b02-3650-4148-a14d-64eb66454846
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Tamil: ||| {{ sentence_tam
       }}'
     metadata: *id001
-    name: translate-this-wol-tam
-    reference: Translate this from X to Y (Wolof into Tamil)
-  530113d5-7c0a-4e50-98ee-8e9f9a3e5ec0: !Template
+    name: flores-xglm-traditional Chinese-Tamil
+    reference: 'L1: [sent1] = L2: [sent2]'
+  5bab82e4-0ea5-4586-9d38-26ddd0881c32: !Template
     answer_choices: null
-    id: 530113d5-7c0a-4e50-98ee-8e9f9a3e5ec0
-    jinja: 'Translate this from simplified Chinese into Latin American Spanish: {{
-      sentence_zho_simpl }} ||| {{ sentence_spa }}'
+    id: 5bab82e4-0ea5-4586-9d38-26ddd0881c32
+    jinja: 'Oriya: {{ sentence_ory }} = Wolof: ||| {{ sentence_wol }}'
     metadata: *id001
-    name: translate-this-zho_simpl-spa
-    reference: Translate this from X to Y (simplified Chinese into Latin American
-      Spanish)
-  539ecdcb-294f-4880-ab7f-c4850b2937c5: !Template
+    name: flores-xglm-Oriya-Wolof
+    reference: 'L1: [sent1] = L2: [sent2]'
+  5be5e5aa-4787-4722-8e0d-2a5bdb6e05b9: !Template
     answer_choices: null
-    id: 539ecdcb-294f-4880-ab7f-c4850b2937c5
-    jinja: 'Translate this from Zulu into Brazilian Portuguese: {{ sentence_zul }}
-      ||| {{ sentence_por }}'
+    id: 5be5e5aa-4787-4722-8e0d-2a5bdb6e05b9
+    jinja: 'Zulu: {{ sentence_zul }} = Indonesian: ||| {{ sentence_ind }}'
     metadata: *id001
-    name: translate-this-zul-por
-    reference: Translate this from X to Y (Zulu into Brazilian Portuguese)
-  53a62ab6-b190-45eb-a40e-e5f0743ec5be: !Template
+    name: flores-xglm-Zulu-Indonesian
+    reference: 'L1: [sent1] = L2: [sent2]'
+  5befda1a-7034-4f79-aa46-37d364059a6b: !Template
     answer_choices: null
-    id: 53a62ab6-b190-45eb-a40e-e5f0743ec5be
-    jinja: 'Translate this from Igbo into Catalan: {{ sentence_ibo }} ||| {{ sentence_cat
+    id: 5befda1a-7034-4f79-aa46-37d364059a6b
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = Telugu: ||| {{ sentence_tel
       }}'
     metadata: *id001
-    name: translate-this-ibo-cat
-    reference: Translate this from X to Y (Igbo into Catalan)
-  53b03f52-a737-4a4e-a4ba-efa018c42829: !Template
+    name: flores-xglm-Latin American Spanish-Telugu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  5c81e7bd-a547-47c5-ae09-f9f77c9e2c0e: !Template
     answer_choices: null
-    id: 53b03f52-a737-4a4e-a4ba-efa018c42829
-    jinja: 'Translate this from traditional Chinese into Malayalam: {{ sentence_zho_trad
-      }} ||| {{ sentence_mal }}'
+    id: 5c81e7bd-a547-47c5-ae09-f9f77c9e2c0e
+    jinja: 'Tamil: {{ sentence_tam }} = Indonesian: ||| {{ sentence_ind }}'
     metadata: *id001
-    name: translate-this-zho_trad-mal
-    reference: Translate this from X to Y (traditional Chinese into Malayalam)
-  54082011-a146-420c-8b0c-615c1b100fb0: !Template
+    name: flores-xglm-Tamil-Indonesian
+    reference: 'L1: [sent1] = L2: [sent2]'
+  5d893e80-5cd4-4066-93dc-86a2251bf4a3: !Template
     answer_choices: null
-    id: 54082011-a146-420c-8b0c-615c1b100fb0
-    jinja: 'Translate this from Telugu into traditional Chinese: {{ sentence_tel }}
-      ||| {{ sentence_zho_trad }}'
+    id: 5d893e80-5cd4-4066-93dc-86a2251bf4a3
+    jinja: 'Tamil: {{ sentence_tam }} = Oriya: ||| {{ sentence_ory }}'
     metadata: *id001
-    name: translate-this-tel-zho_trad
-    reference: Translate this from X to Y (Telugu into traditional Chinese)
-  540a1bb6-7f21-4132-b858-bd2f1e0e7a6b: !Template
+    name: flores-xglm-Tamil-Oriya
+    reference: 'L1: [sent1] = L2: [sent2]'
+  5e455a71-5b8f-4980-b7dc-125aae2f7029: !Template
     answer_choices: null
-    id: 540a1bb6-7f21-4132-b858-bd2f1e0e7a6b
-    jinja: 'Translate this from Yoruba into Punjabi: {{ sentence_yor }} ||| {{ sentence_pan
+    id: 5e455a71-5b8f-4980-b7dc-125aae2f7029
+    jinja: 'Hindi: {{ sentence_hin }} = Brazilian Portuguese: ||| {{ sentence_por
       }}'
     metadata: *id001
-    name: translate-this-yor-pan
-    reference: Translate this from X to Y (Yoruba into Punjabi)
-  544b7632-e5d3-485b-92e5-9e81b0071cf5: !Template
+    name: flores-xglm-Hindi-Brazilian Portuguese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  603f0c4c-0daf-40c5-88ce-91996eadb116: !Template
     answer_choices: null
-    id: 544b7632-e5d3-485b-92e5-9e81b0071cf5
-    jinja: 'Translate this from Vietnamese into Bengali: {{ sentence_vie }} ||| {{
-      sentence_ben }}'
+    id: 603f0c4c-0daf-40c5-88ce-91996eadb116
+    jinja: 'Punjabi: {{ sentence_pan }} = Northern Sotho: ||| {{ sentence_nso }}'
     metadata: *id001
-    name: translate-this-vie-ben
-    reference: Translate this from X to Y (Vietnamese into Bengali)
-  5469f377-13ac-448b-9ad1-e8cd0573385b: !Template
+    name: flores-xglm-Punjabi-Northern Sotho
+    reference: 'L1: [sent1] = L2: [sent2]'
+  60cd2732-352a-4942-acdb-a5a028f59cf3: !Template
     answer_choices: null
-    id: 5469f377-13ac-448b-9ad1-e8cd0573385b
-    jinja: 'Translate this from Assamese into traditional Chinese: {{ sentence_asm
-      }} ||| {{ sentence_zho_trad }}'
+    id: 60cd2732-352a-4942-acdb-a5a028f59cf3
+    jinja: 'Indonesian: {{ sentence_ind }} = English: ||| {{ sentence_eng }}'
     metadata: *id001
-    name: translate-this-asm-zho_trad
-    reference: Translate this from X to Y (Assamese into traditional Chinese)
-  54a1db4a-8d62-441d-864b-e843422b5320: !Template
+    name: flores-xglm-Indonesian-English
+    reference: 'L1: [sent1] = L2: [sent2]'
+  60fc4a18-b9e5-44be-853c-76eb2ca5bc68: !Template
     answer_choices: null
-    id: 54a1db4a-8d62-441d-864b-e843422b5320
-    jinja: 'Translate this from traditional Chinese into Lingala: {{ sentence_zho_trad
-      }} ||| {{ sentence_lin }}'
+    id: 60fc4a18-b9e5-44be-853c-76eb2ca5bc68
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Brazilian Portuguese: |||
+      {{ sentence_por }}'
     metadata: *id001
-    name: translate-this-zho_trad-lin
-    reference: Translate this from X to Y (traditional Chinese into Lingala)
-  54bb7999-0fbb-4a9a-8387-c15b160051b1: !Template
+    name: flores-xglm-traditional Chinese-Brazilian Portuguese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  61244386-cede-483a-a896-c53463207dd3: !Template
     answer_choices: null
-    id: 54bb7999-0fbb-4a9a-8387-c15b160051b1
-    jinja: 'Translate this from Malayalam into Oriya: {{ sentence_mal }} ||| {{ sentence_ory
-      }}'
+    id: 61244386-cede-483a-a896-c53463207dd3
+    jinja: 'Northern Sotho: {{ sentence_nso }} = Punjabi: ||| {{ sentence_pan }}'
     metadata: *id001
-    name: translate-this-mal-ory
-    reference: Translate this from X to Y (Malayalam into Oriya)
-  54ce1f3d-4e17-4abb-802d-6872445117b3: !Template
+    name: flores-xglm-Northern Sotho-Punjabi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  61f03fec-92f0-4971-8079-7dff7e9f78c2: !Template
     answer_choices: null
-    id: 54ce1f3d-4e17-4abb-802d-6872445117b3
-    jinja: 'Translate this from Brazilian Portuguese into English: {{ sentence_por
-      }} ||| {{ sentence_eng }}'
+    id: 61f03fec-92f0-4971-8079-7dff7e9f78c2
+    jinja: 'Urdu: {{ sentence_urd }} = Telugu: ||| {{ sentence_tel }}'
     metadata: *id001
-    name: translate-this-por-eng
-    reference: Translate this from X to Y (Brazilian Portuguese into English)
-  557a90b6-f548-4c48-8e61-b214d623437e: !Template
+    name: flores-xglm-Urdu-Telugu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  623ddea0-1c2c-4d63-a6d0-2dd8a8a8afdf: !Template
     answer_choices: null
-    id: 557a90b6-f548-4c48-8e61-b214d623437e
-    jinja: 'Translate this from Tamil into Igbo: {{ sentence_tam }} ||| {{ sentence_ibo
+    id: 623ddea0-1c2c-4d63-a6d0-2dd8a8a8afdf
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = Wolof: ||| {{ sentence_wol
       }}'
     metadata: *id001
-    name: translate-this-tam-ibo
-    reference: Translate this from X to Y (Tamil into Igbo)
-  55f3514f-8c17-409d-a870-6d6c51cee4ab: !Template
+    name: flores-xglm-Latin American Spanish-Wolof
+    reference: 'L1: [sent1] = L2: [sent2]'
+  62413ca9-9423-4b0e-9b25-5a5b366c5c49: !Template
     answer_choices: null
-    id: 55f3514f-8c17-409d-a870-6d6c51cee4ab
-    jinja: 'Translate this from Telugu into Catalan: {{ sentence_tel }} ||| {{ sentence_cat
-      }}'
+    id: 62413ca9-9423-4b0e-9b25-5a5b366c5c49
+    jinja: 'Kannada: {{ sentence_kan }} = Wolof: ||| {{ sentence_wol }}'
     metadata: *id001
-    name: translate-this-tel-cat
-    reference: Translate this from X to Y (Telugu into Catalan)
-  56151b0a-68fa-40f8-9309-86a23ebe1002: !Template
+    name: flores-xglm-Kannada-Wolof
+    reference: 'L1: [sent1] = L2: [sent2]'
+  625348bf-c62f-4aca-a9d8-fa83e31006df: !Template
     answer_choices: null
-    id: 56151b0a-68fa-40f8-9309-86a23ebe1002
-    jinja: 'Translate this from Hindi into simplified Chinese: {{ sentence_hin }}
-      ||| {{ sentence_zho_simpl }}'
+    id: 625348bf-c62f-4aca-a9d8-fa83e31006df
+    jinja: 'Punjabi: {{ sentence_pan }} = English: ||| {{ sentence_eng }}'
     metadata: *id001
-    name: translate-this-hin-zho_simpl
-    reference: Translate this from X to Y (Hindi into simplified Chinese)
-  566aa053-2971-4f2c-b646-7f63ed043809: !Template
+    name: flores-xglm-Punjabi-English
+    reference: 'L1: [sent1] = L2: [sent2]'
+  6283c8d4-4830-416f-b39f-ac8c8dc73414: !Template
     answer_choices: null
-    id: 566aa053-2971-4f2c-b646-7f63ed043809
-    jinja: 'Translate this from Igbo into Punjabi: {{ sentence_ibo }} ||| {{ sentence_pan
+    id: 6283c8d4-4830-416f-b39f-ac8c8dc73414
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Lingala: ||| {{ sentence_lin
       }}'
     metadata: *id001
-    name: translate-this-ibo-pan
-    reference: Translate this from X to Y (Igbo into Punjabi)
-  5702f97c-5317-4e5f-aa57-417a8d5e906d: !Template
+    name: flores-xglm-Brazilian Portuguese-Lingala
+    reference: 'L1: [sent1] = L2: [sent2]'
+  62a0b676-1839-4b08-b745-e549901cfc73: !Template
     answer_choices: null
-    id: 5702f97c-5317-4e5f-aa57-417a8d5e906d
-    jinja: 'Translate this from English into Brazilian Portuguese: {{ sentence_eng
-      }} ||| {{ sentence_por }}'
+    id: 62a0b676-1839-4b08-b745-e549901cfc73
+    jinja: 'Igbo: {{ sentence_ibo }} = Swahili: ||| {{ sentence_swh }}'
     metadata: *id001
-    name: translate-this-eng-por
-    reference: Translate this from X to Y (English into Brazilian Portuguese)
-  574908a1-7bc2-4774-9a33-bdac5f8dc798: !Template
+    name: flores-xglm-Igbo-Swahili
+    reference: 'L1: [sent1] = L2: [sent2]'
+  62f2d5de-1e7e-4607-af79-36d5c0324a16: !Template
     answer_choices: null
-    id: 574908a1-7bc2-4774-9a33-bdac5f8dc798
-    jinja: 'Translate this from Brazilian Portuguese into Marathi: {{ sentence_por
-      }} ||| {{ sentence_mar }}'
+    id: 62f2d5de-1e7e-4607-af79-36d5c0324a16
+    jinja: 'Arabic: {{ sentence_ara }} = Hindi: ||| {{ sentence_hin }}'
     metadata: *id001
-    name: translate-this-por-mar
-    reference: Translate this from X to Y (Brazilian Portuguese into Marathi)
-  575b5c28-7541-4e57-a7b8-6090dbbfe2d2: !Template
+    name: flores-xglm-Arabic-Hindi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  633e36d7-d0bb-4864-8f1b-87c6841e7480: !Template
     answer_choices: null
-    id: 575b5c28-7541-4e57-a7b8-6090dbbfe2d2
-    jinja: 'Translate this from Wolof into Malayalam: {{ sentence_wol }} ||| {{ sentence_mal
-      }}'
+    id: 633e36d7-d0bb-4864-8f1b-87c6841e7480
+    jinja: 'Oriya: {{ sentence_ory }} = Gujarati: ||| {{ sentence_guj }}'
     metadata: *id001
-    name: translate-this-wol-mal
-    reference: Translate this from X to Y (Wolof into Malayalam)
-  576a1cf3-cca2-4924-9f66-2c7032072f8c: !Template
+    name: flores-xglm-Oriya-Gujarati
+    reference: 'L1: [sent1] = L2: [sent2]'
+  6344fd52-eaee-482d-ad55-dad7fbdf6109: !Template
     answer_choices: null
-    id: 576a1cf3-cca2-4924-9f66-2c7032072f8c
-    jinja: 'Translate this from Northern Sotho into Wolof: {{ sentence_nso }} |||
-      {{ sentence_wol }}'
+    id: 6344fd52-eaee-482d-ad55-dad7fbdf6109
+    jinja: 'Malayalam: {{ sentence_mal }} = Assamese: ||| {{ sentence_asm }}'
     metadata: *id001
-    name: translate-this-nso-wol
-    reference: Translate this from X to Y (Northern Sotho into Wolof)
-  576a2237-3541-4b25-bd77-0f02424682de: !Template
+    name: flores-xglm-Malayalam-Assamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  634e48b6-306c-48a7-9354-5dea6a522b41: !Template
     answer_choices: null
-    id: 576a2237-3541-4b25-bd77-0f02424682de
-    jinja: 'Translate this from simplified Chinese into Zulu: {{ sentence_zho_simpl
-      }} ||| {{ sentence_zul }}'
+    id: 634e48b6-306c-48a7-9354-5dea6a522b41
+    jinja: 'Catalan: {{ sentence_cat }} = Nepali: ||| {{ sentence_npi }}'
     metadata: *id001
-    name: translate-this-zho_simpl-zul
-    reference: Translate this from X to Y (simplified Chinese into Zulu)
-  57802972-38a5-4a2f-a413-194e07e968b8: !Template
+    name: flores-xglm-Catalan-Nepali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  645f32a4-ce83-48e9-b64e-b47dcb617da9: !Template
     answer_choices: null
-    id: 57802972-38a5-4a2f-a413-194e07e968b8
-    jinja: 'Translate this from Latin American Spanish into Lingala: {{ sentence_spa
-      }} ||| {{ sentence_lin }}'
+    id: 645f32a4-ce83-48e9-b64e-b47dcb617da9
+    jinja: 'Indonesian: {{ sentence_ind }} = Zulu: ||| {{ sentence_zul }}'
     metadata: *id001
-    name: translate-this-spa-lin
-    reference: Translate this from X to Y (Latin American Spanish into Lingala)
-  57d337a8-21e2-49be-8c3e-03a668d9a2a3: !Template
+    name: flores-xglm-Indonesian-Zulu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  6480e70d-8075-485c-968e-f0e54079dd52: !Template
     answer_choices: null
-    id: 57d337a8-21e2-49be-8c3e-03a668d9a2a3
-    jinja: 'Translate this from Assamese into Kannada: {{ sentence_asm }} ||| {{ sentence_kan
-      }}'
+    id: 6480e70d-8075-485c-968e-f0e54079dd52
+    jinja: 'Kannada: {{ sentence_kan }} = Indonesian: ||| {{ sentence_ind }}'
     metadata: *id001
-    name: translate-this-asm-kan
-    reference: Translate this from X to Y (Assamese into Kannada)
-  57fc302d-bc42-4914-962c-d8248194484b: !Template
+    name: flores-xglm-Kannada-Indonesian
+    reference: 'L1: [sent1] = L2: [sent2]'
+  64a91c2a-44bd-4513-a1c8-efe0c49b49e0: !Template
     answer_choices: null
-    id: 57fc302d-bc42-4914-962c-d8248194484b
-    jinja: 'Translate this from Brazilian Portuguese into Lingala: {{ sentence_por
-      }} ||| {{ sentence_lin }}'
+    id: 64a91c2a-44bd-4513-a1c8-efe0c49b49e0
+    jinja: 'Arabic: {{ sentence_ara }} = Lingala: ||| {{ sentence_lin }}'
     metadata: *id001
-    name: translate-this-por-lin
-    reference: Translate this from X to Y (Brazilian Portuguese into Lingala)
-  57fc53af-f9da-46b1-8fee-d6b507221684: !Template
+    name: flores-xglm-Arabic-Lingala
+    reference: 'L1: [sent1] = L2: [sent2]'
+  64ebbbc0-bbfd-4fa3-82d8-b30f6e09303d: !Template
     answer_choices: null
-    id: 57fc53af-f9da-46b1-8fee-d6b507221684
-    jinja: 'Translate this from English into Assamese: {{ sentence_eng }} ||| {{ sentence_asm
-      }}'
+    id: 64ebbbc0-bbfd-4fa3-82d8-b30f6e09303d
+    jinja: 'Marathi: {{ sentence_mar }} = Punjabi: ||| {{ sentence_pan }}'
     metadata: *id001
-    name: translate-this-eng-asm
-    reference: Translate this from X to Y (English into Assamese)
-  58065d2e-3ac1-4ba9-bda2-f29c21491f59: !Template
+    name: flores-xglm-Marathi-Punjabi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  65020bd6-416f-4fad-8d56-6ba93f25c1a3: !Template
     answer_choices: null
-    id: 58065d2e-3ac1-4ba9-bda2-f29c21491f59
-    jinja: 'Translate this from English into Telugu: {{ sentence_eng }} ||| {{ sentence_tel
+    id: 65020bd6-416f-4fad-8d56-6ba93f25c1a3
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Gujarati: ||| {{ sentence_guj
       }}'
     metadata: *id001
-    name: translate-this-eng-tel
-    reference: Translate this from X to Y (English into Telugu)
-  5843fb47-ada7-442e-b944-ae619ed56fb4: !Template
+    name: flores-xglm-traditional Chinese-Gujarati
+    reference: 'L1: [sent1] = L2: [sent2]'
+  65464b6d-b54c-4810-8fe8-eed0f552d9c2: !Template
     answer_choices: null
-    id: 5843fb47-ada7-442e-b944-ae619ed56fb4
-    jinja: 'Translate this from Punjabi into simplified Chinese: {{ sentence_pan }}
-      ||| {{ sentence_zho_simpl }}'
+    id: 65464b6d-b54c-4810-8fe8-eed0f552d9c2
+    jinja: 'Igbo: {{ sentence_ibo }} = Gujarati: ||| {{ sentence_guj }}'
     metadata: *id001
-    name: translate-this-pan-zho_simpl
-    reference: Translate this from X to Y (Punjabi into simplified Chinese)
-  584b4a1d-969d-4cb8-b176-6fecbea362a9: !Template
+    name: flores-xglm-Igbo-Gujarati
+    reference: 'L1: [sent1] = L2: [sent2]'
+  659623b2-2738-49b5-81ba-d6d679e80ee0: !Template
     answer_choices: null
-    id: 584b4a1d-969d-4cb8-b176-6fecbea362a9
-    jinja: 'Translate this from Hindi into Oriya: {{ sentence_hin }} ||| {{ sentence_ory
+    id: 659623b2-2738-49b5-81ba-d6d679e80ee0
+    jinja: 'Nepali: {{ sentence_npi }} = Brazilian Portuguese: ||| {{ sentence_por
       }}'
     metadata: *id001
-    name: translate-this-hin-ory
-    reference: Translate this from X to Y (Hindi into Oriya)
-  5856cccb-0e1e-4c7e-8b0b-5b06c1bd1fb9: !Template
+    name: flores-xglm-Nepali-Brazilian Portuguese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  663d11d3-330d-4876-b08d-99e04dd998d0: !Template
     answer_choices: null
-    id: 5856cccb-0e1e-4c7e-8b0b-5b06c1bd1fb9
-    jinja: 'Translate this from Bengali into Yoruba: {{ sentence_ben }} ||| {{ sentence_yor
-      }}'
+    id: 663d11d3-330d-4876-b08d-99e04dd998d0
+    jinja: 'Northern Sotho: {{ sentence_nso }} = Lingala: ||| {{ sentence_lin }}'
     metadata: *id001
-    name: translate-this-ben-yor
-    reference: Translate this from X to Y (Bengali into Yoruba)
-  58dfd5b3-b087-49cb-bad2-99e1255633d2: !Template
+    name: flores-xglm-Northern Sotho-Lingala
+    reference: 'L1: [sent1] = L2: [sent2]'
+  6666b58b-d8e0-4921-8cb8-a20a8eb08f4d: !Template
     answer_choices: null
-    id: 58dfd5b3-b087-49cb-bad2-99e1255633d2
-    jinja: 'Translate this from Lingala into Indonesian: {{ sentence_lin }} ||| {{
-      sentence_ind }}'
+    id: 6666b58b-d8e0-4921-8cb8-a20a8eb08f4d
+    jinja: 'Malayalam: {{ sentence_mal }} = Northern Sotho: ||| {{ sentence_nso }}'
     metadata: *id001
-    name: translate-this-lin-ind
-    reference: Translate this from X to Y (Lingala into Indonesian)
-  59467245-efff-4efc-a745-ff079636bded: !Template
+    name: flores-xglm-Malayalam-Northern Sotho
+    reference: 'L1: [sent1] = L2: [sent2]'
+  66814b49-0fd9-4007-b939-88ace617c8f3: !Template
     answer_choices: null
-    id: 59467245-efff-4efc-a745-ff079636bded
-    jinja: 'Translate this from Kannada into Brazilian Portuguese: {{ sentence_kan
-      }} ||| {{ sentence_por }}'
+    id: 66814b49-0fd9-4007-b939-88ace617c8f3
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = French: ||| {{ sentence_fra
+      }}'
     metadata: *id001
-    name: translate-this-kan-por
-    reference: Translate this from X to Y (Kannada into Brazilian Portuguese)
-  59d177b2-e187-4582-9fd0-0344015edf40: !Template
+    name: flores-xglm-simplified Chinese-French
+    reference: 'L1: [sent1] = L2: [sent2]'
+  6694eb08-69cf-4953-99cf-8fe9d653c360: !Template
     answer_choices: null
-    id: 59d177b2-e187-4582-9fd0-0344015edf40
-    jinja: 'Translate this from Hindi into Assamese: {{ sentence_hin }} ||| {{ sentence_asm
+    id: 6694eb08-69cf-4953-99cf-8fe9d653c360
+    jinja: 'Gujarati: {{ sentence_guj }} = Latin American Spanish: ||| {{ sentence_spa
       }}'
     metadata: *id001
-    name: translate-this-hin-asm
-    reference: Translate this from X to Y (Hindi into Assamese)
-  59df43af-40f0-474c-af5c-712c65bf1588: !Template
+    name: flores-xglm-Gujarati-Latin American Spanish
+    reference: 'L1: [sent1] = L2: [sent2]'
+  66fbb356-d440-4397-87c1-66782fb01246: !Template
     answer_choices: null
-    id: 59df43af-40f0-474c-af5c-712c65bf1588
-    jinja: 'Translate this from Punjabi into Igbo: {{ sentence_pan }} ||| {{ sentence_ibo
-      }}'
+    id: 66fbb356-d440-4397-87c1-66782fb01246
+    jinja: 'Arabic: {{ sentence_ara }} = Wolof: ||| {{ sentence_wol }}'
     metadata: *id001
-    name: translate-this-pan-ibo
-    reference: Translate this from X to Y (Punjabi into Igbo)
-  5a168a1f-181a-4c8e-a80f-28a689fecd25: !Template
+    name: flores-xglm-Arabic-Wolof
+    reference: 'L1: [sent1] = L2: [sent2]'
+  66fffe68-6c15-4b64-b80f-6dbb40cac036: !Template
     answer_choices: null
-    id: 5a168a1f-181a-4c8e-a80f-28a689fecd25
-    jinja: 'Translate this from traditional Chinese into Hindi: {{ sentence_zho_trad
-      }} ||| {{ sentence_hin }}'
+    id: 66fffe68-6c15-4b64-b80f-6dbb40cac036
+    jinja: 'Oriya: {{ sentence_ory }} = Zulu: ||| {{ sentence_zul }}'
     metadata: *id001
-    name: translate-this-zho_trad-hin
-    reference: Translate this from X to Y (traditional Chinese into Hindi)
-  5a26be81-74e4-4786-a9bd-3a51db5ad27f: !Template
+    name: flores-xglm-Oriya-Zulu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  67b94d1a-43ce-4427-8b46-ec519060674e: !Template
     answer_choices: null
-    id: 5a26be81-74e4-4786-a9bd-3a51db5ad27f
-    jinja: 'Translate this from traditional Chinese into Marathi: {{ sentence_zho_trad
-      }} ||| {{ sentence_mar }}'
+    id: 67b94d1a-43ce-4427-8b46-ec519060674e
+    jinja: 'Oriya: {{ sentence_ory }} = English: ||| {{ sentence_eng }}'
     metadata: *id001
-    name: translate-this-zho_trad-mar
-    reference: Translate this from X to Y (traditional Chinese into Marathi)
-  5a70546e-132a-43f7-b499-09152ec4ff73: !Template
+    name: flores-xglm-Oriya-English
+    reference: 'L1: [sent1] = L2: [sent2]'
+  67d6ad35-0f30-4c36-b572-2d71952f238f: !Template
     answer_choices: null
-    id: 5a70546e-132a-43f7-b499-09152ec4ff73
-    jinja: 'Translate this from Swahili into Urdu: {{ sentence_swh }} ||| {{ sentence_urd
-      }}'
+    id: 67d6ad35-0f30-4c36-b572-2d71952f238f
+    jinja: 'Malayalam: {{ sentence_mal }} = Zulu: ||| {{ sentence_zul }}'
     metadata: *id001
-    name: translate-this-swh-urd
-    reference: Translate this from X to Y (Swahili into Urdu)
-  5a8707d6-b527-4907-8f03-3121b959a488: !Template
+    name: flores-xglm-Malayalam-Zulu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  6818d027-c176-4289-a85c-5e01f183ba32: !Template
     answer_choices: null
-    id: 5a8707d6-b527-4907-8f03-3121b959a488
-    jinja: 'Translate this from Catalan into English: {{ sentence_cat }} ||| {{ sentence_eng
+    id: 6818d027-c176-4289-a85c-5e01f183ba32
+    jinja: 'Kannada: {{ sentence_kan }} = Brazilian Portuguese: ||| {{ sentence_por
       }}'
     metadata: *id001
-    name: translate-this-cat-eng
-    reference: Translate this from X to Y (Catalan into English)
-  5b21f205-47ca-441c-baf2-c48cd1b1d76d: !Template
+    name: flores-xglm-Kannada-Brazilian Portuguese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  68807b4b-bd13-4151-a587-cc6dd4a09305: !Template
     answer_choices: null
-    id: 5b21f205-47ca-441c-baf2-c48cd1b1d76d
-    jinja: 'Translate this from Lingala into Brazilian Portuguese: {{ sentence_lin
-      }} ||| {{ sentence_por }}'
+    id: 68807b4b-bd13-4151-a587-cc6dd4a09305
+    jinja: 'Indonesian: {{ sentence_ind }} = traditional Chinese: ||| {{ sentence_zho_trad
+      }}'
     metadata: *id001
-    name: translate-this-lin-por
-    reference: Translate this from X to Y (Lingala into Brazilian Portuguese)
-  5b3b80a2-11c1-4b95-96ad-1807393929cb: !Template
+    name: flores-xglm-Indonesian-traditional Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  6885aa91-3d4c-4c85-b983-a182adfe7380: !Template
     answer_choices: null
-    id: 5b3b80a2-11c1-4b95-96ad-1807393929cb
-    jinja: 'Translate this from traditional Chinese into English: {{ sentence_zho_trad
-      }} ||| {{ sentence_eng }}'
+    id: 6885aa91-3d4c-4c85-b983-a182adfe7380
+    jinja: 'Zulu: {{ sentence_zul }} = Marathi: ||| {{ sentence_mar }}'
     metadata: *id001
-    name: translate-this-zho_trad-eng
-    reference: Translate this from X to Y (traditional Chinese into English)
-  5b46fca6-f5f8-42f0-babc-64a8e5bff329: !Template
+    name: flores-xglm-Zulu-Marathi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  69160788-883b-47b1-89dd-fc57579ac80a: !Template
     answer_choices: null
-    id: 5b46fca6-f5f8-42f0-babc-64a8e5bff329
-    jinja: 'Translate this from Bengali into Punjabi: {{ sentence_ben }} ||| {{ sentence_pan
-      }}'
+    id: 69160788-883b-47b1-89dd-fc57579ac80a
+    jinja: 'Vietnamese: {{ sentence_vie }} = Igbo: ||| {{ sentence_ibo }}'
     metadata: *id001
-    name: translate-this-ben-pan
-    reference: Translate this from X to Y (Bengali into Punjabi)
-  5bc20ee3-e94c-4f68-8eeb-994b912960bc: !Template
+    name: flores-xglm-Vietnamese-Igbo
+    reference: 'L1: [sent1] = L2: [sent2]'
+  6950bbb0-d52c-46f9-949e-5928aeea4cae: !Template
     answer_choices: null
-    id: 5bc20ee3-e94c-4f68-8eeb-994b912960bc
-    jinja: 'Translate this from Urdu into Wolof: {{ sentence_urd }} ||| {{ sentence_wol
+    id: 6950bbb0-d52c-46f9-949e-5928aeea4cae
+    jinja: 'English: {{ sentence_eng }} = traditional Chinese: ||| {{ sentence_zho_trad
       }}'
     metadata: *id001
-    name: translate-this-urd-wol
-    reference: Translate this from X to Y (Urdu into Wolof)
-  5bcaabe4-36b1-43b7-aa3a-8d4abfee032a: !Template
+    name: flores-xglm-English-traditional Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  6a07633f-0ed5-4fb7-922a-4b4931f1d219: !Template
     answer_choices: null
-    id: 5bcaabe4-36b1-43b7-aa3a-8d4abfee032a
-    jinja: 'Translate this from Assamese into Latin American Spanish: {{ sentence_asm
-      }} ||| {{ sentence_spa }}'
+    id: 6a07633f-0ed5-4fb7-922a-4b4931f1d219
+    jinja: 'Telugu: {{ sentence_tel }} = Nepali: ||| {{ sentence_npi }}'
     metadata: *id001
-    name: translate-this-asm-spa
-    reference: Translate this from X to Y (Assamese into Latin American Spanish)
-  5bd7e594-90df-40e5-a1a9-92033dd44418: !Template
+    name: flores-xglm-Telugu-Nepali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  6a819873-e280-4ee5-b0fa-565d04fdb5c7: !Template
     answer_choices: null
-    id: 5bd7e594-90df-40e5-a1a9-92033dd44418
-    jinja: 'Translate this from Bengali into Swahili: {{ sentence_ben }} ||| {{ sentence_swh
+    id: 6a819873-e280-4ee5-b0fa-565d04fdb5c7
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Hindi: ||| {{ sentence_hin
       }}'
     metadata: *id001
-    name: translate-this-ben-swh
-    reference: Translate this from X to Y (Bengali into Swahili)
-  5c5fc29f-486f-4adb-9200-4b8ccb9717d0: !Template
+    name: flores-xglm-simplified Chinese-Hindi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  6ac135c0-1a76-4ee5-8642-2ba746192e3f: !Template
     answer_choices: null
-    id: 5c5fc29f-486f-4adb-9200-4b8ccb9717d0
-    jinja: 'Translate this from Latin American Spanish into Indonesian: {{ sentence_spa
-      }} ||| {{ sentence_ind }}'
+    id: 6ac135c0-1a76-4ee5-8642-2ba746192e3f
+    jinja: 'Marathi: {{ sentence_mar }} = Bengali: ||| {{ sentence_ben }}'
     metadata: *id001
-    name: translate-this-spa-ind
-    reference: Translate this from X to Y (Latin American Spanish into Indonesian)
-  5c80a396-e7ca-4379-b2df-d09cdef55fd9: !Template
+    name: flores-xglm-Marathi-Bengali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  6ad04812-dc20-413a-bf07-dd0aff6595fb: !Template
     answer_choices: null
-    id: 5c80a396-e7ca-4379-b2df-d09cdef55fd9
-    jinja: 'Translate this from Nepali into Tamil: {{ sentence_npi }} ||| {{ sentence_tam
-      }}'
+    id: 6ad04812-dc20-413a-bf07-dd0aff6595fb
+    jinja: 'Arabic: {{ sentence_ara }} = Oriya: ||| {{ sentence_ory }}'
     metadata: *id001
-    name: translate-this-npi-tam
-    reference: Translate this from X to Y (Nepali into Tamil)
-  5c8ff352-3ee3-477b-9572-cd0ab6212a75: !Template
+    name: flores-xglm-Arabic-Oriya
+    reference: 'L1: [sent1] = L2: [sent2]'
+  6afa6d85-f282-49d2-a06f-19a2736152d0: !Template
     answer_choices: null
-    id: 5c8ff352-3ee3-477b-9572-cd0ab6212a75
-    jinja: 'Translate this from English into Zulu: {{ sentence_eng }} ||| {{ sentence_zul
-      }}'
+    id: 6afa6d85-f282-49d2-a06f-19a2736152d0
+    jinja: 'Tamil: {{ sentence_tam }} = Igbo: ||| {{ sentence_ibo }}'
     metadata: *id001
-    name: translate-this-eng-zul
-    reference: Translate this from X to Y (English into Zulu)
-  5cd07389-3126-4fe6-b320-dbf264b0fc10: !Template
+    name: flores-xglm-Tamil-Igbo
+    reference: 'L1: [sent1] = L2: [sent2]'
+  6b4033b1-662a-4cea-92a0-ee225f92cc04: !Template
     answer_choices: null
-    id: 5cd07389-3126-4fe6-b320-dbf264b0fc10
-    jinja: 'Translate this from Kannada into Arabic: {{ sentence_kan }} ||| {{ sentence_ara
+    id: 6b4033b1-662a-4cea-92a0-ee225f92cc04
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = Indonesian: ||| {{ sentence_ind
       }}'
     metadata: *id001
-    name: translate-this-kan-ara
-    reference: Translate this from X to Y (Kannada into Arabic)
-  5d65d628-4fad-4ec0-9e8f-8456d3b1151b: !Template
+    name: flores-xglm-Latin American Spanish-Indonesian
+    reference: 'L1: [sent1] = L2: [sent2]'
+  6b758d67-8e60-4d2e-b3bc-36acca33126b: !Template
     answer_choices: null
-    id: 5d65d628-4fad-4ec0-9e8f-8456d3b1151b
-    jinja: 'Translate this from Xhosa into English: {{ sentence_xho }} ||| {{ sentence_eng
-      }}'
+    id: 6b758d67-8e60-4d2e-b3bc-36acca33126b
+    jinja: 'French: {{ sentence_fra }} = Bengali: ||| {{ sentence_ben }}'
     metadata: *id001
-    name: translate-this-xho-eng
-    reference: Translate this from X to Y (Xhosa into English)
-  5dc3ce98-e536-47e6-97e8-dcb854610dda: !Template
+    name: flores-xglm-French-Bengali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  6b85c154-74dd-46c2-858b-5028c883c93e: !Template
     answer_choices: null
-    id: 5dc3ce98-e536-47e6-97e8-dcb854610dda
-    jinja: 'Translate this from English into Bengali: {{ sentence_eng }} ||| {{ sentence_ben
-      }}'
+    id: 6b85c154-74dd-46c2-858b-5028c883c93e
+    jinja: 'Marathi: {{ sentence_mar }} = Indonesian: ||| {{ sentence_ind }}'
     metadata: *id001
-    name: translate-this-eng-ben
-    reference: Translate this from X to Y (English into Bengali)
-  5ed26cd2-fffa-4930-8ba7-7b51785e527e: !Template
+    name: flores-xglm-Marathi-Indonesian
+    reference: 'L1: [sent1] = L2: [sent2]'
+  6be28928-6559-40e4-81cc-fb0cbe1496da: !Template
     answer_choices: null
-    id: 5ed26cd2-fffa-4930-8ba7-7b51785e527e
-    jinja: 'Translate this from French into Punjabi: {{ sentence_fra }} ||| {{ sentence_pan
-      }}'
+    id: 6be28928-6559-40e4-81cc-fb0cbe1496da
+    jinja: 'Wolof: {{ sentence_wol }} = Catalan: ||| {{ sentence_cat }}'
     metadata: *id001
-    name: translate-this-fra-pan
-    reference: Translate this from X to Y (French into Punjabi)
-  5ee611ee-4ebc-4951-b923-9f33a7c033c6: !Template
+    name: flores-xglm-Wolof-Catalan
+    reference: 'L1: [sent1] = L2: [sent2]'
+  6c3178ba-dc4b-4638-acf3-63703456571b: !Template
     answer_choices: null
-    id: 5ee611ee-4ebc-4951-b923-9f33a7c033c6
-    jinja: 'Translate this from Oriya into Malayalam: {{ sentence_ory }} ||| {{ sentence_mal
-      }}'
+    id: 6c3178ba-dc4b-4638-acf3-63703456571b
+    jinja: 'Marathi: {{ sentence_mar }} = Yoruba: ||| {{ sentence_yor }}'
     metadata: *id001
-    name: translate-this-ory-mal
-    reference: Translate this from X to Y (Oriya into Malayalam)
-  5f1765e8-5527-4a1d-aaf7-b138561cbb50: !Template
+    name: flores-xglm-Marathi-Yoruba
+    reference: 'L1: [sent1] = L2: [sent2]'
+  6c5a1034-e698-4cd2-a5fa-f43a3953fd89: !Template
     answer_choices: null
-    id: 5f1765e8-5527-4a1d-aaf7-b138561cbb50
-    jinja: 'Translate this from Gujarati into Bengali: {{ sentence_guj }} ||| {{ sentence_ben
+    id: 6c5a1034-e698-4cd2-a5fa-f43a3953fd89
+    jinja: 'Lingala: {{ sentence_lin }} = simplified Chinese: ||| {{ sentence_zho_simpl
       }}'
     metadata: *id001
-    name: translate-this-guj-ben
-    reference: Translate this from X to Y (Gujarati into Bengali)
-  5fb7c52d-3c78-42b5-8c83-ffb699cc5a87: !Template
+    name: flores-xglm-Lingala-simplified Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  6ca7ac65-85f3-460a-b2b4-da7d33d2923f: !Template
     answer_choices: null
-    id: 5fb7c52d-3c78-42b5-8c83-ffb699cc5a87
-    jinja: 'Translate this from Swahili into Catalan: {{ sentence_swh }} ||| {{ sentence_cat
-      }}'
+    id: 6ca7ac65-85f3-460a-b2b4-da7d33d2923f
+    jinja: 'Swahili: {{ sentence_swh }} = Marathi: ||| {{ sentence_mar }}'
     metadata: *id001
-    name: translate-this-swh-cat
-    reference: Translate this from X to Y (Swahili into Catalan)
-  5fb8bdfd-1bf0-4869-b211-f9dc7616069d: !Template
+    name: flores-xglm-Swahili-Marathi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  6cc50165-6b58-42a3-87f3-7a2708394060: !Template
     answer_choices: null
-    id: 5fb8bdfd-1bf0-4869-b211-f9dc7616069d
-    jinja: 'Translate this from Marathi into English: {{ sentence_mar }} ||| {{ sentence_eng
-      }}'
+    id: 6cc50165-6b58-42a3-87f3-7a2708394060
+    jinja: 'Lingala: {{ sentence_lin }} = Oriya: ||| {{ sentence_ory }}'
     metadata: *id001
-    name: translate-this-mar-eng
-    reference: Translate this from X to Y (Marathi into English)
-  5fca01cc-7e27-4112-94bc-f210a87ce9d9: !Template
+    name: flores-xglm-Lingala-Oriya
+    reference: 'L1: [sent1] = L2: [sent2]'
+  6cea48ff-0650-4080-8ba0-f66e48f16212: !Template
     answer_choices: null
-    id: 5fca01cc-7e27-4112-94bc-f210a87ce9d9
-    jinja: 'Translate this from Northern Sotho into Gujarati: {{ sentence_nso }} |||
-      {{ sentence_guj }}'
+    id: 6cea48ff-0650-4080-8ba0-f66e48f16212
+    jinja: 'Assamese: {{ sentence_asm }} = Arabic: ||| {{ sentence_ara }}'
     metadata: *id001
-    name: translate-this-nso-guj
-    reference: Translate this from X to Y (Northern Sotho into Gujarati)
-  5fe966f1-81ca-4836-9b5f-4b672e0ef2bf: !Template
+    name: flores-xglm-Assamese-Arabic
+    reference: 'L1: [sent1] = L2: [sent2]'
+  6d15b077-901e-4862-b22b-cd0bf7466173: !Template
     answer_choices: null
-    id: 5fe966f1-81ca-4836-9b5f-4b672e0ef2bf
-    jinja: 'Translate this from Yoruba into Latin American Spanish: {{ sentence_yor
-      }} ||| {{ sentence_spa }}'
+    id: 6d15b077-901e-4862-b22b-cd0bf7466173
+    jinja: 'Marathi: {{ sentence_mar }} = French: ||| {{ sentence_fra }}'
     metadata: *id001
-    name: translate-this-yor-spa
-    reference: Translate this from X to Y (Yoruba into Latin American Spanish)
-  6024e4c9-320b-43de-aa2d-ce55f459fd06: !Template
+    name: flores-xglm-Marathi-French
+    reference: 'L1: [sent1] = L2: [sent2]'
+  6d2f5968-81ff-49ab-9bb8-01d365d875be: !Template
     answer_choices: null
-    id: 6024e4c9-320b-43de-aa2d-ce55f459fd06
-    jinja: 'Translate this from Punjabi into Urdu: {{ sentence_pan }} ||| {{ sentence_urd
+    id: 6d2f5968-81ff-49ab-9bb8-01d365d875be
+    jinja: 'Telugu: {{ sentence_tel }} = traditional Chinese: ||| {{ sentence_zho_trad
       }}'
     metadata: *id001
-    name: translate-this-pan-urd
-    reference: Translate this from X to Y (Punjabi into Urdu)
-  610691d1-75e6-401b-b2b5-55b3d908ba58: !Template
+    name: flores-xglm-Telugu-traditional Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  6d4da693-a69c-4945-90de-8347de1b845e: !Template
     answer_choices: null
-    id: 610691d1-75e6-401b-b2b5-55b3d908ba58
-    jinja: 'Translate this from Marathi into Northern Sotho: {{ sentence_mar }} |||
-      {{ sentence_nso }}'
+    id: 6d4da693-a69c-4945-90de-8347de1b845e
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = Arabic: ||| {{ sentence_ara
+      }}'
     metadata: *id001
-    name: translate-this-mar-nso
-    reference: Translate this from X to Y (Marathi into Northern Sotho)
-  613836bc-f33d-4527-a8dd-daa12639fe2f: !Template
+    name: flores-xglm-Latin American Spanish-Arabic
+    reference: 'L1: [sent1] = L2: [sent2]'
+  6d584c1b-77b2-4ab8-9563-4d142f244afa: !Template
     answer_choices: null
-    id: 613836bc-f33d-4527-a8dd-daa12639fe2f
-    jinja: 'Translate this from Xhosa into Punjabi: {{ sentence_xho }} ||| {{ sentence_pan
-      }}'
+    id: 6d584c1b-77b2-4ab8-9563-4d142f244afa
+    jinja: 'Xhosa: {{ sentence_xho }} = Yoruba: ||| {{ sentence_yor }}'
     metadata: *id001
-    name: translate-this-xho-pan
-    reference: Translate this from X to Y (Xhosa into Punjabi)
-  619d9995-4c89-402f-870a-2cdabff29f6b: !Template
+    name: flores-xglm-Xhosa-Yoruba
+    reference: 'L1: [sent1] = L2: [sent2]'
+  6e0f00b3-5d70-4d08-918e-52866259990b: !Template
     answer_choices: null
-    id: 619d9995-4c89-402f-870a-2cdabff29f6b
-    jinja: 'Translate this from Nepali into Indonesian: {{ sentence_npi }} ||| {{
-      sentence_ind }}'
+    id: 6e0f00b3-5d70-4d08-918e-52866259990b
+    jinja: 'Igbo: {{ sentence_ibo }} = French: ||| {{ sentence_fra }}'
     metadata: *id001
-    name: translate-this-npi-ind
-    reference: Translate this from X to Y (Nepali into Indonesian)
-  61b02407-ed4c-46b2-8838-2e4d3c10f4a5: !Template
+    name: flores-xglm-Igbo-French
+    reference: 'L1: [sent1] = L2: [sent2]'
+  6e1f7ae3-6270-4ee3-833f-bde68f7de71d: !Template
     answer_choices: null
-    id: 61b02407-ed4c-46b2-8838-2e4d3c10f4a5
-    jinja: 'Translate this from Vietnamese into Punjabi: {{ sentence_vie }} ||| {{
-      sentence_pan }}'
+    id: 6e1f7ae3-6270-4ee3-833f-bde68f7de71d
+    jinja: 'Hindi: {{ sentence_hin }} = Northern Sotho: ||| {{ sentence_nso }}'
     metadata: *id001
-    name: translate-this-vie-pan
-    reference: Translate this from X to Y (Vietnamese into Punjabi)
-  61b89f17-fa97-4f15-a353-15355115ad3b: !Template
+    name: flores-xglm-Hindi-Northern Sotho
+    reference: 'L1: [sent1] = L2: [sent2]'
+  6e38c3cb-3761-4e98-a1e5-ab6d5688f88a: !Template
     answer_choices: null
-    id: 61b89f17-fa97-4f15-a353-15355115ad3b
-    jinja: 'Translate this from Marathi into Bengali: {{ sentence_mar }} ||| {{ sentence_ben
+    id: 6e38c3cb-3761-4e98-a1e5-ab6d5688f88a
+    jinja: 'Catalan: {{ sentence_cat }} = Latin American Spanish: ||| {{ sentence_spa
       }}'
     metadata: *id001
-    name: translate-this-mar-ben
-    reference: Translate this from X to Y (Marathi into Bengali)
-  61df2994-e73b-4576-80df-85ee5574391b: !Template
+    name: flores-xglm-Catalan-Latin American Spanish
+    reference: 'L1: [sent1] = L2: [sent2]'
+  6e7cbd85-a508-4dcc-92a1-148e70251784: !Template
     answer_choices: null
-    id: 61df2994-e73b-4576-80df-85ee5574391b
-    jinja: 'Translate this from Wolof into Indonesian: {{ sentence_wol }} ||| {{ sentence_ind
+    id: 6e7cbd85-a508-4dcc-92a1-148e70251784
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Swahili: ||| {{ sentence_swh
       }}'
     metadata: *id001
-    name: translate-this-wol-ind
-    reference: Translate this from X to Y (Wolof into Indonesian)
-  621af336-ca98-4790-a87e-b0368d215fa1: !Template
+    name: flores-xglm-Brazilian Portuguese-Swahili
+    reference: 'L1: [sent1] = L2: [sent2]'
+  6f206c67-336f-4a05-b89a-fc6f06e25b3c: !Template
     answer_choices: null
-    id: 621af336-ca98-4790-a87e-b0368d215fa1
-    jinja: 'Translate this from Brazilian Portuguese into Swahili: {{ sentence_por
-      }} ||| {{ sentence_swh }}'
+    id: 6f206c67-336f-4a05-b89a-fc6f06e25b3c
+    jinja: 'Northern Sotho: {{ sentence_nso }} = Swahili: ||| {{ sentence_swh }}'
     metadata: *id001
-    name: translate-this-por-swh
-    reference: Translate this from X to Y (Brazilian Portuguese into Swahili)
-  626cd4a6-4579-44ad-a33b-776dff3689dc: !Template
+    name: flores-xglm-Northern Sotho-Swahili
+    reference: 'L1: [sent1] = L2: [sent2]'
+  6f2ead19-cafa-45b4-8993-db594c546d51: !Template
     answer_choices: null
-    id: 626cd4a6-4579-44ad-a33b-776dff3689dc
-    jinja: 'Translate this from Swahili into Xhosa: {{ sentence_swh }} ||| {{ sentence_xho
+    id: 6f2ead19-cafa-45b4-8993-db594c546d51
+    jinja: 'Marathi: {{ sentence_mar }} = Latin American Spanish: ||| {{ sentence_spa
       }}'
     metadata: *id001
-    name: translate-this-swh-xho
-    reference: Translate this from X to Y (Swahili into Xhosa)
-  6291b664-f400-49e4-943d-c269efbafbe2: !Template
+    name: flores-xglm-Marathi-Latin American Spanish
+    reference: 'L1: [sent1] = L2: [sent2]'
+  6f5e6987-e098-4155-88ac-6891932789f7: !Template
     answer_choices: null
-    id: 6291b664-f400-49e4-943d-c269efbafbe2
-    jinja: 'Translate this from Urdu into Tamil: {{ sentence_urd }} ||| {{ sentence_tam
-      }}'
+    id: 6f5e6987-e098-4155-88ac-6891932789f7
+    jinja: 'Catalan: {{ sentence_cat }} = Telugu: ||| {{ sentence_tel }}'
     metadata: *id001
-    name: translate-this-urd-tam
-    reference: Translate this from X to Y (Urdu into Tamil)
-  63331ee8-489d-46bf-82ee-5d79d74de4b8: !Template
+    name: flores-xglm-Catalan-Telugu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  7097a53b-ac02-485b-a64c-c0ca1f0e6beb: !Template
     answer_choices: null
-    id: 63331ee8-489d-46bf-82ee-5d79d74de4b8
-    jinja: 'Translate this from French into Kannada: {{ sentence_fra }} ||| {{ sentence_kan
-      }}'
+    id: 7097a53b-ac02-485b-a64c-c0ca1f0e6beb
+    jinja: 'Oriya: {{ sentence_ory }} = Kannada: ||| {{ sentence_kan }}'
     metadata: *id001
-    name: translate-this-fra-kan
-    reference: Translate this from X to Y (French into Kannada)
-  6352dbfd-e9fa-410a-9eab-63fb8fd4c700: !Template
+    name: flores-xglm-Oriya-Kannada
+    reference: 'L1: [sent1] = L2: [sent2]'
+  70d501e3-0b89-49cd-870c-01cc9046d448: !Template
     answer_choices: null
-    id: 6352dbfd-e9fa-410a-9eab-63fb8fd4c700
-    jinja: 'Translate this from Tamil into Punjabi: {{ sentence_tam }} ||| {{ sentence_pan
-      }}'
+    id: 70d501e3-0b89-49cd-870c-01cc9046d448
+    jinja: 'Nepali: {{ sentence_npi }} = Tamil: ||| {{ sentence_tam }}'
     metadata: *id001
-    name: translate-this-tam-pan
-    reference: Translate this from X to Y (Tamil into Punjabi)
-  6388210f-bce6-4af8-8da0-e8a5150afde1: !Template
+    name: flores-xglm-Nepali-Tamil
+    reference: 'L1: [sent1] = L2: [sent2]'
+  70d9b3ab-1f00-4d38-82ad-2f3ce7a43f42: !Template
     answer_choices: null
-    id: 6388210f-bce6-4af8-8da0-e8a5150afde1
-    jinja: 'Translate this from Swahili into Lingala: {{ sentence_swh }} ||| {{ sentence_lin
+    id: 70d9b3ab-1f00-4d38-82ad-2f3ce7a43f42
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Kannada: ||| {{ sentence_kan
       }}'
     metadata: *id001
-    name: translate-this-swh-lin
-    reference: Translate this from X to Y (Swahili into Lingala)
-  63d12a13-6737-43b5-969a-6e143e024769: !Template
+    name: flores-xglm-traditional Chinese-Kannada
+    reference: 'L1: [sent1] = L2: [sent2]'
+  70f10b33-6533-42ce-bb04-2e99320c1187: !Template
     answer_choices: null
-    id: 63d12a13-6737-43b5-969a-6e143e024769
-    jinja: 'Translate this from Assamese into Malayalam: {{ sentence_asm }} ||| {{
-      sentence_mal }}'
+    id: 70f10b33-6533-42ce-bb04-2e99320c1187
+    jinja: 'Lingala: {{ sentence_lin }} = Urdu: ||| {{ sentence_urd }}'
     metadata: *id001
-    name: translate-this-asm-mal
-    reference: Translate this from X to Y (Assamese into Malayalam)
-  63d40494-5afe-4156-8772-7a4e9896b326: !Template
+    name: flores-xglm-Lingala-Urdu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  71247741-8979-4fd9-8985-0d08d5ca1303: !Template
     answer_choices: null
-    id: 63d40494-5afe-4156-8772-7a4e9896b326
-    jinja: 'Translate this from Nepali into Igbo: {{ sentence_npi }} ||| {{ sentence_ibo
+    id: 71247741-8979-4fd9-8985-0d08d5ca1303
+    jinja: 'Punjabi: {{ sentence_pan }} = Gujarati: ||| {{ sentence_guj }}'
+    metadata: *id001
+    name: flores-xglm-Punjabi-Gujarati
+    reference: 'L1: [sent1] = L2: [sent2]'
+  712a0ffb-1bd5-4996-86b1-2ccff6e59412: !Template
+    answer_choices: null
+    id: 712a0ffb-1bd5-4996-86b1-2ccff6e59412
+    jinja: 'Nepali: {{ sentence_npi }} = traditional Chinese: ||| {{ sentence_zho_trad
       }}'
     metadata: *id001
-    name: translate-this-npi-ibo
-    reference: Translate this from X to Y (Nepali into Igbo)
-  63d7cd2e-be02-4bee-bbfb-87036088a094: !Template
+    name: flores-xglm-Nepali-traditional Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  7207433f-19c9-4803-9a20-10a8fb245828: !Template
     answer_choices: null
-    id: 63d7cd2e-be02-4bee-bbfb-87036088a094
-    jinja: 'Translate this from Zulu into English: {{ sentence_zul }} ||| {{ sentence_eng
+    id: 7207433f-19c9-4803-9a20-10a8fb245828
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Gujarati: ||| {{ sentence_guj
       }}'
     metadata: *id001
-    name: translate-this-zul-eng
-    reference: Translate this from X to Y (Zulu into English)
-  640c2ad8-3c00-4264-a402-13cd25638f73: !Template
+    name: flores-xglm-Brazilian Portuguese-Gujarati
+    reference: 'L1: [sent1] = L2: [sent2]'
+  72e53a09-108b-4e31-83db-fcbdce92076b: !Template
     answer_choices: null
-    id: 640c2ad8-3c00-4264-a402-13cd25638f73
-    jinja: 'Translate this from Northern Sotho into Catalan: {{ sentence_nso }} |||
-      {{ sentence_cat }}'
+    id: 72e53a09-108b-4e31-83db-fcbdce92076b
+    jinja: 'Catalan: {{ sentence_cat }} = Yoruba: ||| {{ sentence_yor }}'
     metadata: *id001
-    name: translate-this-nso-cat
-    reference: Translate this from X to Y (Northern Sotho into Catalan)
-  64a0f3be-c2f6-4c84-b6a9-fc6830a76f9e: !Template
+    name: flores-xglm-Catalan-Yoruba
+    reference: 'L1: [sent1] = L2: [sent2]'
+  73028278-ba1e-4ab6-94c1-620703788199: !Template
     answer_choices: null
-    id: 64a0f3be-c2f6-4c84-b6a9-fc6830a76f9e
-    jinja: 'Translate this from Igbo into traditional Chinese: {{ sentence_ibo }}
-      ||| {{ sentence_zho_trad }}'
+    id: 73028278-ba1e-4ab6-94c1-620703788199
+    jinja: 'Catalan: {{ sentence_cat }} = Swahili: ||| {{ sentence_swh }}'
     metadata: *id001
-    name: translate-this-ibo-zho_trad
-    reference: Translate this from X to Y (Igbo into traditional Chinese)
-  64bf1cb0-7acb-462d-9077-8598a37e4438: !Template
+    name: flores-xglm-Catalan-Swahili
+    reference: 'L1: [sent1] = L2: [sent2]'
+  736e4933-9afe-441d-8a8e-983936442c39: !Template
     answer_choices: null
-    id: 64bf1cb0-7acb-462d-9077-8598a37e4438
-    jinja: 'Translate this from Brazilian Portuguese into French: {{ sentence_por
-      }} ||| {{ sentence_fra }}'
+    id: 736e4933-9afe-441d-8a8e-983936442c39
+    jinja: 'Gujarati: {{ sentence_guj }} = Indonesian: ||| {{ sentence_ind }}'
     metadata: *id001
-    name: translate-this-por-fra
-    reference: Translate this from X to Y (Brazilian Portuguese into French)
-  65505b8c-b18c-4ac9-85ad-80eed6844712: !Template
+    name: flores-xglm-Gujarati-Indonesian
+    reference: 'L1: [sent1] = L2: [sent2]'
+  73bb9e1b-d4f9-4f52-b6aa-12b69e78b800: !Template
     answer_choices: null
-    id: 65505b8c-b18c-4ac9-85ad-80eed6844712
-    jinja: 'Translate this from Kannada into Telugu: {{ sentence_kan }} ||| {{ sentence_tel
-      }}'
+    id: 73bb9e1b-d4f9-4f52-b6aa-12b69e78b800
+    jinja: 'Igbo: {{ sentence_ibo }} = Arabic: ||| {{ sentence_ara }}'
+    metadata: *id001
+    name: flores-xglm-Igbo-Arabic
+    reference: 'L1: [sent1] = L2: [sent2]'
+  73c86913-42ca-4ffd-8e91-6a4781e83ea8: !Template
+    answer_choices: null
+    id: 73c86913-42ca-4ffd-8e91-6a4781e83ea8
+    jinja: 'Igbo: {{ sentence_ibo }} = Wolof: ||| {{ sentence_wol }}'
     metadata: *id001
-    name: translate-this-kan-tel
-    reference: Translate this from X to Y (Kannada into Telugu)
-  65e89751-8dd2-4042-90ec-02b42714cc09: !Template
+    name: flores-xglm-Igbo-Wolof
+    reference: 'L1: [sent1] = L2: [sent2]'
+  73ec95d0-9222-4c1d-89fa-586d04a6bac8: !Template
     answer_choices: null
-    id: 65e89751-8dd2-4042-90ec-02b42714cc09
-    jinja: 'Translate this from French into English: {{ sentence_fra }} ||| {{ sentence_eng
+    id: 73ec95d0-9222-4c1d-89fa-586d04a6bac8
+    jinja: 'Punjabi: {{ sentence_pan }} = Lingala: ||| {{ sentence_lin }}'
+    metadata: *id001
+    name: flores-xglm-Punjabi-Lingala
+    reference: 'L1: [sent1] = L2: [sent2]'
+  74205ded-76b1-407c-866b-c338968afdb8: !Template
+    answer_choices: null
+    id: 74205ded-76b1-407c-866b-c338968afdb8
+    jinja: 'Wolof: {{ sentence_wol }} = traditional Chinese: ||| {{ sentence_zho_trad
       }}'
     metadata: *id001
-    name: translate-this-fra-eng
-    reference: Translate this from X to Y (French into English)
-  662cd46c-fb67-4b32-80b3-05f4841d545f: !Template
+    name: flores-xglm-Wolof-traditional Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  7492e676-a4a2-4183-b392-e2ca10b924c2: !Template
     answer_choices: null
-    id: 662cd46c-fb67-4b32-80b3-05f4841d545f
-    jinja: 'Translate this from Lingala into Hindi: {{ sentence_lin }} ||| {{ sentence_hin
+    id: 7492e676-a4a2-4183-b392-e2ca10b924c2
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = Yoruba: ||| {{ sentence_yor
       }}'
     metadata: *id001
-    name: translate-this-lin-hin
-    reference: Translate this from X to Y (Lingala into Hindi)
-  6661e0cd-e5ef-4256-bea6-37962fa7b0ab: !Template
+    name: flores-xglm-Latin American Spanish-Yoruba
+    reference: 'L1: [sent1] = L2: [sent2]'
+  74c057b4-1c36-45b5-a348-189527f6bf51: !Template
     answer_choices: null
-    id: 6661e0cd-e5ef-4256-bea6-37962fa7b0ab
-    jinja: 'Translate this from Swahili into Marathi: {{ sentence_swh }} ||| {{ sentence_mar
+    id: 74c057b4-1c36-45b5-a348-189527f6bf51
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Zulu: ||| {{ sentence_zul
       }}'
     metadata: *id001
-    name: translate-this-swh-mar
-    reference: Translate this from X to Y (Swahili into Marathi)
-  668ae9d4-3e88-4a15-bd92-ca495830b3e1: !Template
+    name: flores-xglm-simplified Chinese-Zulu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  7560321c-7da6-4f87-bcf1-f95e81d7c4e4: !Template
     answer_choices: null
-    id: 668ae9d4-3e88-4a15-bd92-ca495830b3e1
-    jinja: 'Translate this from Northern Sotho into Punjabi: {{ sentence_nso }} |||
-      {{ sentence_pan }}'
+    id: 7560321c-7da6-4f87-bcf1-f95e81d7c4e4
+    jinja: 'Assamese: {{ sentence_asm }} = Yoruba: ||| {{ sentence_yor }}'
     metadata: *id001
-    name: translate-this-nso-pan
-    reference: Translate this from X to Y (Northern Sotho into Punjabi)
-  66971d35-883b-4e0c-99f9-f0a6edf8e914: !Template
+    name: flores-xglm-Assamese-Yoruba
+    reference: 'L1: [sent1] = L2: [sent2]'
+  7596b16c-e9ec-45dd-8bd8-3a6a0637f3b7: !Template
     answer_choices: null
-    id: 66971d35-883b-4e0c-99f9-f0a6edf8e914
-    jinja: 'Translate this from Hindi into Xhosa: {{ sentence_hin }} ||| {{ sentence_xho
-      }}'
+    id: 7596b16c-e9ec-45dd-8bd8-3a6a0637f3b7
+    jinja: 'English: {{ sentence_eng }} = Zulu: ||| {{ sentence_zul }}'
     metadata: *id001
-    name: translate-this-hin-xho
-    reference: Translate this from X to Y (Hindi into Xhosa)
-  672c6d5f-14e4-4b71-88a1-0761919f510c: !Template
+    name: flores-xglm-English-Zulu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  75be758c-d3bc-454a-9fd3-e54aa4a54055: !Template
     answer_choices: null
-    id: 672c6d5f-14e4-4b71-88a1-0761919f510c
-    jinja: 'Translate this from Northern Sotho into Latin American Spanish: {{ sentence_nso
-      }} ||| {{ sentence_spa }}'
+    id: 75be758c-d3bc-454a-9fd3-e54aa4a54055
+    jinja: 'Yoruba: {{ sentence_yor }} = Urdu: ||| {{ sentence_urd }}'
     metadata: *id001
-    name: translate-this-nso-spa
-    reference: Translate this from X to Y (Northern Sotho into Latin American Spanish)
-  6751f8b6-07b0-447c-a0bf-ace699246fae: !Template
+    name: flores-xglm-Yoruba-Urdu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  7626b42d-bc1a-4868-8b46-cd67d5b41ff5: !Template
     answer_choices: null
-    id: 6751f8b6-07b0-447c-a0bf-ace699246fae
-    jinja: 'Translate this from simplified Chinese into Xhosa: {{ sentence_zho_simpl
-      }} ||| {{ sentence_xho }}'
+    id: 7626b42d-bc1a-4868-8b46-cd67d5b41ff5
+    jinja: 'Indonesian: {{ sentence_ind }} = Xhosa: ||| {{ sentence_xho }}'
     metadata: *id001
-    name: translate-this-zho_simpl-xho
-    reference: Translate this from X to Y (simplified Chinese into Xhosa)
-  67cb40ad-a657-490a-8ba2-a193b8b8d7c6: !Template
+    name: flores-xglm-Indonesian-Xhosa
+    reference: 'L1: [sent1] = L2: [sent2]'
+  763b40c9-03d4-4a87-97b3-1f1caf731f28: !Template
     answer_choices: null
-    id: 67cb40ad-a657-490a-8ba2-a193b8b8d7c6
-    jinja: 'Translate this from Yoruba into English: {{ sentence_yor }} ||| {{ sentence_eng
+    id: 763b40c9-03d4-4a87-97b3-1f1caf731f28
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Urdu: ||| {{ sentence_urd
       }}'
     metadata: *id001
-    name: translate-this-yor-eng
-    reference: Translate this from X to Y (Yoruba into English)
-  67d70eb8-6ef1-4ad9-a673-9fe995487a57: !Template
+    name: flores-xglm-simplified Chinese-Urdu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  768f3cc3-20e8-4fed-8d5d-89e23ee051a7: !Template
     answer_choices: null
-    id: 67d70eb8-6ef1-4ad9-a673-9fe995487a57
-    jinja: 'Translate this from Telugu into English: {{ sentence_tel }} ||| {{ sentence_eng
-      }}'
+    id: 768f3cc3-20e8-4fed-8d5d-89e23ee051a7
+    jinja: 'Zulu: {{ sentence_zul }} = Igbo: ||| {{ sentence_ibo }}'
+    metadata: *id001
+    name: flores-xglm-Zulu-Igbo
+    reference: 'L1: [sent1] = L2: [sent2]'
+  76b0c494-1916-4567-a64a-ba8c54d12443: !Template
+    answer_choices: null
+    id: 76b0c494-1916-4567-a64a-ba8c54d12443
+    jinja: 'Indonesian: {{ sentence_ind }} = Marathi: ||| {{ sentence_mar }}'
     metadata: *id001
-    name: translate-this-tel-eng
-    reference: Translate this from X to Y (Telugu into English)
-  68223ae5-55c4-4d63-a3ec-7c8fcec60980: !Template
+    name: flores-xglm-Indonesian-Marathi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  770a265c-d01c-4a79-b03d-c28639c062d4: !Template
     answer_choices: null
-    id: 68223ae5-55c4-4d63-a3ec-7c8fcec60980
-    jinja: 'Translate this from English into Indonesian: {{ sentence_eng }} ||| {{
-      sentence_ind }}'
+    id: 770a265c-d01c-4a79-b03d-c28639c062d4
+    jinja: 'Punjabi: {{ sentence_pan }} = Xhosa: ||| {{ sentence_xho }}'
     metadata: *id001
-    name: translate-this-eng-ind
-    reference: Translate this from X to Y (English into Indonesian)
-  6840cedc-6f7a-4a60-9168-6d416c732307: !Template
+    name: flores-xglm-Punjabi-Xhosa
+    reference: 'L1: [sent1] = L2: [sent2]'
+  770eeda6-31db-4637-be70-160a63ceeb62: !Template
     answer_choices: null
-    id: 6840cedc-6f7a-4a60-9168-6d416c732307
-    jinja: 'Translate this from Wolof into Igbo: {{ sentence_wol }} ||| {{ sentence_ibo
+    id: 770eeda6-31db-4637-be70-160a63ceeb62
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Vietnamese: ||| {{ sentence_vie
       }}'
     metadata: *id001
-    name: translate-this-wol-ibo
-    reference: Translate this from X to Y (Wolof into Igbo)
-  6845003e-c9a4-42b3-8b02-09c4a736ea1e: !Template
+    name: flores-xglm-traditional Chinese-Vietnamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  777bf526-a2c2-4643-9f1f-f8fcb4ca514d: !Template
     answer_choices: null
-    id: 6845003e-c9a4-42b3-8b02-09c4a736ea1e
-    jinja: 'Translate this from Oriya into Zulu: {{ sentence_ory }} ||| {{ sentence_zul
+    id: 777bf526-a2c2-4643-9f1f-f8fcb4ca514d
+    jinja: 'Telugu: {{ sentence_tel }} = Brazilian Portuguese: ||| {{ sentence_por
       }}'
     metadata: *id001
-    name: translate-this-ory-zul
-    reference: Translate this from X to Y (Oriya into Zulu)
-  68499bd9-b1a1-422e-a14f-b6a6aa7e3956: !Template
+    name: flores-xglm-Telugu-Brazilian Portuguese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  78356a10-bc9c-483d-9862-8eb4086d5202: !Template
     answer_choices: null
-    id: 68499bd9-b1a1-422e-a14f-b6a6aa7e3956
-    jinja: 'Translate this from Northern Sotho into Igbo: {{ sentence_nso }} ||| {{
-      sentence_ibo }}'
+    id: 78356a10-bc9c-483d-9862-8eb4086d5202
+    jinja: 'English: {{ sentence_eng }} = Assamese: ||| {{ sentence_asm }}'
     metadata: *id001
-    name: translate-this-nso-ibo
-    reference: Translate this from X to Y (Northern Sotho into Igbo)
-  6853dc38-2fef-437d-b177-6302e0b3b6d6: !Template
+    name: flores-xglm-English-Assamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  78c666cc-ad37-4c71-81b7-b9794c4fc04c: !Template
     answer_choices: null
-    id: 6853dc38-2fef-437d-b177-6302e0b3b6d6
-    jinja: 'Translate this from Indonesian into Brazilian Portuguese: {{ sentence_ind
-      }} ||| {{ sentence_por }}'
+    id: 78c666cc-ad37-4c71-81b7-b9794c4fc04c
+    jinja: 'Xhosa: {{ sentence_xho }} = Oriya: ||| {{ sentence_ory }}'
     metadata: *id001
-    name: translate-this-ind-por
-    reference: Translate this from X to Y (Indonesian into Brazilian Portuguese)
-  68adaaac-7972-4dfa-a544-6d26222e2f4d: !Template
+    name: flores-xglm-Xhosa-Oriya
+    reference: 'L1: [sent1] = L2: [sent2]'
+  78e4958c-3dd2-4690-9279-ee31be90ec3a: !Template
     answer_choices: null
-    id: 68adaaac-7972-4dfa-a544-6d26222e2f4d
-    jinja: 'Translate this from Arabic into Indonesian: {{ sentence_ara }} ||| {{
-      sentence_ind }}'
+    id: 78e4958c-3dd2-4690-9279-ee31be90ec3a
+    jinja: 'Vietnamese: {{ sentence_vie }} = Urdu: ||| {{ sentence_urd }}'
     metadata: *id001
-    name: translate-this-ara-ind
-    reference: Translate this from X to Y (Arabic into Indonesian)
-  68ff3008-2bc2-4765-93d2-19b351a36a60: !Template
+    name: flores-xglm-Vietnamese-Urdu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  7949d0b6-fc86-4f13-81b6-d4212db51f88: !Template
     answer_choices: null
-    id: 68ff3008-2bc2-4765-93d2-19b351a36a60
-    jinja: 'Translate this from Northern Sotho into Arabic: {{ sentence_nso }} |||
-      {{ sentence_ara }}'
+    id: 7949d0b6-fc86-4f13-81b6-d4212db51f88
+    jinja: 'Urdu: {{ sentence_urd }} = Tamil: ||| {{ sentence_tam }}'
     metadata: *id001
-    name: translate-this-nso-ara
-    reference: Translate this from X to Y (Northern Sotho into Arabic)
-  692450bc-863e-42b5-83c8-628328109c86: !Template
+    name: flores-xglm-Urdu-Tamil
+    reference: 'L1: [sent1] = L2: [sent2]'
+  7954101c-639a-41ba-af1f-7a3a349b8342: !Template
     answer_choices: null
-    id: 692450bc-863e-42b5-83c8-628328109c86
-    jinja: 'Translate this from Igbo into Oriya: {{ sentence_ibo }} ||| {{ sentence_ory
-      }}'
+    id: 7954101c-639a-41ba-af1f-7a3a349b8342
+    jinja: 'Igbo: {{ sentence_ibo }} = Zulu: ||| {{ sentence_zul }}'
     metadata: *id001
-    name: translate-this-ibo-ory
-    reference: Translate this from X to Y (Igbo into Oriya)
-  69b00764-c6ba-4fd7-b7ae-23024e5ccba5: !Template
+    name: flores-xglm-Igbo-Zulu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  7a40a43d-ffd5-4d35-a3c7-8c8c75e32671: !Template
     answer_choices: null
-    id: 69b00764-c6ba-4fd7-b7ae-23024e5ccba5
-    jinja: 'Translate this from Arabic into Igbo: {{ sentence_ara }} ||| {{ sentence_ibo
+    id: 7a40a43d-ffd5-4d35-a3c7-8c8c75e32671
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = Oriya: ||| {{ sentence_ory
       }}'
     metadata: *id001
-    name: translate-this-ara-ibo
-    reference: Translate this from X to Y (Arabic into Igbo)
-  69b5eaf4-ee25-4f75-825d-4fc0ea51655e: !Template
+    name: flores-xglm-Latin American Spanish-Oriya
+    reference: 'L1: [sent1] = L2: [sent2]'
+  7a4e59cc-2b53-4f6e-97a6-ca6c533dbf96: !Template
     answer_choices: null
-    id: 69b5eaf4-ee25-4f75-825d-4fc0ea51655e
-    jinja: 'Translate this from Malayalam into Catalan: {{ sentence_mal }} ||| {{
-      sentence_cat }}'
+    id: 7a4e59cc-2b53-4f6e-97a6-ca6c533dbf96
+    jinja: 'Kannada: {{ sentence_kan }} = Zulu: ||| {{ sentence_zul }}'
     metadata: *id001
-    name: translate-this-mal-cat
-    reference: Translate this from X to Y (Malayalam into Catalan)
-  69c3c235-30aa-42b7-ab3e-63d62bea975f: !Template
+    name: flores-xglm-Kannada-Zulu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  7a4e636f-a422-4776-bca8-a1dcdd1b63a1: !Template
     answer_choices: null
-    id: 69c3c235-30aa-42b7-ab3e-63d62bea975f
-    jinja: 'Translate this from Bengali into Oriya: {{ sentence_ben }} ||| {{ sentence_ory
-      }}'
+    id: 7a4e636f-a422-4776-bca8-a1dcdd1b63a1
+    jinja: 'Assamese: {{ sentence_asm }} = Indonesian: ||| {{ sentence_ind }}'
     metadata: *id001
-    name: translate-this-ben-ory
-    reference: Translate this from X to Y (Bengali into Oriya)
-  69dca34d-9917-4b90-b38a-c22e46fb5048: !Template
+    name: flores-xglm-Assamese-Indonesian
+    reference: 'L1: [sent1] = L2: [sent2]'
+  7ad0ce18-860d-4f11-9e46-f92cf3669870: !Template
     answer_choices: null
-    id: 69dca34d-9917-4b90-b38a-c22e46fb5048
-    jinja: 'Translate this from Arabic into English: {{ sentence_ara }} ||| {{ sentence_eng
+    id: 7ad0ce18-860d-4f11-9e46-f92cf3669870
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = Gujarati: ||| {{ sentence_guj
       }}'
     metadata: *id001
-    name: translate-this-ara-eng
-    reference: Translate this from X to Y (Arabic into English)
-  69e43ba0-9f84-4a51-9926-d2d72496c4dd: !Template
+    name: flores-xglm-Latin American Spanish-Gujarati
+    reference: 'L1: [sent1] = L2: [sent2]'
+  7ae2fa73-7245-4dff-b380-00d8b1e40559: !Template
     answer_choices: null
-    id: 69e43ba0-9f84-4a51-9926-d2d72496c4dd
-    jinja: 'Translate this from Telugu into Oriya: {{ sentence_tel }} ||| {{ sentence_ory
-      }}'
+    id: 7ae2fa73-7245-4dff-b380-00d8b1e40559
+    jinja: 'Xhosa: {{ sentence_xho }} = Assamese: ||| {{ sentence_asm }}'
     metadata: *id001
-    name: translate-this-tel-ory
-    reference: Translate this from X to Y (Telugu into Oriya)
-  6a2312d2-63b4-43ff-8ec5-1398aaade6e4: !Template
+    name: flores-xglm-Xhosa-Assamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  7b24862e-befa-46d4-af61-00b3335ab404: !Template
     answer_choices: null
-    id: 6a2312d2-63b4-43ff-8ec5-1398aaade6e4
-    jinja: 'Translate this from Telugu into Indonesian: {{ sentence_tel }} ||| {{
-      sentence_ind }}'
+    id: 7b24862e-befa-46d4-af61-00b3335ab404
+    jinja: 'Catalan: {{ sentence_cat }} = Tamil: ||| {{ sentence_tam }}'
     metadata: *id001
-    name: translate-this-tel-ind
-    reference: Translate this from X to Y (Telugu into Indonesian)
-  6a39d16d-8ac9-44ae-856d-7cc1942ed4cc: !Template
+    name: flores-xglm-Catalan-Tamil
+    reference: 'L1: [sent1] = L2: [sent2]'
+  7b6adf1f-c8ab-415c-9756-d23cddbcb1df: !Template
     answer_choices: null
-    id: 6a39d16d-8ac9-44ae-856d-7cc1942ed4cc
-    jinja: 'Translate this from Vietnamese into Kannada: {{ sentence_vie }} ||| {{
-      sentence_kan }}'
+    id: 7b6adf1f-c8ab-415c-9756-d23cddbcb1df
+    jinja: 'English: {{ sentence_eng }} = Igbo: ||| {{ sentence_ibo }}'
     metadata: *id001
-    name: translate-this-vie-kan
-    reference: Translate this from X to Y (Vietnamese into Kannada)
-  6a3a0d91-9d68-4404-ba49-39f5fbe524bb: !Template
+    name: flores-xglm-English-Igbo
+    reference: 'L1: [sent1] = L2: [sent2]'
+  7b6db17c-ac48-4c57-9607-9db2279c6524: !Template
     answer_choices: null
-    id: 6a3a0d91-9d68-4404-ba49-39f5fbe524bb
-    jinja: 'Translate this from French into Vietnamese: {{ sentence_fra }} ||| {{
-      sentence_vie }}'
+    id: 7b6db17c-ac48-4c57-9607-9db2279c6524
+    jinja: 'French: {{ sentence_fra }} = Assamese: ||| {{ sentence_asm }}'
     metadata: *id001
-    name: translate-this-fra-vie
-    reference: Translate this from X to Y (French into Vietnamese)
-  6acb0b10-6a6e-441d-a0a0-cf5af947ac8a: !Template
+    name: flores-xglm-French-Assamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  7bcc34d0-ae45-4458-8f52-2c27cf3f021e: !Template
     answer_choices: null
-    id: 6acb0b10-6a6e-441d-a0a0-cf5af947ac8a
-    jinja: 'Translate this from Hindi into Arabic: {{ sentence_hin }} ||| {{ sentence_ara
-      }}'
+    id: 7bcc34d0-ae45-4458-8f52-2c27cf3f021e
+    jinja: 'Zulu: {{ sentence_zul }} = Bengali: ||| {{ sentence_ben }}'
     metadata: *id001
-    name: translate-this-hin-ara
-    reference: Translate this from X to Y (Hindi into Arabic)
-  6b5c970d-7965-4cfe-b31d-8dd0c1a789ea: !Template
+    name: flores-xglm-Zulu-Bengali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  7c2df6f3-a684-4498-8c7f-2c1e86487d49: !Template
     answer_choices: null
-    id: 6b5c970d-7965-4cfe-b31d-8dd0c1a789ea
-    jinja: 'Translate this from Malayalam into Lingala: {{ sentence_mal }} ||| {{
-      sentence_lin }}'
+    id: 7c2df6f3-a684-4498-8c7f-2c1e86487d49
+    jinja: 'Wolof: {{ sentence_wol }} = Tamil: ||| {{ sentence_tam }}'
     metadata: *id001
-    name: translate-this-mal-lin
-    reference: Translate this from X to Y (Malayalam into Lingala)
-  6bdb6568-bb6c-4045-baf2-f4bbbec5cc0b: !Template
+    name: flores-xglm-Wolof-Tamil
+    reference: 'L1: [sent1] = L2: [sent2]'
+  7ca5f734-98b6-4996-a02c-1bafa6cf61e9: !Template
     answer_choices: null
-    id: 6bdb6568-bb6c-4045-baf2-f4bbbec5cc0b
-    jinja: 'Translate this from Catalan into Zulu: {{ sentence_cat }} ||| {{ sentence_zul
+    id: 7ca5f734-98b6-4996-a02c-1bafa6cf61e9
+    jinja: 'Arabic: {{ sentence_ara }} = simplified Chinese: ||| {{ sentence_zho_simpl
       }}'
     metadata: *id001
-    name: translate-this-cat-zul
-    reference: Translate this from X to Y (Catalan into Zulu)
-  6c8d8c33-537d-40eb-80af-27e0c66cbe01: !Template
+    name: flores-xglm-Arabic-simplified Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  7ccfce6e-9ef0-498e-a1a1-7f956143b313: !Template
     answer_choices: null
-    id: 6c8d8c33-537d-40eb-80af-27e0c66cbe01
-    jinja: 'Translate this from Tamil into Assamese: {{ sentence_tam }} ||| {{ sentence_asm
-      }}'
+    id: 7ccfce6e-9ef0-498e-a1a1-7f956143b313
+    jinja: 'Northern Sotho: {{ sentence_nso }} = Catalan: ||| {{ sentence_cat }}'
     metadata: *id001
-    name: translate-this-tam-asm
-    reference: Translate this from X to Y (Tamil into Assamese)
-  6ceb5335-1bea-4dba-9bcc-0377bee1ec19: !Template
+    name: flores-xglm-Northern Sotho-Catalan
+    reference: 'L1: [sent1] = L2: [sent2]'
+  7d15463d-6ccf-4b02-a387-57b4b285d4d6: !Template
     answer_choices: null
-    id: 6ceb5335-1bea-4dba-9bcc-0377bee1ec19
-    jinja: 'Translate this from Zulu into Swahili: {{ sentence_zul }} ||| {{ sentence_swh
+    id: 7d15463d-6ccf-4b02-a387-57b4b285d4d6
+    jinja: 'Kannada: {{ sentence_kan }} = Latin American Spanish: ||| {{ sentence_spa
       }}'
     metadata: *id001
-    name: translate-this-zul-swh
-    reference: Translate this from X to Y (Zulu into Swahili)
-  6d0c6963-8568-46a5-b730-aedeb1fa007d: !Template
+    name: flores-xglm-Kannada-Latin American Spanish
+    reference: 'L1: [sent1] = L2: [sent2]'
+  7d3b5dfd-38ab-44a4-8818-f68ba239a313: !Template
     answer_choices: null
-    id: 6d0c6963-8568-46a5-b730-aedeb1fa007d
-    jinja: 'Translate this from Wolof into English: {{ sentence_wol }} ||| {{ sentence_eng
-      }}'
+    id: 7d3b5dfd-38ab-44a4-8818-f68ba239a313
+    jinja: 'Nepali: {{ sentence_npi }} = Telugu: ||| {{ sentence_tel }}'
     metadata: *id001
-    name: translate-this-wol-eng
-    reference: Translate this from X to Y (Wolof into English)
-  6d1e947e-6c86-40e0-b506-d982d68b400e: !Template
+    name: flores-xglm-Nepali-Telugu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  7d7a5091-bfa4-4b94-8725-8da2a2ca646d: !Template
     answer_choices: null
-    id: 6d1e947e-6c86-40e0-b506-d982d68b400e
-    jinja: 'Translate this from Hindi into Vietnamese: {{ sentence_hin }} ||| {{ sentence_vie
-      }}'
+    id: 7d7a5091-bfa4-4b94-8725-8da2a2ca646d
+    jinja: 'Catalan: {{ sentence_cat }} = Northern Sotho: ||| {{ sentence_nso }}'
     metadata: *id001
-    name: translate-this-hin-vie
-    reference: Translate this from X to Y (Hindi into Vietnamese)
-  6d4af1f2-cc4b-4c41-aa41-fbbc7e0c9581: !Template
+    name: flores-xglm-Catalan-Northern Sotho
+    reference: 'L1: [sent1] = L2: [sent2]'
+  7e943e63-87dd-489d-ad2c-9920ecf307be: !Template
     answer_choices: null
-    id: 6d4af1f2-cc4b-4c41-aa41-fbbc7e0c9581
-    jinja: 'Translate this from Northern Sotho into Xhosa: {{ sentence_nso }} |||
-      {{ sentence_xho }}'
+    id: 7e943e63-87dd-489d-ad2c-9920ecf307be
+    jinja: 'Yoruba: {{ sentence_yor }} = Lingala: ||| {{ sentence_lin }}'
     metadata: *id001
-    name: translate-this-nso-xho
-    reference: Translate this from X to Y (Northern Sotho into Xhosa)
-  6d55c260-3db6-45be-9962-c19a239cbdc4: !Template
+    name: flores-xglm-Yoruba-Lingala
+    reference: 'L1: [sent1] = L2: [sent2]'
+  7ea65796-48a8-466c-9ef0-3e0d3bf758b2: !Template
     answer_choices: null
-    id: 6d55c260-3db6-45be-9962-c19a239cbdc4
-    jinja: 'Translate this from Marathi into Telugu: {{ sentence_mar }} ||| {{ sentence_tel
-      }}'
+    id: 7ea65796-48a8-466c-9ef0-3e0d3bf758b2
+    jinja: 'Zulu: {{ sentence_zul }} = Urdu: ||| {{ sentence_urd }}'
     metadata: *id001
-    name: translate-this-mar-tel
-    reference: Translate this from X to Y (Marathi into Telugu)
-  6d689cd6-bf01-4c5e-b396-5fc91fe8ee05: !Template
+    name: flores-xglm-Zulu-Urdu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  7ec8c425-0449-44cf-8e96-99e7d435becc: !Template
     answer_choices: null
-    id: 6d689cd6-bf01-4c5e-b396-5fc91fe8ee05
-    jinja: 'Translate this from English into Oriya: {{ sentence_eng }} ||| {{ sentence_ory
-      }}'
+    id: 7ec8c425-0449-44cf-8e96-99e7d435becc
+    jinja: 'Tamil: {{ sentence_tam }} = Yoruba: ||| {{ sentence_yor }}'
     metadata: *id001
-    name: translate-this-eng-ory
-    reference: Translate this from X to Y (English into Oriya)
-  6d8138b5-8b42-4b8c-a206-d5dfd0287425: !Template
+    name: flores-xglm-Tamil-Yoruba
+    reference: 'L1: [sent1] = L2: [sent2]'
+  7f0bffe5-5d42-4ba1-b311-8655b1fd3a3f: !Template
     answer_choices: null
-    id: 6d8138b5-8b42-4b8c-a206-d5dfd0287425
-    jinja: 'Translate this from Oriya into Gujarati: {{ sentence_ory }} ||| {{ sentence_guj
+    id: 7f0bffe5-5d42-4ba1-b311-8655b1fd3a3f
+    jinja: 'Tamil: {{ sentence_tam }} = traditional Chinese: ||| {{ sentence_zho_trad
       }}'
     metadata: *id001
-    name: translate-this-ory-guj
-    reference: Translate this from X to Y (Oriya into Gujarati)
-  6d87d8fd-57f6-4b18-bece-4ee77e1a6159: !Template
+    name: flores-xglm-Tamil-traditional Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  7f17774d-4c84-4e51-986b-79d0fb7e851c: !Template
     answer_choices: null
-    id: 6d87d8fd-57f6-4b18-bece-4ee77e1a6159
-    jinja: 'Translate this from Northern Sotho into Malayalam: {{ sentence_nso }}
-      ||| {{ sentence_mal }}'
+    id: 7f17774d-4c84-4e51-986b-79d0fb7e851c
+    jinja: 'Nepali: {{ sentence_npi }} = Igbo: ||| {{ sentence_ibo }}'
     metadata: *id001
-    name: translate-this-nso-mal
-    reference: Translate this from X to Y (Northern Sotho into Malayalam)
-  6d8f2fbb-c91d-42dd-a067-c2f07347ce49: !Template
+    name: flores-xglm-Nepali-Igbo
+    reference: 'L1: [sent1] = L2: [sent2]'
+  7f3686b0-a51b-402f-9ca4-3ea2ff138955: !Template
     answer_choices: null
-    id: 6d8f2fbb-c91d-42dd-a067-c2f07347ce49
-    jinja: 'Translate this from traditional Chinese into Zulu: {{ sentence_zho_trad
-      }} ||| {{ sentence_zul }}'
+    id: 7f3686b0-a51b-402f-9ca4-3ea2ff138955
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Marathi: ||| {{ sentence_mar
+      }}'
     metadata: *id001
-    name: translate-this-zho_trad-zul
-    reference: Translate this from X to Y (traditional Chinese into Zulu)
-  6e081515-81ba-4cc4-a6f4-85fca5d07fac: !Template
+    name: flores-xglm-simplified Chinese-Marathi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  7f72665c-a815-4f14-a44a-cb6c84edf195: !Template
     answer_choices: null
-    id: 6e081515-81ba-4cc4-a6f4-85fca5d07fac
-    jinja: 'Translate this from Xhosa into Tamil: {{ sentence_xho }} ||| {{ sentence_tam
-      }}'
+    id: 7f72665c-a815-4f14-a44a-cb6c84edf195
+    jinja: 'Vietnamese: {{ sentence_vie }} = Gujarati: ||| {{ sentence_guj }}'
     metadata: *id001
-    name: translate-this-xho-tam
-    reference: Translate this from X to Y (Xhosa into Tamil)
-  6e2caf3c-468d-4a21-9171-2e98ccbc9d67: !Template
+    name: flores-xglm-Vietnamese-Gujarati
+    reference: 'L1: [sent1] = L2: [sent2]'
+  7fd87b4f-b809-4168-be94-de4dc6c69eb9: !Template
     answer_choices: null
-    id: 6e2caf3c-468d-4a21-9171-2e98ccbc9d67
-    jinja: 'Translate this from Catalan into Xhosa: {{ sentence_cat }} ||| {{ sentence_xho
-      }}'
+    id: 7fd87b4f-b809-4168-be94-de4dc6c69eb9
+    jinja: 'Oriya: {{ sentence_ory }} = Urdu: ||| {{ sentence_urd }}'
     metadata: *id001
-    name: translate-this-cat-xho
-    reference: Translate this from X to Y (Catalan into Xhosa)
-  6ea3ada7-6894-4425-8c51-57a56124d2b3: !Template
+    name: flores-xglm-Oriya-Urdu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  7ff84dc1-a9cc-40ac-af25-e010b07f2b4d: !Template
     answer_choices: null
-    id: 6ea3ada7-6894-4425-8c51-57a56124d2b3
-    jinja: 'Translate this from Brazilian Portuguese into Assamese: {{ sentence_por
-      }} ||| {{ sentence_asm }}'
+    id: 7ff84dc1-a9cc-40ac-af25-e010b07f2b4d
+    jinja: 'Assamese: {{ sentence_asm }} = Marathi: ||| {{ sentence_mar }}'
     metadata: *id001
-    name: translate-this-por-asm
-    reference: Translate this from X to Y (Brazilian Portuguese into Assamese)
-  6eae27c2-2698-4ce7-abf9-8639db4cbfa7: !Template
+    name: flores-xglm-Assamese-Marathi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  80ca8900-c047-41c7-b140-de874dc87dac: !Template
     answer_choices: null
-    id: 6eae27c2-2698-4ce7-abf9-8639db4cbfa7
-    jinja: 'Translate this from simplified Chinese into Indonesian: {{ sentence_zho_simpl
-      }} ||| {{ sentence_ind }}'
+    id: 80ca8900-c047-41c7-b140-de874dc87dac
+    jinja: 'Arabic: {{ sentence_ara }} = Tamil: ||| {{ sentence_tam }}'
     metadata: *id001
-    name: translate-this-zho_simpl-ind
-    reference: Translate this from X to Y (simplified Chinese into Indonesian)
-  6ec0cd02-64f7-4967-ae76-43c27a87202d: !Template
+    name: flores-xglm-Arabic-Tamil
+    reference: 'L1: [sent1] = L2: [sent2]'
+  80ff8d9d-b06b-4d2c-b80b-5b8f2f8d640a: !Template
     answer_choices: null
-    id: 6ec0cd02-64f7-4967-ae76-43c27a87202d
-    jinja: 'Translate this from Indonesian into Lingala: {{ sentence_ind }} ||| {{
-      sentence_lin }}'
+    id: 80ff8d9d-b06b-4d2c-b80b-5b8f2f8d640a
+    jinja: 'Indonesian: {{ sentence_ind }} = Urdu: ||| {{ sentence_urd }}'
     metadata: *id001
-    name: translate-this-ind-lin
-    reference: Translate this from X to Y (Indonesian into Lingala)
-  6f2b0289-59d3-482b-ae09-57b32d0e8924: !Template
+    name: flores-xglm-Indonesian-Urdu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  812e4595-a67a-4ba5-a3ff-a7d8a247113e: !Template
     answer_choices: null
-    id: 6f2b0289-59d3-482b-ae09-57b32d0e8924
-    jinja: 'Translate this from Zulu into Malayalam: {{ sentence_zul }} ||| {{ sentence_mal
+    id: 812e4595-a67a-4ba5-a3ff-a7d8a247113e
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Xhosa: ||| {{ sentence_xho
       }}'
     metadata: *id001
-    name: translate-this-zul-mal
-    reference: Translate this from X to Y (Zulu into Malayalam)
-  6ffdcec4-1646-4a07-8be1-9dd4b4aab1c0: !Template
+    name: flores-xglm-traditional Chinese-Xhosa
+    reference: 'L1: [sent1] = L2: [sent2]'
+  8147dea1-652e-4947-854d-5c780db4d038: !Template
     answer_choices: null
-    id: 6ffdcec4-1646-4a07-8be1-9dd4b4aab1c0
-    jinja: 'Translate this from Urdu into Oriya: {{ sentence_urd }} ||| {{ sentence_ory
+    id: 8147dea1-652e-4947-854d-5c780db4d038
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Bengali: ||| {{ sentence_ben
       }}'
     metadata: *id001
-    name: translate-this-urd-ory
-    reference: Translate this from X to Y (Urdu into Oriya)
-  70118ba3-e684-46e8-a421-4c627893ae1e: !Template
+    name: flores-xglm-simplified Chinese-Bengali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  81593c55-5086-40e2-99db-ff33a84bbb19: !Template
     answer_choices: null
-    id: 70118ba3-e684-46e8-a421-4c627893ae1e
-    jinja: 'Translate this from Zulu into Vietnamese: {{ sentence_zul }} ||| {{ sentence_vie
-      }}'
+    id: 81593c55-5086-40e2-99db-ff33a84bbb19
+    jinja: 'Indonesian: {{ sentence_ind }} = Gujarati: ||| {{ sentence_guj }}'
     metadata: *id001
-    name: translate-this-zul-vie
-    reference: Translate this from X to Y (Zulu into Vietnamese)
-  7030a60a-d655-4241-a1c3-0de57ebcbb97: !Template
+    name: flores-xglm-Indonesian-Gujarati
+    reference: 'L1: [sent1] = L2: [sent2]'
+  822886cf-67e2-4873-9bf1-da7c976025e3: !Template
     answer_choices: null
-    id: 7030a60a-d655-4241-a1c3-0de57ebcbb97
-    jinja: 'Translate this from Vietnamese into Marathi: {{ sentence_vie }} ||| {{
-      sentence_mar }}'
+    id: 822886cf-67e2-4873-9bf1-da7c976025e3
+    jinja: 'Telugu: {{ sentence_tel }} = French: ||| {{ sentence_fra }}'
     metadata: *id001
-    name: translate-this-vie-mar
-    reference: Translate this from X to Y (Vietnamese into Marathi)
-  7073cf56-1c6b-4900-8caa-48a66ce431d8: !Template
+    name: flores-xglm-Telugu-French
+    reference: 'L1: [sent1] = L2: [sent2]'
+  82c418a1-8656-412b-822e-d69f038877b9: !Template
     answer_choices: null
-    id: 7073cf56-1c6b-4900-8caa-48a66ce431d8
-    jinja: 'Translate this from Oriya into Lingala: {{ sentence_ory }} ||| {{ sentence_lin
+    id: 82c418a1-8656-412b-822e-d69f038877b9
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Igbo: ||| {{ sentence_ibo
       }}'
     metadata: *id001
-    name: translate-this-ory-lin
-    reference: Translate this from X to Y (Oriya into Lingala)
-  712ab55c-b18c-4079-b4e6-eb609d4fd1b0: !Template
+    name: flores-xglm-simplified Chinese-Igbo
+    reference: 'L1: [sent1] = L2: [sent2]'
+  82ce3d5f-61b1-46cd-8ea3-953892d6dafb: !Template
     answer_choices: null
-    id: 712ab55c-b18c-4079-b4e6-eb609d4fd1b0
-    jinja: 'Translate this from Tamil into simplified Chinese: {{ sentence_tam }}
-      ||| {{ sentence_zho_simpl }}'
+    id: 82ce3d5f-61b1-46cd-8ea3-953892d6dafb
+    jinja: 'Xhosa: {{ sentence_xho }} = Vietnamese: ||| {{ sentence_vie }}'
     metadata: *id001
-    name: translate-this-tam-zho_simpl
-    reference: Translate this from X to Y (Tamil into simplified Chinese)
-  713486d4-e4f8-44ef-bbba-2cc3aa6a6771: !Template
+    name: flores-xglm-Xhosa-Vietnamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  83155e74-2aec-4b60-a81c-5819972ef188: !Template
     answer_choices: null
-    id: 713486d4-e4f8-44ef-bbba-2cc3aa6a6771
-    jinja: 'Translate this from Tamil into English: {{ sentence_tam }} ||| {{ sentence_eng
+    id: 83155e74-2aec-4b60-a81c-5819972ef188
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = Malayalam: ||| {{ sentence_mal
       }}'
     metadata: *id001
-    name: translate-this-tam-eng
-    reference: Translate this from X to Y (Tamil into English)
-  71939f9b-b438-40da-b27f-95c3c01e4c29: !Template
+    name: flores-xglm-Latin American Spanish-Malayalam
+    reference: 'L1: [sent1] = L2: [sent2]'
+  83730473-feaf-4612-8b7b-c84ef8e7e858: !Template
     answer_choices: null
-    id: 71939f9b-b438-40da-b27f-95c3c01e4c29
-    jinja: 'Translate this from Indonesian into Vietnamese: {{ sentence_ind }} |||
-      {{ sentence_vie }}'
+    id: 83730473-feaf-4612-8b7b-c84ef8e7e858
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = English: ||| {{ sentence_eng
+      }}'
     metadata: *id001
-    name: translate-this-ind-vie
-    reference: Translate this from X to Y (Indonesian into Vietnamese)
-  71a8b9c3-fa8b-4cf2-92b9-76525225432e: !Template
+    name: flores-xglm-Brazilian Portuguese-English
+    reference: 'L1: [sent1] = L2: [sent2]'
+  837e1591-3442-490c-ad80-a38ec1b2374f: !Template
     answer_choices: null
-    id: 71a8b9c3-fa8b-4cf2-92b9-76525225432e
-    jinja: 'Translate this from Nepali into Malayalam: {{ sentence_npi }} ||| {{ sentence_mal
+    id: 837e1591-3442-490c-ad80-a38ec1b2374f
+    jinja: 'Yoruba: {{ sentence_yor }} = traditional Chinese: ||| {{ sentence_zho_trad
       }}'
     metadata: *id001
-    name: translate-this-npi-mal
-    reference: Translate this from X to Y (Nepali into Malayalam)
-  71ecc9bf-5b46-4653-94e7-8171fbc4cfdc: !Template
+    name: flores-xglm-Yoruba-traditional Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  83a3b490-8ca4-4ea3-899c-2c22c9859b69: !Template
     answer_choices: null
-    id: 71ecc9bf-5b46-4653-94e7-8171fbc4cfdc
-    jinja: 'Translate this from Gujarati into Zulu: {{ sentence_guj }} ||| {{ sentence_zul
+    id: 83a3b490-8ca4-4ea3-899c-2c22c9859b69
+    jinja: 'Oriya: {{ sentence_ory }} = traditional Chinese: ||| {{ sentence_zho_trad
       }}'
     metadata: *id001
-    name: translate-this-guj-zul
-    reference: Translate this from X to Y (Gujarati into Zulu)
-  7212e233-416e-4054-ac39-b136e1fd7ca2: !Template
+    name: flores-xglm-Oriya-traditional Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  83ddae6c-4e64-4aa3-a41f-763edf614f59: !Template
     answer_choices: null
-    id: 7212e233-416e-4054-ac39-b136e1fd7ca2
-    jinja: 'Translate this from Catalan into Swahili: {{ sentence_cat }} ||| {{ sentence_swh
-      }}'
+    id: 83ddae6c-4e64-4aa3-a41f-763edf614f59
+    jinja: 'Bengali: {{ sentence_ben }} = Gujarati: ||| {{ sentence_guj }}'
     metadata: *id001
-    name: translate-this-cat-swh
-    reference: Translate this from X to Y (Catalan into Swahili)
-  728467d9-0679-418a-aaa3-eadc1dd59ea0: !Template
+    name: flores-xglm-Bengali-Gujarati
+    reference: 'L1: [sent1] = L2: [sent2]'
+  8414801f-f5c7-4bde-97c2-b6595d7ec218: !Template
     answer_choices: null
-    id: 728467d9-0679-418a-aaa3-eadc1dd59ea0
-    jinja: 'Translate this from Vietnamese into Lingala: {{ sentence_vie }} ||| {{
-      sentence_lin }}'
+    id: 8414801f-f5c7-4bde-97c2-b6595d7ec218
+    jinja: 'Zulu: {{ sentence_zul }} = Oriya: ||| {{ sentence_ory }}'
     metadata: *id001
-    name: translate-this-vie-lin
-    reference: Translate this from X to Y (Vietnamese into Lingala)
-  73015c55-f712-452c-9d02-00c309c35050: !Template
+    name: flores-xglm-Zulu-Oriya
+    reference: 'L1: [sent1] = L2: [sent2]'
+  84243434-fc95-40fa-a081-7287510e29c6: !Template
     answer_choices: null
-    id: 73015c55-f712-452c-9d02-00c309c35050
-    jinja: 'Translate this from Telugu into Punjabi: {{ sentence_tel }} ||| {{ sentence_pan
-      }}'
+    id: 84243434-fc95-40fa-a081-7287510e29c6
+    jinja: 'Gujarati: {{ sentence_guj }} = Catalan: ||| {{ sentence_cat }}'
     metadata: *id001
-    name: translate-this-tel-pan
-    reference: Translate this from X to Y (Telugu into Punjabi)
-  7330a8e2-d515-4b8e-ab12-9e8c49330f66: !Template
+    name: flores-xglm-Gujarati-Catalan
+    reference: 'L1: [sent1] = L2: [sent2]'
+  842c589c-4186-4972-b03e-dac77fdb74bc: !Template
     answer_choices: null
-    id: 7330a8e2-d515-4b8e-ab12-9e8c49330f66
-    jinja: 'Translate this from Urdu into French: {{ sentence_urd }} ||| {{ sentence_fra
+    id: 842c589c-4186-4972-b03e-dac77fdb74bc
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Indonesian: ||| {{ sentence_ind
       }}'
     metadata: *id001
-    name: translate-this-urd-fra
-    reference: Translate this from X to Y (Urdu into French)
-  7390a878-d2be-4251-afda-5a5ed45621cd: !Template
+    name: flores-xglm-Brazilian Portuguese-Indonesian
+    reference: 'L1: [sent1] = L2: [sent2]'
+  8434e158-9c1c-46fa-a064-9fb6537fe049: !Template
     answer_choices: null
-    id: 7390a878-d2be-4251-afda-5a5ed45621cd
-    jinja: 'Translate this from Vietnamese into Indonesian: {{ sentence_vie }} |||
-      {{ sentence_ind }}'
+    id: 8434e158-9c1c-46fa-a064-9fb6537fe049
+    jinja: 'English: {{ sentence_eng }} = French: ||| {{ sentence_fra }}'
     metadata: *id001
-    name: translate-this-vie-ind
-    reference: Translate this from X to Y (Vietnamese into Indonesian)
-  73b4eb48-dbc3-4a19-bd8e-f82467651299: !Template
+    name: flores-xglm-English-French
+    reference: 'L1: [sent1] = L2: [sent2]'
+  84593802-f373-4545-b1b0-10bf7535475f: !Template
     answer_choices: null
-    id: 73b4eb48-dbc3-4a19-bd8e-f82467651299
-    jinja: 'Translate this from Yoruba into Northern Sotho: {{ sentence_yor }} |||
-      {{ sentence_nso }}'
+    id: 84593802-f373-4545-b1b0-10bf7535475f
+    jinja: 'Punjabi: {{ sentence_pan }} = Assamese: ||| {{ sentence_asm }}'
     metadata: *id001
-    name: translate-this-yor-nso
-    reference: Translate this from X to Y (Yoruba into Northern Sotho)
-  73f8e225-88a2-4cc1-995b-93661544dae4: !Template
+    name: flores-xglm-Punjabi-Assamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  84617bc5-4bef-4711-833c-d34a270ce76c: !Template
     answer_choices: null
-    id: 73f8e225-88a2-4cc1-995b-93661544dae4
-    jinja: 'Translate this from Nepali into Lingala: {{ sentence_npi }} ||| {{ sentence_lin
-      }}'
+    id: 84617bc5-4bef-4711-833c-d34a270ce76c
+    jinja: 'Urdu: {{ sentence_urd }} = Marathi: ||| {{ sentence_mar }}'
     metadata: *id001
-    name: translate-this-npi-lin
-    reference: Translate this from X to Y (Nepali into Lingala)
-  74223578-b55e-43cb-8505-bf73f3496ba5: !Template
+    name: flores-xglm-Urdu-Marathi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  84764a73-d155-41d1-b13c-ce401d297b3a: !Template
     answer_choices: null
-    id: 74223578-b55e-43cb-8505-bf73f3496ba5
-    jinja: 'Translate this from Lingala into English: {{ sentence_lin }} ||| {{ sentence_eng
-      }}'
+    id: 84764a73-d155-41d1-b13c-ce401d297b3a
+    jinja: 'Lingala: {{ sentence_lin }} = Yoruba: ||| {{ sentence_yor }}'
     metadata: *id001
-    name: translate-this-lin-eng
-    reference: Translate this from X to Y (Lingala into English)
-  743ffcf0-c8b7-4ae6-8cb9-21dc0455425e: !Template
+    name: flores-xglm-Lingala-Yoruba
+    reference: 'L1: [sent1] = L2: [sent2]'
+  84eece65-e67b-4866-9417-2d249e71490c: !Template
     answer_choices: null
-    id: 743ffcf0-c8b7-4ae6-8cb9-21dc0455425e
-    jinja: 'Translate this from Gujarati into Malayalam: {{ sentence_guj }} ||| {{
-      sentence_mal }}'
+    id: 84eece65-e67b-4866-9417-2d249e71490c
+    jinja: 'Nepali: {{ sentence_npi }} = Swahili: ||| {{ sentence_swh }}'
     metadata: *id001
-    name: translate-this-guj-mal
-    reference: Translate this from X to Y (Gujarati into Malayalam)
-  744ad5cf-9d27-4b65-b8d1-dbc635b51c7f: !Template
+    name: flores-xglm-Nepali-Swahili
+    reference: 'L1: [sent1] = L2: [sent2]'
+  857258cc-c373-4e82-8e59-e9e5f82be91f: !Template
     answer_choices: null
-    id: 744ad5cf-9d27-4b65-b8d1-dbc635b51c7f
-    jinja: 'Translate this from Hindi into Telugu: {{ sentence_hin }} ||| {{ sentence_tel
-      }}'
+    id: 857258cc-c373-4e82-8e59-e9e5f82be91f
+    jinja: 'Assamese: {{ sentence_asm }} = Tamil: ||| {{ sentence_tam }}'
     metadata: *id001
-    name: translate-this-hin-tel
-    reference: Translate this from X to Y (Hindi into Telugu)
-  744d0a0f-276d-4734-8b58-b07df51603a5: !Template
+    name: flores-xglm-Assamese-Tamil
+    reference: 'L1: [sent1] = L2: [sent2]'
+  85a9b00e-126c-42f3-8cec-f34f222d0def: !Template
     answer_choices: null
-    id: 744d0a0f-276d-4734-8b58-b07df51603a5
-    jinja: 'Translate this from Indonesian into Malayalam: {{ sentence_ind }} |||
-      {{ sentence_mal }}'
+    id: 85a9b00e-126c-42f3-8cec-f34f222d0def
+    jinja: 'Marathi: {{ sentence_mar }} = Kannada: ||| {{ sentence_kan }}'
     metadata: *id001
-    name: translate-this-ind-mal
-    reference: Translate this from X to Y (Indonesian into Malayalam)
-  745a9318-455e-45f4-9ea4-155dc567c2d1: !Template
+    name: flores-xglm-Marathi-Kannada
+    reference: 'L1: [sent1] = L2: [sent2]'
+  85d2705b-6871-4650-b561-c52267b78587: !Template
     answer_choices: null
-    id: 745a9318-455e-45f4-9ea4-155dc567c2d1
-    jinja: 'Translate this from Yoruba into Tamil: {{ sentence_yor }} ||| {{ sentence_tam
-      }}'
+    id: 85d2705b-6871-4650-b561-c52267b78587
+    jinja: 'Lingala: {{ sentence_lin }} = Northern Sotho: ||| {{ sentence_nso }}'
     metadata: *id001
-    name: translate-this-yor-tam
-    reference: Translate this from X to Y (Yoruba into Tamil)
-  75508e1b-992c-452f-9c53-27f2aa979baa: !Template
+    name: flores-xglm-Lingala-Northern Sotho
+    reference: 'L1: [sent1] = L2: [sent2]'
+  8638f13a-d796-48b3-8a69-4ab335a4efa5: !Template
     answer_choices: null
-    id: 75508e1b-992c-452f-9c53-27f2aa979baa
-    jinja: 'Translate this from Igbo into Marathi: {{ sentence_ibo }} ||| {{ sentence_mar
-      }}'
+    id: 8638f13a-d796-48b3-8a69-4ab335a4efa5
+    jinja: 'Northern Sotho: {{ sentence_nso }} = Vietnamese: ||| {{ sentence_vie }}'
     metadata: *id001
-    name: translate-this-ibo-mar
-    reference: Translate this from X to Y (Igbo into Marathi)
-  755b00bc-ac4a-4e26-adcd-3cffb81dcc99: !Template
+    name: flores-xglm-Northern Sotho-Vietnamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  8646da41-9c60-4d5d-b20f-2b5de32d11ec: !Template
     answer_choices: null
-    id: 755b00bc-ac4a-4e26-adcd-3cffb81dcc99
-    jinja: 'Translate this from Wolof into Zulu: {{ sentence_wol }} ||| {{ sentence_zul
-      }}'
+    id: 8646da41-9c60-4d5d-b20f-2b5de32d11ec
+    jinja: 'Vietnamese: {{ sentence_vie }} = Swahili: ||| {{ sentence_swh }}'
     metadata: *id001
-    name: translate-this-wol-zul
-    reference: Translate this from X to Y (Wolof into Zulu)
-  756712b7-4789-43be-ba20-127498dfe9a6: !Template
+    name: flores-xglm-Vietnamese-Swahili
+    reference: 'L1: [sent1] = L2: [sent2]'
+  868f1edf-bd66-4bf1-9cdd-bfab26c8da90: !Template
     answer_choices: null
-    id: 756712b7-4789-43be-ba20-127498dfe9a6
-    jinja: 'Translate this from Gujarati into Hindi: {{ sentence_guj }} ||| {{ sentence_hin
-      }}'
+    id: 868f1edf-bd66-4bf1-9cdd-bfab26c8da90
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = Brazilian Portuguese: |||
+      {{ sentence_por }}'
     metadata: *id001
-    name: translate-this-guj-hin
-    reference: Translate this from X to Y (Gujarati into Hindi)
-  75c85f3f-71c3-4c0b-9168-9c3bc3c177d4: !Template
+    name: flores-xglm-Latin American Spanish-Brazilian Portuguese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  86c9f660-b0bf-459f-a1c8-b5f1f77439df: !Template
     answer_choices: null
-    id: 75c85f3f-71c3-4c0b-9168-9c3bc3c177d4
-    jinja: 'Translate this from French into Malayalam: {{ sentence_fra }} ||| {{ sentence_mal
-      }}'
+    id: 86c9f660-b0bf-459f-a1c8-b5f1f77439df
+    jinja: 'Urdu: {{ sentence_urd }} = Vietnamese: ||| {{ sentence_vie }}'
     metadata: *id001
-    name: translate-this-fra-mal
-    reference: Translate this from X to Y (French into Malayalam)
-  75fa62ea-9459-4a2d-8934-28521ddb0c05: !Template
+    name: flores-xglm-Urdu-Vietnamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  8722f3bc-cfa3-4f00-9558-1e0be6d2da20: !Template
     answer_choices: null
-    id: 75fa62ea-9459-4a2d-8934-28521ddb0c05
-    jinja: 'Translate this from Hindi into English: {{ sentence_hin }} ||| {{ sentence_eng
-      }}'
+    id: 8722f3bc-cfa3-4f00-9558-1e0be6d2da20
+    jinja: 'Igbo: {{ sentence_ibo }} = Kannada: ||| {{ sentence_kan }}'
     metadata: *id001
-    name: translate-this-hin-eng
-    reference: Translate this from X to Y (Hindi into English)
-  764e9005-26bd-4c42-b591-435ff268fb95: !Template
+    name: flores-xglm-Igbo-Kannada
+    reference: 'L1: [sent1] = L2: [sent2]'
+  883764d8-6b5e-442f-a422-af032794273c: !Template
     answer_choices: null
-    id: 764e9005-26bd-4c42-b591-435ff268fb95
-    jinja: 'Translate this from Zulu into Urdu: {{ sentence_zul }} ||| {{ sentence_urd
-      }}'
+    id: 883764d8-6b5e-442f-a422-af032794273c
+    jinja: 'Swahili: {{ sentence_swh }} = Tamil: ||| {{ sentence_tam }}'
     metadata: *id001
-    name: translate-this-zul-urd
-    reference: Translate this from X to Y (Zulu into Urdu)
-  765ecfdb-c5c1-43e0-a7b0-b0a70905d612: !Template
+    name: flores-xglm-Swahili-Tamil
+    reference: 'L1: [sent1] = L2: [sent2]'
+  883d8a2f-790e-4960-a7ad-844baf586ead: !Template
     answer_choices: null
-    id: 765ecfdb-c5c1-43e0-a7b0-b0a70905d612
-    jinja: 'Translate this from Vietnamese into Oriya: {{ sentence_vie }} ||| {{ sentence_ory
-      }}'
+    id: 883d8a2f-790e-4960-a7ad-844baf586ead
+    jinja: 'Wolof: {{ sentence_wol }} = Bengali: ||| {{ sentence_ben }}'
     metadata: *id001
-    name: translate-this-vie-ory
-    reference: Translate this from X to Y (Vietnamese into Oriya)
-  7690f6f0-dca2-4d64-b0fe-1418717bab34: !Template
+    name: flores-xglm-Wolof-Bengali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  887f6366-d0ca-42e3-b1c6-d7d86972896a: !Template
     answer_choices: null
-    id: 7690f6f0-dca2-4d64-b0fe-1418717bab34
-    jinja: 'Translate this from Punjabi into English: {{ sentence_pan }} ||| {{ sentence_eng
+    id: 887f6366-d0ca-42e3-b1c6-d7d86972896a
+    jinja: 'Catalan: {{ sentence_cat }} = traditional Chinese: ||| {{ sentence_zho_trad
       }}'
     metadata: *id001
-    name: translate-this-pan-eng
-    reference: Translate this from X to Y (Punjabi into English)
-  76dc3445-faf2-430d-bca4-232d02bc956c: !Template
+    name: flores-xglm-Catalan-traditional Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  88b606e8-9b90-478a-8ac4-866df7fb1e13: !Template
     answer_choices: null
-    id: 76dc3445-faf2-430d-bca4-232d02bc956c
-    jinja: 'Translate this from Lingala into Bengali: {{ sentence_lin }} ||| {{ sentence_ben
-      }}'
+    id: 88b606e8-9b90-478a-8ac4-866df7fb1e13
+    jinja: 'Oriya: {{ sentence_ory }} = Yoruba: ||| {{ sentence_yor }}'
     metadata: *id001
-    name: translate-this-lin-ben
-    reference: Translate this from X to Y (Lingala into Bengali)
-  775988fc-0ad4-49d5-a94b-94ed0baa6d4c: !Template
+    name: flores-xglm-Oriya-Yoruba
+    reference: 'L1: [sent1] = L2: [sent2]'
+  88e64109-8a35-4d6c-8a67-a351633511d4: !Template
     answer_choices: null
-    id: 775988fc-0ad4-49d5-a94b-94ed0baa6d4c
-    jinja: 'Translate this from Catalan into Oriya: {{ sentence_cat }} ||| {{ sentence_ory
-      }}'
+    id: 88e64109-8a35-4d6c-8a67-a351633511d4
+    jinja: 'Punjabi: {{ sentence_pan }} = Hindi: ||| {{ sentence_hin }}'
     metadata: *id001
-    name: translate-this-cat-ory
-    reference: Translate this from X to Y (Catalan into Oriya)
-  775f2b57-9dc4-4f46-81c5-a91374758a5d: !Template
+    name: flores-xglm-Punjabi-Hindi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  88ecf12a-7541-4380-ba8a-f887fd0259b0: !Template
     answer_choices: null
-    id: 775f2b57-9dc4-4f46-81c5-a91374758a5d
-    jinja: 'Translate this from Indonesian into Bengali: {{ sentence_ind }} ||| {{
-      sentence_ben }}'
+    id: 88ecf12a-7541-4380-ba8a-f887fd0259b0
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Latin American Spanish: |||
+      {{ sentence_spa }}'
     metadata: *id001
-    name: translate-this-ind-ben
-    reference: Translate this from X to Y (Indonesian into Bengali)
-  78088c94-c70b-475f-8770-19566ac03d29: !Template
+    name: flores-xglm-Brazilian Portuguese-Latin American Spanish
+    reference: 'L1: [sent1] = L2: [sent2]'
+  893b1f20-e5a6-4231-a5c0-bdf70874f1a5: !Template
     answer_choices: null
-    id: 78088c94-c70b-475f-8770-19566ac03d29
-    jinja: 'Translate this from Hindi into Malayalam: {{ sentence_hin }} ||| {{ sentence_mal
-      }}'
+    id: 893b1f20-e5a6-4231-a5c0-bdf70874f1a5
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Brazilian Portuguese: |||
+      {{ sentence_por }}'
     metadata: *id001
-    name: translate-this-hin-mal
-    reference: Translate this from X to Y (Hindi into Malayalam)
-  780a5767-f1c0-4cc7-a9b1-307473ca48c5: !Template
+    name: flores-xglm-simplified Chinese-Brazilian Portuguese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  893bd8eb-b572-42c4-9707-0cd29f6fcc4a: !Template
     answer_choices: null
-    id: 780a5767-f1c0-4cc7-a9b1-307473ca48c5
-    jinja: 'Translate this from simplified Chinese into Bengali: {{ sentence_zho_simpl
-      }} ||| {{ sentence_ben }}'
+    id: 893bd8eb-b572-42c4-9707-0cd29f6fcc4a
+    jinja: 'Hindi: {{ sentence_hin }} = Malayalam: ||| {{ sentence_mal }}'
     metadata: *id001
-    name: translate-this-zho_simpl-ben
-    reference: Translate this from X to Y (simplified Chinese into Bengali)
-  780b4daf-a774-42e9-8874-b9d545521e5f: !Template
+    name: flores-xglm-Hindi-Malayalam
+    reference: 'L1: [sent1] = L2: [sent2]'
+  89977c06-ae1e-4387-8824-4d3938be5d5b: !Template
     answer_choices: null
-    id: 780b4daf-a774-42e9-8874-b9d545521e5f
-    jinja: 'Translate this from Yoruba into Malayalam: {{ sentence_yor }} ||| {{ sentence_mal
-      }}'
+    id: 89977c06-ae1e-4387-8824-4d3938be5d5b
+    jinja: 'Xhosa: {{ sentence_xho }} = English: ||| {{ sentence_eng }}'
     metadata: *id001
-    name: translate-this-yor-mal
-    reference: Translate this from X to Y (Yoruba into Malayalam)
-  780fe70f-fff0-450d-8100-d45d13e83959: !Template
+    name: flores-xglm-Xhosa-English
+    reference: 'L1: [sent1] = L2: [sent2]'
+  89a28371-1017-4c30-9c6b-4e29e19089b4: !Template
     answer_choices: null
-    id: 780fe70f-fff0-450d-8100-d45d13e83959
-    jinja: 'Translate this from Zulu into Punjabi: {{ sentence_zul }} ||| {{ sentence_pan
-      }}'
+    id: 89a28371-1017-4c30-9c6b-4e29e19089b4
+    jinja: 'Indonesian: {{ sentence_ind }} = Assamese: ||| {{ sentence_asm }}'
     metadata: *id001
-    name: translate-this-zul-pan
-    reference: Translate this from X to Y (Zulu into Punjabi)
-  785f119a-61ae-48bf-b3ab-b495993edd98: !Template
+    name: flores-xglm-Indonesian-Assamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  89a964ac-7f36-46be-a2d9-7ac91058600f: !Template
     answer_choices: null
-    id: 785f119a-61ae-48bf-b3ab-b495993edd98
-    jinja: 'Translate this from Nepali into Wolof: {{ sentence_npi }} ||| {{ sentence_wol
+    id: 89a964ac-7f36-46be-a2d9-7ac91058600f
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Gujarati: ||| {{ sentence_guj
       }}'
     metadata: *id001
-    name: translate-this-npi-wol
-    reference: Translate this from X to Y (Nepali into Wolof)
-  786dc999-639d-4767-8d41-4d4776503071: !Template
+    name: flores-xglm-simplified Chinese-Gujarati
+    reference: 'L1: [sent1] = L2: [sent2]'
+  8a20167a-7c30-48d9-aa1a-62460fd07395: !Template
     answer_choices: null
-    id: 786dc999-639d-4767-8d41-4d4776503071
-    jinja: 'Translate this from Yoruba into Catalan: {{ sentence_yor }} ||| {{ sentence_cat
-      }}'
+    id: 8a20167a-7c30-48d9-aa1a-62460fd07395
+    jinja: 'Malayalam: {{ sentence_mal }} = Lingala: ||| {{ sentence_lin }}'
     metadata: *id001
-    name: translate-this-yor-cat
-    reference: Translate this from X to Y (Yoruba into Catalan)
-  78a9fd75-7e28-4f11-b928-623baa4c3e43: !Template
+    name: flores-xglm-Malayalam-Lingala
+    reference: 'L1: [sent1] = L2: [sent2]'
+  8a710e83-2d92-49f6-8162-54f73164dc06: !Template
     answer_choices: null
-    id: 78a9fd75-7e28-4f11-b928-623baa4c3e43
-    jinja: 'Translate this from Hindi into Tamil: {{ sentence_hin }} ||| {{ sentence_tam
+    id: 8a710e83-2d92-49f6-8162-54f73164dc06
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Arabic: ||| {{ sentence_ara
       }}'
     metadata: *id001
-    name: translate-this-hin-tam
-    reference: Translate this from X to Y (Hindi into Tamil)
-  78f20037-0b4d-46a5-bb3c-ad74499cc79f: !Template
+    name: flores-xglm-traditional Chinese-Arabic
+    reference: 'L1: [sent1] = L2: [sent2]'
+  8a9f86ae-41e4-46f2-a2e4-62f7837a5736: !Template
     answer_choices: null
-    id: 78f20037-0b4d-46a5-bb3c-ad74499cc79f
-    jinja: 'Translate this from Arabic into Latin American Spanish: {{ sentence_ara
-      }} ||| {{ sentence_spa }}'
+    id: 8a9f86ae-41e4-46f2-a2e4-62f7837a5736
+    jinja: 'French: {{ sentence_fra }} = Igbo: ||| {{ sentence_ibo }}'
     metadata: *id001
-    name: translate-this-ara-spa
-    reference: Translate this from X to Y (Arabic into Latin American Spanish)
-  79b21fc6-4466-4123-9304-5d4eb79fe5e3: !Template
+    name: flores-xglm-French-Igbo
+    reference: 'L1: [sent1] = L2: [sent2]'
+  8abb7c51-2a04-41a9-a511-cc52ea8d2253: !Template
     answer_choices: null
-    id: 79b21fc6-4466-4123-9304-5d4eb79fe5e3
-    jinja: 'Translate this from Vietnamese into Tamil: {{ sentence_vie }} ||| {{ sentence_tam
+    id: 8abb7c51-2a04-41a9-a511-cc52ea8d2253
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = Hindi: ||| {{ sentence_hin
       }}'
     metadata: *id001
-    name: translate-this-vie-tam
-    reference: Translate this from X to Y (Vietnamese into Tamil)
-  79ff6786-7928-49c9-ba2a-1f80c0e60767: !Template
+    name: flores-xglm-Latin American Spanish-Hindi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  8aeeb404-cc4b-4e5e-8f37-2ef5bc2eb2bd: !Template
     answer_choices: null
-    id: 79ff6786-7928-49c9-ba2a-1f80c0e60767
-    jinja: 'Translate this from English into Marathi: {{ sentence_eng }} ||| {{ sentence_mar
+    id: 8aeeb404-cc4b-4e5e-8f37-2ef5bc2eb2bd
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Kannada: ||| {{ sentence_kan
       }}'
     metadata: *id001
-    name: translate-this-eng-mar
-    reference: Translate this from X to Y (English into Marathi)
-  7a03d33c-061c-4092-a491-4d9576926a42: !Template
+    name: flores-xglm-simplified Chinese-Kannada
+    reference: 'L1: [sent1] = L2: [sent2]'
+  8b7e1f32-997f-492d-b0a0-db3bd11aff7d: !Template
     answer_choices: null
-    id: 7a03d33c-061c-4092-a491-4d9576926a42
-    jinja: 'Translate this from Bengali into Marathi: {{ sentence_ben }} ||| {{ sentence_mar
-      }}'
+    id: 8b7e1f32-997f-492d-b0a0-db3bd11aff7d
+    jinja: 'Telugu: {{ sentence_tel }} = Igbo: ||| {{ sentence_ibo }}'
     metadata: *id001
-    name: translate-this-ben-mar
-    reference: Translate this from X to Y (Bengali into Marathi)
-  7a2ace20-2821-46eb-b064-8288eecff657: !Template
+    name: flores-xglm-Telugu-Igbo
+    reference: 'L1: [sent1] = L2: [sent2]'
+  8c26c299-0bd8-4f2a-9e57-95016fadf11b: !Template
     answer_choices: null
-    id: 7a2ace20-2821-46eb-b064-8288eecff657
-    jinja: 'Translate this from Latin American Spanish into Bengali: {{ sentence_spa
-      }} ||| {{ sentence_ben }}'
+    id: 8c26c299-0bd8-4f2a-9e57-95016fadf11b
+    jinja: 'Marathi: {{ sentence_mar }} = Tamil: ||| {{ sentence_tam }}'
     metadata: *id001
-    name: translate-this-spa-ben
-    reference: Translate this from X to Y (Latin American Spanish into Bengali)
-  7a838179-db64-4e00-a0cd-99c01f73f76c: !Template
+    name: flores-xglm-Marathi-Tamil
+    reference: 'L1: [sent1] = L2: [sent2]'
+  8c72c3f6-a1a5-470d-ace4-95317af69b12: !Template
     answer_choices: null
-    id: 7a838179-db64-4e00-a0cd-99c01f73f76c
-    jinja: 'Translate this from French into Assamese: {{ sentence_fra }} ||| {{ sentence_asm
-      }}'
+    id: 8c72c3f6-a1a5-470d-ace4-95317af69b12
+    jinja: 'Vietnamese: {{ sentence_vie }} = Yoruba: ||| {{ sentence_yor }}'
     metadata: *id001
-    name: translate-this-fra-asm
-    reference: Translate this from X to Y (French into Assamese)
-  7acd14f5-294b-4e7a-aca5-34dd22ab7d6f: !Template
+    name: flores-xglm-Vietnamese-Yoruba
+    reference: 'L1: [sent1] = L2: [sent2]'
+  8c8bb24d-ae6a-4a61-abe7-4c7667741b0a: !Template
     answer_choices: null
-    id: 7acd14f5-294b-4e7a-aca5-34dd22ab7d6f
-    jinja: 'Translate this from Swahili into Bengali: {{ sentence_swh }} ||| {{ sentence_ben
-      }}'
+    id: 8c8bb24d-ae6a-4a61-abe7-4c7667741b0a
+    jinja: 'Assamese: {{ sentence_asm }} = Lingala: ||| {{ sentence_lin }}'
     metadata: *id001
-    name: translate-this-swh-ben
-    reference: Translate this from X to Y (Swahili into Bengali)
-  7aeb41e4-83bf-40c7-98d8-904cc7933d9f: !Template
+    name: flores-xglm-Assamese-Lingala
+    reference: 'L1: [sent1] = L2: [sent2]'
+  8caf53ea-5994-4732-8ce0-9e8181696e46: !Template
     answer_choices: null
-    id: 7aeb41e4-83bf-40c7-98d8-904cc7933d9f
-    jinja: 'Translate this from Malayalam into Nepali: {{ sentence_mal }} ||| {{ sentence_npi
+    id: 8caf53ea-5994-4732-8ce0-9e8181696e46
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Tamil: ||| {{ sentence_tam
       }}'
     metadata: *id001
-    name: translate-this-mal-npi
-    reference: Translate this from X to Y (Malayalam into Nepali)
-  7b4fb068-4d23-4caa-92ab-975a7da164f0: !Template
+    name: flores-xglm-Brazilian Portuguese-Tamil
+    reference: 'L1: [sent1] = L2: [sent2]'
+  8cfa010c-4257-4c42-97ce-0b91d0185ef1: !Template
     answer_choices: null
-    id: 7b4fb068-4d23-4caa-92ab-975a7da164f0
-    jinja: 'Translate this from Wolof into Oriya: {{ sentence_wol }} ||| {{ sentence_ory
+    id: 8cfa010c-4257-4c42-97ce-0b91d0185ef1
+    jinja: 'Oriya: {{ sentence_ory }} = Brazilian Portuguese: ||| {{ sentence_por
       }}'
     metadata: *id001
-    name: translate-this-wol-ory
-    reference: Translate this from X to Y (Wolof into Oriya)
-  7b7bd380-2c04-4748-b50a-aa5868c232e4: !Template
+    name: flores-xglm-Oriya-Brazilian Portuguese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  8d47221e-d393-4e31-80ec-50b722aaea2c: !Template
     answer_choices: null
-    id: 7b7bd380-2c04-4748-b50a-aa5868c232e4
-    jinja: 'Translate this from Vietnamese into English: {{ sentence_vie }} ||| {{
-      sentence_eng }}'
+    id: 8d47221e-d393-4e31-80ec-50b722aaea2c
+    jinja: 'Gujarati: {{ sentence_guj }} = Wolof: ||| {{ sentence_wol }}'
     metadata: *id001
-    name: translate-this-vie-eng
-    reference: Translate this from X to Y (Vietnamese into English)
-  7bca9e6c-f53e-4e03-b73c-677e9a1673e8: !Template
+    name: flores-xglm-Gujarati-Wolof
+    reference: 'L1: [sent1] = L2: [sent2]'
+  8d4c67b1-0adf-40a2-bb6c-ff7c17a463c4: !Template
     answer_choices: null
-    id: 7bca9e6c-f53e-4e03-b73c-677e9a1673e8
-    jinja: 'Translate this from Oriya into Igbo: {{ sentence_ory }} ||| {{ sentence_ibo
-      }}'
+    id: 8d4c67b1-0adf-40a2-bb6c-ff7c17a463c4
+    jinja: 'Tamil: {{ sentence_tam }} = Zulu: ||| {{ sentence_zul }}'
     metadata: *id001
-    name: translate-this-ory-ibo
-    reference: Translate this from X to Y (Oriya into Igbo)
-  7bd6078a-1d56-4f47-9235-4f8bb61ec5c8: !Template
+    name: flores-xglm-Tamil-Zulu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  8d4e2cfe-8ec4-4ff0-92f7-1d00018043d4: !Template
     answer_choices: null
-    id: 7bd6078a-1d56-4f47-9235-4f8bb61ec5c8
-    jinja: 'Translate this from Zulu into Wolof: {{ sentence_zul }} ||| {{ sentence_wol
-      }}'
+    id: 8d4e2cfe-8ec4-4ff0-92f7-1d00018043d4
+    jinja: 'French: {{ sentence_fra }} = Xhosa: ||| {{ sentence_xho }}'
     metadata: *id001
-    name: translate-this-zul-wol
-    reference: Translate this from X to Y (Zulu into Wolof)
-  7c097b02-6d59-42b9-8d96-0bd8e44aee8a: !Template
+    name: flores-xglm-French-Xhosa
+    reference: 'L1: [sent1] = L2: [sent2]'
+  8d6906e5-fb2c-4910-937d-57e77531b995: !Template
     answer_choices: null
-    id: 7c097b02-6d59-42b9-8d96-0bd8e44aee8a
-    jinja: 'Translate this from Nepali into Latin American Spanish: {{ sentence_npi
-      }} ||| {{ sentence_spa }}'
+    id: 8d6906e5-fb2c-4910-937d-57e77531b995
+    jinja: 'Gujarati: {{ sentence_guj }} = Nepali: ||| {{ sentence_npi }}'
     metadata: *id001
-    name: translate-this-npi-spa
-    reference: Translate this from X to Y (Nepali into Latin American Spanish)
-  7c09a624-d4a9-4c92-a048-8df09a9fa0c4: !Template
+    name: flores-xglm-Gujarati-Nepali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  8e741bdd-b868-4ba7-b436-88f3fd1ff9ad: !Template
     answer_choices: null
-    id: 7c09a624-d4a9-4c92-a048-8df09a9fa0c4
-    jinja: 'Translate this from Punjabi into Brazilian Portuguese: {{ sentence_pan
-      }} ||| {{ sentence_por }}'
+    id: 8e741bdd-b868-4ba7-b436-88f3fd1ff9ad
+    jinja: 'Vietnamese: {{ sentence_vie }} = Assamese: ||| {{ sentence_asm }}'
     metadata: *id001
-    name: translate-this-pan-por
-    reference: Translate this from X to Y (Punjabi into Brazilian Portuguese)
-  7c4283ec-da2f-4217-bba0-1ca26aab2dc5: !Template
+    name: flores-xglm-Vietnamese-Assamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  8e834145-403e-4026-a807-2dedb55f54f7: !Template
     answer_choices: null
-    id: 7c4283ec-da2f-4217-bba0-1ca26aab2dc5
-    jinja: 'Translate this from French into Nepali: {{ sentence_fra }} ||| {{ sentence_npi
-      }}'
+    id: 8e834145-403e-4026-a807-2dedb55f54f7
+    jinja: 'Telugu: {{ sentence_tel }} = Urdu: ||| {{ sentence_urd }}'
     metadata: *id001
-    name: translate-this-fra-npi
-    reference: Translate this from X to Y (French into Nepali)
-  7c9e066e-b470-4c66-ad93-842fbccf7159: !Template
+    name: flores-xglm-Telugu-Urdu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  8fc38247-f744-49f7-b599-55ff0af778fa: !Template
     answer_choices: null
-    id: 7c9e066e-b470-4c66-ad93-842fbccf7159
-    jinja: 'Translate this from French into Igbo: {{ sentence_fra }} ||| {{ sentence_ibo
+    id: 8fc38247-f744-49f7-b599-55ff0af778fa
+    jinja: 'Lingala: {{ sentence_lin }} = traditional Chinese: ||| {{ sentence_zho_trad
       }}'
     metadata: *id001
-    name: translate-this-fra-ibo
-    reference: Translate this from X to Y (French into Igbo)
-  7ca384a0-7bd5-42ef-a488-604c36400edd: !Template
+    name: flores-xglm-Lingala-traditional Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  8fec952f-0845-436e-b2ee-16ad86ee839f: !Template
     answer_choices: null
-    id: 7ca384a0-7bd5-42ef-a488-604c36400edd
-    jinja: 'Translate this from Northern Sotho into Swahili: {{ sentence_nso }} |||
-      {{ sentence_swh }}'
+    id: 8fec952f-0845-436e-b2ee-16ad86ee839f
+    jinja: 'Nepali: {{ sentence_npi }} = English: ||| {{ sentence_eng }}'
     metadata: *id001
-    name: translate-this-nso-swh
-    reference: Translate this from X to Y (Northern Sotho into Swahili)
-  7d3e581f-6220-4bc8-aad4-6cf57f038388: !Template
+    name: flores-xglm-Nepali-English
+    reference: 'L1: [sent1] = L2: [sent2]'
+  904bb301-76e1-48a7-abd2-0448555b3312: !Template
     answer_choices: null
-    id: 7d3e581f-6220-4bc8-aad4-6cf57f038388
-    jinja: 'Translate this from Brazilian Portuguese into Kannada: {{ sentence_por
-      }} ||| {{ sentence_kan }}'
+    id: 904bb301-76e1-48a7-abd2-0448555b3312
+    jinja: 'Arabic: {{ sentence_ara }} = Gujarati: ||| {{ sentence_guj }}'
     metadata: *id001
-    name: translate-this-por-kan
-    reference: Translate this from X to Y (Brazilian Portuguese into Kannada)
-  7d821fb0-3641-4f53-9b2a-45dc1b0fb1e6: !Template
+    name: flores-xglm-Arabic-Gujarati
+    reference: 'L1: [sent1] = L2: [sent2]'
+  9068d709-0666-44c7-bf0f-0c4d348e2d9a: !Template
     answer_choices: null
-    id: 7d821fb0-3641-4f53-9b2a-45dc1b0fb1e6
-    jinja: 'Translate this from Tamil into Telugu: {{ sentence_tam }} ||| {{ sentence_tel
-      }}'
+    id: 9068d709-0666-44c7-bf0f-0c4d348e2d9a
+    jinja: 'Gujarati: {{ sentence_guj }} = Zulu: ||| {{ sentence_zul }}'
     metadata: *id001
-    name: translate-this-tam-tel
-    reference: Translate this from X to Y (Tamil into Telugu)
-  7d8a5554-0355-4bb1-b360-b611d90e889f: !Template
+    name: flores-xglm-Gujarati-Zulu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  9075561e-bcde-4a8c-8e0f-c0a16323b696: !Template
     answer_choices: null
-    id: 7d8a5554-0355-4bb1-b360-b611d90e889f
-    jinja: 'Translate this from Telugu into simplified Chinese: {{ sentence_tel }}
-      ||| {{ sentence_zho_simpl }}'
+    id: 9075561e-bcde-4a8c-8e0f-c0a16323b696
+    jinja: 'Assamese: {{ sentence_asm }} = Vietnamese: ||| {{ sentence_vie }}'
     metadata: *id001
-    name: translate-this-tel-zho_simpl
-    reference: Translate this from X to Y (Telugu into simplified Chinese)
-  7d98643b-a549-47f0-a712-dd02ad7416c8: !Template
+    name: flores-xglm-Assamese-Vietnamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  913d1706-4889-425c-a28f-013ad09c56a5: !Template
     answer_choices: null
-    id: 7d98643b-a549-47f0-a712-dd02ad7416c8
-    jinja: 'Translate this from Wolof into Yoruba: {{ sentence_wol }} ||| {{ sentence_yor
-      }}'
+    id: 913d1706-4889-425c-a28f-013ad09c56a5
+    jinja: 'Nepali: {{ sentence_npi }} = Assamese: ||| {{ sentence_asm }}'
     metadata: *id001
-    name: translate-this-wol-yor
-    reference: Translate this from X to Y (Wolof into Yoruba)
-  7dbd6c87-cacc-493e-b15d-7fd8765bddf5: !Template
+    name: flores-xglm-Nepali-Assamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  916df054-bd86-43e2-8706-02810540c07c: !Template
     answer_choices: null
-    id: 7dbd6c87-cacc-493e-b15d-7fd8765bddf5
-    jinja: 'Translate this from Kannada into traditional Chinese: {{ sentence_kan
-      }} ||| {{ sentence_zho_trad }}'
+    id: 916df054-bd86-43e2-8706-02810540c07c
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Xhosa: ||| {{ sentence_xho
+      }}'
     metadata: *id001
-    name: translate-this-kan-zho_trad
-    reference: Translate this from X to Y (Kannada into traditional Chinese)
-  7dc69e02-22bb-4852-9e2b-a61db5d67537: !Template
+    name: flores-xglm-simplified Chinese-Xhosa
+    reference: 'L1: [sent1] = L2: [sent2]'
+  91ad762f-e362-4ea8-8789-22dd8525bde7: !Template
     answer_choices: null
-    id: 7dc69e02-22bb-4852-9e2b-a61db5d67537
-    jinja: 'Translate this from Latin American Spanish into traditional Chinese: {{
-      sentence_spa }} ||| {{ sentence_zho_trad }}'
+    id: 91ad762f-e362-4ea8-8789-22dd8525bde7
+    jinja: 'Wolof: {{ sentence_wol }} = Xhosa: ||| {{ sentence_xho }}'
     metadata: *id001
-    name: translate-this-spa-zho_trad
-    reference: Translate this from X to Y (Latin American Spanish into traditional
-      Chinese)
-  7e74d14d-860b-40c0-9ad8-ad6d22e8d30b: !Template
+    name: flores-xglm-Wolof-Xhosa
+    reference: 'L1: [sent1] = L2: [sent2]'
+  91b4f497-d566-4f37-a710-62453632f4fb: !Template
     answer_choices: null
-    id: 7e74d14d-860b-40c0-9ad8-ad6d22e8d30b
-    jinja: 'Translate this from Northern Sotho into Oriya: {{ sentence_nso }} |||
-      {{ sentence_ory }}'
+    id: 91b4f497-d566-4f37-a710-62453632f4fb
+    jinja: 'Tamil: {{ sentence_tam }} = English: ||| {{ sentence_eng }}'
     metadata: *id001
-    name: translate-this-nso-ory
-    reference: Translate this from X to Y (Northern Sotho into Oriya)
-  7ef776e9-1b90-4b1e-bfbd-05d6ad0bef2d: !Template
+    name: flores-xglm-Tamil-English
+    reference: 'L1: [sent1] = L2: [sent2]'
+  91b6ddb3-df41-4ada-a2f0-7aefa5c570b5: !Template
     answer_choices: null
-    id: 7ef776e9-1b90-4b1e-bfbd-05d6ad0bef2d
-    jinja: 'Translate this from Xhosa into Vietnamese: {{ sentence_xho }} ||| {{ sentence_vie
+    id: 91b6ddb3-df41-4ada-a2f0-7aefa5c570b5
+    jinja: 'English: {{ sentence_eng }} = Brazilian Portuguese: ||| {{ sentence_por
       }}'
     metadata: *id001
-    name: translate-this-xho-vie
-    reference: Translate this from X to Y (Xhosa into Vietnamese)
-  7f1355b6-561c-4b50-910c-cd27905c48f7: !Template
+    name: flores-xglm-English-Brazilian Portuguese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  9278b59b-9fd1-45de-9eae-6ae1ce30bad1: !Template
     answer_choices: null
-    id: 7f1355b6-561c-4b50-910c-cd27905c48f7
-    jinja: 'Translate this from Malayalam into Marathi: {{ sentence_mal }} ||| {{
-      sentence_mar }}'
+    id: 9278b59b-9fd1-45de-9eae-6ae1ce30bad1
+    jinja: 'Lingala: {{ sentence_lin }} = Telugu: ||| {{ sentence_tel }}'
     metadata: *id001
-    name: translate-this-mal-mar
-    reference: Translate this from X to Y (Malayalam into Marathi)
-  7f2234ea-5c8b-4a2d-b987-db871069cf13: !Template
+    name: flores-xglm-Lingala-Telugu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  92afc760-73f3-4a67-aea3-b5846ce65005: !Template
     answer_choices: null
-    id: 7f2234ea-5c8b-4a2d-b987-db871069cf13
-    jinja: 'Translate this from Wolof into Hindi: {{ sentence_wol }} ||| {{ sentence_hin
-      }}'
+    id: 92afc760-73f3-4a67-aea3-b5846ce65005
+    jinja: 'Swahili: {{ sentence_swh }} = Telugu: ||| {{ sentence_tel }}'
     metadata: *id001
-    name: translate-this-wol-hin
-    reference: Translate this from X to Y (Wolof into Hindi)
-  7f3ddedd-e086-49de-a923-e3566f6ee12c: !Template
+    name: flores-xglm-Swahili-Telugu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  92f397b9-fb27-472e-8231-37ffdae95222: !Template
     answer_choices: null
-    id: 7f3ddedd-e086-49de-a923-e3566f6ee12c
-    jinja: 'Translate this from Tamil into French: {{ sentence_tam }} ||| {{ sentence_fra
-      }}'
+    id: 92f397b9-fb27-472e-8231-37ffdae95222
+    jinja: 'Nepali: {{ sentence_npi }} = Hindi: ||| {{ sentence_hin }}'
     metadata: *id001
-    name: translate-this-tam-fra
-    reference: Translate this from X to Y (Tamil into French)
-  801549b3-2fab-4c7a-98ec-0e6144a1a4ac: !Template
+    name: flores-xglm-Nepali-Hindi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  93184f67-81c5-41c2-8980-3d0de18e28b7: !Template
     answer_choices: null
-    id: 801549b3-2fab-4c7a-98ec-0e6144a1a4ac
-    jinja: 'Translate this from traditional Chinese into Indonesian: {{ sentence_zho_trad
-      }} ||| {{ sentence_ind }}'
+    id: 93184f67-81c5-41c2-8980-3d0de18e28b7
+    jinja: 'Lingala: {{ sentence_lin }} = Hindi: ||| {{ sentence_hin }}'
     metadata: *id001
-    name: translate-this-zho_trad-ind
-    reference: Translate this from X to Y (traditional Chinese into Indonesian)
-  803bc4c9-a137-4999-86a3-970a3ab25346: !Template
+    name: flores-xglm-Lingala-Hindi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  93388017-31a8-45e9-8b38-ec0259d73811: !Template
     answer_choices: null
-    id: 803bc4c9-a137-4999-86a3-970a3ab25346
-    jinja: 'Translate this from Assamese into French: {{ sentence_asm }} ||| {{ sentence_fra
-      }}'
+    id: 93388017-31a8-45e9-8b38-ec0259d73811
+    jinja: 'Vietnamese: {{ sentence_vie }} = Northern Sotho: ||| {{ sentence_nso }}'
     metadata: *id001
-    name: translate-this-asm-fra
-    reference: Translate this from X to Y (Assamese into French)
-  805bebd1-a6f0-4d50-9dd3-10bab0705e68: !Template
+    name: flores-xglm-Vietnamese-Northern Sotho
+    reference: 'L1: [sent1] = L2: [sent2]'
+  933cd27b-18e3-4596-afcb-a73d00439990: !Template
     answer_choices: null
-    id: 805bebd1-a6f0-4d50-9dd3-10bab0705e68
-    jinja: 'Translate this from Assamese into Northern Sotho: {{ sentence_asm }} |||
-      {{ sentence_nso }}'
+    id: 933cd27b-18e3-4596-afcb-a73d00439990
+    jinja: 'Catalan: {{ sentence_cat }} = Brazilian Portuguese: ||| {{ sentence_por
+      }}'
     metadata: *id001
-    name: translate-this-asm-nso
-    reference: Translate this from X to Y (Assamese into Northern Sotho)
-  806d3d0f-b5c3-430f-9fca-b168f072ab98: !Template
+    name: flores-xglm-Catalan-Brazilian Portuguese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  936ff16e-2e18-48f9-bdb5-e55f098677ad: !Template
     answer_choices: null
-    id: 806d3d0f-b5c3-430f-9fca-b168f072ab98
-    jinja: 'Translate this from Northern Sotho into English: {{ sentence_nso }} |||
-      {{ sentence_eng }}'
+    id: 936ff16e-2e18-48f9-bdb5-e55f098677ad
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = traditional Chinese: ||| {{
+      sentence_zho_trad }}'
     metadata: *id001
-    name: translate-this-nso-eng
-    reference: Translate this from X to Y (Northern Sotho into English)
-  811f3a72-47b4-4ccc-ad67-69fb069e615d: !Template
+    name: flores-xglm-Brazilian Portuguese-traditional Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  939c33ab-655b-4ea6-b770-468fbc2c181c: !Template
     answer_choices: null
-    id: 811f3a72-47b4-4ccc-ad67-69fb069e615d
-    jinja: 'Translate this from Arabic into French: {{ sentence_ara }} ||| {{ sentence_fra
-      }}'
+    id: 939c33ab-655b-4ea6-b770-468fbc2c181c
+    jinja: 'Lingala: {{ sentence_lin }} = Xhosa: ||| {{ sentence_xho }}'
     metadata: *id001
-    name: translate-this-ara-fra
-    reference: Translate this from X to Y (Arabic into French)
-  81245b82-ca44-4660-b2b3-a6b21baca6c9: !Template
+    name: flores-xglm-Lingala-Xhosa
+    reference: 'L1: [sent1] = L2: [sent2]'
+  93a56abf-3d80-4fab-b259-b6fc6d22ff48: !Template
     answer_choices: null
-    id: 81245b82-ca44-4660-b2b3-a6b21baca6c9
-    jinja: 'Translate this from French into Wolof: {{ sentence_fra }} ||| {{ sentence_wol
-      }}'
+    id: 93a56abf-3d80-4fab-b259-b6fc6d22ff48
+    jinja: 'Indonesian: {{ sentence_ind }} = Oriya: ||| {{ sentence_ory }}'
     metadata: *id001
-    name: translate-this-fra-wol
-    reference: Translate this from X to Y (French into Wolof)
-  81353c77-8319-470e-91c5-649a740d7334: !Template
+    name: flores-xglm-Indonesian-Oriya
+    reference: 'L1: [sent1] = L2: [sent2]'
+  9404f790-a4b9-4240-8990-62168e367878: !Template
     answer_choices: null
-    id: 81353c77-8319-470e-91c5-649a740d7334
-    jinja: 'Translate this from Arabic into Brazilian Portuguese: {{ sentence_ara
-      }} ||| {{ sentence_por }}'
+    id: 9404f790-a4b9-4240-8990-62168e367878
+    jinja: 'Telugu: {{ sentence_tel }} = Yoruba: ||| {{ sentence_yor }}'
     metadata: *id001
-    name: translate-this-ara-por
-    reference: Translate this from X to Y (Arabic into Brazilian Portuguese)
-  81cc1f88-af57-41d8-b8ff-719c788479af: !Template
+    name: flores-xglm-Telugu-Yoruba
+    reference: 'L1: [sent1] = L2: [sent2]'
+  943018f7-d33f-4f04-95c2-105f3b9ac46c: !Template
     answer_choices: null
-    id: 81cc1f88-af57-41d8-b8ff-719c788479af
-    jinja: 'Translate this from Oriya into Arabic: {{ sentence_ory }} ||| {{ sentence_ara
-      }}'
+    id: 943018f7-d33f-4f04-95c2-105f3b9ac46c
+    jinja: 'Wolof: {{ sentence_wol }} = Yoruba: ||| {{ sentence_yor }}'
     metadata: *id001
-    name: translate-this-ory-ara
-    reference: Translate this from X to Y (Oriya into Arabic)
-  820e7949-7a03-4a38-af43-3f171669911f: !Template
+    name: flores-xglm-Wolof-Yoruba
+    reference: 'L1: [sent1] = L2: [sent2]'
+  943c3c2f-00e2-465f-b0d9-cf349e6d85fd: !Template
     answer_choices: null
-    id: 820e7949-7a03-4a38-af43-3f171669911f
-    jinja: 'Translate this from Northern Sotho into Bengali: {{ sentence_nso }} |||
-      {{ sentence_ben }}'
+    id: 943c3c2f-00e2-465f-b0d9-cf349e6d85fd
+    jinja: 'Lingala: {{ sentence_lin }} = Vietnamese: ||| {{ sentence_vie }}'
     metadata: *id001
-    name: translate-this-nso-ben
-    reference: Translate this from X to Y (Northern Sotho into Bengali)
-  821df590-126d-4e81-acc4-3f0d988cc2aa: !Template
+    name: flores-xglm-Lingala-Vietnamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  94969771-34f8-4159-89f7-e7184483aff3: !Template
     answer_choices: null
-    id: 821df590-126d-4e81-acc4-3f0d988cc2aa
-    jinja: 'Translate this from French into Hindi: {{ sentence_fra }} ||| {{ sentence_hin
+    id: 94969771-34f8-4159-89f7-e7184483aff3
+    jinja: 'English: {{ sentence_eng }} = simplified Chinese: ||| {{ sentence_zho_simpl
       }}'
     metadata: *id001
-    name: translate-this-fra-hin
-    reference: Translate this from X to Y (French into Hindi)
-  824c82b3-670f-4242-9190-7c159d5834b9: !Template
+    name: flores-xglm-English-simplified Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  94fec283-cafd-428e-bfaf-512d35d1dd4f: !Template
     answer_choices: null
-    id: 824c82b3-670f-4242-9190-7c159d5834b9
-    jinja: 'Translate this from Nepali into Swahili: {{ sentence_npi }} ||| {{ sentence_swh
-      }}'
+    id: 94fec283-cafd-428e-bfaf-512d35d1dd4f
+    jinja: 'Vietnamese: {{ sentence_vie }} = Wolof: ||| {{ sentence_wol }}'
     metadata: *id001
-    name: translate-this-npi-swh
-    reference: Translate this from X to Y (Nepali into Swahili)
-  8283cffc-eefe-4905-bd7e-2310f1c9105c: !Template
+    name: flores-xglm-Vietnamese-Wolof
+    reference: 'L1: [sent1] = L2: [sent2]'
+  952380f8-a38f-4863-a26b-d3dfc6f0d627: !Template
     answer_choices: null
-    id: 8283cffc-eefe-4905-bd7e-2310f1c9105c
-    jinja: 'Translate this from Nepali into Bengali: {{ sentence_npi }} ||| {{ sentence_ben
-      }}'
+    id: 952380f8-a38f-4863-a26b-d3dfc6f0d627
+    jinja: 'Nepali: {{ sentence_npi }} = Arabic: ||| {{ sentence_ara }}'
     metadata: *id001
-    name: translate-this-npi-ben
-    reference: Translate this from X to Y (Nepali into Bengali)
-  82990b6b-d5f1-4e79-bb92-d3f9081be2ca: !Template
+    name: flores-xglm-Nepali-Arabic
+    reference: 'L1: [sent1] = L2: [sent2]'
+  9599d8bd-d081-4c86-a44b-e389639790a9: !Template
     answer_choices: null
-    id: 82990b6b-d5f1-4e79-bb92-d3f9081be2ca
-    jinja: 'Translate this from Gujarati into English: {{ sentence_guj }} ||| {{ sentence_eng
-      }}'
+    id: 9599d8bd-d081-4c86-a44b-e389639790a9
+    jinja: 'Tamil: {{ sentence_tam }} = Assamese: ||| {{ sentence_asm }}'
     metadata: *id001
-    name: translate-this-guj-eng
-    reference: Translate this from X to Y (Gujarati into English)
-  82adc1d2-7088-4229-8e73-b07c52012fcf: !Template
+    name: flores-xglm-Tamil-Assamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  95ace52d-dd18-4244-a966-f021772a9132: !Template
     answer_choices: null
-    id: 82adc1d2-7088-4229-8e73-b07c52012fcf
-    jinja: 'Translate this from Bengali into simplified Chinese: {{ sentence_ben }}
-      ||| {{ sentence_zho_simpl }}'
+    id: 95ace52d-dd18-4244-a966-f021772a9132
+    jinja: 'Malayalam: {{ sentence_mal }} = Urdu: ||| {{ sentence_urd }}'
     metadata: *id001
-    name: translate-this-ben-zho_simpl
-    reference: Translate this from X to Y (Bengali into simplified Chinese)
-  82e93d21-d4b2-4220-b012-8d193f1c3019: !Template
+    name: flores-xglm-Malayalam-Urdu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  9608d1e4-9e5b-45a4-88f4-986dd0706b82: !Template
     answer_choices: null
-    id: 82e93d21-d4b2-4220-b012-8d193f1c3019
-    jinja: 'Translate this from Indonesian into Telugu: {{ sentence_ind }} ||| {{
-      sentence_tel }}'
+    id: 9608d1e4-9e5b-45a4-88f4-986dd0706b82
+    jinja: 'English: {{ sentence_eng }} = Bengali: ||| {{ sentence_ben }}'
     metadata: *id001
-    name: translate-this-ind-tel
-    reference: Translate this from X to Y (Indonesian into Telugu)
-  835799fb-35bb-4273-818a-678e32926fb5: !Template
+    name: flores-xglm-English-Bengali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  9612ab5e-e2c1-4ffa-8fb0-ad4a6e1b4e99: !Template
     answer_choices: null
-    id: 835799fb-35bb-4273-818a-678e32926fb5
-    jinja: 'Translate this from Zulu into Yoruba: {{ sentence_zul }} ||| {{ sentence_yor
-      }}'
+    id: 9612ab5e-e2c1-4ffa-8fb0-ad4a6e1b4e99
+    jinja: 'Hindi: {{ sentence_hin }} = English: ||| {{ sentence_eng }}'
     metadata: *id001
-    name: translate-this-zul-yor
-    reference: Translate this from X to Y (Zulu into Yoruba)
-  83646767-7533-46cf-9f9e-63fbb9182d79: !Template
+    name: flores-xglm-Hindi-English
+    reference: 'L1: [sent1] = L2: [sent2]'
+  9646ae87-13b4-44d0-8a10-944e9369317b: !Template
     answer_choices: null
-    id: 83646767-7533-46cf-9f9e-63fbb9182d79
-    jinja: 'Translate this from Vietnamese into traditional Chinese: {{ sentence_vie
-      }} ||| {{ sentence_zho_trad }}'
+    id: 9646ae87-13b4-44d0-8a10-944e9369317b
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Hindi: ||| {{ sentence_hin
+      }}'
     metadata: *id001
-    name: translate-this-vie-zho_trad
-    reference: Translate this from X to Y (Vietnamese into traditional Chinese)
-  838ad8fb-db89-4d08-8d03-43c0192d4898: !Template
+    name: flores-xglm-Brazilian Portuguese-Hindi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  96472fad-0d73-41c2-acc1-0ae0d42b6ee7: !Template
     answer_choices: null
-    id: 838ad8fb-db89-4d08-8d03-43c0192d4898
-    jinja: 'Translate this from Wolof into Catalan: {{ sentence_wol }} ||| {{ sentence_cat
+    id: 96472fad-0d73-41c2-acc1-0ae0d42b6ee7
+    jinja: 'Wolof: {{ sentence_wol }} = Latin American Spanish: ||| {{ sentence_spa
       }}'
     metadata: *id001
-    name: translate-this-wol-cat
-    reference: Translate this from X to Y (Wolof into Catalan)
-  8407f467-10db-455b-8367-06eb21ffc6ec: !Template
+    name: flores-xglm-Wolof-Latin American Spanish
+    reference: 'L1: [sent1] = L2: [sent2]'
+  96493f59-1486-4fa4-a452-137b9df07bd0: !Template
     answer_choices: null
-    id: 8407f467-10db-455b-8367-06eb21ffc6ec
-    jinja: 'Translate this from Swahili into Wolof: {{ sentence_swh }} ||| {{ sentence_wol
+    id: 96493f59-1486-4fa4-a452-137b9df07bd0
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Oriya: ||| {{ sentence_ory
       }}'
     metadata: *id001
-    name: translate-this-swh-wol
-    reference: Translate this from X to Y (Swahili into Wolof)
-  8452adbf-6581-439a-9af9-a5f345af0348: !Template
+    name: flores-xglm-traditional Chinese-Oriya
+    reference: 'L1: [sent1] = L2: [sent2]'
+  96a7d6f9-f09c-4abc-8404-c0efa617addf: !Template
     answer_choices: null
-    id: 8452adbf-6581-439a-9af9-a5f345af0348
-    jinja: 'Translate this from Vietnamese into Hindi: {{ sentence_vie }} ||| {{ sentence_hin
+    id: 96a7d6f9-f09c-4abc-8404-c0efa617addf
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Nepali: ||| {{ sentence_npi
       }}'
     metadata: *id001
-    name: translate-this-vie-hin
-    reference: Translate this from X to Y (Vietnamese into Hindi)
-  847df062-d40f-4f72-a8ac-1f19d06d4888: !Template
+    name: flores-xglm-Brazilian Portuguese-Nepali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  97aabac1-317b-4ab7-9b58-7caaf51a6bc8: !Template
     answer_choices: null
-    id: 847df062-d40f-4f72-a8ac-1f19d06d4888
-    jinja: 'Translate this from Punjabi into Malayalam: {{ sentence_pan }} ||| {{
-      sentence_mal }}'
+    id: 97aabac1-317b-4ab7-9b58-7caaf51a6bc8
+    jinja: 'Wolof: {{ sentence_wol }} = English: ||| {{ sentence_eng }}'
     metadata: *id001
-    name: translate-this-pan-mal
-    reference: Translate this from X to Y (Punjabi into Malayalam)
-  850e1df7-f2ab-4f1a-b412-938ae897f6c8: !Template
+    name: flores-xglm-Wolof-English
+    reference: 'L1: [sent1] = L2: [sent2]'
+  97aec3f8-42ff-42f3-9594-24b7b183a426: !Template
     answer_choices: null
-    id: 850e1df7-f2ab-4f1a-b412-938ae897f6c8
-    jinja: 'Translate this from Marathi into Lingala: {{ sentence_mar }} ||| {{ sentence_lin
-      }}'
+    id: 97aec3f8-42ff-42f3-9594-24b7b183a426
+    jinja: 'Bengali: {{ sentence_ben }} = Northern Sotho: ||| {{ sentence_nso }}'
     metadata: *id001
-    name: translate-this-mar-lin
-    reference: Translate this from X to Y (Marathi into Lingala)
-  85875ed8-15b9-4bed-917c-f95ec3c1e816: !Template
+    name: flores-xglm-Bengali-Northern Sotho
+    reference: 'L1: [sent1] = L2: [sent2]'
+  97e4eb16-d1cd-4d00-9b7c-a2b28b560dfc: !Template
     answer_choices: null
-    id: 85875ed8-15b9-4bed-917c-f95ec3c1e816
-    jinja: 'Translate this from Malayalam into Hindi: {{ sentence_mal }} ||| {{ sentence_hin
-      }}'
+    id: 97e4eb16-d1cd-4d00-9b7c-a2b28b560dfc
+    jinja: 'Bengali: {{ sentence_ben }} = Punjabi: ||| {{ sentence_pan }}'
     metadata: *id001
-    name: translate-this-mal-hin
-    reference: Translate this from X to Y (Malayalam into Hindi)
-  85c17d63-a76a-4518-ae3b-bffae41e4d2c: !Template
+    name: flores-xglm-Bengali-Punjabi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  98392162-d55e-4c3e-b902-0a73049ca930: !Template
     answer_choices: null
-    id: 85c17d63-a76a-4518-ae3b-bffae41e4d2c
-    jinja: 'Translate this from Marathi into Urdu: {{ sentence_mar }} ||| {{ sentence_urd
-      }}'
+    id: 98392162-d55e-4c3e-b902-0a73049ca930
+    jinja: 'Gujarati: {{ sentence_guj }} = Lingala: ||| {{ sentence_lin }}'
     metadata: *id001
-    name: translate-this-mar-urd
-    reference: Translate this from X to Y (Marathi into Urdu)
-  85d5b465-15c5-49e4-aea9-d0bf46c0bae2: !Template
+    name: flores-xglm-Gujarati-Lingala
+    reference: 'L1: [sent1] = L2: [sent2]'
+  984d50b8-f67b-4a9a-baa5-ac80f25c0e83: !Template
     answer_choices: null
-    id: 85d5b465-15c5-49e4-aea9-d0bf46c0bae2
-    jinja: 'Translate this from Arabic into Northern Sotho: {{ sentence_ara }} |||
-      {{ sentence_nso }}'
+    id: 984d50b8-f67b-4a9a-baa5-ac80f25c0e83
+    jinja: 'Nepali: {{ sentence_npi }} = Vietnamese: ||| {{ sentence_vie }}'
     metadata: *id001
-    name: translate-this-ara-nso
-    reference: Translate this from X to Y (Arabic into Northern Sotho)
-  8701434e-2930-4306-8dfe-4f39f9a9d48c: !Template
+    name: flores-xglm-Nepali-Vietnamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  9892596c-34be-49c7-b582-33e185502d2a: !Template
     answer_choices: null
-    id: 8701434e-2930-4306-8dfe-4f39f9a9d48c
-    jinja: 'Translate this from Nepali into Northern Sotho: {{ sentence_npi }} |||
-      {{ sentence_nso }}'
+    id: 9892596c-34be-49c7-b582-33e185502d2a
+    jinja: 'Wolof: {{ sentence_wol }} = Punjabi: ||| {{ sentence_pan }}'
     metadata: *id001
-    name: translate-this-npi-nso
-    reference: Translate this from X to Y (Nepali into Northern Sotho)
-  870784e5-5231-4055-a124-422a94bd85ce: !Template
+    name: flores-xglm-Wolof-Punjabi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  98f8002f-15a0-4923-8455-01de783992ba: !Template
     answer_choices: null
-    id: 870784e5-5231-4055-a124-422a94bd85ce
-    jinja: 'Translate this from Swahili into Northern Sotho: {{ sentence_swh }} |||
-      {{ sentence_nso }}'
+    id: 98f8002f-15a0-4923-8455-01de783992ba
+    jinja: 'Nepali: {{ sentence_npi }} = Oriya: ||| {{ sentence_ory }}'
     metadata: *id001
-    name: translate-this-swh-nso
-    reference: Translate this from X to Y (Swahili into Northern Sotho)
-  87785161-8af4-41c9-a309-524e3ae824a0: !Template
+    name: flores-xglm-Nepali-Oriya
+    reference: 'L1: [sent1] = L2: [sent2]'
+  98fbe793-5174-4152-a07d-fbafebd0c840: !Template
     answer_choices: null
-    id: 87785161-8af4-41c9-a309-524e3ae824a0
-    jinja: 'Translate this from Gujarati into Nepali: {{ sentence_guj }} ||| {{ sentence_npi
-      }}'
+    id: 98fbe793-5174-4152-a07d-fbafebd0c840
+    jinja: 'Nepali: {{ sentence_npi }} = Gujarati: ||| {{ sentence_guj }}'
     metadata: *id001
-    name: translate-this-guj-npi
-    reference: Translate this from X to Y (Gujarati into Nepali)
-  87851fa3-01d7-4f1c-a3ad-a67bfd16f2dc: !Template
+    name: flores-xglm-Nepali-Gujarati
+    reference: 'L1: [sent1] = L2: [sent2]'
+  99241365-c77b-445b-b3f1-3524266c995c: !Template
     answer_choices: null
-    id: 87851fa3-01d7-4f1c-a3ad-a67bfd16f2dc
-    jinja: 'Translate this from Nepali into Zulu: {{ sentence_npi }} ||| {{ sentence_zul
+    id: 99241365-c77b-445b-b3f1-3524266c995c
+    jinja: 'Assamese: {{ sentence_asm }} = Brazilian Portuguese: ||| {{ sentence_por
       }}'
     metadata: *id001
-    name: translate-this-npi-zul
-    reference: Translate this from X to Y (Nepali into Zulu)
-  87bd46cb-216f-47d6-b2dc-63034fa81ce1: !Template
+    name: flores-xglm-Assamese-Brazilian Portuguese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  994e1750-34bb-47dd-91dd-e8a530f0070b: !Template
     answer_choices: null
-    id: 87bd46cb-216f-47d6-b2dc-63034fa81ce1
-    jinja: 'Translate this from traditional Chinese into simplified Chinese: {{ sentence_zho_trad
-      }} ||| {{ sentence_zho_simpl }}'
+    id: 994e1750-34bb-47dd-91dd-e8a530f0070b
+    jinja: 'Wolof: {{ sentence_wol }} = Kannada: ||| {{ sentence_kan }}'
     metadata: *id001
-    name: translate-this-zho_trad-zho_simpl
-    reference: Translate this from X to Y (traditional Chinese into simplified Chinese)
-  87e9a141-5cc8-4328-be1c-ea4c5daed94f: !Template
+    name: flores-xglm-Wolof-Kannada
+    reference: 'L1: [sent1] = L2: [sent2]'
+  99667336-f444-4122-a380-ac91157504f7: !Template
     answer_choices: null
-    id: 87e9a141-5cc8-4328-be1c-ea4c5daed94f
-    jinja: 'Translate this from Assamese into Oriya: {{ sentence_asm }} ||| {{ sentence_ory
-      }}'
+    id: 99667336-f444-4122-a380-ac91157504f7
+    jinja: 'Bengali: {{ sentence_ben }} = Tamil: ||| {{ sentence_tam }}'
+    metadata: *id001
+    name: flores-xglm-Bengali-Tamil
+    reference: 'L1: [sent1] = L2: [sent2]'
+  99bed3b3-7bac-4e43-bdbc-b81854371f4e: !Template
+    answer_choices: null
+    id: 99bed3b3-7bac-4e43-bdbc-b81854371f4e
+    jinja: 'Arabic: {{ sentence_ara }} = Yoruba: ||| {{ sentence_yor }}'
     metadata: *id001
-    name: translate-this-asm-ory
-    reference: Translate this from X to Y (Assamese into Oriya)
-  8855c0c0-79d6-4229-96a6-b32e176f65e7: !Template
+    name: flores-xglm-Arabic-Yoruba
+    reference: 'L1: [sent1] = L2: [sent2]'
+  9a1e9173-5758-4998-8a85-10f1bb9b189d: !Template
     answer_choices: null
-    id: 8855c0c0-79d6-4229-96a6-b32e176f65e7
-    jinja: 'Translate this from Hindi into Igbo: {{ sentence_hin }} ||| {{ sentence_ibo
+    id: 9a1e9173-5758-4998-8a85-10f1bb9b189d
+    jinja: 'Tamil: {{ sentence_tam }} = Brazilian Portuguese: ||| {{ sentence_por
       }}'
     metadata: *id001
-    name: translate-this-hin-ibo
-    reference: Translate this from X to Y (Hindi into Igbo)
-  886f6d09-f7ed-4ed3-aa57-e6868bedc672: !Template
+    name: flores-xglm-Tamil-Brazilian Portuguese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  9a5f7492-8a11-4c97-aa0a-5c5242953019: !Template
     answer_choices: null
-    id: 886f6d09-f7ed-4ed3-aa57-e6868bedc672
-    jinja: 'Translate this from traditional Chinese into Nepali: {{ sentence_zho_trad
-      }} ||| {{ sentence_npi }}'
+    id: 9a5f7492-8a11-4c97-aa0a-5c5242953019
+    jinja: 'Kannada: {{ sentence_kan }} = Punjabi: ||| {{ sentence_pan }}'
     metadata: *id001
-    name: translate-this-zho_trad-npi
-    reference: Translate this from X to Y (traditional Chinese into Nepali)
-  8877c1ac-4f49-44ee-9277-1c27046613fc: !Template
+    name: flores-xglm-Kannada-Punjabi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  9b9379d0-f8a8-4ba0-8a08-241789731176: !Template
     answer_choices: null
-    id: 8877c1ac-4f49-44ee-9277-1c27046613fc
-    jinja: 'Translate this from Swahili into Malayalam: {{ sentence_swh }} ||| {{
-      sentence_mal }}'
+    id: 9b9379d0-f8a8-4ba0-8a08-241789731176
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Marathi: ||| {{ sentence_mar
+      }}'
     metadata: *id001
-    name: translate-this-swh-mal
-    reference: Translate this from X to Y (Swahili into Malayalam)
-  88f6901d-684e-4423-85aa-0111f95705ac: !Template
+    name: flores-xglm-Brazilian Portuguese-Marathi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  9ba89087-b7dd-4d68-81ea-b36384ac1979: !Template
     answer_choices: null
-    id: 88f6901d-684e-4423-85aa-0111f95705ac
-    jinja: 'Translate this from Zulu into traditional Chinese: {{ sentence_zul }}
-      ||| {{ sentence_zho_trad }}'
+    id: 9ba89087-b7dd-4d68-81ea-b36384ac1979
+    jinja: 'Northern Sotho: {{ sentence_nso }} = French: ||| {{ sentence_fra }}'
     metadata: *id001
-    name: translate-this-zul-zho_trad
-    reference: Translate this from X to Y (Zulu into traditional Chinese)
-  89215efb-c139-479c-869d-b287857f6bc7: !Template
+    name: flores-xglm-Northern Sotho-French
+    reference: 'L1: [sent1] = L2: [sent2]'
+  9bac09d0-4563-44a9-b9be-5bb65af2a8b2: !Template
     answer_choices: null
-    id: 89215efb-c139-479c-869d-b287857f6bc7
-    jinja: 'Translate this from Latin American Spanish into Urdu: {{ sentence_spa
-      }} ||| {{ sentence_urd }}'
+    id: 9bac09d0-4563-44a9-b9be-5bb65af2a8b2
+    jinja: 'Northern Sotho: {{ sentence_nso }} = Nepali: ||| {{ sentence_npi }}'
     metadata: *id001
-    name: translate-this-spa-urd
-    reference: Translate this from X to Y (Latin American Spanish into Urdu)
-  89ef182e-3f8d-469f-913d-e8573e306a2a: !Template
+    name: flores-xglm-Northern Sotho-Nepali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  9bc67733-b03d-46cf-b84a-ecb0e1f7f674: !Template
     answer_choices: null
-    id: 89ef182e-3f8d-469f-913d-e8573e306a2a
-    jinja: 'Translate this from Oriya into Northern Sotho: {{ sentence_ory }} |||
-      {{ sentence_nso }}'
+    id: 9bc67733-b03d-46cf-b84a-ecb0e1f7f674
+    jinja: 'Punjabi: {{ sentence_pan }} = Urdu: ||| {{ sentence_urd }}'
     metadata: *id001
-    name: translate-this-ory-nso
-    reference: Translate this from X to Y (Oriya into Northern Sotho)
-  8a1552c6-fdf6-45f1-b516-40be49bbd8f7: !Template
+    name: flores-xglm-Punjabi-Urdu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  9bd8b4e7-8816-4265-aeaf-f67475b7162e: !Template
     answer_choices: null
-    id: 8a1552c6-fdf6-45f1-b516-40be49bbd8f7
-    jinja: 'Translate this from Urdu into simplified Chinese: {{ sentence_urd }} |||
-      {{ sentence_zho_simpl }}'
+    id: 9bd8b4e7-8816-4265-aeaf-f67475b7162e
+    jinja: 'Lingala: {{ sentence_lin }} = Kannada: ||| {{ sentence_kan }}'
     metadata: *id001
-    name: translate-this-urd-zho_simpl
-    reference: Translate this from X to Y (Urdu into simplified Chinese)
-  8a157823-475d-4efc-960a-d626da8ecda7: !Template
+    name: flores-xglm-Lingala-Kannada
+    reference: 'L1: [sent1] = L2: [sent2]'
+  9bfa6d7d-65f7-4f9c-a62d-24efd4f70838: !Template
     answer_choices: null
-    id: 8a157823-475d-4efc-960a-d626da8ecda7
-    jinja: 'Translate this from Telugu into Brazilian Portuguese: {{ sentence_tel
-      }} ||| {{ sentence_por }}'
+    id: 9bfa6d7d-65f7-4f9c-a62d-24efd4f70838
+    jinja: 'Malayalam: {{ sentence_mal }} = Oriya: ||| {{ sentence_ory }}'
     metadata: *id001
-    name: translate-this-tel-por
-    reference: Translate this from X to Y (Telugu into Brazilian Portuguese)
-  8a5122ab-56e1-4f8c-845a-e18fb1e8695c: !Template
+    name: flores-xglm-Malayalam-Oriya
+    reference: 'L1: [sent1] = L2: [sent2]'
+  9cd6361b-76ac-4e85-96f6-b589a5c73595: !Template
     answer_choices: null
-    id: 8a5122ab-56e1-4f8c-845a-e18fb1e8695c
-    jinja: 'Translate this from Marathi into Zulu: {{ sentence_mar }} ||| {{ sentence_zul
+    id: 9cd6361b-76ac-4e85-96f6-b589a5c73595
+    jinja: 'Zulu: {{ sentence_zul }} = Latin American Spanish: ||| {{ sentence_spa
       }}'
     metadata: *id001
-    name: translate-this-mar-zul
-    reference: Translate this from X to Y (Marathi into Zulu)
-  8a626552-c23b-41c6-afed-e1dcb3bdafdf: !Template
+    name: flores-xglm-Zulu-Latin American Spanish
+    reference: 'L1: [sent1] = L2: [sent2]'
+  9d2e2cba-a18b-445b-bc3a-7b19d11e1f8e: !Template
     answer_choices: null
-    id: 8a626552-c23b-41c6-afed-e1dcb3bdafdf
-    jinja: 'Translate this from Zulu into Xhosa: {{ sentence_zul }} ||| {{ sentence_xho
+    id: 9d2e2cba-a18b-445b-bc3a-7b19d11e1f8e
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Assamese: ||| {{ sentence_asm
       }}'
     metadata: *id001
-    name: translate-this-zul-xho
-    reference: Translate this from X to Y (Zulu into Xhosa)
-  8a844276-7a55-4c62-843d-779f2f1cf19f: !Template
+    name: flores-xglm-simplified Chinese-Assamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  9dc7dc2f-ddaa-44ec-b62d-9cf9c8c4de80: !Template
     answer_choices: null
-    id: 8a844276-7a55-4c62-843d-779f2f1cf19f
-    jinja: 'Translate this from Oriya into Telugu: {{ sentence_ory }} ||| {{ sentence_tel
-      }}'
+    id: 9dc7dc2f-ddaa-44ec-b62d-9cf9c8c4de80
+    jinja: 'Malayalam: {{ sentence_mal }} = Tamil: ||| {{ sentence_tam }}'
     metadata: *id001
-    name: translate-this-ory-tel
-    reference: Translate this from X to Y (Oriya into Telugu)
-  8ae09bf8-f386-435b-8099-f3bc868336a2: !Template
+    name: flores-xglm-Malayalam-Tamil
+    reference: 'L1: [sent1] = L2: [sent2]'
+  9e1c02a7-c4a7-4810-9c97-a0af31732fdd: !Template
     answer_choices: null
-    id: 8ae09bf8-f386-435b-8099-f3bc868336a2
-    jinja: 'Translate this from Arabic into Tamil: {{ sentence_ara }} ||| {{ sentence_tam
-      }}'
+    id: 9e1c02a7-c4a7-4810-9c97-a0af31732fdd
+    jinja: 'Gujarati: {{ sentence_guj }} = Swahili: ||| {{ sentence_swh }}'
     metadata: *id001
-    name: translate-this-ara-tam
-    reference: Translate this from X to Y (Arabic into Tamil)
-  8b1ab9a8-cf88-4024-a5ff-ab0980644d8c: !Template
+    name: flores-xglm-Gujarati-Swahili
+    reference: 'L1: [sent1] = L2: [sent2]'
+  9e389a4d-01b5-42a6-aa45-5945e092f450: !Template
     answer_choices: null
-    id: 8b1ab9a8-cf88-4024-a5ff-ab0980644d8c
-    jinja: 'Translate this from Tamil into Gujarati: {{ sentence_tam }} ||| {{ sentence_guj
+    id: 9e389a4d-01b5-42a6-aa45-5945e092f450
+    jinja: 'Tamil: {{ sentence_tam }} = Arabic: ||| {{ sentence_ara }}'
+    metadata: *id001
+    name: flores-xglm-Tamil-Arabic
+    reference: 'L1: [sent1] = L2: [sent2]'
+  9e4b7662-5e07-461f-9ab0-9eda39b9dcbe: !Template
+    answer_choices: null
+    id: 9e4b7662-5e07-461f-9ab0-9eda39b9dcbe
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = Catalan: ||| {{ sentence_cat
       }}'
     metadata: *id001
-    name: translate-this-tam-guj
-    reference: Translate this from X to Y (Tamil into Gujarati)
-  8b25d6e8-e1d0-496e-b0f9-d9247ca67900: !Template
+    name: flores-xglm-Latin American Spanish-Catalan
+    reference: 'L1: [sent1] = L2: [sent2]'
+  9e4cb22f-d78d-43f6-b0aa-60c628a1d8d9: !Template
     answer_choices: null
-    id: 8b25d6e8-e1d0-496e-b0f9-d9247ca67900
-    jinja: 'Translate this from Kannada into simplified Chinese: {{ sentence_kan }}
-      ||| {{ sentence_zho_simpl }}'
+    id: 9e4cb22f-d78d-43f6-b0aa-60c628a1d8d9
+    jinja: 'Swahili: {{ sentence_swh }} = Urdu: ||| {{ sentence_urd }}'
     metadata: *id001
-    name: translate-this-kan-zho_simpl
-    reference: Translate this from X to Y (Kannada into simplified Chinese)
-  8b31f547-30d3-434b-abf4-56054ad3696a: !Template
+    name: flores-xglm-Swahili-Urdu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  9eb20297-59a0-4974-b1ff-460886c043d6: !Template
     answer_choices: null
-    id: 8b31f547-30d3-434b-abf4-56054ad3696a
-    jinja: 'Translate this from English into Latin American Spanish: {{ sentence_eng
-      }} ||| {{ sentence_spa }}'
+    id: 9eb20297-59a0-4974-b1ff-460886c043d6
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Northern Sotho: ||| {{
+      sentence_nso }}'
     metadata: *id001
-    name: translate-this-eng-spa
-    reference: Translate this from X to Y (English into Latin American Spanish)
-  8b5b5a43-7cdc-43d2-b088-8b5f2687f496: !Template
+    name: flores-xglm-simplified Chinese-Northern Sotho
+    reference: 'L1: [sent1] = L2: [sent2]'
+  9ed57e88-7864-4fd9-8820-66bcf7f0debc: !Template
     answer_choices: null
-    id: 8b5b5a43-7cdc-43d2-b088-8b5f2687f496
-    jinja: 'Translate this from Zulu into Oriya: {{ sentence_zul }} ||| {{ sentence_ory
-      }}'
+    id: 9ed57e88-7864-4fd9-8820-66bcf7f0debc
+    jinja: 'Zulu: {{ sentence_zul }} = Catalan: ||| {{ sentence_cat }}'
     metadata: *id001
-    name: translate-this-zul-ory
-    reference: Translate this from X to Y (Zulu into Oriya)
-  8c4083eb-a108-44af-8c10-3d186b97b7c0: !Template
+    name: flores-xglm-Zulu-Catalan
+    reference: 'L1: [sent1] = L2: [sent2]'
+  9f20912a-71c3-4e2c-9555-de8f1265ca78: !Template
     answer_choices: null
-    id: 8c4083eb-a108-44af-8c10-3d186b97b7c0
-    jinja: 'Translate this from Xhosa into Swahili: {{ sentence_xho }} ||| {{ sentence_swh
+    id: 9f20912a-71c3-4e2c-9555-de8f1265ca78
+    jinja: 'Arabic: {{ sentence_ara }} = Assamese: ||| {{ sentence_asm }}'
+    metadata: *id001
+    name: flores-xglm-Arabic-Assamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  9f57fd6e-daed-44bb-887e-14efd997e88e: !Template
+    answer_choices: null
+    id: 9f57fd6e-daed-44bb-887e-14efd997e88e
+    jinja: 'Malayalam: {{ sentence_mal }} = simplified Chinese: ||| {{ sentence_zho_simpl
       }}'
     metadata: *id001
-    name: translate-this-xho-swh
-    reference: Translate this from X to Y (Xhosa into Swahili)
-  8c9f2e5c-c880-4d08-bdb6-a3d451a2528b: !Template
+    name: flores-xglm-Malayalam-simplified Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  9f9e483d-0aed-4a8b-8f4a-e7f910ff9d27: !Template
     answer_choices: null
-    id: 8c9f2e5c-c880-4d08-bdb6-a3d451a2528b
-    jinja: 'Translate this from traditional Chinese into French: {{ sentence_zho_trad
-      }} ||| {{ sentence_fra }}'
+    id: 9f9e483d-0aed-4a8b-8f4a-e7f910ff9d27
+    jinja: 'Oriya: {{ sentence_ory }} = Vietnamese: ||| {{ sentence_vie }}'
     metadata: *id001
-    name: translate-this-zho_trad-fra
-    reference: Translate this from X to Y (traditional Chinese into French)
-  8d66aeb6-c15c-4545-915b-d44eae81d305: !Template
+    name: flores-xglm-Oriya-Vietnamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  9fdc9ed2-0e6e-4725-b2c4-9a269d59598c: !Template
     answer_choices: null
-    id: 8d66aeb6-c15c-4545-915b-d44eae81d305
-    jinja: 'Translate this from Punjabi into Zulu: {{ sentence_pan }} ||| {{ sentence_zul
-      }}'
+    id: 9fdc9ed2-0e6e-4725-b2c4-9a269d59598c
+    jinja: 'Punjabi: {{ sentence_pan }} = Vietnamese: ||| {{ sentence_vie }}'
     metadata: *id001
-    name: translate-this-pan-zul
-    reference: Translate this from X to Y (Punjabi into Zulu)
-  8d954bec-f617-48d3-9a23-bd56bd55d483: !Template
+    name: flores-xglm-Punjabi-Vietnamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  9febe25f-a831-43e5-ae6c-4d06d4b5b69a: !Template
     answer_choices: null
-    id: 8d954bec-f617-48d3-9a23-bd56bd55d483
-    jinja: 'Translate this from Igbo into Lingala: {{ sentence_ibo }} ||| {{ sentence_lin
+    id: 9febe25f-a831-43e5-ae6c-4d06d4b5b69a
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = Igbo: ||| {{ sentence_ibo
       }}'
     metadata: *id001
-    name: translate-this-ibo-lin
-    reference: Translate this from X to Y (Igbo into Lingala)
-  8dc91263-3b4b-40f3-a539-245604beb5f8: !Template
+    name: flores-xglm-Latin American Spanish-Igbo
+    reference: 'L1: [sent1] = L2: [sent2]'
+  a00e8e7b-544d-4d90-9352-06054debb8d1: !Template
     answer_choices: null
-    id: 8dc91263-3b4b-40f3-a539-245604beb5f8
-    jinja: 'Translate this from Lingala into Telugu: {{ sentence_lin }} ||| {{ sentence_tel
-      }}'
+    id: a00e8e7b-544d-4d90-9352-06054debb8d1
+    jinja: 'Hindi: {{ sentence_hin }} = Gujarati: ||| {{ sentence_guj }}'
     metadata: *id001
-    name: translate-this-lin-tel
-    reference: Translate this from X to Y (Lingala into Telugu)
-  8dd3e7f0-df4b-445e-95a8-b15baf60eb3d: !Template
+    name: flores-xglm-Hindi-Gujarati
+    reference: 'L1: [sent1] = L2: [sent2]'
+  a0329b95-33c5-4275-bdc7-90d27de378c3: !Template
     answer_choices: null
-    id: 8dd3e7f0-df4b-445e-95a8-b15baf60eb3d
-    jinja: 'Translate this from Kannada into Hindi: {{ sentence_kan }} ||| {{ sentence_hin
-      }}'
+    id: a0329b95-33c5-4275-bdc7-90d27de378c3
+    jinja: 'Swahili: {{ sentence_swh }} = Indonesian: ||| {{ sentence_ind }}'
     metadata: *id001
-    name: translate-this-kan-hin
-    reference: Translate this from X to Y (Kannada into Hindi)
-  8e3a2da5-c399-4a0c-b653-1184f2d15c04: !Template
+    name: flores-xglm-Swahili-Indonesian
+    reference: 'L1: [sent1] = L2: [sent2]'
+  a09609a8-dd19-4d1f-8602-d8a8eb8db013: !Template
     answer_choices: null
-    id: 8e3a2da5-c399-4a0c-b653-1184f2d15c04
-    jinja: 'Translate this from Bengali into French: {{ sentence_ben }} ||| {{ sentence_fra
-      }}'
+    id: a09609a8-dd19-4d1f-8602-d8a8eb8db013
+    jinja: 'Indonesian: {{ sentence_ind }} = Lingala: ||| {{ sentence_lin }}'
     metadata: *id001
-    name: translate-this-ben-fra
-    reference: Translate this from X to Y (Bengali into French)
-  8e40197f-2cc6-41ef-9465-ff87ef05665f: !Template
+    name: flores-xglm-Indonesian-Lingala
+    reference: 'L1: [sent1] = L2: [sent2]'
+  a0aa3fd0-b729-490f-8c6c-dd350de8742c: !Template
     answer_choices: null
-    id: 8e40197f-2cc6-41ef-9465-ff87ef05665f
-    jinja: 'Translate this from simplified Chinese into Marathi: {{ sentence_zho_simpl
-      }} ||| {{ sentence_mar }}'
+    id: a0aa3fd0-b729-490f-8c6c-dd350de8742c
+    jinja: 'Kannada: {{ sentence_kan }} = Tamil: ||| {{ sentence_tam }}'
     metadata: *id001
-    name: translate-this-zho_simpl-mar
-    reference: Translate this from X to Y (simplified Chinese into Marathi)
-  8e55824e-fa7d-495a-ba74-920e727f9e61: !Template
+    name: flores-xglm-Kannada-Tamil
+    reference: 'L1: [sent1] = L2: [sent2]'
+  a0ab984e-f542-4a69-a9b6-08ea86a8392f: !Template
     answer_choices: null
-    id: 8e55824e-fa7d-495a-ba74-920e727f9e61
-    jinja: 'Translate this from Hindi into Urdu: {{ sentence_hin }} ||| {{ sentence_urd
-      }}'
+    id: a0ab984e-f542-4a69-a9b6-08ea86a8392f
+    jinja: 'English: {{ sentence_eng }} = Oriya: ||| {{ sentence_ory }}'
     metadata: *id001
-    name: translate-this-hin-urd
-    reference: Translate this from X to Y (Hindi into Urdu)
-  8e77c5ab-57f9-4b07-9a51-2fba15d3c195: !Template
+    name: flores-xglm-English-Oriya
+    reference: 'L1: [sent1] = L2: [sent2]'
+  a0dbd006-6a5c-4b51-b09d-3c8fae52b7a2: !Template
     answer_choices: null
-    id: 8e77c5ab-57f9-4b07-9a51-2fba15d3c195
-    jinja: 'Translate this from Oriya into Yoruba: {{ sentence_ory }} ||| {{ sentence_yor
+    id: a0dbd006-6a5c-4b51-b09d-3c8fae52b7a2
+    jinja: 'Zulu: {{ sentence_zul }} = traditional Chinese: ||| {{ sentence_zho_trad
       }}'
     metadata: *id001
-    name: translate-this-ory-yor
-    reference: Translate this from X to Y (Oriya into Yoruba)
-  8eda07c0-5205-452f-9cf9-445e9d3736a2: !Template
+    name: flores-xglm-Zulu-traditional Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  a0e5b87b-c9aa-4a32-81b8-f595c2d42aab: !Template
     answer_choices: null
-    id: 8eda07c0-5205-452f-9cf9-445e9d3736a2
-    jinja: 'Translate this from Malayalam into Zulu: {{ sentence_mal }} ||| {{ sentence_zul
+    id: a0e5b87b-c9aa-4a32-81b8-f595c2d42aab
+    jinja: 'Tamil: {{ sentence_tam }} = Latin American Spanish: ||| {{ sentence_spa
       }}'
     metadata: *id001
-    name: translate-this-mal-zul
-    reference: Translate this from X to Y (Malayalam into Zulu)
-  8f4a8a1f-f1ac-40b7-ad2e-c02cb0dc737c: !Template
+    name: flores-xglm-Tamil-Latin American Spanish
+    reference: 'L1: [sent1] = L2: [sent2]'
+  a229f6a1-ef39-410d-ac64-4cac17ab74a8: !Template
     answer_choices: null
-    id: 8f4a8a1f-f1ac-40b7-ad2e-c02cb0dc737c
-    jinja: 'Translate this from Swahili into Kannada: {{ sentence_swh }} ||| {{ sentence_kan
+    id: a229f6a1-ef39-410d-ac64-4cac17ab74a8
+    jinja: 'Indonesian: {{ sentence_ind }} = Latin American Spanish: ||| {{ sentence_spa
       }}'
     metadata: *id001
-    name: translate-this-swh-kan
-    reference: Translate this from X to Y (Swahili into Kannada)
-  8f568ee7-5561-4d29-a497-3fcfc7372720: !Template
+    name: flores-xglm-Indonesian-Latin American Spanish
+    reference: 'L1: [sent1] = L2: [sent2]'
+  a29fcaf5-ff40-469b-8ce7-cbd75156ee1b: !Template
     answer_choices: null
-    id: 8f568ee7-5561-4d29-a497-3fcfc7372720
-    jinja: 'Translate this from Oriya into Urdu: {{ sentence_ory }} ||| {{ sentence_urd
-      }}'
+    id: a29fcaf5-ff40-469b-8ce7-cbd75156ee1b
+    jinja: 'Marathi: {{ sentence_mar }} = Urdu: ||| {{ sentence_urd }}'
     metadata: *id001
-    name: translate-this-ory-urd
-    reference: Translate this from X to Y (Oriya into Urdu)
-  8fa24c60-e437-42ff-a3fb-c1620cd09e7a: !Template
+    name: flores-xglm-Marathi-Urdu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  a30c6d99-18b7-4ca2-818e-0a623e8c7e01: !Template
     answer_choices: null
-    id: 8fa24c60-e437-42ff-a3fb-c1620cd09e7a
-    jinja: 'Translate this from Telugu into Gujarati: {{ sentence_tel }} ||| {{ sentence_guj
-      }}'
+    id: a30c6d99-18b7-4ca2-818e-0a623e8c7e01
+    jinja: 'Indonesian: {{ sentence_ind }} = Kannada: ||| {{ sentence_kan }}'
     metadata: *id001
-    name: translate-this-tel-guj
-    reference: Translate this from X to Y (Telugu into Gujarati)
-  9032d786-1e8c-46c4-9ded-f16032290dd8: !Template
+    name: flores-xglm-Indonesian-Kannada
+    reference: 'L1: [sent1] = L2: [sent2]'
+  a4391de4-be95-4ed7-bfbe-2c0aa00a9de4: !Template
     answer_choices: null
-    id: 9032d786-1e8c-46c4-9ded-f16032290dd8
-    jinja: 'Translate this from Swahili into Igbo: {{ sentence_swh }} ||| {{ sentence_ibo
-      }}'
+    id: a4391de4-be95-4ed7-bfbe-2c0aa00a9de4
+    jinja: 'Northern Sotho: {{ sentence_nso }} = Gujarati: ||| {{ sentence_guj }}'
     metadata: *id001
-    name: translate-this-swh-ibo
-    reference: Translate this from X to Y (Swahili into Igbo)
-  910e899d-b24e-4514-a98d-7573233957f8: !Template
+    name: flores-xglm-Northern Sotho-Gujarati
+    reference: 'L1: [sent1] = L2: [sent2]'
+  a47636dd-6959-4a29-8159-d1db90681f70: !Template
     answer_choices: null
-    id: 910e899d-b24e-4514-a98d-7573233957f8
-    jinja: 'Translate this from Lingala into Catalan: {{ sentence_lin }} ||| {{ sentence_cat
+    id: a47636dd-6959-4a29-8159-d1db90681f70
+    jinja: 'Hindi: {{ sentence_hin }} = simplified Chinese: ||| {{ sentence_zho_simpl
       }}'
     metadata: *id001
-    name: translate-this-lin-cat
-    reference: Translate this from X to Y (Lingala into Catalan)
-  9164cede-ce09-4bdb-b45c-d85a50667750: !Template
+    name: flores-xglm-Hindi-simplified Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  a4996d58-5fec-4e82-832d-6de565b03f96: !Template
     answer_choices: null
-    id: 9164cede-ce09-4bdb-b45c-d85a50667750
-    jinja: 'Translate this from Latin American Spanish into Nepali: {{ sentence_spa
-      }} ||| {{ sentence_npi }}'
+    id: a4996d58-5fec-4e82-832d-6de565b03f96
+    jinja: 'Igbo: {{ sentence_ibo }} = Xhosa: ||| {{ sentence_xho }}'
     metadata: *id001
-    name: translate-this-spa-npi
-    reference: Translate this from X to Y (Latin American Spanish into Nepali)
-  91d8d9b7-bd0c-4a68-91cd-0baab6a32298: !Template
+    name: flores-xglm-Igbo-Xhosa
+    reference: 'L1: [sent1] = L2: [sent2]'
+  a5df1e52-1f15-4d69-9713-21464d42e305: !Template
     answer_choices: null
-    id: 91d8d9b7-bd0c-4a68-91cd-0baab6a32298
-    jinja: 'Translate this from Urdu into Zulu: {{ sentence_urd }} ||| {{ sentence_zul
+    id: a5df1e52-1f15-4d69-9713-21464d42e305
+    jinja: 'Gujarati: {{ sentence_guj }} = traditional Chinese: ||| {{ sentence_zho_trad
       }}'
     metadata: *id001
-    name: translate-this-urd-zul
-    reference: Translate this from X to Y (Urdu into Zulu)
-  926ad8e2-6f3a-4a9a-9370-83631bb84226: !Template
+    name: flores-xglm-Gujarati-traditional Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  a5e4d7f3-101c-4d87-96ee-07c476612f51: !Template
     answer_choices: null
-    id: 926ad8e2-6f3a-4a9a-9370-83631bb84226
-    jinja: 'Translate this from Hindi into Marathi: {{ sentence_hin }} ||| {{ sentence_mar
-      }}'
+    id: a5e4d7f3-101c-4d87-96ee-07c476612f51
+    jinja: 'Wolof: {{ sentence_wol }} = Malayalam: ||| {{ sentence_mal }}'
     metadata: *id001
-    name: translate-this-hin-mar
-    reference: Translate this from X to Y (Hindi into Marathi)
-  926ff83d-2807-4716-9ad4-6de44bce5c44: !Template
+    name: flores-xglm-Wolof-Malayalam
+    reference: 'L1: [sent1] = L2: [sent2]'
+  a5ea351e-b44c-44e6-ae89-dc7dd73d1c45: !Template
     answer_choices: null
-    id: 926ff83d-2807-4716-9ad4-6de44bce5c44
-    jinja: 'Translate this from Xhosa into Hindi: {{ sentence_xho }} ||| {{ sentence_hin
-      }}'
+    id: a5ea351e-b44c-44e6-ae89-dc7dd73d1c45
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = simplified Chinese: ||| {{
+      sentence_zho_simpl }}'
     metadata: *id001
-    name: translate-this-xho-hin
-    reference: Translate this from X to Y (Xhosa into Hindi)
-  92a90c77-53e5-453f-b79e-96d7a1c0ae23: !Template
+    name: flores-xglm-Latin American Spanish-simplified Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  a62c7e26-e88d-4c84-8ce4-27eb119c3a17: !Template
     answer_choices: null
-    id: 92a90c77-53e5-453f-b79e-96d7a1c0ae23
-    jinja: 'Translate this from Catalan into Gujarati: {{ sentence_cat }} ||| {{ sentence_guj
-      }}'
+    id: a62c7e26-e88d-4c84-8ce4-27eb119c3a17
+    jinja: 'Lingala: {{ sentence_lin }} = Nepali: ||| {{ sentence_npi }}'
     metadata: *id001
-    name: translate-this-cat-guj
-    reference: Translate this from X to Y (Catalan into Gujarati)
-  92b6c604-141f-4840-a9dc-a2d7ba481b27: !Template
+    name: flores-xglm-Lingala-Nepali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  a6524792-1228-4604-92fc-4e8331447908: !Template
     answer_choices: null
-    id: 92b6c604-141f-4840-a9dc-a2d7ba481b27
-    jinja: 'Translate this from Swahili into French: {{ sentence_swh }} ||| {{ sentence_fra
-      }}'
+    id: a6524792-1228-4604-92fc-4e8331447908
+    jinja: 'Bengali: {{ sentence_ben }} = Assamese: ||| {{ sentence_asm }}'
     metadata: *id001
-    name: translate-this-swh-fra
-    reference: Translate this from X to Y (Swahili into French)
-  9328f338-5852-480c-81ac-b24b003eeb6c: !Template
+    name: flores-xglm-Bengali-Assamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  a66346ee-c630-4fe7-9a20-2b1edeccb8dd: !Template
     answer_choices: null
-    id: 9328f338-5852-480c-81ac-b24b003eeb6c
-    jinja: 'Translate this from Assamese into Punjabi: {{ sentence_asm }} ||| {{ sentence_pan
-      }}'
+    id: a66346ee-c630-4fe7-9a20-2b1edeccb8dd
+    jinja: 'Arabic: {{ sentence_ara }} = Swahili: ||| {{ sentence_swh }}'
     metadata: *id001
-    name: translate-this-asm-pan
-    reference: Translate this from X to Y (Assamese into Punjabi)
-  93333bd3-47e8-4dae-9b4f-ca86663078af: !Template
+    name: flores-xglm-Arabic-Swahili
+    reference: 'L1: [sent1] = L2: [sent2]'
+  a666c127-5b6b-4b01-885d-a35bc70c5ab5: !Template
     answer_choices: null
-    id: 93333bd3-47e8-4dae-9b4f-ca86663078af
-    jinja: 'Translate this from Vietnamese into Latin American Spanish: {{ sentence_vie
-      }} ||| {{ sentence_spa }}'
+    id: a666c127-5b6b-4b01-885d-a35bc70c5ab5
+    jinja: 'Oriya: {{ sentence_ory }} = Nepali: ||| {{ sentence_npi }}'
     metadata: *id001
-    name: translate-this-vie-spa
-    reference: Translate this from X to Y (Vietnamese into Latin American Spanish)
-  936a4c07-a3a1-4b57-b94e-f03e19612863: !Template
+    name: flores-xglm-Oriya-Nepali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  a6dce5cf-8308-41b3-bb61-243f5e4ef379: !Template
     answer_choices: null
-    id: 936a4c07-a3a1-4b57-b94e-f03e19612863
-    jinja: 'Translate this from Latin American Spanish into Yoruba: {{ sentence_spa
-      }} ||| {{ sentence_yor }}'
+    id: a6dce5cf-8308-41b3-bb61-243f5e4ef379
+    jinja: 'Northern Sotho: {{ sentence_nso }} = Telugu: ||| {{ sentence_tel }}'
     metadata: *id001
-    name: translate-this-spa-yor
-    reference: Translate this from X to Y (Latin American Spanish into Yoruba)
-  938d9bac-e162-4747-96ad-0281d896d14b: !Template
+    name: flores-xglm-Northern Sotho-Telugu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  a6ed43fd-4979-4c92-8061-579edf80a8b9: !Template
     answer_choices: null
-    id: 938d9bac-e162-4747-96ad-0281d896d14b
-    jinja: 'Translate this from Punjabi into Xhosa: {{ sentence_pan }} ||| {{ sentence_xho
-      }}'
+    id: a6ed43fd-4979-4c92-8061-579edf80a8b9
+    jinja: 'Bengali: {{ sentence_ben }} = Indonesian: ||| {{ sentence_ind }}'
     metadata: *id001
-    name: translate-this-pan-xho
-    reference: Translate this from X to Y (Punjabi into Xhosa)
-  93f68f25-f5db-453d-b9f2-6a4b938c8659: !Template
+    name: flores-xglm-Bengali-Indonesian
+    reference: 'L1: [sent1] = L2: [sent2]'
+  a72f73f5-8687-4307-bf38-f9bfd01ae645: !Template
     answer_choices: null
-    id: 93f68f25-f5db-453d-b9f2-6a4b938c8659
-    jinja: 'Translate this from Indonesian into Arabic: {{ sentence_ind }} ||| {{
-      sentence_ara }}'
+    id: a72f73f5-8687-4307-bf38-f9bfd01ae645
+    jinja: 'Hindi: {{ sentence_hin }} = French: ||| {{ sentence_fra }}'
     metadata: *id001
-    name: translate-this-ind-ara
-    reference: Translate this from X to Y (Indonesian into Arabic)
-  9559886f-c593-47b7-b866-497c131b5ea6: !Template
+    name: flores-xglm-Hindi-French
+    reference: 'L1: [sent1] = L2: [sent2]'
+  a74375d5-26af-4b63-82ac-db893a448803: !Template
     answer_choices: null
-    id: 9559886f-c593-47b7-b866-497c131b5ea6
-    jinja: 'Translate this from English into Hindi: {{ sentence_eng }} ||| {{ sentence_hin
-      }}'
+    id: a74375d5-26af-4b63-82ac-db893a448803
+    jinja: 'Vietnamese: {{ sentence_vie }} = Oriya: ||| {{ sentence_ory }}'
     metadata: *id001
-    name: translate-this-eng-hin
-    reference: Translate this from X to Y (English into Hindi)
-  9590dea4-4d43-42e7-9847-26ed2b184546: !Template
+    name: flores-xglm-Vietnamese-Oriya
+    reference: 'L1: [sent1] = L2: [sent2]'
+  a78075fd-6e5b-446c-a339-2f2e4a662752: !Template
     answer_choices: null
-    id: 9590dea4-4d43-42e7-9847-26ed2b184546
-    jinja: 'Translate this from Bengali into Hindi: {{ sentence_ben }} ||| {{ sentence_hin
-      }}'
+    id: a78075fd-6e5b-446c-a339-2f2e4a662752
+    jinja: 'Urdu: {{ sentence_urd }} = Indonesian: ||| {{ sentence_ind }}'
     metadata: *id001
-    name: translate-this-ben-hin
-    reference: Translate this from X to Y (Bengali into Hindi)
-  95b212f2-0602-4e3a-b4db-3443e95b7bd9: !Template
+    name: flores-xglm-Urdu-Indonesian
+    reference: 'L1: [sent1] = L2: [sent2]'
+  a78f5eb5-c0ad-43ba-9283-6e9718c4b0f9: !Template
     answer_choices: null
-    id: 95b212f2-0602-4e3a-b4db-3443e95b7bd9
-    jinja: 'Translate this from Tamil into Indonesian: {{ sentence_tam }} ||| {{ sentence_ind
-      }}'
+    id: a78f5eb5-c0ad-43ba-9283-6e9718c4b0f9
+    jinja: 'Gujarati: {{ sentence_guj }} = Malayalam: ||| {{ sentence_mal }}'
     metadata: *id001
-    name: translate-this-tam-ind
-    reference: Translate this from X to Y (Tamil into Indonesian)
-  95f8a3ac-a8bc-4950-b9b9-b4e850cfc7bd: !Template
+    name: flores-xglm-Gujarati-Malayalam
+    reference: 'L1: [sent1] = L2: [sent2]'
+  a78f78f2-caa0-4694-96c6-1f8ce942edf5: !Template
     answer_choices: null
-    id: 95f8a3ac-a8bc-4950-b9b9-b4e850cfc7bd
-    jinja: 'Translate this from Punjabi into Indonesian: {{ sentence_pan }} ||| {{
-      sentence_ind }}'
+    id: a78f78f2-caa0-4694-96c6-1f8ce942edf5
+    jinja: 'French: {{ sentence_fra }} = Brazilian Portuguese: ||| {{ sentence_por
+      }}'
     metadata: *id001
-    name: translate-this-pan-ind
-    reference: Translate this from X to Y (Punjabi into Indonesian)
-  96148316-0223-4370-a711-5d4ec675c37c: !Template
+    name: flores-xglm-French-Brazilian Portuguese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  a82acdeb-5437-4a84-9190-2800ac5ea4d8: !Template
     answer_choices: null
-    id: 96148316-0223-4370-a711-5d4ec675c37c
-    jinja: 'Translate this from simplified Chinese into Punjabi: {{ sentence_zho_simpl
-      }} ||| {{ sentence_pan }}'
+    id: a82acdeb-5437-4a84-9190-2800ac5ea4d8
+    jinja: 'Yoruba: {{ sentence_yor }} = Punjabi: ||| {{ sentence_pan }}'
     metadata: *id001
-    name: translate-this-zho_simpl-pan
-    reference: Translate this from X to Y (simplified Chinese into Punjabi)
-  9746ab27-c91c-4ef7-80b7-1c53a7715886: !Template
+    name: flores-xglm-Yoruba-Punjabi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  a8956902-919d-4d4e-a2a8-3fe9bb6c2c65: !Template
     answer_choices: null
-    id: 9746ab27-c91c-4ef7-80b7-1c53a7715886
-    jinja: 'Translate this from Lingala into Latin American Spanish: {{ sentence_lin
-      }} ||| {{ sentence_spa }}'
+    id: a8956902-919d-4d4e-a2a8-3fe9bb6c2c65
+    jinja: 'Zulu: {{ sentence_zul }} = Yoruba: ||| {{ sentence_yor }}'
     metadata: *id001
-    name: translate-this-lin-spa
-    reference: Translate this from X to Y (Lingala into Latin American Spanish)
-  97591416-c9aa-474a-bf12-fc3de0f8bb75: !Template
+    name: flores-xglm-Zulu-Yoruba
+    reference: 'L1: [sent1] = L2: [sent2]'
+  a8ed2b22-f9a4-434f-a566-dc7e20138795: !Template
     answer_choices: null
-    id: 97591416-c9aa-474a-bf12-fc3de0f8bb75
-    jinja: 'Translate this from French into Swahili: {{ sentence_fra }} ||| {{ sentence_swh
-      }}'
+    id: a8ed2b22-f9a4-434f-a566-dc7e20138795
+    jinja: 'Marathi: {{ sentence_mar }} = Oriya: ||| {{ sentence_ory }}'
     metadata: *id001
-    name: translate-this-fra-swh
-    reference: Translate this from X to Y (French into Swahili)
-  97678cd6-50e6-497a-a4aa-ddcc22f346f7: !Template
+    name: flores-xglm-Marathi-Oriya
+    reference: 'L1: [sent1] = L2: [sent2]'
+  a9546aa0-1ee9-412a-8742-b6f05bfa7a4b: !Template
     answer_choices: null
-    id: 97678cd6-50e6-497a-a4aa-ddcc22f346f7
-    jinja: 'Translate this from French into Lingala: {{ sentence_fra }} ||| {{ sentence_lin
-      }}'
+    id: a9546aa0-1ee9-412a-8742-b6f05bfa7a4b
+    jinja: 'Assamese: {{ sentence_asm }} = Catalan: ||| {{ sentence_cat }}'
     metadata: *id001
-    name: translate-this-fra-lin
-    reference: Translate this from X to Y (French into Lingala)
-  97b46c01-6765-4c75-bc96-3119fc443198: !Template
+    name: flores-xglm-Assamese-Catalan
+    reference: 'L1: [sent1] = L2: [sent2]'
+  a9f70f45-afe9-4d88-8135-cdf7f9860f23: !Template
     answer_choices: null
-    id: 97b46c01-6765-4c75-bc96-3119fc443198
-    jinja: 'Translate this from Kannada into Yoruba: {{ sentence_kan }} ||| {{ sentence_yor
+    id: a9f70f45-afe9-4d88-8135-cdf7f9860f23
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Oriya: ||| {{ sentence_ory
       }}'
     metadata: *id001
-    name: translate-this-kan-yor
-    reference: Translate this from X to Y (Kannada into Yoruba)
-  97b4e151-0b1e-4241-8dc7-ee3c59f230ed: !Template
+    name: flores-xglm-simplified Chinese-Oriya
+    reference: 'L1: [sent1] = L2: [sent2]'
+  a9f86411-88d5-4caa-98fa-a12de2099cd2: !Template
     answer_choices: null
-    id: 97b4e151-0b1e-4241-8dc7-ee3c59f230ed
-    jinja: 'Translate this from Arabic into Oriya: {{ sentence_ara }} ||| {{ sentence_ory
-      }}'
+    id: a9f86411-88d5-4caa-98fa-a12de2099cd2
+    jinja: 'Arabic: {{ sentence_ara }} = Nepali: ||| {{ sentence_npi }}'
     metadata: *id001
-    name: translate-this-ara-ory
-    reference: Translate this from X to Y (Arabic into Oriya)
-  97d762a2-270d-4e19-82b2-01562cf1eefc: !Template
+    name: flores-xglm-Arabic-Nepali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  aa35da4c-19d1-45c7-88e4-607b8b164ff7: !Template
     answer_choices: null
-    id: 97d762a2-270d-4e19-82b2-01562cf1eefc
-    jinja: 'Translate this from Oriya into Xhosa: {{ sentence_ory }} ||| {{ sentence_xho
+    id: aa35da4c-19d1-45c7-88e4-607b8b164ff7
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Punjabi: ||| {{ sentence_pan
       }}'
     metadata: *id001
-    name: translate-this-ory-xho
-    reference: Translate this from X to Y (Oriya into Xhosa)
-  996e5c44-82cb-4fe8-a158-651810545551: !Template
+    name: flores-xglm-Brazilian Portuguese-Punjabi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  aa5f4b23-e80e-4dd9-87d6-415496908f3f: !Template
     answer_choices: null
-    id: 996e5c44-82cb-4fe8-a158-651810545551
-    jinja: 'Translate this from Marathi into Brazilian Portuguese: {{ sentence_mar
-      }} ||| {{ sentence_por }}'
+    id: aa5f4b23-e80e-4dd9-87d6-415496908f3f
+    jinja: 'Northern Sotho: {{ sentence_nso }} = Urdu: ||| {{ sentence_urd }}'
     metadata: *id001
-    name: translate-this-mar-por
-    reference: Translate this from X to Y (Marathi into Brazilian Portuguese)
-  998b20a2-a5ef-4b3a-b252-2d15a9906c21: !Template
+    name: flores-xglm-Northern Sotho-Urdu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  aa9eb5b9-45ff-45d1-8067-9cdd51398f43: !Template
     answer_choices: null
-    id: 998b20a2-a5ef-4b3a-b252-2d15a9906c21
-    jinja: 'Translate this from Latin American Spanish into simplified Chinese: {{
-      sentence_spa }} ||| {{ sentence_zho_simpl }}'
+    id: aa9eb5b9-45ff-45d1-8067-9cdd51398f43
+    jinja: 'Yoruba: {{ sentence_yor }} = Indonesian: ||| {{ sentence_ind }}'
     metadata: *id001
-    name: translate-this-spa-zho_simpl
-    reference: Translate this from X to Y (Latin American Spanish into simplified
-      Chinese)
-  99de2b21-2a64-4182-8f62-9f6d825901f2: !Template
+    name: flores-xglm-Yoruba-Indonesian
+    reference: 'L1: [sent1] = L2: [sent2]'
+  aabc94b8-6922-4599-9b4c-4d81c27402e5: !Template
     answer_choices: null
-    id: 99de2b21-2a64-4182-8f62-9f6d825901f2
-    jinja: 'Translate this from Brazilian Portuguese into Urdu: {{ sentence_por }}
-      ||| {{ sentence_urd }}'
+    id: aabc94b8-6922-4599-9b4c-4d81c27402e5
+    jinja: 'Tamil: {{ sentence_tam }} = Xhosa: ||| {{ sentence_xho }}'
     metadata: *id001
-    name: translate-this-por-urd
-    reference: Translate this from X to Y (Brazilian Portuguese into Urdu)
-  99e76bad-67c8-4305-b116-8fed8e37533a: !Template
+    name: flores-xglm-Tamil-Xhosa
+    reference: 'L1: [sent1] = L2: [sent2]'
+  ab29cc75-dcbc-406d-81ab-3b12671ef3c6: !Template
     answer_choices: null
-    id: 99e76bad-67c8-4305-b116-8fed8e37533a
-    jinja: 'Translate this from Latin American Spanish into Zulu: {{ sentence_spa
-      }} ||| {{ sentence_zul }}'
+    id: ab29cc75-dcbc-406d-81ab-3b12671ef3c6
+    jinja: 'French: {{ sentence_fra }} = English: ||| {{ sentence_eng }}'
     metadata: *id001
-    name: translate-this-spa-zul
-    reference: Translate this from X to Y (Latin American Spanish into Zulu)
-  9a08b456-f2f3-42d9-9a20-1caec5de7f5e: !Template
+    name: flores-xglm-French-English
+    reference: 'L1: [sent1] = L2: [sent2]'
+  ab3d44de-12da-4bf6-8e4a-4a482b089cd2: !Template
     answer_choices: null
-    id: 9a08b456-f2f3-42d9-9a20-1caec5de7f5e
-    jinja: 'Translate this from Oriya into Latin American Spanish: {{ sentence_ory
-      }} ||| {{ sentence_spa }}'
+    id: ab3d44de-12da-4bf6-8e4a-4a482b089cd2
+    jinja: 'Bengali: {{ sentence_ben }} = French: ||| {{ sentence_fra }}'
     metadata: *id001
-    name: translate-this-ory-spa
-    reference: Translate this from X to Y (Oriya into Latin American Spanish)
-  9a54f21e-f9dd-4e14-badb-30075071503b: !Template
+    name: flores-xglm-Bengali-French
+    reference: 'L1: [sent1] = L2: [sent2]'
+  ab46e0e8-1c2f-4444-9794-9bd12c25bcff: !Template
     answer_choices: null
-    id: 9a54f21e-f9dd-4e14-badb-30075071503b
-    jinja: 'Translate this from Nepali into Brazilian Portuguese: {{ sentence_npi
-      }} ||| {{ sentence_por }}'
+    id: ab46e0e8-1c2f-4444-9794-9bd12c25bcff
+    jinja: 'Nepali: {{ sentence_npi }} = Xhosa: ||| {{ sentence_xho }}'
     metadata: *id001
-    name: translate-this-npi-por
-    reference: Translate this from X to Y (Nepali into Brazilian Portuguese)
-  9a55ff41-04eb-42a0-9ea7-ec02287f6ec8: !Template
+    name: flores-xglm-Nepali-Xhosa
+    reference: 'L1: [sent1] = L2: [sent2]'
+  ab5fc7cc-1701-4cd1-a9a8-100f5dac58fd: !Template
     answer_choices: null
-    id: 9a55ff41-04eb-42a0-9ea7-ec02287f6ec8
-    jinja: 'Translate this from Xhosa into Brazilian Portuguese: {{ sentence_xho }}
-      ||| {{ sentence_por }}'
+    id: ab5fc7cc-1701-4cd1-a9a8-100f5dac58fd
+    jinja: 'Vietnamese: {{ sentence_vie }} = Arabic: ||| {{ sentence_ara }}'
     metadata: *id001
-    name: translate-this-xho-por
-    reference: Translate this from X to Y (Xhosa into Brazilian Portuguese)
-  9a94c4e5-5ae6-4684-922f-987ca362f1da: !Template
+    name: flores-xglm-Vietnamese-Arabic
+    reference: 'L1: [sent1] = L2: [sent2]'
+  ab7313e8-ca12-4c47-9b0c-a606af75ebe0: !Template
     answer_choices: null
-    id: 9a94c4e5-5ae6-4684-922f-987ca362f1da
-    jinja: 'Translate this from Yoruba into Arabic: {{ sentence_yor }} ||| {{ sentence_ara
-      }}'
+    id: ab7313e8-ca12-4c47-9b0c-a606af75ebe0
+    jinja: 'Punjabi: {{ sentence_pan }} = French: ||| {{ sentence_fra }}'
     metadata: *id001
-    name: translate-this-yor-ara
-    reference: Translate this from X to Y (Yoruba into Arabic)
-  9b3c89e6-5542-4d2d-b03e-ace31e592f9b: !Template
+    name: flores-xglm-Punjabi-French
+    reference: 'L1: [sent1] = L2: [sent2]'
+  ab79f7fd-6783-44c0-9551-d013025528e4: !Template
     answer_choices: null
-    id: 9b3c89e6-5542-4d2d-b03e-ace31e592f9b
-    jinja: 'Translate this from Indonesian into Kannada: {{ sentence_ind }} ||| {{
-      sentence_kan }}'
+    id: ab79f7fd-6783-44c0-9551-d013025528e4
+    jinja: 'Gujarati: {{ sentence_guj }} = Tamil: ||| {{ sentence_tam }}'
     metadata: *id001
-    name: translate-this-ind-kan
-    reference: Translate this from X to Y (Indonesian into Kannada)
-  9b3dd59c-8586-4896-b496-26c72e17b125: !Template
+    name: flores-xglm-Gujarati-Tamil
+    reference: 'L1: [sent1] = L2: [sent2]'
+  ab845071-7168-4671-aef6-634d72fa154d: !Template
     answer_choices: null
-    id: 9b3dd59c-8586-4896-b496-26c72e17b125
-    jinja: 'Translate this from Yoruba into Lingala: {{ sentence_yor }} ||| {{ sentence_lin
-      }}'
+    id: ab845071-7168-4671-aef6-634d72fa154d
+    jinja: 'Swahili: {{ sentence_swh }} = Vietnamese: ||| {{ sentence_vie }}'
     metadata: *id001
-    name: translate-this-yor-lin
-    reference: Translate this from X to Y (Yoruba into Lingala)
-  9b728e98-0717-4cc5-bff7-390f512673a4: !Template
+    name: flores-xglm-Swahili-Vietnamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  ab86aab6-e55b-4526-bb04-1e145255a8c5: !Template
     answer_choices: null
-    id: 9b728e98-0717-4cc5-bff7-390f512673a4
-    jinja: 'Translate this from Catalan into Urdu: {{ sentence_cat }} ||| {{ sentence_urd
-      }}'
+    id: ab86aab6-e55b-4526-bb04-1e145255a8c5
+    jinja: 'Lingala: {{ sentence_lin }} = Bengali: ||| {{ sentence_ben }}'
     metadata: *id001
-    name: translate-this-cat-urd
-    reference: Translate this from X to Y (Catalan into Urdu)
-  9ba90480-6a30-480e-98e6-7c52d876a603: !Template
+    name: flores-xglm-Lingala-Bengali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  ab9715c3-cab0-4e41-850e-9e9436128d38: !Template
     answer_choices: null
-    id: 9ba90480-6a30-480e-98e6-7c52d876a603
-    jinja: 'Translate this from French into traditional Chinese: {{ sentence_fra }}
-      ||| {{ sentence_zho_trad }}'
+    id: ab9715c3-cab0-4e41-850e-9e9436128d38
+    jinja: 'Vietnamese: {{ sentence_vie }} = French: ||| {{ sentence_fra }}'
     metadata: *id001
-    name: translate-this-fra-zho_trad
-    reference: Translate this from X to Y (French into traditional Chinese)
-  9bc32e0d-c484-4c14-989c-cd73374ac5ec: !Template
+    name: flores-xglm-Vietnamese-French
+    reference: 'L1: [sent1] = L2: [sent2]'
+  abbd1679-5906-46f4-9325-347e4ce71cf4: !Template
     answer_choices: null
-    id: 9bc32e0d-c484-4c14-989c-cd73374ac5ec
-    jinja: 'Translate this from Arabic into traditional Chinese: {{ sentence_ara }}
-      ||| {{ sentence_zho_trad }}'
+    id: abbd1679-5906-46f4-9325-347e4ce71cf4
+    jinja: 'Zulu: {{ sentence_zul }} = Lingala: ||| {{ sentence_lin }}'
     metadata: *id001
-    name: translate-this-ara-zho_trad
-    reference: Translate this from X to Y (Arabic into traditional Chinese)
-  9bfa4fc5-f167-42cd-b367-58c753e216a5: !Template
+    name: flores-xglm-Zulu-Lingala
+    reference: 'L1: [sent1] = L2: [sent2]'
+  abc526c5-33b4-4ffb-ace3-a721a598a15c: !Template
     answer_choices: null
-    id: 9bfa4fc5-f167-42cd-b367-58c753e216a5
-    jinja: 'Translate this from Urdu into Bengali: {{ sentence_urd }} ||| {{ sentence_ben
-      }}'
+    id: abc526c5-33b4-4ffb-ace3-a721a598a15c
+    jinja: 'Yoruba: {{ sentence_yor }} = French: ||| {{ sentence_fra }}'
     metadata: *id001
-    name: translate-this-urd-ben
-    reference: Translate this from X to Y (Urdu into Bengali)
-  9c08f824-9eca-43bc-a0d2-c7089bd5752c: !Template
+    name: flores-xglm-Yoruba-French
+    reference: 'L1: [sent1] = L2: [sent2]'
+  abd8f6bf-34d5-4256-8e5e-16b76b2ff8f5: !Template
     answer_choices: null
-    id: 9c08f824-9eca-43bc-a0d2-c7089bd5752c
-    jinja: 'Translate this from Bengali into Wolof: {{ sentence_ben }} ||| {{ sentence_wol
-      }}'
+    id: abd8f6bf-34d5-4256-8e5e-16b76b2ff8f5
+    jinja: 'Hindi: {{ sentence_hin }} = Catalan: ||| {{ sentence_cat }}'
     metadata: *id001
-    name: translate-this-ben-wol
-    reference: Translate this from X to Y (Bengali into Wolof)
-  9c0df22e-2414-4973-ae66-cd40ab037cdf: !Template
+    name: flores-xglm-Hindi-Catalan
+    reference: 'L1: [sent1] = L2: [sent2]'
+  ac1f3339-7424-4f51-85ef-c674ae6f903e: !Template
     answer_choices: null
-    id: 9c0df22e-2414-4973-ae66-cd40ab037cdf
-    jinja: 'Translate this from Catalan into Hindi: {{ sentence_cat }} ||| {{ sentence_hin
-      }}'
+    id: ac1f3339-7424-4f51-85ef-c674ae6f903e
+    jinja: 'Swahili: {{ sentence_swh }} = Zulu: ||| {{ sentence_zul }}'
     metadata: *id001
-    name: translate-this-cat-hin
-    reference: Translate this from X to Y (Catalan into Hindi)
-  9c8a682d-cb18-4136-b874-ff9bab1c6300: !Template
+    name: flores-xglm-Swahili-Zulu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  ac4e225e-42bf-428c-81f1-81fbab9bde7c: !Template
     answer_choices: null
-    id: 9c8a682d-cb18-4136-b874-ff9bab1c6300
-    jinja: 'Translate this from Latin American Spanish into Punjabi: {{ sentence_spa
-      }} ||| {{ sentence_pan }}'
+    id: ac4e225e-42bf-428c-81f1-81fbab9bde7c
+    jinja: 'Igbo: {{ sentence_ibo }} = Lingala: ||| {{ sentence_lin }}'
     metadata: *id001
-    name: translate-this-spa-pan
-    reference: Translate this from X to Y (Latin American Spanish into Punjabi)
-  9ccb32c6-d497-4f35-8598-b7523f38860e: !Template
+    name: flores-xglm-Igbo-Lingala
+    reference: 'L1: [sent1] = L2: [sent2]'
+  ac6d7c2d-991f-45f2-a0ca-508355a11e41: !Template
     answer_choices: null
-    id: 9ccb32c6-d497-4f35-8598-b7523f38860e
-    jinja: 'Translate this from Assamese into Tamil: {{ sentence_asm }} ||| {{ sentence_tam
+    id: ac6d7c2d-991f-45f2-a0ca-508355a11e41
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = Assamese: ||| {{ sentence_asm
       }}'
     metadata: *id001
-    name: translate-this-asm-tam
-    reference: Translate this from X to Y (Assamese into Tamil)
-  9ccee09c-67aa-44ee-b47c-b9c8c050727e: !Template
+    name: flores-xglm-Latin American Spanish-Assamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  ac8c0f85-a0b2-4dbe-9aa8-19953616f662: !Template
     answer_choices: null
-    id: 9ccee09c-67aa-44ee-b47c-b9c8c050727e
-    jinja: 'Translate this from Swahili into Yoruba: {{ sentence_swh }} ||| {{ sentence_yor
-      }}'
+    id: ac8c0f85-a0b2-4dbe-9aa8-19953616f662
+    jinja: 'English: {{ sentence_eng }} = Urdu: ||| {{ sentence_urd }}'
     metadata: *id001
-    name: translate-this-swh-yor
-    reference: Translate this from X to Y (Swahili into Yoruba)
-  9cee147b-b9d6-4212-8fd8-3e5145becd3b: !Template
+    name: flores-xglm-English-Urdu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  acb85e9b-2fcf-48e8-8457-a7d7886489c9: !Template
     answer_choices: null
-    id: 9cee147b-b9d6-4212-8fd8-3e5145becd3b
-    jinja: 'Translate this from simplified Chinese into Gujarati: {{ sentence_zho_simpl
-      }} ||| {{ sentence_guj }}'
+    id: acb85e9b-2fcf-48e8-8457-a7d7886489c9
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Assamese: ||| {{ sentence_asm
+      }}'
     metadata: *id001
-    name: translate-this-zho_simpl-guj
-    reference: Translate this from X to Y (simplified Chinese into Gujarati)
-  9d132929-3139-4217-ad2b-a95df0082a4a: !Template
+    name: flores-xglm-traditional Chinese-Assamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  ad0153d7-4798-4b90-b96e-6692c144eca6: !Template
     answer_choices: null
-    id: 9d132929-3139-4217-ad2b-a95df0082a4a
-    jinja: 'Translate this from English into Nepali: {{ sentence_eng }} ||| {{ sentence_npi
+    id: ad0153d7-4798-4b90-b96e-6692c144eca6
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Urdu: ||| {{ sentence_urd
       }}'
     metadata: *id001
-    name: translate-this-eng-npi
-    reference: Translate this from X to Y (English into Nepali)
-  9d713eab-e338-46cd-bec6-6775e3adf96f: !Template
+    name: flores-xglm-traditional Chinese-Urdu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  ad6afd88-45a4-44a6-a1b7-222b0e500735: !Template
     answer_choices: null
-    id: 9d713eab-e338-46cd-bec6-6775e3adf96f
-    jinja: 'Translate this from Xhosa into Malayalam: {{ sentence_xho }} ||| {{ sentence_mal
-      }}'
+    id: ad6afd88-45a4-44a6-a1b7-222b0e500735
+    jinja: 'Swahili: {{ sentence_swh }} = Xhosa: ||| {{ sentence_xho }}'
     metadata: *id001
-    name: translate-this-xho-mal
-    reference: Translate this from X to Y (Xhosa into Malayalam)
-  9dd2cfc9-f979-4bda-b845-dca110dfe2ac: !Template
+    name: flores-xglm-Swahili-Xhosa
+    reference: 'L1: [sent1] = L2: [sent2]'
+  ad9cf9a3-dd03-4f8f-a5b0-0566e0a5df66: !Template
     answer_choices: null
-    id: 9dd2cfc9-f979-4bda-b845-dca110dfe2ac
-    jinja: 'Translate this from Yoruba into Brazilian Portuguese: {{ sentence_yor
-      }} ||| {{ sentence_por }}'
+    id: ad9cf9a3-dd03-4f8f-a5b0-0566e0a5df66
+    jinja: 'Vietnamese: {{ sentence_vie }} = Lingala: ||| {{ sentence_lin }}'
     metadata: *id001
-    name: translate-this-yor-por
-    reference: Translate this from X to Y (Yoruba into Brazilian Portuguese)
-  9ddf9b1b-df0a-4112-9592-84106fa4dd2d: !Template
+    name: flores-xglm-Vietnamese-Lingala
+    reference: 'L1: [sent1] = L2: [sent2]'
+  adcfdde5-ee38-4199-9433-88468910dfa8: !Template
     answer_choices: null
-    id: 9ddf9b1b-df0a-4112-9592-84106fa4dd2d
-    jinja: 'Translate this from Latin American Spanish into Assamese: {{ sentence_spa
-      }} ||| {{ sentence_asm }}'
+    id: adcfdde5-ee38-4199-9433-88468910dfa8
+    jinja: 'Urdu: {{ sentence_urd }} = Punjabi: ||| {{ sentence_pan }}'
     metadata: *id001
-    name: translate-this-spa-asm
-    reference: Translate this from X to Y (Latin American Spanish into Assamese)
-  9e09b411-8d70-4468-87b4-c5f797bf32a2: !Template
+    name: flores-xglm-Urdu-Punjabi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  add6c7d7-193e-432f-9bd7-510ee1f30ea0: !Template
     answer_choices: null
-    id: 9e09b411-8d70-4468-87b4-c5f797bf32a2
-    jinja: 'Translate this from Urdu into Vietnamese: {{ sentence_urd }} ||| {{ sentence_vie
+    id: add6c7d7-193e-432f-9bd7-510ee1f30ea0
+    jinja: 'Kannada: {{ sentence_kan }} = traditional Chinese: ||| {{ sentence_zho_trad
       }}'
     metadata: *id001
-    name: translate-this-urd-vie
-    reference: Translate this from X to Y (Urdu into Vietnamese)
-  9ebdf65c-13aa-41b9-9a6c-66743f38f376: !Template
+    name: flores-xglm-Kannada-traditional Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  adf23734-80b8-4d8e-ad51-e7692c87eec9: !Template
     answer_choices: null
-    id: 9ebdf65c-13aa-41b9-9a6c-66743f38f376
-    jinja: 'Translate this from Lingala into Xhosa: {{ sentence_lin }} ||| {{ sentence_xho
-      }}'
+    id: adf23734-80b8-4d8e-ad51-e7692c87eec9
+    jinja: 'English: {{ sentence_eng }} = Wolof: ||| {{ sentence_wol }}'
     metadata: *id001
-    name: translate-this-lin-xho
-    reference: Translate this from X to Y (Lingala into Xhosa)
-  9f12ab91-a40f-4195-a1d6-9784523507bd: !Template
+    name: flores-xglm-English-Wolof
+    reference: 'L1: [sent1] = L2: [sent2]'
+  ae291383-6b57-44eb-97e3-d44aebc225bf: !Template
     answer_choices: null
-    id: 9f12ab91-a40f-4195-a1d6-9784523507bd
-    jinja: 'Translate this from Arabic into Telugu: {{ sentence_ara }} ||| {{ sentence_tel
+    id: ae291383-6b57-44eb-97e3-d44aebc225bf
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Nepali: ||| {{ sentence_npi
       }}'
     metadata: *id001
-    name: translate-this-ara-tel
-    reference: Translate this from X to Y (Arabic into Telugu)
-  9f35cb88-4771-4a22-ba34-e94ad8876e8e: !Template
+    name: flores-xglm-simplified Chinese-Nepali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  ae2c5ebb-2aca-40a8-b0f7-d366b6fd5282: !Template
     answer_choices: null
-    id: 9f35cb88-4771-4a22-ba34-e94ad8876e8e
-    jinja: 'Translate this from Nepali into French: {{ sentence_npi }} ||| {{ sentence_fra
-      }}'
+    id: ae2c5ebb-2aca-40a8-b0f7-d366b6fd5282
+    jinja: 'Catalan: {{ sentence_cat }} = Marathi: ||| {{ sentence_mar }}'
     metadata: *id001
-    name: translate-this-npi-fra
-    reference: Translate this from X to Y (Nepali into French)
-  9f6b35c0-65f8-4049-8d68-959b7c579f29: !Template
+    name: flores-xglm-Catalan-Marathi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  ae6cfb70-4fd5-41b5-b7a9-bf7d3fd7f6ec: !Template
     answer_choices: null
-    id: 9f6b35c0-65f8-4049-8d68-959b7c579f29
-    jinja: 'Translate this from Assamese into Marathi: {{ sentence_asm }} ||| {{ sentence_mar
-      }}'
+    id: ae6cfb70-4fd5-41b5-b7a9-bf7d3fd7f6ec
+    jinja: 'Indonesian: {{ sentence_ind }} = Swahili: ||| {{ sentence_swh }}'
     metadata: *id001
-    name: translate-this-asm-mar
-    reference: Translate this from X to Y (Assamese into Marathi)
-  9f7123e8-dfb1-41f1-8feb-7aa70986f7b5: !Template
+    name: flores-xglm-Indonesian-Swahili
+    reference: 'L1: [sent1] = L2: [sent2]'
+  aed28edb-b4bd-4de6-a113-6dd1a1089969: !Template
     answer_choices: null
-    id: 9f7123e8-dfb1-41f1-8feb-7aa70986f7b5
-    jinja: 'Translate this from Lingala into Marathi: {{ sentence_lin }} ||| {{ sentence_mar
-      }}'
+    id: aed28edb-b4bd-4de6-a113-6dd1a1089969
+    jinja: 'Indonesian: {{ sentence_ind }} = Northern Sotho: ||| {{ sentence_nso }}'
     metadata: *id001
-    name: translate-this-lin-mar
-    reference: Translate this from X to Y (Lingala into Marathi)
-  9fd8d729-3621-4692-b5ed-a33e220f8ba3: !Template
+    name: flores-xglm-Indonesian-Northern Sotho
+    reference: 'L1: [sent1] = L2: [sent2]'
+  aee94c63-d7ed-415e-b8a0-56e6b01514fc: !Template
     answer_choices: null
-    id: 9fd8d729-3621-4692-b5ed-a33e220f8ba3
-    jinja: 'Translate this from Telugu into Lingala: {{ sentence_tel }} ||| {{ sentence_lin
-      }}'
+    id: aee94c63-d7ed-415e-b8a0-56e6b01514fc
+    jinja: 'Hindi: {{ sentence_hin }} = Nepali: ||| {{ sentence_npi }}'
     metadata: *id001
-    name: translate-this-tel-lin
-    reference: Translate this from X to Y (Telugu into Lingala)
-  a00841c5-afba-43ea-af64-727f0305884c: !Template
+    name: flores-xglm-Hindi-Nepali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  af240143-333b-431e-980a-95518362c5cb: !Template
     answer_choices: null
-    id: a00841c5-afba-43ea-af64-727f0305884c
-    jinja: 'Translate this from Yoruba into Vietnamese: {{ sentence_yor }} ||| {{
-      sentence_vie }}'
+    id: af240143-333b-431e-980a-95518362c5cb
+    jinja: 'Punjabi: {{ sentence_pan }} = Indonesian: ||| {{ sentence_ind }}'
     metadata: *id001
-    name: translate-this-yor-vie
-    reference: Translate this from X to Y (Yoruba into Vietnamese)
-  a008471a-c133-4222-98e7-f84bef06d6c1: !Template
+    name: flores-xglm-Punjabi-Indonesian
+    reference: 'L1: [sent1] = L2: [sent2]'
+  af2b002c-5644-49e1-ae00-75b7b9d84948: !Template
     answer_choices: null
-    id: a008471a-c133-4222-98e7-f84bef06d6c1
-    jinja: 'Translate this from Lingala into French: {{ sentence_lin }} ||| {{ sentence_fra
+    id: af2b002c-5644-49e1-ae00-75b7b9d84948
+    jinja: 'Punjabi: {{ sentence_pan }} = traditional Chinese: ||| {{ sentence_zho_trad
       }}'
     metadata: *id001
-    name: translate-this-lin-fra
-    reference: Translate this from X to Y (Lingala into French)
-  a027b8ff-7edb-4082-ba38-11cd065e5097: !Template
+    name: flores-xglm-Punjabi-traditional Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  af388bad-88f6-406f-b553-5683da92588a: !Template
     answer_choices: null
-    id: a027b8ff-7edb-4082-ba38-11cd065e5097
-    jinja: 'Translate this from Xhosa into simplified Chinese: {{ sentence_xho }}
-      ||| {{ sentence_zho_simpl }}'
+    id: af388bad-88f6-406f-b553-5683da92588a
+    jinja: 'Swahili: {{ sentence_swh }} = Catalan: ||| {{ sentence_cat }}'
     metadata: *id001
-    name: translate-this-xho-zho_simpl
-    reference: Translate this from X to Y (Xhosa into simplified Chinese)
-  a0794023-c919-4b3c-85ac-c7424eab79ed: !Template
+    name: flores-xglm-Swahili-Catalan
+    reference: 'L1: [sent1] = L2: [sent2]'
+  afc718be-9edc-45aa-aef7-4d3a552b3c2f: !Template
     answer_choices: null
-    id: a0794023-c919-4b3c-85ac-c7424eab79ed
-    jinja: 'Translate this from Lingala into simplified Chinese: {{ sentence_lin }}
-      ||| {{ sentence_zho_simpl }}'
+    id: afc718be-9edc-45aa-aef7-4d3a552b3c2f
+    jinja: 'Xhosa: {{ sentence_xho }} = Bengali: ||| {{ sentence_ben }}'
     metadata: *id001
-    name: translate-this-lin-zho_simpl
-    reference: Translate this from X to Y (Lingala into simplified Chinese)
-  a0c96426-d8a2-454a-9d67-9a3b49174a1e: !Template
+    name: flores-xglm-Xhosa-Bengali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  afe760f3-e660-401a-85db-f8048a1341e3: !Template
     answer_choices: null
-    id: a0c96426-d8a2-454a-9d67-9a3b49174a1e
-    jinja: 'Translate this from Wolof into Urdu: {{ sentence_wol }} ||| {{ sentence_urd
+    id: afe760f3-e660-401a-85db-f8048a1341e3
+    jinja: 'Malayalam: {{ sentence_mal }} = traditional Chinese: ||| {{ sentence_zho_trad
       }}'
     metadata: *id001
-    name: translate-this-wol-urd
-    reference: Translate this from X to Y (Wolof into Urdu)
-  a116bcb8-2ec1-44f6-8baa-c0e9cf37aee0: !Template
+    name: flores-xglm-Malayalam-traditional Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  b0632bf3-99d7-492f-b9eb-7dcbaf07cad8: !Template
     answer_choices: null
-    id: a116bcb8-2ec1-44f6-8baa-c0e9cf37aee0
-    jinja: 'Translate this from Arabic into Urdu: {{ sentence_ara }} ||| {{ sentence_urd
-      }}'
+    id: b0632bf3-99d7-492f-b9eb-7dcbaf07cad8
+    jinja: 'Bengali: {{ sentence_ben }} = English: ||| {{ sentence_eng }}'
     metadata: *id001
-    name: translate-this-ara-urd
-    reference: Translate this from X to Y (Arabic into Urdu)
-  a12b51f4-54ce-4e1a-ac85-b9ebd4cb7046: !Template
+    name: flores-xglm-Bengali-English
+    reference: 'L1: [sent1] = L2: [sent2]'
+  b06b77c3-d138-40ec-a360-9ec0c7647a0b: !Template
     answer_choices: null
-    id: a12b51f4-54ce-4e1a-ac85-b9ebd4cb7046
-    jinja: 'Translate this from English into Kannada: {{ sentence_eng }} ||| {{ sentence_kan
+    id: b06b77c3-d138-40ec-a360-9ec0c7647a0b
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Lingala: ||| {{ sentence_lin
       }}'
     metadata: *id001
-    name: translate-this-eng-kan
-    reference: Translate this from X to Y (English into Kannada)
-  a1940342-d456-4aec-b77b-e9cce92c985a: !Template
+    name: flores-xglm-simplified Chinese-Lingala
+    reference: 'L1: [sent1] = L2: [sent2]'
+  b0fe0d43-9d40-4722-83c5-db6ba9ba6b97: !Template
     answer_choices: null
-    id: a1940342-d456-4aec-b77b-e9cce92c985a
-    jinja: 'Translate this from English into traditional Chinese: {{ sentence_eng
-      }} ||| {{ sentence_zho_trad }}'
+    id: b0fe0d43-9d40-4722-83c5-db6ba9ba6b97
+    jinja: 'Xhosa: {{ sentence_xho }} = Zulu: ||| {{ sentence_zul }}'
     metadata: *id001
-    name: translate-this-eng-zho_trad
-    reference: Translate this from X to Y (English into traditional Chinese)
-  a1c776d4-41f2-4bf2-818f-beabb8f05610: !Template
+    name: flores-xglm-Xhosa-Zulu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  b1b35ee0-2c80-45a8-a5b1-fa720e0eeb45: !Template
     answer_choices: null
-    id: a1c776d4-41f2-4bf2-818f-beabb8f05610
-    jinja: 'Translate this from Oriya into Catalan: {{ sentence_ory }} ||| {{ sentence_cat
+    id: b1b35ee0-2c80-45a8-a5b1-fa720e0eeb45
+    jinja: 'Nepali: {{ sentence_npi }} = Latin American Spanish: ||| {{ sentence_spa
       }}'
     metadata: *id001
-    name: translate-this-ory-cat
-    reference: Translate this from X to Y (Oriya into Catalan)
-  a1f59ccb-bdd5-4dd8-a6f8-c960f01ea937: !Template
+    name: flores-xglm-Nepali-Latin American Spanish
+    reference: 'L1: [sent1] = L2: [sent2]'
+  b1f0c49a-fac5-448f-ab36-940e8f4949c4: !Template
     answer_choices: null
-    id: a1f59ccb-bdd5-4dd8-a6f8-c960f01ea937
-    jinja: 'Translate this from Marathi into Swahili: {{ sentence_mar }} ||| {{ sentence_swh
-      }}'
+    id: b1f0c49a-fac5-448f-ab36-940e8f4949c4
+    jinja: 'Oriya: {{ sentence_ory }} = Catalan: ||| {{ sentence_cat }}'
     metadata: *id001
-    name: translate-this-mar-swh
-    reference: Translate this from X to Y (Marathi into Swahili)
-  a22b214a-3552-4f03-93a6-3d9f34d4db1a: !Template
+    name: flores-xglm-Oriya-Catalan
+    reference: 'L1: [sent1] = L2: [sent2]'
+  b21ac1f7-20c5-4f09-a9e1-e4d245af6988: !Template
     answer_choices: null
-    id: a22b214a-3552-4f03-93a6-3d9f34d4db1a
-    jinja: 'Translate this from French into Telugu: {{ sentence_fra }} ||| {{ sentence_tel
-      }}'
+    id: b21ac1f7-20c5-4f09-a9e1-e4d245af6988
+    jinja: 'French: {{ sentence_fra }} = Oriya: ||| {{ sentence_ory }}'
     metadata: *id001
-    name: translate-this-fra-tel
-    reference: Translate this from X to Y (French into Telugu)
-  a23ff938-aa57-4e0f-a9ff-aa8fa925a875: !Template
+    name: flores-xglm-French-Oriya
+    reference: 'L1: [sent1] = L2: [sent2]'
+  b22b3ad5-d63d-41a0-afc2-b5cf5396339e: !Template
     answer_choices: null
-    id: a23ff938-aa57-4e0f-a9ff-aa8fa925a875
-    jinja: 'Translate this from Marathi into traditional Chinese: {{ sentence_mar
-      }} ||| {{ sentence_zho_trad }}'
+    id: b22b3ad5-d63d-41a0-afc2-b5cf5396339e
+    jinja: 'Arabic: {{ sentence_ara }} = Kannada: ||| {{ sentence_kan }}'
     metadata: *id001
-    name: translate-this-mar-zho_trad
-    reference: Translate this from X to Y (Marathi into traditional Chinese)
-  a252fc8f-b06f-4e79-894d-a2f4789c9ecf: !Template
+    name: flores-xglm-Arabic-Kannada
+    reference: 'L1: [sent1] = L2: [sent2]'
+  b23a205e-9e5b-4f6a-ba16-2291e85dfd63: !Template
     answer_choices: null
-    id: a252fc8f-b06f-4e79-894d-a2f4789c9ecf
-    jinja: 'Translate this from Hindi into Bengali: {{ sentence_hin }} ||| {{ sentence_ben
-      }}'
+    id: b23a205e-9e5b-4f6a-ba16-2291e85dfd63
+    jinja: 'Xhosa: {{ sentence_xho }} = Wolof: ||| {{ sentence_wol }}'
     metadata: *id001
-    name: translate-this-hin-ben
-    reference: Translate this from X to Y (Hindi into Bengali)
-  a25c90e3-692e-4005-af8e-f932c9b57e89: !Template
+    name: flores-xglm-Xhosa-Wolof
+    reference: 'L1: [sent1] = L2: [sent2]'
+  b269a03e-940b-4906-a9c0-4c868d5cb0a2: !Template
     answer_choices: null
-    id: a25c90e3-692e-4005-af8e-f932c9b57e89
-    jinja: 'Translate this from Hindi into traditional Chinese: {{ sentence_hin }}
-      ||| {{ sentence_zho_trad }}'
+    id: b269a03e-940b-4906-a9c0-4c868d5cb0a2
+    jinja: 'English: {{ sentence_eng }} = Arabic: ||| {{ sentence_ara }}'
     metadata: *id001
-    name: translate-this-hin-zho_trad
-    reference: Translate this from X to Y (Hindi into traditional Chinese)
-  a2896628-ba75-4d09-af59-8e8d7f8223ca: !Template
+    name: flores-xglm-English-Arabic
+    reference: 'L1: [sent1] = L2: [sent2]'
+  b2a7a999-5a05-4dff-9d3c-5b6511f5cdc3: !Template
     answer_choices: null
-    id: a2896628-ba75-4d09-af59-8e8d7f8223ca
-    jinja: 'Translate this from Lingala into Tamil: {{ sentence_lin }} ||| {{ sentence_tam
+    id: b2a7a999-5a05-4dff-9d3c-5b6511f5cdc3
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = Marathi: ||| {{ sentence_mar
       }}'
     metadata: *id001
-    name: translate-this-lin-tam
-    reference: Translate this from X to Y (Lingala into Tamil)
-  a2c28cbc-aa92-4b49-97f6-cf50dfeca3a7: !Template
+    name: flores-xglm-Latin American Spanish-Marathi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  b2aa6276-ce27-4368-adfe-ee9fd338028c: !Template
     answer_choices: null
-    id: a2c28cbc-aa92-4b49-97f6-cf50dfeca3a7
-    jinja: 'Translate this from Punjabi into Assamese: {{ sentence_pan }} ||| {{ sentence_asm
-      }}'
+    id: b2aa6276-ce27-4368-adfe-ee9fd338028c
+    jinja: 'Igbo: {{ sentence_ibo }} = Yoruba: ||| {{ sentence_yor }}'
     metadata: *id001
-    name: translate-this-pan-asm
-    reference: Translate this from X to Y (Punjabi into Assamese)
-  a30ed249-21aa-44b2-b64f-3815b36e3941: !Template
+    name: flores-xglm-Igbo-Yoruba
+    reference: 'L1: [sent1] = L2: [sent2]'
+  b2ca7c35-86b9-4d63-8407-0929a94587bc: !Template
     answer_choices: null
-    id: a30ed249-21aa-44b2-b64f-3815b36e3941
-    jinja: 'Translate this from Arabic into Xhosa: {{ sentence_ara }} ||| {{ sentence_xho
-      }}'
+    id: b2ca7c35-86b9-4d63-8407-0929a94587bc
+    jinja: 'Oriya: {{ sentence_ory }} = Malayalam: ||| {{ sentence_mal }}'
     metadata: *id001
-    name: translate-this-ara-xho
-    reference: Translate this from X to Y (Arabic into Xhosa)
-  a317bc31-4c71-4108-950f-de60a3c19edc: !Template
+    name: flores-xglm-Oriya-Malayalam
+    reference: 'L1: [sent1] = L2: [sent2]'
+  b2e3a348-bd3d-4ecc-a75d-b66c6c29405b: !Template
     answer_choices: null
-    id: a317bc31-4c71-4108-950f-de60a3c19edc
-    jinja: 'Translate this from Punjabi into Gujarati: {{ sentence_pan }} ||| {{ sentence_guj
-      }}'
+    id: b2e3a348-bd3d-4ecc-a75d-b66c6c29405b
+    jinja: 'Kannada: {{ sentence_kan }} = Xhosa: ||| {{ sentence_xho }}'
     metadata: *id001
-    name: translate-this-pan-guj
-    reference: Translate this from X to Y (Punjabi into Gujarati)
-  a39f6272-e4a4-45a6-b41c-2fc6e0584c33: !Template
+    name: flores-xglm-Kannada-Xhosa
+    reference: 'L1: [sent1] = L2: [sent2]'
+  b320594e-4343-491a-acd8-ee3d4b641d5b: !Template
     answer_choices: null
-    id: a39f6272-e4a4-45a6-b41c-2fc6e0584c33
-    jinja: 'Translate this from Catalan into Arabic: {{ sentence_cat }} ||| {{ sentence_ara
-      }}'
+    id: b320594e-4343-491a-acd8-ee3d4b641d5b
+    jinja: 'Xhosa: {{ sentence_xho }} = Indonesian: ||| {{ sentence_ind }}'
     metadata: *id001
-    name: translate-this-cat-ara
-    reference: Translate this from X to Y (Catalan into Arabic)
-  a3d48116-5b70-4b9e-acfb-5deb0907d084: !Template
+    name: flores-xglm-Xhosa-Indonesian
+    reference: 'L1: [sent1] = L2: [sent2]'
+  b3c1351e-acc1-496c-9f3b-a4eee8942c8e: !Template
     answer_choices: null
-    id: a3d48116-5b70-4b9e-acfb-5deb0907d084
-    jinja: 'Translate this from simplified Chinese into Telugu: {{ sentence_zho_simpl
-      }} ||| {{ sentence_tel }}'
-    metadata: *id001
-    name: translate-this-zho_simpl-tel
-    reference: Translate this from X to Y (simplified Chinese into Telugu)
-  a3ec9104-88cd-4a07-b4d6-cdc850d9a3d9: !Template
-    answer_choices: null
-    id: a3ec9104-88cd-4a07-b4d6-cdc850d9a3d9
-    jinja: 'Translate this from Marathi into Gujarati: {{ sentence_mar }} ||| {{ sentence_guj
-      }}'
+    id: b3c1351e-acc1-496c-9f3b-a4eee8942c8e
+    jinja: 'Bengali: {{ sentence_ben }} = Swahili: ||| {{ sentence_swh }}'
     metadata: *id001
-    name: translate-this-mar-guj
-    reference: Translate this from X to Y (Marathi into Gujarati)
-  a44f6b67-b45c-49b1-9e68-68c5e65bf702: !Template
+    name: flores-xglm-Bengali-Swahili
+    reference: 'L1: [sent1] = L2: [sent2]'
+  b46563e0-e436-4103-ada3-c087475eead8: !Template
     answer_choices: null
-    id: a44f6b67-b45c-49b1-9e68-68c5e65bf702
-    jinja: 'Translate this from Punjabi into traditional Chinese: {{ sentence_pan
-      }} ||| {{ sentence_zho_trad }}'
+    id: b46563e0-e436-4103-ada3-c087475eead8
+    jinja: 'Tamil: {{ sentence_tam }} = Swahili: ||| {{ sentence_swh }}'
     metadata: *id001
-    name: translate-this-pan-zho_trad
-    reference: Translate this from X to Y (Punjabi into traditional Chinese)
-  a4642eae-236f-4948-970e-c2bdcdb0fb6c: !Template
+    name: flores-xglm-Tamil-Swahili
+    reference: 'L1: [sent1] = L2: [sent2]'
+  b4a38537-6491-4132-913e-68f2d48a96d2: !Template
     answer_choices: null
-    id: a4642eae-236f-4948-970e-c2bdcdb0fb6c
-    jinja: 'Translate this from Vietnamese into Zulu: {{ sentence_vie }} ||| {{ sentence_zul
-      }}'
+    id: b4a38537-6491-4132-913e-68f2d48a96d2
+    jinja: 'Assamese: {{ sentence_asm }} = Wolof: ||| {{ sentence_wol }}'
     metadata: *id001
-    name: translate-this-vie-zul
-    reference: Translate this from X to Y (Vietnamese into Zulu)
-  a57b0a0a-da21-4acf-9c1d-591b7f5c8c42: !Template
+    name: flores-xglm-Assamese-Wolof
+    reference: 'L1: [sent1] = L2: [sent2]'
+  b4a81fd2-051c-4ba5-bd97-2043de1d2c3f: !Template
     answer_choices: null
-    id: a57b0a0a-da21-4acf-9c1d-591b7f5c8c42
-    jinja: 'Translate this from Northern Sotho into French: {{ sentence_nso }} |||
-      {{ sentence_fra }}'
+    id: b4a81fd2-051c-4ba5-bd97-2043de1d2c3f
+    jinja: 'Malayalam: {{ sentence_mal }} = Catalan: ||| {{ sentence_cat }}'
     metadata: *id001
-    name: translate-this-nso-fra
-    reference: Translate this from X to Y (Northern Sotho into French)
-  a58456c4-6dc1-4315-a226-096117633fc2: !Template
+    name: flores-xglm-Malayalam-Catalan
+    reference: 'L1: [sent1] = L2: [sent2]'
+  b4b3975b-4d6c-42ef-9465-bec2e72a4a4e: !Template
     answer_choices: null
-    id: a58456c4-6dc1-4315-a226-096117633fc2
-    jinja: 'Translate this from Swahili into Zulu: {{ sentence_swh }} ||| {{ sentence_zul
-      }}'
+    id: b4b3975b-4d6c-42ef-9465-bec2e72a4a4e
+    jinja: 'Wolof: {{ sentence_wol }} = Urdu: ||| {{ sentence_urd }}'
     metadata: *id001
-    name: translate-this-swh-zul
-    reference: Translate this from X to Y (Swahili into Zulu)
-  a6076e20-6275-46d6-9b1a-d474be5629cd: !Template
+    name: flores-xglm-Wolof-Urdu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  b4b87c98-ab1a-4fe1-bb2e-00fc78df94c5: !Template
     answer_choices: null
-    id: a6076e20-6275-46d6-9b1a-d474be5629cd
-    jinja: 'Translate this from Swahili into Assamese: {{ sentence_swh }} ||| {{ sentence_asm
+    id: b4b87c98-ab1a-4fe1-bb2e-00fc78df94c5
+    jinja: 'Lingala: {{ sentence_lin }} = Brazilian Portuguese: ||| {{ sentence_por
       }}'
     metadata: *id001
-    name: translate-this-swh-asm
-    reference: Translate this from X to Y (Swahili into Assamese)
-  a6c0b28d-088b-4333-b799-6fd4eb1d3ed7: !Template
+    name: flores-xglm-Lingala-Brazilian Portuguese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  b4d966fb-1669-4086-95ae-9ca789c7085e: !Template
     answer_choices: null
-    id: a6c0b28d-088b-4333-b799-6fd4eb1d3ed7
-    jinja: 'Translate this from Tamil into Lingala: {{ sentence_tam }} ||| {{ sentence_lin
-      }}'
+    id: b4d966fb-1669-4086-95ae-9ca789c7085e
+    jinja: 'Malayalam: {{ sentence_mal }} = Vietnamese: ||| {{ sentence_vie }}'
     metadata: *id001
-    name: translate-this-tam-lin
-    reference: Translate this from X to Y (Tamil into Lingala)
-  a6d55a53-143c-4b45-ae71-9611c726b235: !Template
+    name: flores-xglm-Malayalam-Vietnamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  b50c07c0-5473-48d0-af6a-036a4a8a2c82: !Template
     answer_choices: null
-    id: a6d55a53-143c-4b45-ae71-9611c726b235
-    jinja: 'Translate this from Arabic into Nepali: {{ sentence_ara }} ||| {{ sentence_npi
+    id: b50c07c0-5473-48d0-af6a-036a4a8a2c82
+    jinja: 'Assamese: {{ sentence_asm }} = traditional Chinese: ||| {{ sentence_zho_trad
       }}'
     metadata: *id001
-    name: translate-this-ara-npi
-    reference: Translate this from X to Y (Arabic into Nepali)
-  a772f8ac-b402-4881-acf7-55dd0c3252fb: !Template
+    name: flores-xglm-Assamese-traditional Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  b5175352-3e11-4c72-8730-8d3d924293e9: !Template
     answer_choices: null
-    id: a772f8ac-b402-4881-acf7-55dd0c3252fb
-    jinja: 'Translate this from Gujarati into Indonesian: {{ sentence_guj }} ||| {{
-      sentence_ind }}'
+    id: b5175352-3e11-4c72-8730-8d3d924293e9
+    jinja: 'Urdu: {{ sentence_urd }} = Arabic: ||| {{ sentence_ara }}'
     metadata: *id001
-    name: translate-this-guj-ind
-    reference: Translate this from X to Y (Gujarati into Indonesian)
-  a774dda3-f5c2-4249-86ab-b519c9329f5f: !Template
+    name: flores-xglm-Urdu-Arabic
+    reference: 'L1: [sent1] = L2: [sent2]'
+  b57921dd-080a-45e2-bd02-d32fe634c8a9: !Template
     answer_choices: null
-    id: a774dda3-f5c2-4249-86ab-b519c9329f5f
-    jinja: 'Translate this from simplified Chinese into Tamil: {{ sentence_zho_simpl
-      }} ||| {{ sentence_tam }}'
+    id: b57921dd-080a-45e2-bd02-d32fe634c8a9
+    jinja: 'Indonesian: {{ sentence_ind }} = Igbo: ||| {{ sentence_ibo }}'
     metadata: *id001
-    name: translate-this-zho_simpl-tam
-    reference: Translate this from X to Y (simplified Chinese into Tamil)
-  a7d52d32-9f32-4f97-9416-a9db61b27c09: !Template
+    name: flores-xglm-Indonesian-Igbo
+    reference: 'L1: [sent1] = L2: [sent2]'
+  b63285ba-434f-4318-a82e-28cf5583026e: !Template
     answer_choices: null
-    id: a7d52d32-9f32-4f97-9416-a9db61b27c09
-    jinja: 'Translate this from traditional Chinese into Telugu: {{ sentence_zho_trad
-      }} ||| {{ sentence_tel }}'
+    id: b63285ba-434f-4318-a82e-28cf5583026e
+    jinja: 'Catalan: {{ sentence_cat }} = Indonesian: ||| {{ sentence_ind }}'
     metadata: *id001
-    name: translate-this-zho_trad-tel
-    reference: Translate this from X to Y (traditional Chinese into Telugu)
-  a7d8b144-9c2c-45de-acf0-1cc07842515d: !Template
+    name: flores-xglm-Catalan-Indonesian
+    reference: 'L1: [sent1] = L2: [sent2]'
+  b6a67bed-1508-4fd2-a846-64f3cc4ca637: !Template
     answer_choices: null
-    id: a7d8b144-9c2c-45de-acf0-1cc07842515d
-    jinja: 'Translate this from Nepali into Arabic: {{ sentence_npi }} ||| {{ sentence_ara
-      }}'
+    id: b6a67bed-1508-4fd2-a846-64f3cc4ca637
+    jinja: 'Igbo: {{ sentence_ibo }} = Urdu: ||| {{ sentence_urd }}'
     metadata: *id001
-    name: translate-this-npi-ara
-    reference: Translate this from X to Y (Nepali into Arabic)
-  a7efee63-bf3f-4382-b675-d3a08ea4c8e5: !Template
+    name: flores-xglm-Igbo-Urdu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  b79558d4-095d-4825-a1da-93b5ba8ed7c8: !Template
     answer_choices: null
-    id: a7efee63-bf3f-4382-b675-d3a08ea4c8e5
-    jinja: 'Translate this from simplified Chinese into Hindi: {{ sentence_zho_simpl
-      }} ||| {{ sentence_hin }}'
+    id: b79558d4-095d-4825-a1da-93b5ba8ed7c8
+    jinja: 'Kannada: {{ sentence_kan }} = Telugu: ||| {{ sentence_tel }}'
     metadata: *id001
-    name: translate-this-zho_simpl-hin
-    reference: Translate this from X to Y (simplified Chinese into Hindi)
-  a97e25c0-6180-4bad-9d87-2e09df6d53ac: !Template
+    name: flores-xglm-Kannada-Telugu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  b7a064a9-ea21-4428-b18a-28b3a66df43d: !Template
     answer_choices: null
-    id: a97e25c0-6180-4bad-9d87-2e09df6d53ac
-    jinja: 'Translate this from Urdu into Nepali: {{ sentence_urd }} ||| {{ sentence_npi
+    id: b7a064a9-ea21-4428-b18a-28b3a66df43d
+    jinja: 'Marathi: {{ sentence_mar }} = Brazilian Portuguese: ||| {{ sentence_por
       }}'
     metadata: *id001
-    name: translate-this-urd-npi
-    reference: Translate this from X to Y (Urdu into Nepali)
-  a9847876-8d25-4b39-a3f3-69863649ea4e: !Template
+    name: flores-xglm-Marathi-Brazilian Portuguese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  b7a197b6-f4d8-4bd2-953a-84a60ef3910b: !Template
     answer_choices: null
-    id: a9847876-8d25-4b39-a3f3-69863649ea4e
-    jinja: 'Translate this from Yoruba into Urdu: {{ sentence_yor }} ||| {{ sentence_urd
-      }}'
+    id: b7a197b6-f4d8-4bd2-953a-84a60ef3910b
+    jinja: 'Northern Sotho: {{ sentence_nso }} = Wolof: ||| {{ sentence_wol }}'
     metadata: *id001
-    name: translate-this-yor-urd
-    reference: Translate this from X to Y (Yoruba into Urdu)
-  a99a5549-0074-421e-bc40-ef4800ac7f17: !Template
+    name: flores-xglm-Northern Sotho-Wolof
+    reference: 'L1: [sent1] = L2: [sent2]'
+  b7ab6f4b-e5f3-44d6-823a-332dac68bf39: !Template
     answer_choices: null
-    id: a99a5549-0074-421e-bc40-ef4800ac7f17
-    jinja: 'Translate this from Marathi into Assamese: {{ sentence_mar }} ||| {{ sentence_asm
-      }}'
+    id: b7ab6f4b-e5f3-44d6-823a-332dac68bf39
+    jinja: 'Telugu: {{ sentence_tel }} = Oriya: ||| {{ sentence_ory }}'
     metadata: *id001
-    name: translate-this-mar-asm
-    reference: Translate this from X to Y (Marathi into Assamese)
-  a99bbf95-48de-48e7-8eb6-7de13b05e102: !Template
+    name: flores-xglm-Telugu-Oriya
+    reference: 'L1: [sent1] = L2: [sent2]'
+  b85a4253-11c8-4743-8a92-9dc23da816fd: !Template
     answer_choices: null
-    id: a99bbf95-48de-48e7-8eb6-7de13b05e102
-    jinja: 'Translate this from French into Indonesian: {{ sentence_fra }} ||| {{
-      sentence_ind }}'
+    id: b85a4253-11c8-4743-8a92-9dc23da816fd
+    jinja: 'Lingala: {{ sentence_lin }} = Swahili: ||| {{ sentence_swh }}'
     metadata: *id001
-    name: translate-this-fra-ind
-    reference: Translate this from X to Y (French into Indonesian)
-  a9cdc0aa-a902-44e8-ab09-3468134ab7c9: !Template
+    name: flores-xglm-Lingala-Swahili
+    reference: 'L1: [sent1] = L2: [sent2]'
+  b896f102-8072-4a97-9052-d94d1b3508f2: !Template
     answer_choices: null
-    id: a9cdc0aa-a902-44e8-ab09-3468134ab7c9
-    jinja: 'Translate this from Bengali into Tamil: {{ sentence_ben }} ||| {{ sentence_tam
+    id: b896f102-8072-4a97-9052-d94d1b3508f2
+    jinja: 'Catalan: {{ sentence_cat }} = simplified Chinese: ||| {{ sentence_zho_simpl
       }}'
     metadata: *id001
-    name: translate-this-ben-tam
-    reference: Translate this from X to Y (Bengali into Tamil)
-  aa636678-6f1e-4f3d-9f5a-babaa643c12a: !Template
+    name: flores-xglm-Catalan-simplified Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  b8a59bf8-484a-4b5d-a1c2-38b278c622d4: !Template
     answer_choices: null
-    id: aa636678-6f1e-4f3d-9f5a-babaa643c12a
-    jinja: 'Translate this from Malayalam into Kannada: {{ sentence_mal }} ||| {{
-      sentence_kan }}'
+    id: b8a59bf8-484a-4b5d-a1c2-38b278c622d4
+    jinja: 'Zulu: {{ sentence_zul }} = Vietnamese: ||| {{ sentence_vie }}'
     metadata: *id001
-    name: translate-this-mal-kan
-    reference: Translate this from X to Y (Malayalam into Kannada)
-  aaa25f20-cde2-45cb-954d-c3274a4eeb9b: !Template
+    name: flores-xglm-Zulu-Vietnamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  b8a987f7-f658-4834-ae5f-9d5ddcdd019e: !Template
     answer_choices: null
-    id: aaa25f20-cde2-45cb-954d-c3274a4eeb9b
-    jinja: 'Translate this from Lingala into Vietnamese: {{ sentence_lin }} ||| {{
-      sentence_vie }}'
+    id: b8a987f7-f658-4834-ae5f-9d5ddcdd019e
+    jinja: 'Telugu: {{ sentence_tel }} = Indonesian: ||| {{ sentence_ind }}'
     metadata: *id001
-    name: translate-this-lin-vie
-    reference: Translate this from X to Y (Lingala into Vietnamese)
-  aaef1378-0d74-49d1-aecf-c59bd44d8258: !Template
+    name: flores-xglm-Telugu-Indonesian
+    reference: 'L1: [sent1] = L2: [sent2]'
+  b939de62-cd4e-4885-83c9-efb750a6830b: !Template
     answer_choices: null
-    id: aaef1378-0d74-49d1-aecf-c59bd44d8258
-    jinja: 'Translate this from Zulu into Assamese: {{ sentence_zul }} ||| {{ sentence_asm
-      }}'
+    id: b939de62-cd4e-4885-83c9-efb750a6830b
+    jinja: 'Tamil: {{ sentence_tam }} = Vietnamese: ||| {{ sentence_vie }}'
     metadata: *id001
-    name: translate-this-zul-asm
-    reference: Translate this from X to Y (Zulu into Assamese)
-  ab56b75f-2a26-496a-843b-b658db7e563b: !Template
+    name: flores-xglm-Tamil-Vietnamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  b98034e7-c6c0-46bc-8460-d951783aba09: !Template
     answer_choices: null
-    id: ab56b75f-2a26-496a-843b-b658db7e563b
-    jinja: 'Translate this from Tamil into Hindi: {{ sentence_tam }} ||| {{ sentence_hin
-      }}'
+    id: b98034e7-c6c0-46bc-8460-d951783aba09
+    jinja: 'Punjabi: {{ sentence_pan }} = Wolof: ||| {{ sentence_wol }}'
     metadata: *id001
-    name: translate-this-tam-hin
-    reference: Translate this from X to Y (Tamil into Hindi)
-  ab8b0aa2-f979-4da9-bd50-356e18569ab0: !Template
+    name: flores-xglm-Punjabi-Wolof
+    reference: 'L1: [sent1] = L2: [sent2]'
+  b9a1bc8b-6f06-48b8-b379-3a0d4e6f9f99: !Template
     answer_choices: null
-    id: ab8b0aa2-f979-4da9-bd50-356e18569ab0
-    jinja: 'Translate this from Xhosa into Catalan: {{ sentence_xho }} ||| {{ sentence_cat
-      }}'
+    id: b9a1bc8b-6f06-48b8-b379-3a0d4e6f9f99
+    jinja: 'Northern Sotho: {{ sentence_nso }} = Kannada: ||| {{ sentence_kan }}'
     metadata: *id001
-    name: translate-this-xho-cat
-    reference: Translate this from X to Y (Xhosa into Catalan)
-  ab8c5147-c310-4e53-a87e-1f14f253f2c8: !Template
+    name: flores-xglm-Northern Sotho-Kannada
+    reference: 'L1: [sent1] = L2: [sent2]'
+  b9e342ab-5d43-472e-ab1e-2aa7b527120a: !Template
     answer_choices: null
-    id: ab8c5147-c310-4e53-a87e-1f14f253f2c8
-    jinja: 'Translate this from Urdu into Hindi: {{ sentence_urd }} ||| {{ sentence_hin
-      }}'
+    id: b9e342ab-5d43-472e-ab1e-2aa7b527120a
+    jinja: 'Swahili: {{ sentence_swh }} = Oriya: ||| {{ sentence_ory }}'
     metadata: *id001
-    name: translate-this-urd-hin
-    reference: Translate this from X to Y (Urdu into Hindi)
-  ab8e6bc3-4ee6-4bd7-b748-d9f801104e19: !Template
+    name: flores-xglm-Swahili-Oriya
+    reference: 'L1: [sent1] = L2: [sent2]'
+  ba143b07-9cf2-4a41-abb4-dceda1661820: !Template
     answer_choices: null
-    id: ab8e6bc3-4ee6-4bd7-b748-d9f801104e19
-    jinja: 'Translate this from Telugu into Malayalam: {{ sentence_tel }} ||| {{ sentence_mal
-      }}'
+    id: ba143b07-9cf2-4a41-abb4-dceda1661820
+    jinja: 'Telugu: {{ sentence_tel }} = Gujarati: ||| {{ sentence_guj }}'
     metadata: *id001
-    name: translate-this-tel-mal
-    reference: Translate this from X to Y (Telugu into Malayalam)
-  ac3f131c-909d-4133-86ec-f2481c954924: !Template
+    name: flores-xglm-Telugu-Gujarati
+    reference: 'L1: [sent1] = L2: [sent2]'
+  ba454df1-95ef-45c3-b7ca-9867ddb41946: !Template
     answer_choices: null
-    id: ac3f131c-909d-4133-86ec-f2481c954924
-    jinja: 'Translate this from Urdu into Indonesian: {{ sentence_urd }} ||| {{ sentence_ind
-      }}'
+    id: ba454df1-95ef-45c3-b7ca-9867ddb41946
+    jinja: 'Urdu: {{ sentence_urd }} = Gujarati: ||| {{ sentence_guj }}'
     metadata: *id001
-    name: translate-this-urd-ind
-    reference: Translate this from X to Y (Urdu into Indonesian)
-  ac755252-f162-4f63-9a5c-248a3add7ee0: !Template
+    name: flores-xglm-Urdu-Gujarati
+    reference: 'L1: [sent1] = L2: [sent2]'
+  babb2b2c-37e7-4ca1-8ed6-7d7ae6fd348c: !Template
     answer_choices: null
-    id: ac755252-f162-4f63-9a5c-248a3add7ee0
-    jinja: 'Translate this from Catalan into Tamil: {{ sentence_cat }} ||| {{ sentence_tam
-      }}'
+    id: babb2b2c-37e7-4ca1-8ed6-7d7ae6fd348c
+    jinja: 'Malayalam: {{ sentence_mal }} = Nepali: ||| {{ sentence_npi }}'
     metadata: *id001
-    name: translate-this-cat-tam
-    reference: Translate this from X to Y (Catalan into Tamil)
-  acd014d3-2e93-4561-bbd1-08e7c91abf71: !Template
+    name: flores-xglm-Malayalam-Nepali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  bb2ba0b5-4c33-4ff6-bfcf-4c83bb06d375: !Template
     answer_choices: null
-    id: acd014d3-2e93-4561-bbd1-08e7c91abf71
-    jinja: 'Translate this from Nepali into Yoruba: {{ sentence_npi }} ||| {{ sentence_yor
+    id: bb2ba0b5-4c33-4ff6-bfcf-4c83bb06d375
+    jinja: 'Bengali: {{ sentence_ben }} = traditional Chinese: ||| {{ sentence_zho_trad
       }}'
     metadata: *id001
-    name: translate-this-npi-yor
-    reference: Translate this from X to Y (Nepali into Yoruba)
-  ad22cadb-2d40-4801-9ba5-0cf7d13c0ebf: !Template
+    name: flores-xglm-Bengali-traditional Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  bb537194-628c-4747-8c4e-31c18520f920: !Template
     answer_choices: null
-    id: ad22cadb-2d40-4801-9ba5-0cf7d13c0ebf
-    jinja: 'Translate this from Vietnamese into Xhosa: {{ sentence_vie }} ||| {{ sentence_xho
-      }}'
+    id: bb537194-628c-4747-8c4e-31c18520f920
+    jinja: 'Swahili: {{ sentence_swh }} = Nepali: ||| {{ sentence_npi }}'
     metadata: *id001
-    name: translate-this-vie-xho
-    reference: Translate this from X to Y (Vietnamese into Xhosa)
-  adcffbc2-d33c-4ffe-89d8-82f860c95c73: !Template
+    name: flores-xglm-Swahili-Nepali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  bb87e9ad-e9b9-4103-bcea-4f853c43267c: !Template
     answer_choices: null
-    id: adcffbc2-d33c-4ffe-89d8-82f860c95c73
-    jinja: 'Translate this from Catalan into Lingala: {{ sentence_cat }} ||| {{ sentence_lin
+    id: bb87e9ad-e9b9-4103-bcea-4f853c43267c
+    jinja: 'Northern Sotho: {{ sentence_nso }} = Brazilian Portuguese: ||| {{ sentence_por
       }}'
     metadata: *id001
-    name: translate-this-cat-lin
-    reference: Translate this from X to Y (Catalan into Lingala)
-  adf31954-7af9-441e-bc3d-689802be5700: !Template
+    name: flores-xglm-Northern Sotho-Brazilian Portuguese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  bb8d0602-9c63-4c67-aa36-55b2f2157690: !Template
     answer_choices: null
-    id: adf31954-7af9-441e-bc3d-689802be5700
-    jinja: 'Translate this from Bengali into Zulu: {{ sentence_ben }} ||| {{ sentence_zul
-      }}'
+    id: bb8d0602-9c63-4c67-aa36-55b2f2157690
+    jinja: 'Punjabi: {{ sentence_pan }} = Yoruba: ||| {{ sentence_yor }}'
     metadata: *id001
-    name: translate-this-ben-zul
-    reference: Translate this from X to Y (Bengali into Zulu)
-  ae2e0094-69a1-4735-b5ec-2b5313785187: !Template
+    name: flores-xglm-Punjabi-Yoruba
+    reference: 'L1: [sent1] = L2: [sent2]'
+  bb98a100-aeda-41b1-b9c9-7c85691c3d9e: !Template
     answer_choices: null
-    id: ae2e0094-69a1-4735-b5ec-2b5313785187
-    jinja: 'Translate this from Zulu into Latin American Spanish: {{ sentence_zul
-      }} ||| {{ sentence_spa }}'
+    id: bb98a100-aeda-41b1-b9c9-7c85691c3d9e
+    jinja: 'Marathi: {{ sentence_mar }} = Malayalam: ||| {{ sentence_mal }}'
     metadata: *id001
-    name: translate-this-zul-spa
-    reference: Translate this from X to Y (Zulu into Latin American Spanish)
-  aec9404d-8c00-4b87-bb82-0eac54c1422c: !Template
+    name: flores-xglm-Marathi-Malayalam
+    reference: 'L1: [sent1] = L2: [sent2]'
+  bc256a1d-547a-4a59-8498-b0085982c0fd: !Template
     answer_choices: null
-    id: aec9404d-8c00-4b87-bb82-0eac54c1422c
-    jinja: 'Translate this from Urdu into Assamese: {{ sentence_urd }} ||| {{ sentence_asm
+    id: bc256a1d-547a-4a59-8498-b0085982c0fd
+    jinja: 'Malayalam: {{ sentence_mal }} = Latin American Spanish: ||| {{ sentence_spa
       }}'
     metadata: *id001
-    name: translate-this-urd-asm
-    reference: Translate this from X to Y (Urdu into Assamese)
-  aef823a5-4974-4bec-8735-e3c9e139246d: !Template
+    name: flores-xglm-Malayalam-Latin American Spanish
+    reference: 'L1: [sent1] = L2: [sent2]'
+  bc5bf61a-02a3-4d9a-9041-4bdb9e4865c2: !Template
     answer_choices: null
-    id: aef823a5-4974-4bec-8735-e3c9e139246d
-    jinja: 'Translate this from French into Yoruba: {{ sentence_fra }} ||| {{ sentence_yor
-      }}'
+    id: bc5bf61a-02a3-4d9a-9041-4bdb9e4865c2
+    jinja: 'Swahili: {{ sentence_swh }} = Arabic: ||| {{ sentence_ara }}'
     metadata: *id001
-    name: translate-this-fra-yor
-    reference: Translate this from X to Y (French into Yoruba)
-  af0bc5d3-b269-49d5-bfce-02ddfc6e105a: !Template
+    name: flores-xglm-Swahili-Arabic
+    reference: 'L1: [sent1] = L2: [sent2]'
+  bc6a3e78-3751-492d-859f-225b7be7aafd: !Template
     answer_choices: null
-    id: af0bc5d3-b269-49d5-bfce-02ddfc6e105a
-    jinja: 'Translate this from simplified Chinese into Nepali: {{ sentence_zho_simpl
-      }} ||| {{ sentence_npi }}'
+    id: bc6a3e78-3751-492d-859f-225b7be7aafd
+    jinja: 'Oriya: {{ sentence_ory }} = Swahili: ||| {{ sentence_swh }}'
     metadata: *id001
-    name: translate-this-zho_simpl-npi
-    reference: Translate this from X to Y (simplified Chinese into Nepali)
-  af4f53dc-2907-46c4-a26d-fc44ac602900: !Template
+    name: flores-xglm-Oriya-Swahili
+    reference: 'L1: [sent1] = L2: [sent2]'
+  bc95990b-6218-4d06-ba0e-0b89fdb093c4: !Template
     answer_choices: null
-    id: af4f53dc-2907-46c4-a26d-fc44ac602900
-    jinja: 'Translate this from traditional Chinese into Igbo: {{ sentence_zho_trad
-      }} ||| {{ sentence_ibo }}'
+    id: bc95990b-6218-4d06-ba0e-0b89fdb093c4
+    jinja: 'Tamil: {{ sentence_tam }} = Kannada: ||| {{ sentence_kan }}'
     metadata: *id001
-    name: translate-this-zho_trad-ibo
-    reference: Translate this from X to Y (traditional Chinese into Igbo)
-  af754123-7d27-4cf1-953e-526b2e04548a: !Template
+    name: flores-xglm-Tamil-Kannada
+    reference: 'L1: [sent1] = L2: [sent2]'
+  bc985f84-d444-449e-89a1-0bcc941234dc: !Template
     answer_choices: null
-    id: af754123-7d27-4cf1-953e-526b2e04548a
-    jinja: 'Translate this from Arabic into Wolof: {{ sentence_ara }} ||| {{ sentence_wol
-      }}'
+    id: bc985f84-d444-449e-89a1-0bcc941234dc
+    jinja: 'Yoruba: {{ sentence_yor }} = Telugu: ||| {{ sentence_tel }}'
     metadata: *id001
-    name: translate-this-ara-wol
-    reference: Translate this from X to Y (Arabic into Wolof)
-  af963390-0dbb-408f-918b-d3c59d022f3d: !Template
+    name: flores-xglm-Yoruba-Telugu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  bcdaf7b5-c036-45f6-854d-0ae111160fdd: !Template
     answer_choices: null
-    id: af963390-0dbb-408f-918b-d3c59d022f3d
-    jinja: 'Translate this from Marathi into Latin American Spanish: {{ sentence_mar
-      }} ||| {{ sentence_spa }}'
+    id: bcdaf7b5-c036-45f6-854d-0ae111160fdd
+    jinja: 'Xhosa: {{ sentence_xho }} = Punjabi: ||| {{ sentence_pan }}'
     metadata: *id001
-    name: translate-this-mar-spa
-    reference: Translate this from X to Y (Marathi into Latin American Spanish)
-  b044fa1f-4a0d-464b-bb14-3a9cbf7ac7b0: !Template
+    name: flores-xglm-Xhosa-Punjabi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  bcdf7f38-7390-4e7d-b6e5-26bf7c33c478: !Template
     answer_choices: null
-    id: b044fa1f-4a0d-464b-bb14-3a9cbf7ac7b0
-    jinja: 'Translate this from Kannada into Latin American Spanish: {{ sentence_kan
-      }} ||| {{ sentence_spa }}'
+    id: bcdf7f38-7390-4e7d-b6e5-26bf7c33c478
+    jinja: 'Oriya: {{ sentence_ory }} = Arabic: ||| {{ sentence_ara }}'
     metadata: *id001
-    name: translate-this-kan-spa
-    reference: Translate this from X to Y (Kannada into Latin American Spanish)
-  b06f39a9-69fe-4165-a8a6-8550e8192ff6: !Template
+    name: flores-xglm-Oriya-Arabic
+    reference: 'L1: [sent1] = L2: [sent2]'
+  bdef6475-ad88-4400-af76-095a5145b4e2: !Template
     answer_choices: null
-    id: b06f39a9-69fe-4165-a8a6-8550e8192ff6
-    jinja: 'Translate this from Brazilian Portuguese into Latin American Spanish:
-      {{ sentence_por }} ||| {{ sentence_spa }}'
+    id: bdef6475-ad88-4400-af76-095a5145b4e2
+    jinja: 'Xhosa: {{ sentence_xho }} = Telugu: ||| {{ sentence_tel }}'
     metadata: *id001
-    name: translate-this-por-spa
-    reference: Translate this from X to Y (Brazilian Portuguese into Latin American
-      Spanish)
-  b084548d-3d82-4048-8945-59651dd74d65: !Template
+    name: flores-xglm-Xhosa-Telugu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  be05ba4e-628a-4609-9e9d-f88d37d6a03e: !Template
     answer_choices: null
-    id: b084548d-3d82-4048-8945-59651dd74d65
-    jinja: 'Translate this from English into Xhosa: {{ sentence_eng }} ||| {{ sentence_xho
-      }}'
+    id: be05ba4e-628a-4609-9e9d-f88d37d6a03e
+    jinja: 'Assamese: {{ sentence_asm }} = Bengali: ||| {{ sentence_ben }}'
     metadata: *id001
-    name: translate-this-eng-xho
-    reference: Translate this from X to Y (English into Xhosa)
-  b0927e3b-8824-4301-972c-e61af75b350c: !Template
+    name: flores-xglm-Assamese-Bengali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  be13efd6-bdc5-4e8b-b41d-3a6435dd694b: !Template
     answer_choices: null
-    id: b0927e3b-8824-4301-972c-e61af75b350c
-    jinja: 'Translate this from Arabic into Catalan: {{ sentence_ara }} ||| {{ sentence_cat
+    id: be13efd6-bdc5-4e8b-b41d-3a6435dd694b
+    jinja: 'Northern Sotho: {{ sentence_nso }} = traditional Chinese: ||| {{ sentence_zho_trad
       }}'
     metadata: *id001
-    name: translate-this-ara-cat
-    reference: Translate this from X to Y (Arabic into Catalan)
-  b1204953-0173-4e6e-b98b-cf49f36f938e: !Template
+    name: flores-xglm-Northern Sotho-traditional Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  be4efec3-0b45-4b2c-b30e-794c60fd93d2: !Template
     answer_choices: null
-    id: b1204953-0173-4e6e-b98b-cf49f36f938e
-    jinja: 'Translate this from Urdu into Gujarati: {{ sentence_urd }} ||| {{ sentence_guj
-      }}'
+    id: be4efec3-0b45-4b2c-b30e-794c60fd93d2
+    jinja: 'Telugu: {{ sentence_tel }} = Marathi: ||| {{ sentence_mar }}'
     metadata: *id001
-    name: translate-this-urd-guj
-    reference: Translate this from X to Y (Urdu into Gujarati)
-  b1d3cb86-56f4-4c85-9ed2-5218219fab25: !Template
+    name: flores-xglm-Telugu-Marathi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  be893f1f-fc20-4324-b28b-ac4c10ad40e8: !Template
     answer_choices: null
-    id: b1d3cb86-56f4-4c85-9ed2-5218219fab25
-    jinja: 'Translate this from Lingala into Kannada: {{ sentence_lin }} ||| {{ sentence_kan
-      }}'
+    id: be893f1f-fc20-4324-b28b-ac4c10ad40e8
+    jinja: 'Oriya: {{ sentence_ory }} = Lingala: ||| {{ sentence_lin }}'
     metadata: *id001
-    name: translate-this-lin-kan
-    reference: Translate this from X to Y (Lingala into Kannada)
-  b1dd5089-113a-4b5c-9b74-4222de69d86b: !Template
+    name: flores-xglm-Oriya-Lingala
+    reference: 'L1: [sent1] = L2: [sent2]'
+  be8b0043-9e82-4640-8faa-e660e9450687: !Template
     answer_choices: null
-    id: b1dd5089-113a-4b5c-9b74-4222de69d86b
-    jinja: 'Translate this from Telugu into Zulu: {{ sentence_tel }} ||| {{ sentence_zul
+    id: be8b0043-9e82-4640-8faa-e660e9450687
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = Swahili: ||| {{ sentence_swh
       }}'
     metadata: *id001
-    name: translate-this-tel-zul
-    reference: Translate this from X to Y (Telugu into Zulu)
-  b2421b4d-3c75-4581-98dc-32c581fc6edb: !Template
+    name: flores-xglm-Latin American Spanish-Swahili
+    reference: 'L1: [sent1] = L2: [sent2]'
+  bf12f8ec-5087-45b8-88b7-eb3626bad823: !Template
     answer_choices: null
-    id: b2421b4d-3c75-4581-98dc-32c581fc6edb
-    jinja: 'Translate this from French into Latin American Spanish: {{ sentence_fra
-      }} ||| {{ sentence_spa }}'
+    id: bf12f8ec-5087-45b8-88b7-eb3626bad823
+    jinja: 'Urdu: {{ sentence_urd }} = Xhosa: ||| {{ sentence_xho }}'
     metadata: *id001
-    name: translate-this-fra-spa
-    reference: Translate this from X to Y (French into Latin American Spanish)
-  b2c0b935-dc6b-4ae3-b023-d306e151732e: !Template
+    name: flores-xglm-Urdu-Xhosa
+    reference: 'L1: [sent1] = L2: [sent2]'
+  bf1ecc02-9e07-471e-a901-9ab6ee27c51c: !Template
     answer_choices: null
-    id: b2c0b935-dc6b-4ae3-b023-d306e151732e
-    jinja: 'Translate this from Arabic into simplified Chinese: {{ sentence_ara }}
-      ||| {{ sentence_zho_simpl }}'
+    id: bf1ecc02-9e07-471e-a901-9ab6ee27c51c
+    jinja: 'Oriya: {{ sentence_ory }} = simplified Chinese: ||| {{ sentence_zho_simpl
+      }}'
     metadata: *id001
-    name: translate-this-ara-zho_simpl
-    reference: Translate this from X to Y (Arabic into simplified Chinese)
-  b3af3351-1aa5-4182-a451-35a024787d6d: !Template
+    name: flores-xglm-Oriya-simplified Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  bf94308d-198f-4d62-9e30-319f4685f7ef: !Template
     answer_choices: null
-    id: b3af3351-1aa5-4182-a451-35a024787d6d
-    jinja: 'Translate this from Hindi into Zulu: {{ sentence_hin }} ||| {{ sentence_zul
+    id: bf94308d-198f-4d62-9e30-319f4685f7ef
+    jinja: 'Swahili: {{ sentence_swh }} = simplified Chinese: ||| {{ sentence_zho_simpl
       }}'
     metadata: *id001
-    name: translate-this-hin-zul
-    reference: Translate this from X to Y (Hindi into Zulu)
-  b4459d77-6501-496f-a837-37eea00fe4b4: !Template
+    name: flores-xglm-Swahili-simplified Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  bf9aa4b3-0057-43d7-9a12-09073db90d2a: !Template
     answer_choices: null
-    id: b4459d77-6501-496f-a837-37eea00fe4b4
-    jinja: 'Translate this from Lingala into Yoruba: {{ sentence_lin }} ||| {{ sentence_yor
-      }}'
+    id: bf9aa4b3-0057-43d7-9a12-09073db90d2a
+    jinja: 'Tamil: {{ sentence_tam }} = Nepali: ||| {{ sentence_npi }}'
     metadata: *id001
-    name: translate-this-lin-yor
-    reference: Translate this from X to Y (Lingala into Yoruba)
-  b470f2db-ae79-44eb-bae8-cabe6bf75407: !Template
+    name: flores-xglm-Tamil-Nepali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  c02f6412-55db-44c1-918a-462a577a7edd: !Template
     answer_choices: null
-    id: b470f2db-ae79-44eb-bae8-cabe6bf75407
-    jinja: 'Translate this from Telugu into Swahili: {{ sentence_tel }} ||| {{ sentence_swh
+    id: c02f6412-55db-44c1-918a-462a577a7edd
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = Bengali: ||| {{ sentence_ben
       }}'
     metadata: *id001
-    name: translate-this-tel-swh
-    reference: Translate this from X to Y (Telugu into Swahili)
-  b4b667a1-8ff0-4eba-b22c-9533b9801af1: !Template
+    name: flores-xglm-Latin American Spanish-Bengali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  c0320dd3-aa7e-4f08-8709-65e55ea0081a: !Template
     answer_choices: null
-    id: b4b667a1-8ff0-4eba-b22c-9533b9801af1
-    jinja: 'Translate this from Oriya into traditional Chinese: {{ sentence_ory }}
-      ||| {{ sentence_zho_trad }}'
+    id: c0320dd3-aa7e-4f08-8709-65e55ea0081a
+    jinja: 'Xhosa: {{ sentence_xho }} = Tamil: ||| {{ sentence_tam }}'
     metadata: *id001
-    name: translate-this-ory-zho_trad
-    reference: Translate this from X to Y (Oriya into traditional Chinese)
-  b4e1fdfd-9715-438f-a08d-00091bf3e7e8: !Template
+    name: flores-xglm-Xhosa-Tamil
+    reference: 'L1: [sent1] = L2: [sent2]'
+  c0816d18-ee6d-4960-9177-646d685ad090: !Template
     answer_choices: null
-    id: b4e1fdfd-9715-438f-a08d-00091bf3e7e8
-    jinja: 'Translate this from Kannada into Wolof: {{ sentence_kan }} ||| {{ sentence_wol
+    id: c0816d18-ee6d-4960-9177-646d685ad090
+    jinja: 'Assamese: {{ sentence_asm }} = Latin American Spanish: ||| {{ sentence_spa
       }}'
     metadata: *id001
-    name: translate-this-kan-wol
-    reference: Translate this from X to Y (Kannada into Wolof)
-  b4ed4c6b-c393-4cef-9ef8-debace33b134: !Template
+    name: flores-xglm-Assamese-Latin American Spanish
+    reference: 'L1: [sent1] = L2: [sent2]'
+  c0b7536c-caae-49c8-88be-6b35f6c3203c: !Template
     answer_choices: null
-    id: b4ed4c6b-c393-4cef-9ef8-debace33b134
-    jinja: 'Translate this from French into Tamil: {{ sentence_fra }} ||| {{ sentence_tam
-      }}'
+    id: c0b7536c-caae-49c8-88be-6b35f6c3203c
+    jinja: 'Indonesian: {{ sentence_ind }} = Catalan: ||| {{ sentence_cat }}'
     metadata: *id001
-    name: translate-this-fra-tam
-    reference: Translate this from X to Y (French into Tamil)
-  b57a3b33-fd2b-4c8e-9b61-58b2a0cdad86: !Template
+    name: flores-xglm-Indonesian-Catalan
+    reference: 'L1: [sent1] = L2: [sent2]'
+  c0d911c9-c63c-4054-ae7e-f0d159ce26d9: !Template
     answer_choices: null
-    id: b57a3b33-fd2b-4c8e-9b61-58b2a0cdad86
-    jinja: 'Translate this from Catalan into Assamese: {{ sentence_cat }} ||| {{ sentence_asm
+    id: c0d911c9-c63c-4054-ae7e-f0d159ce26d9
+    jinja: 'Zulu: {{ sentence_zul }} = simplified Chinese: ||| {{ sentence_zho_simpl
       }}'
     metadata: *id001
-    name: translate-this-cat-asm
-    reference: Translate this from X to Y (Catalan into Assamese)
-  b59f7c41-9898-4e05-8954-f43aad4842ec: !Template
+    name: flores-xglm-Zulu-simplified Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  c0f1d467-465f-469b-85ec-0b6f84e9843d: !Template
     answer_choices: null
-    id: b59f7c41-9898-4e05-8954-f43aad4842ec
-    jinja: 'Translate this from Lingala into Swahili: {{ sentence_lin }} ||| {{ sentence_swh
-      }}'
+    id: c0f1d467-465f-469b-85ec-0b6f84e9843d
+    jinja: 'Malayalam: {{ sentence_mal }} = Punjabi: ||| {{ sentence_pan }}'
     metadata: *id001
-    name: translate-this-lin-swh
-    reference: Translate this from X to Y (Lingala into Swahili)
-  b5ee5056-1f41-45e3-9218-f329bffeec99: !Template
+    name: flores-xglm-Malayalam-Punjabi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  c11d9a09-1959-4863-93c5-33ba4333e4dc: !Template
     answer_choices: null
-    id: b5ee5056-1f41-45e3-9218-f329bffeec99
-    jinja: 'Translate this from Malayalam into Indonesian: {{ sentence_mal }} |||
-      {{ sentence_ind }}'
+    id: c11d9a09-1959-4863-93c5-33ba4333e4dc
+    jinja: 'Gujarati: {{ sentence_guj }} = Vietnamese: ||| {{ sentence_vie }}'
     metadata: *id001
-    name: translate-this-mal-ind
-    reference: Translate this from X to Y (Malayalam into Indonesian)
-  b64e9a96-d96e-4224-be11-40b65ee3b123: !Template
+    name: flores-xglm-Gujarati-Vietnamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  c14f3f91-a21e-4dbf-a13b-cf03dfbed5e0: !Template
     answer_choices: null
-    id: b64e9a96-d96e-4224-be11-40b65ee3b123
-    jinja: 'Translate this from Urdu into Telugu: {{ sentence_urd }} ||| {{ sentence_tel
-      }}'
+    id: c14f3f91-a21e-4dbf-a13b-cf03dfbed5e0
+    jinja: 'Urdu: {{ sentence_urd }} = Bengali: ||| {{ sentence_ben }}'
     metadata: *id001
-    name: translate-this-urd-tel
-    reference: Translate this from X to Y (Urdu into Telugu)
-  b6aa98d1-6e43-4b2e-949d-fae151c2bb19: !Template
+    name: flores-xglm-Urdu-Bengali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  c151371e-6c56-4250-9ce0-48a3e10386f5: !Template
     answer_choices: null
-    id: b6aa98d1-6e43-4b2e-949d-fae151c2bb19
-    jinja: 'Translate this from simplified Chinese into Brazilian Portuguese: {{ sentence_zho_simpl
-      }} ||| {{ sentence_por }}'
+    id: c151371e-6c56-4250-9ce0-48a3e10386f5
+    jinja: 'Arabic: {{ sentence_ara }} = Urdu: ||| {{ sentence_urd }}'
     metadata: *id001
-    name: translate-this-zho_simpl-por
-    reference: Translate this from X to Y (simplified Chinese into Brazilian Portuguese)
-  b7af2a3b-bfa5-4649-bcdb-7c570edc7264: !Template
+    name: flores-xglm-Arabic-Urdu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  c1e760b6-3fc5-477f-ab17-87cc4360c402: !Template
     answer_choices: null
-    id: b7af2a3b-bfa5-4649-bcdb-7c570edc7264
-    jinja: 'Translate this from Wolof into Vietnamese: {{ sentence_wol }} ||| {{ sentence_vie
-      }}'
+    id: c1e760b6-3fc5-477f-ab17-87cc4360c402
+    jinja: 'Kannada: {{ sentence_kan }} = Lingala: ||| {{ sentence_lin }}'
     metadata: *id001
-    name: translate-this-wol-vie
-    reference: Translate this from X to Y (Wolof into Vietnamese)
-  b7f35f3a-e89f-43a0-bae6-ec0672062540: !Template
+    name: flores-xglm-Kannada-Lingala
+    reference: 'L1: [sent1] = L2: [sent2]'
+  c23036cb-43f7-4151-bfaf-3842c19bbfd6: !Template
     answer_choices: null
-    id: b7f35f3a-e89f-43a0-bae6-ec0672062540
-    jinja: 'Translate this from Igbo into Gujarati: {{ sentence_ibo }} ||| {{ sentence_guj
-      }}'
+    id: c23036cb-43f7-4151-bfaf-3842c19bbfd6
+    jinja: 'Igbo: {{ sentence_ibo }} = Punjabi: ||| {{ sentence_pan }}'
     metadata: *id001
-    name: translate-this-ibo-guj
-    reference: Translate this from X to Y (Igbo into Gujarati)
-  b7fee367-2fd6-4ed8-9be0-e95846b302f3: !Template
+    name: flores-xglm-Igbo-Punjabi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  c2bc1f16-557b-436d-9479-13d278dd1c34: !Template
     answer_choices: null
-    id: b7fee367-2fd6-4ed8-9be0-e95846b302f3
-    jinja: 'Translate this from French into Urdu: {{ sentence_fra }} ||| {{ sentence_urd
+    id: c2bc1f16-557b-436d-9479-13d278dd1c34
+    jinja: 'Wolof: {{ sentence_wol }} = Assamese: ||| {{ sentence_asm }}'
+    metadata: *id001
+    name: flores-xglm-Wolof-Assamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  c2d40ee9-08ff-4571-b79c-b69fd7e1e560: !Template
+    answer_choices: null
+    id: c2d40ee9-08ff-4571-b79c-b69fd7e1e560
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Vietnamese: ||| {{ sentence_vie
       }}'
     metadata: *id001
-    name: translate-this-fra-urd
-    reference: Translate this from X to Y (French into Urdu)
-  b85efa95-788e-4883-adc8-b8cdc4b4e838: !Template
+    name: flores-xglm-simplified Chinese-Vietnamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  c2dbcc0b-9aa0-420d-a9c8-745239d11d85: !Template
     answer_choices: null
-    id: b85efa95-788e-4883-adc8-b8cdc4b4e838
-    jinja: 'Translate this from traditional Chinese into Tamil: {{ sentence_zho_trad
-      }} ||| {{ sentence_tam }}'
+    id: c2dbcc0b-9aa0-420d-a9c8-745239d11d85
+    jinja: 'Nepali: {{ sentence_npi }} = Punjabi: ||| {{ sentence_pan }}'
     metadata: *id001
-    name: translate-this-zho_trad-tam
-    reference: Translate this from X to Y (traditional Chinese into Tamil)
-  b8d3787e-ef62-473a-be59-b67377503ca9: !Template
+    name: flores-xglm-Nepali-Punjabi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  c305571a-9b64-4686-a990-d0ebca5ede6f: !Template
     answer_choices: null
-    id: b8d3787e-ef62-473a-be59-b67377503ca9
-    jinja: 'Translate this from Nepali into Hindi: {{ sentence_npi }} ||| {{ sentence_hin
+    id: c305571a-9b64-4686-a990-d0ebca5ede6f
+    jinja: 'Northern Sotho: {{ sentence_nso }} = simplified Chinese: ||| {{ sentence_zho_simpl
       }}'
     metadata: *id001
-    name: translate-this-npi-hin
-    reference: Translate this from X to Y (Nepali into Hindi)
-  b96fffa6-7548-409d-9584-8139fec0e24a: !Template
+    name: flores-xglm-Northern Sotho-simplified Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  c35e3cea-bf65-4387-9518-a0b4c0fd999f: !Template
     answer_choices: null
-    id: b96fffa6-7548-409d-9584-8139fec0e24a
-    jinja: 'Translate this from Arabic into Kannada: {{ sentence_ara }} ||| {{ sentence_kan
-      }}'
+    id: c35e3cea-bf65-4387-9518-a0b4c0fd999f
+    jinja: 'Igbo: {{ sentence_ibo }} = Malayalam: ||| {{ sentence_mal }}'
     metadata: *id001
-    name: translate-this-ara-kan
-    reference: Translate this from X to Y (Arabic into Kannada)
-  b9808c73-cea3-4c69-909f-bf64ae0c3905: !Template
+    name: flores-xglm-Igbo-Malayalam
+    reference: 'L1: [sent1] = L2: [sent2]'
+  c394198b-3073-4d0b-8615-2abb712bb63a: !Template
     answer_choices: null
-    id: b9808c73-cea3-4c69-909f-bf64ae0c3905
-    jinja: 'Translate this from Assamese into Nepali: {{ sentence_asm }} ||| {{ sentence_npi
+    id: c394198b-3073-4d0b-8615-2abb712bb63a
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Igbo: ||| {{ sentence_ibo
       }}'
     metadata: *id001
-    name: translate-this-asm-npi
-    reference: Translate this from X to Y (Assamese into Nepali)
-  b9e30bb3-c5e6-48de-b90d-fd72e63398bd: !Template
+    name: flores-xglm-traditional Chinese-Igbo
+    reference: 'L1: [sent1] = L2: [sent2]'
+  c3fcf024-4246-47b6-b324-4cf0037da87f: !Template
     answer_choices: null
-    id: b9e30bb3-c5e6-48de-b90d-fd72e63398bd
-    jinja: 'Translate this from Northern Sotho into Tamil: {{ sentence_nso }} |||
-      {{ sentence_tam }}'
+    id: c3fcf024-4246-47b6-b324-4cf0037da87f
+    jinja: 'Vietnamese: {{ sentence_vie }} = Malayalam: ||| {{ sentence_mal }}'
     metadata: *id001
-    name: translate-this-nso-tam
-    reference: Translate this from X to Y (Northern Sotho into Tamil)
-  baa4b2ee-0bc0-477b-90a7-bac179a92361: !Template
+    name: flores-xglm-Vietnamese-Malayalam
+    reference: 'L1: [sent1] = L2: [sent2]'
+  c4012b3b-60e7-4308-bd4a-e89b376982c1: !Template
     answer_choices: null
-    id: baa4b2ee-0bc0-477b-90a7-bac179a92361
-    jinja: 'Translate this from Lingala into Northern Sotho: {{ sentence_lin }} |||
-      {{ sentence_nso }}'
+    id: c4012b3b-60e7-4308-bd4a-e89b376982c1
+    jinja: 'Catalan: {{ sentence_cat }} = Vietnamese: ||| {{ sentence_vie }}'
     metadata: *id001
-    name: translate-this-lin-nso
-    reference: Translate this from X to Y (Lingala into Northern Sotho)
-  bac65a21-0bb8-4214-81c1-2b1cdf6ad098: !Template
+    name: flores-xglm-Catalan-Vietnamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  c425fee1-344b-4307-9df9-23ca7c71f3a0: !Template
     answer_choices: null
-    id: bac65a21-0bb8-4214-81c1-2b1cdf6ad098
-    jinja: 'Translate this from Latin American Spanish into Arabic: {{ sentence_spa
-      }} ||| {{ sentence_ara }}'
+    id: c425fee1-344b-4307-9df9-23ca7c71f3a0
+    jinja: 'Zulu: {{ sentence_zul }} = Gujarati: ||| {{ sentence_guj }}'
     metadata: *id001
-    name: translate-this-spa-ara
-    reference: Translate this from X to Y (Latin American Spanish into Arabic)
-  bbc286aa-6cfd-453e-9e7f-b485c62a4b96: !Template
+    name: flores-xglm-Zulu-Gujarati
+    reference: 'L1: [sent1] = L2: [sent2]'
+  c42ce6ea-7f6b-4804-a140-c325b02e3859: !Template
     answer_choices: null
-    id: bbc286aa-6cfd-453e-9e7f-b485c62a4b96
-    jinja: 'Translate this from Gujarati into Kannada: {{ sentence_guj }} ||| {{ sentence_kan
+    id: c42ce6ea-7f6b-4804-a140-c325b02e3859
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Telugu: ||| {{ sentence_tel
       }}'
     metadata: *id001
-    name: translate-this-guj-kan
-    reference: Translate this from X to Y (Gujarati into Kannada)
-  bc869c1f-3185-42d4-abe2-7fcf71262f27: !Template
+    name: flores-xglm-traditional Chinese-Telugu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  c43d35d0-ae6f-41ef-9f76-1f3bf75da163: !Template
     answer_choices: null
-    id: bc869c1f-3185-42d4-abe2-7fcf71262f27
-    jinja: 'Translate this from Brazilian Portuguese into Catalan: {{ sentence_por
-      }} ||| {{ sentence_cat }}'
-    metadata: *id001
-    name: translate-this-por-cat
-    reference: Translate this from X to Y (Brazilian Portuguese into Catalan)
-  bcc746ba-fbe4-42ae-927f-b632b68d8d04: !Template
-    answer_choices: null
-    id: bcc746ba-fbe4-42ae-927f-b632b68d8d04
-    jinja: 'Translate this from Latin American Spanish into Swahili: {{ sentence_spa
-      }} ||| {{ sentence_swh }}'
+    id: c43d35d0-ae6f-41ef-9f76-1f3bf75da163
+    jinja: 'Yoruba: {{ sentence_yor }} = Latin American Spanish: ||| {{ sentence_spa
+      }}'
     metadata: *id001
-    name: translate-this-spa-swh
-    reference: Translate this from X to Y (Latin American Spanish into Swahili)
-  bdff0e56-799a-42ed-b916-6d63a68745ee: !Template
+    name: flores-xglm-Yoruba-Latin American Spanish
+    reference: 'L1: [sent1] = L2: [sent2]'
+  c4f9c54c-f789-4ab2-980d-b2201c8d7f1d: !Template
     answer_choices: null
-    id: bdff0e56-799a-42ed-b916-6d63a68745ee
-    jinja: 'Translate this from Catalan into Vietnamese: {{ sentence_cat }} ||| {{
-      sentence_vie }}'
+    id: c4f9c54c-f789-4ab2-980d-b2201c8d7f1d
+    jinja: 'Nepali: {{ sentence_npi }} = Wolof: ||| {{ sentence_wol }}'
     metadata: *id001
-    name: translate-this-cat-vie
-    reference: Translate this from X to Y (Catalan into Vietnamese)
-  be9512b4-ac2c-43c9-8719-80cbb5dfc79e: !Template
+    name: flores-xglm-Nepali-Wolof
+    reference: 'L1: [sent1] = L2: [sent2]'
+  c64153b8-87b0-4c1e-9768-7cd979de3c55: !Template
     answer_choices: null
-    id: be9512b4-ac2c-43c9-8719-80cbb5dfc79e
-    jinja: 'Translate this from Vietnamese into Wolof: {{ sentence_vie }} ||| {{ sentence_wol
+    id: c64153b8-87b0-4c1e-9768-7cd979de3c55
+    jinja: 'Xhosa: {{ sentence_xho }} = traditional Chinese: ||| {{ sentence_zho_trad
       }}'
     metadata: *id001
-    name: translate-this-vie-wol
-    reference: Translate this from X to Y (Vietnamese into Wolof)
-  bed1651d-02e8-4de9-8780-68fec60e00e6: !Template
+    name: flores-xglm-Xhosa-traditional Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  c6a0b166-32bf-4bb5-8a26-98a2ef2c4c31: !Template
     answer_choices: null
-    id: bed1651d-02e8-4de9-8780-68fec60e00e6
-    jinja: 'Translate this from traditional Chinese into Assamese: {{ sentence_zho_trad
-      }} ||| {{ sentence_asm }}'
+    id: c6a0b166-32bf-4bb5-8a26-98a2ef2c4c31
+    jinja: 'Wolof: {{ sentence_wol }} = Indonesian: ||| {{ sentence_ind }}'
     metadata: *id001
-    name: translate-this-zho_trad-asm
-    reference: Translate this from X to Y (traditional Chinese into Assamese)
-  bee592e1-2209-413b-a665-30e4b15fb8d1: !Template
+    name: flores-xglm-Wolof-Indonesian
+    reference: 'L1: [sent1] = L2: [sent2]'
+  c6b5867d-83e6-4407-a421-fb29ac315a68: !Template
     answer_choices: null
-    id: bee592e1-2209-413b-a665-30e4b15fb8d1
-    jinja: 'Translate this from Tamil into Latin American Spanish: {{ sentence_tam
-      }} ||| {{ sentence_spa }}'
+    id: c6b5867d-83e6-4407-a421-fb29ac315a68
+    jinja: 'Nepali: {{ sentence_npi }} = Yoruba: ||| {{ sentence_yor }}'
     metadata: *id001
-    name: translate-this-tam-spa
-    reference: Translate this from X to Y (Tamil into Latin American Spanish)
-  bef6ce4f-87fd-4e8e-98b0-5342972fcc54: !Template
+    name: flores-xglm-Nepali-Yoruba
+    reference: 'L1: [sent1] = L2: [sent2]'
+  c6ec1717-bc1e-4f69-a3d3-38dbe9ca4fcf: !Template
     answer_choices: null
-    id: bef6ce4f-87fd-4e8e-98b0-5342972fcc54
-    jinja: 'Translate this from Assamese into Xhosa: {{ sentence_asm }} ||| {{ sentence_xho
-      }}'
+    id: c6ec1717-bc1e-4f69-a3d3-38dbe9ca4fcf
+    jinja: 'Punjabi: {{ sentence_pan }} = Nepali: ||| {{ sentence_npi }}'
     metadata: *id001
-    name: translate-this-asm-xho
-    reference: Translate this from X to Y (Assamese into Xhosa)
-  bf23419e-9e27-4be3-a218-f7c2669ba3a8: !Template
+    name: flores-xglm-Punjabi-Nepali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  c6f93cda-3843-45c5-a992-b6e641a332c4: !Template
     answer_choices: null
-    id: bf23419e-9e27-4be3-a218-f7c2669ba3a8
-    jinja: 'Translate this from Malayalam into Gujarati: {{ sentence_mal }} ||| {{
-      sentence_guj }}'
+    id: c6f93cda-3843-45c5-a992-b6e641a332c4
+    jinja: 'Punjabi: {{ sentence_pan }} = Igbo: ||| {{ sentence_ibo }}'
     metadata: *id001
-    name: translate-this-mal-guj
-    reference: Translate this from X to Y (Malayalam into Gujarati)
-  bf6e4b98-ccc4-4461-90a5-38d84d7658b8: !Template
+    name: flores-xglm-Punjabi-Igbo
+    reference: 'L1: [sent1] = L2: [sent2]'
+  c6fe97aa-bd7d-4142-b9d1-a1ee3f21f837: !Template
     answer_choices: null
-    id: bf6e4b98-ccc4-4461-90a5-38d84d7658b8
-    jinja: 'Translate this from Swahili into Gujarati: {{ sentence_swh }} ||| {{ sentence_guj
+    id: c6fe97aa-bd7d-4142-b9d1-a1ee3f21f837
+    jinja: 'Marathi: {{ sentence_mar }} = simplified Chinese: ||| {{ sentence_zho_simpl
       }}'
     metadata: *id001
-    name: translate-this-swh-guj
-    reference: Translate this from X to Y (Swahili into Gujarati)
-  bfb3f005-981d-4a04-834d-318cec54411e: !Template
+    name: flores-xglm-Marathi-simplified Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  c748010b-dd75-4194-9bf0-17271299fcf3: !Template
     answer_choices: null
-    id: bfb3f005-981d-4a04-834d-318cec54411e
-    jinja: 'Translate this from Telugu into Igbo: {{ sentence_tel }} ||| {{ sentence_ibo
+    id: c748010b-dd75-4194-9bf0-17271299fcf3
+    jinja: 'Swahili: {{ sentence_swh }} = Brazilian Portuguese: ||| {{ sentence_por
       }}'
     metadata: *id001
-    name: translate-this-tel-ibo
-    reference: Translate this from X to Y (Telugu into Igbo)
-  bfc6b533-bde7-42ed-9988-4c71ffea29b6: !Template
+    name: flores-xglm-Swahili-Brazilian Portuguese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  c7f12042-73b7-42c3-b0cf-366bb92153ff: !Template
     answer_choices: null
-    id: bfc6b533-bde7-42ed-9988-4c71ffea29b6
-    jinja: 'Translate this from Latin American Spanish into Xhosa: {{ sentence_spa
-      }} ||| {{ sentence_xho }}'
+    id: c7f12042-73b7-42c3-b0cf-366bb92153ff
+    jinja: 'Assamese: {{ sentence_asm }} = Xhosa: ||| {{ sentence_xho }}'
     metadata: *id001
-    name: translate-this-spa-xho
-    reference: Translate this from X to Y (Latin American Spanish into Xhosa)
-  c07621a9-4c51-4220-9475-27cb4b11873c: !Template
+    name: flores-xglm-Assamese-Xhosa
+    reference: 'L1: [sent1] = L2: [sent2]'
+  c8430be4-0225-46c8-8de5-a5af2b1052a3: !Template
     answer_choices: null
-    id: c07621a9-4c51-4220-9475-27cb4b11873c
-    jinja: 'Translate this from Igbo into English: {{ sentence_ibo }} ||| {{ sentence_eng
-      }}'
+    id: c8430be4-0225-46c8-8de5-a5af2b1052a3
+    jinja: 'Yoruba: {{ sentence_yor }} = Malayalam: ||| {{ sentence_mal }}'
     metadata: *id001
-    name: translate-this-ibo-eng
-    reference: Translate this from X to Y (Igbo into English)
-  c09ddc7f-36c7-4852-bd51-561bc76fcbe8: !Template
+    name: flores-xglm-Yoruba-Malayalam
+    reference: 'L1: [sent1] = L2: [sent2]'
+  c8529599-e0ad-420b-83e4-056d9e74957f: !Template
     answer_choices: null
-    id: c09ddc7f-36c7-4852-bd51-561bc76fcbe8
-    jinja: 'Translate this from Tamil into Zulu: {{ sentence_tam }} ||| {{ sentence_zul
+    id: c8529599-e0ad-420b-83e4-056d9e74957f
+    jinja: 'Telugu: {{ sentence_tel }} = Latin American Spanish: ||| {{ sentence_spa
       }}'
     metadata: *id001
-    name: translate-this-tam-zul
-    reference: Translate this from X to Y (Tamil into Zulu)
-  c0ba5208-7733-40fd-bd21-bd707c0dd4cf: !Template
+    name: flores-xglm-Telugu-Latin American Spanish
+    reference: 'L1: [sent1] = L2: [sent2]'
+  c86cf5aa-e460-49af-b834-c1bccda3a51e: !Template
     answer_choices: null
-    id: c0ba5208-7733-40fd-bd21-bd707c0dd4cf
-    jinja: 'Translate this from Lingala into Wolof: {{ sentence_lin }} ||| {{ sentence_wol
-      }}'
+    id: c86cf5aa-e460-49af-b834-c1bccda3a51e
+    jinja: 'Telugu: {{ sentence_tel }} = Assamese: ||| {{ sentence_asm }}'
     metadata: *id001
-    name: translate-this-lin-wol
-    reference: Translate this from X to Y (Lingala into Wolof)
-  c0c07e77-fe99-437f-84de-452a9cdac57d: !Template
+    name: flores-xglm-Telugu-Assamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  c8a52196-1e62-48f5-b17f-af0e3e6e2e59: !Template
     answer_choices: null
-    id: c0c07e77-fe99-437f-84de-452a9cdac57d
-    jinja: 'Translate this from Marathi into Xhosa: {{ sentence_mar }} ||| {{ sentence_xho
+    id: c8a52196-1e62-48f5-b17f-af0e3e6e2e59
+    jinja: 'Vietnamese: {{ sentence_vie }} = traditional Chinese: ||| {{ sentence_zho_trad
       }}'
     metadata: *id001
-    name: translate-this-mar-xho
-    reference: Translate this from X to Y (Marathi into Xhosa)
-  c131c852-ed64-43ac-8e5d-52012e58ade1: !Template
-    answer_choices: null
-    id: c131c852-ed64-43ac-8e5d-52012e58ade1
-    jinja: 'Translate this from Indonesian into Yoruba: {{ sentence_ind }} ||| {{
-      sentence_yor }}'
-    metadata: *id001
-    name: translate-this-ind-yor
-    reference: Translate this from X to Y (Indonesian into Yoruba)
-  c1c59337-73e7-40b5-aae0-e323df1bcee8: !Template
+    name: flores-xglm-Vietnamese-traditional Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  c8d4b036-29e8-437e-a703-908acd7e421c: !Template
     answer_choices: null
-    id: c1c59337-73e7-40b5-aae0-e323df1bcee8
-    jinja: 'Translate this from Xhosa into Gujarati: {{ sentence_xho }} ||| {{ sentence_guj
+    id: c8d4b036-29e8-437e-a703-908acd7e421c
+    jinja: 'Swahili: {{ sentence_swh }} = traditional Chinese: ||| {{ sentence_zho_trad
       }}'
     metadata: *id001
-    name: translate-this-xho-guj
-    reference: Translate this from X to Y (Xhosa into Gujarati)
-  c1dfaa04-fcda-48ce-a733-2659deadcc27: !Template
+    name: flores-xglm-Swahili-traditional Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  c9251291-08f6-4df3-a138-d2a750fb435f: !Template
     answer_choices: null
-    id: c1dfaa04-fcda-48ce-a733-2659deadcc27
-    jinja: 'Translate this from Gujarati into traditional Chinese: {{ sentence_guj
-      }} ||| {{ sentence_zho_trad }}'
+    id: c9251291-08f6-4df3-a138-d2a750fb435f
+    jinja: 'Swahili: {{ sentence_swh }} = Assamese: ||| {{ sentence_asm }}'
     metadata: *id001
-    name: translate-this-guj-zho_trad
-    reference: Translate this from X to Y (Gujarati into traditional Chinese)
-  c1ea19bd-c454-4438-a435-867fbcfe6c04: !Template
+    name: flores-xglm-Swahili-Assamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  c9583cfa-d01b-4a9c-98d9-54c93e30e76d: !Template
     answer_choices: null
-    id: c1ea19bd-c454-4438-a435-867fbcfe6c04
-    jinja: 'Translate this from Assamese into Zulu: {{ sentence_asm }} ||| {{ sentence_zul
-      }}'
+    id: c9583cfa-d01b-4a9c-98d9-54c93e30e76d
+    jinja: 'Bengali: {{ sentence_ben }} = Lingala: ||| {{ sentence_lin }}'
     metadata: *id001
-    name: translate-this-asm-zul
-    reference: Translate this from X to Y (Assamese into Zulu)
-  c23b192d-c372-47c0-8ceb-b405d74dd1d2: !Template
+    name: flores-xglm-Bengali-Lingala
+    reference: 'L1: [sent1] = L2: [sent2]'
+  c99118cb-a71a-46c3-bce2-f4957c5c1395: !Template
     answer_choices: null
-    id: c23b192d-c372-47c0-8ceb-b405d74dd1d2
-    jinja: 'Translate this from traditional Chinese into Latin American Spanish: {{
-      sentence_zho_trad }} ||| {{ sentence_spa }}'
+    id: c99118cb-a71a-46c3-bce2-f4957c5c1395
+    jinja: 'Catalan: {{ sentence_cat }} = Arabic: ||| {{ sentence_ara }}'
     metadata: *id001
-    name: translate-this-zho_trad-spa
-    reference: Translate this from X to Y (traditional Chinese into Latin American
-      Spanish)
-  c25c6168-677d-408b-9f5f-c579361cfab7: !Template
+    name: flores-xglm-Catalan-Arabic
+    reference: 'L1: [sent1] = L2: [sent2]'
+  c9c0144f-6dd5-4d5d-9de9-1776dfa82db6: !Template
     answer_choices: null
-    id: c25c6168-677d-408b-9f5f-c579361cfab7
-    jinja: 'Translate this from Arabic into Vietnamese: {{ sentence_ara }} ||| {{
-      sentence_vie }}'
+    id: c9c0144f-6dd5-4d5d-9de9-1776dfa82db6
+    jinja: 'Kannada: {{ sentence_kan }} = French: ||| {{ sentence_fra }}'
     metadata: *id001
-    name: translate-this-ara-vie
-    reference: Translate this from X to Y (Arabic into Vietnamese)
-  c260c082-9689-42f7-af49-d218d9524f86: !Template
+    name: flores-xglm-Kannada-French
+    reference: 'L1: [sent1] = L2: [sent2]'
+  ca132ddf-c297-443d-abd0-4396738c6718: !Template
     answer_choices: null
-    id: c260c082-9689-42f7-af49-d218d9524f86
-    jinja: 'Translate this from Gujarati into Brazilian Portuguese: {{ sentence_guj
-      }} ||| {{ sentence_por }}'
+    id: ca132ddf-c297-443d-abd0-4396738c6718
+    jinja: 'Hindi: {{ sentence_hin }} = Swahili: ||| {{ sentence_swh }}'
     metadata: *id001
-    name: translate-this-guj-por
-    reference: Translate this from X to Y (Gujarati into Brazilian Portuguese)
-  c2959c4d-fcc2-410c-8f19-155efc95dd08: !Template
+    name: flores-xglm-Hindi-Swahili
+    reference: 'L1: [sent1] = L2: [sent2]'
+  ca4d6352-fcce-4f62-a378-d9071ccf070f: !Template
     answer_choices: null
-    id: c2959c4d-fcc2-410c-8f19-155efc95dd08
-    jinja: 'Translate this from French into Gujarati: {{ sentence_fra }} ||| {{ sentence_guj
-      }}'
+    id: ca4d6352-fcce-4f62-a378-d9071ccf070f
+    jinja: 'Telugu: {{ sentence_tel }} = Tamil: ||| {{ sentence_tam }}'
     metadata: *id001
-    name: translate-this-fra-guj
-    reference: Translate this from X to Y (French into Gujarati)
-  c2ba86d4-8567-41c8-b7c6-b1d87ac673b1: !Template
+    name: flores-xglm-Telugu-Tamil
+    reference: 'L1: [sent1] = L2: [sent2]'
+  ca50c6c0-8147-4020-bbb9-764a3145687f: !Template
     answer_choices: null
-    id: c2ba86d4-8567-41c8-b7c6-b1d87ac673b1
-    jinja: 'Translate this from Igbo into simplified Chinese: {{ sentence_ibo }} |||
-      {{ sentence_zho_simpl }}'
+    id: ca50c6c0-8147-4020-bbb9-764a3145687f
+    jinja: 'Northern Sotho: {{ sentence_nso }} = Malayalam: ||| {{ sentence_mal }}'
     metadata: *id001
-    name: translate-this-ibo-zho_simpl
-    reference: Translate this from X to Y (Igbo into simplified Chinese)
-  c2c5fa4c-2686-47c9-9076-6e303938bc1a: !Template
+    name: flores-xglm-Northern Sotho-Malayalam
+    reference: 'L1: [sent1] = L2: [sent2]'
+  ca564df0-ebbd-422d-8f76-0389ee997df4: !Template
     answer_choices: null
-    id: c2c5fa4c-2686-47c9-9076-6e303938bc1a
-    jinja: 'Translate this from Brazilian Portuguese into Malayalam: {{ sentence_por
-      }} ||| {{ sentence_mal }}'
+    id: ca564df0-ebbd-422d-8f76-0389ee997df4
+    jinja: 'Zulu: {{ sentence_zul }} = Punjabi: ||| {{ sentence_pan }}'
     metadata: *id001
-    name: translate-this-por-mal
-    reference: Translate this from X to Y (Brazilian Portuguese into Malayalam)
-  c310580b-91e2-45e3-b19b-3bad9c4f45bf: !Template
+    name: flores-xglm-Zulu-Punjabi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  ca5e301c-9d97-4e16-b3ef-2136af92275e: !Template
     answer_choices: null
-    id: c310580b-91e2-45e3-b19b-3bad9c4f45bf
-    jinja: 'Translate this from Urdu into Igbo: {{ sentence_urd }} ||| {{ sentence_ibo
-      }}'
+    id: ca5e301c-9d97-4e16-b3ef-2136af92275e
+    jinja: 'Igbo: {{ sentence_ibo }} = Hindi: ||| {{ sentence_hin }}'
     metadata: *id001
-    name: translate-this-urd-ibo
-    reference: Translate this from X to Y (Urdu into Igbo)
-  c327f28f-64e6-4a5b-996e-f3cbc977d080: !Template
+    name: flores-xglm-Igbo-Hindi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  cac9573d-8698-434b-9490-3bca899eeec3: !Template
     answer_choices: null
-    id: c327f28f-64e6-4a5b-996e-f3cbc977d080
-    jinja: 'Translate this from Vietnamese into Assamese: {{ sentence_vie }} ||| {{
-      sentence_asm }}'
-    metadata: *id001
-    name: translate-this-vie-asm
-    reference: Translate this from X to Y (Vietnamese into Assamese)
-  c372c109-8494-485c-8e10-fedbc7ad7f14: !Template
-    answer_choices: null
-    id: c372c109-8494-485c-8e10-fedbc7ad7f14
-    jinja: 'Translate this from Arabic into Gujarati: {{ sentence_ara }} ||| {{ sentence_guj
+    id: cac9573d-8698-434b-9490-3bca899eeec3
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Telugu: ||| {{ sentence_tel
       }}'
     metadata: *id001
-    name: translate-this-ara-guj
-    reference: Translate this from X to Y (Arabic into Gujarati)
-  c3826bed-1888-4a92-a2d0-2f2f4e2ac025: !Template
+    name: flores-xglm-simplified Chinese-Telugu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  cad501f1-5c57-46af-9795-2c7fb2430b06: !Template
     answer_choices: null
-    id: c3826bed-1888-4a92-a2d0-2f2f4e2ac025
-    jinja: 'Translate this from Xhosa into Latin American Spanish: {{ sentence_xho
-      }} ||| {{ sentence_spa }}'
+    id: cad501f1-5c57-46af-9795-2c7fb2430b06
+    jinja: 'Oriya: {{ sentence_ory }} = Indonesian: ||| {{ sentence_ind }}'
     metadata: *id001
-    name: translate-this-xho-spa
-    reference: Translate this from X to Y (Xhosa into Latin American Spanish)
-  c3a8368e-f278-4c3e-90f2-f2b125b68b38: !Template
+    name: flores-xglm-Oriya-Indonesian
+    reference: 'L1: [sent1] = L2: [sent2]'
+  caff2fbe-56ce-4085-b616-faa27d8f9f66: !Template
     answer_choices: null
-    id: c3a8368e-f278-4c3e-90f2-f2b125b68b38
-    jinja: 'Translate this from traditional Chinese into Swahili: {{ sentence_zho_trad
-      }} ||| {{ sentence_swh }}'
+    id: caff2fbe-56ce-4085-b616-faa27d8f9f66
+    jinja: 'Arabic: {{ sentence_ara }} = Northern Sotho: ||| {{ sentence_nso }}'
     metadata: *id001
-    name: translate-this-zho_trad-swh
-    reference: Translate this from X to Y (traditional Chinese into Swahili)
-  c3c80ccb-6059-41af-a900-ca07b521f72d: !Template
+    name: flores-xglm-Arabic-Northern Sotho
+    reference: 'L1: [sent1] = L2: [sent2]'
+  cb554b66-0633-48cf-94e2-61f13653ed40: !Template
     answer_choices: null
-    id: c3c80ccb-6059-41af-a900-ca07b521f72d
-    jinja: 'Translate this from Gujarati into Assamese: {{ sentence_guj }} ||| {{
-      sentence_asm }}'
+    id: cb554b66-0633-48cf-94e2-61f13653ed40
+    jinja: 'Zulu: {{ sentence_zul }} = Arabic: ||| {{ sentence_ara }}'
     metadata: *id001
-    name: translate-this-guj-asm
-    reference: Translate this from X to Y (Gujarati into Assamese)
-  c3c82f0b-48c7-4534-934e-ca0a584889f3: !Template
+    name: flores-xglm-Zulu-Arabic
+    reference: 'L1: [sent1] = L2: [sent2]'
+  cb8d6b5e-5549-45e8-a2e4-d02918c3fec7: !Template
     answer_choices: null
-    id: c3c82f0b-48c7-4534-934e-ca0a584889f3
-    jinja: 'Translate this from Malayalam into Northern Sotho: {{ sentence_mal }}
-      ||| {{ sentence_nso }}'
+    id: cb8d6b5e-5549-45e8-a2e4-d02918c3fec7
+    jinja: 'Malayalam: {{ sentence_mal }} = Kannada: ||| {{ sentence_kan }}'
     metadata: *id001
-    name: translate-this-mal-nso
-    reference: Translate this from X to Y (Malayalam into Northern Sotho)
-  c519158a-47fd-4a94-b57a-75ff43e81fc1: !Template
+    name: flores-xglm-Malayalam-Kannada
+    reference: 'L1: [sent1] = L2: [sent2]'
+  cbb5915f-1db1-4ef2-ba61-5e35c0eaa842: !Template
     answer_choices: null
-    id: c519158a-47fd-4a94-b57a-75ff43e81fc1
-    jinja: 'Translate this from Brazilian Portuguese into Yoruba: {{ sentence_por
-      }} ||| {{ sentence_yor }}'
+    id: cbb5915f-1db1-4ef2-ba61-5e35c0eaa842
+    jinja: 'Xhosa: {{ sentence_xho }} = Brazilian Portuguese: ||| {{ sentence_por
+      }}'
     metadata: *id001
-    name: translate-this-por-yor
-    reference: Translate this from X to Y (Brazilian Portuguese into Yoruba)
-  c51f0a49-45e4-45cf-a463-7b33dd8e6164: !Template
+    name: flores-xglm-Xhosa-Brazilian Portuguese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  cca787db-34e9-4cdf-a881-b15994ef7c0f: !Template
     answer_choices: null
-    id: c51f0a49-45e4-45cf-a463-7b33dd8e6164
-    jinja: 'Translate this from Urdu into Kannada: {{ sentence_urd }} ||| {{ sentence_kan
+    id: cca787db-34e9-4cdf-a881-b15994ef7c0f
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Yoruba: ||| {{ sentence_yor
       }}'
     metadata: *id001
-    name: translate-this-urd-kan
-    reference: Translate this from X to Y (Urdu into Kannada)
-  c5961da3-479a-4171-b157-b6de90da3ae0: !Template
+    name: flores-xglm-traditional Chinese-Yoruba
+    reference: 'L1: [sent1] = L2: [sent2]'
+  cd2bafe9-82fc-4bdd-b1e4-a1d4755faa7b: !Template
     answer_choices: null
-    id: c5961da3-479a-4171-b157-b6de90da3ae0
-    jinja: 'Translate this from Bengali into Latin American Spanish: {{ sentence_ben
-      }} ||| {{ sentence_spa }}'
+    id: cd2bafe9-82fc-4bdd-b1e4-a1d4755faa7b
+    jinja: 'Catalan: {{ sentence_cat }} = Xhosa: ||| {{ sentence_xho }}'
     metadata: *id001
-    name: translate-this-ben-spa
-    reference: Translate this from X to Y (Bengali into Latin American Spanish)
-  c59dcc4c-1664-4fe9-8f8d-f35ab4149e0b: !Template
+    name: flores-xglm-Catalan-Xhosa
+    reference: 'L1: [sent1] = L2: [sent2]'
+  cd351125-4f48-4c50-b6e3-7daf62e4ea78: !Template
     answer_choices: null
-    id: c59dcc4c-1664-4fe9-8f8d-f35ab4149e0b
-    jinja: 'Translate this from Yoruba into Assamese: {{ sentence_yor }} ||| {{ sentence_asm
-      }}'
+    id: cd351125-4f48-4c50-b6e3-7daf62e4ea78
+    jinja: 'Vietnamese: {{ sentence_vie }} = Hindi: ||| {{ sentence_hin }}'
     metadata: *id001
-    name: translate-this-yor-asm
-    reference: Translate this from X to Y (Yoruba into Assamese)
-  c5f32375-f718-46c1-bd77-92ce34361bac: !Template
+    name: flores-xglm-Vietnamese-Hindi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  cd72cc59-8bac-44a8-a55f-5bdb1c575201: !Template
     answer_choices: null
-    id: c5f32375-f718-46c1-bd77-92ce34361bac
-    jinja: 'Translate this from Punjabi into Hindi: {{ sentence_pan }} ||| {{ sentence_hin
-      }}'
+    id: cd72cc59-8bac-44a8-a55f-5bdb1c575201
+    jinja: 'Marathi: {{ sentence_mar }} = Xhosa: ||| {{ sentence_xho }}'
     metadata: *id001
-    name: translate-this-pan-hin
-    reference: Translate this from X to Y (Punjabi into Hindi)
-  c5f55a7f-f414-46f9-a747-e8dbf048d7c5: !Template
+    name: flores-xglm-Marathi-Xhosa
+    reference: 'L1: [sent1] = L2: [sent2]'
+  cd95d6b6-b02f-488e-bfe9-c9f0ae612cae: !Template
     answer_choices: null
-    id: c5f55a7f-f414-46f9-a747-e8dbf048d7c5
-    jinja: 'Translate this from Xhosa into Assamese: {{ sentence_xho }} ||| {{ sentence_asm
+    id: cd95d6b6-b02f-488e-bfe9-c9f0ae612cae
+    jinja: 'Indonesian: {{ sentence_ind }} = simplified Chinese: ||| {{ sentence_zho_simpl
       }}'
     metadata: *id001
-    name: translate-this-xho-asm
-    reference: Translate this from X to Y (Xhosa into Assamese)
-  c64f0476-79f3-44ce-aa6b-63f7ebcee2b9: !Template
+    name: flores-xglm-Indonesian-simplified Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  cdab7d5a-fde6-4689-94da-abd684807c50: !Template
     answer_choices: null
-    id: c64f0476-79f3-44ce-aa6b-63f7ebcee2b9
-    jinja: 'Translate this from Latin American Spanish into Tamil: {{ sentence_spa
-      }} ||| {{ sentence_tam }}'
+    id: cdab7d5a-fde6-4689-94da-abd684807c50
+    jinja: 'Hindi: {{ sentence_hin }} = Igbo: ||| {{ sentence_ibo }}'
     metadata: *id001
-    name: translate-this-spa-tam
-    reference: Translate this from X to Y (Latin American Spanish into Tamil)
-  c6c39b25-cd11-4490-b617-16099d1b1ec0: !Template
+    name: flores-xglm-Hindi-Igbo
+    reference: 'L1: [sent1] = L2: [sent2]'
+  cdf6de82-1895-494f-aaea-4c140f57e6c2: !Template
     answer_choices: null
-    id: c6c39b25-cd11-4490-b617-16099d1b1ec0
-    jinja: 'Translate this from Wolof into Telugu: {{ sentence_wol }} ||| {{ sentence_tel
-      }}'
+    id: cdf6de82-1895-494f-aaea-4c140f57e6c2
+    jinja: 'Assamese: {{ sentence_asm }} = Oriya: ||| {{ sentence_ory }}'
     metadata: *id001
-    name: translate-this-wol-tel
-    reference: Translate this from X to Y (Wolof into Telugu)
-  c6cd32aa-7516-4688-899b-0c09defabed1: !Template
+    name: flores-xglm-Assamese-Oriya
+    reference: 'L1: [sent1] = L2: [sent2]'
+  ce3bd594-44cb-4ad8-90d5-704e143f5135: !Template
     answer_choices: null
-    id: c6cd32aa-7516-4688-899b-0c09defabed1
-    jinja: 'Translate this from French into Catalan: {{ sentence_fra }} ||| {{ sentence_cat
-      }}'
+    id: ce3bd594-44cb-4ad8-90d5-704e143f5135
+    jinja: 'Hindi: {{ sentence_hin }} = Kannada: ||| {{ sentence_kan }}'
     metadata: *id001
-    name: translate-this-fra-cat
-    reference: Translate this from X to Y (French into Catalan)
-  c72cdc58-8dd5-4c0e-a296-a0f58a1acb61: !Template
+    name: flores-xglm-Hindi-Kannada
+    reference: 'L1: [sent1] = L2: [sent2]'
+  ce72b471-ecfc-400a-a937-e39434a1055e: !Template
     answer_choices: null
-    id: c72cdc58-8dd5-4c0e-a296-a0f58a1acb61
-    jinja: 'Translate this from Bengali into Malayalam: {{ sentence_ben }} ||| {{
-      sentence_mal }}'
+    id: ce72b471-ecfc-400a-a937-e39434a1055e
+    jinja: 'Swahili: {{ sentence_swh }} = Malayalam: ||| {{ sentence_mal }}'
     metadata: *id001
-    name: translate-this-ben-mal
-    reference: Translate this from X to Y (Bengali into Malayalam)
-  c7807104-8119-4534-835c-65c2279fee48: !Template
+    name: flores-xglm-Swahili-Malayalam
+    reference: 'L1: [sent1] = L2: [sent2]'
+  ce7efe6c-7a14-44b1-aeb3-9bf8c89bb3e7: !Template
     answer_choices: null
-    id: c7807104-8119-4534-835c-65c2279fee48
-    jinja: 'Translate this from traditional Chinese into Xhosa: {{ sentence_zho_trad
-      }} ||| {{ sentence_xho }}'
+    id: ce7efe6c-7a14-44b1-aeb3-9bf8c89bb3e7
+    jinja: 'Wolof: {{ sentence_wol }} = Hindi: ||| {{ sentence_hin }}'
     metadata: *id001
-    name: translate-this-zho_trad-xho
-    reference: Translate this from X to Y (traditional Chinese into Xhosa)
-  c8382594-eb6e-4ff0-8e19-6025489a7aee: !Template
+    name: flores-xglm-Wolof-Hindi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  ce8442ed-09b5-4835-b86c-c31dd007a0dc: !Template
     answer_choices: null
-    id: c8382594-eb6e-4ff0-8e19-6025489a7aee
-    jinja: 'Translate this from traditional Chinese into Gujarati: {{ sentence_zho_trad
-      }} ||| {{ sentence_guj }}'
+    id: ce8442ed-09b5-4835-b86c-c31dd007a0dc
+    jinja: 'French: {{ sentence_fra }} = Tamil: ||| {{ sentence_tam }}'
     metadata: *id001
-    name: translate-this-zho_trad-guj
-    reference: Translate this from X to Y (traditional Chinese into Gujarati)
-  c8f6a2e0-e634-457b-a3da-f80291a14cc9: !Template
+    name: flores-xglm-French-Tamil
+    reference: 'L1: [sent1] = L2: [sent2]'
+  d0214a2f-c77a-4b05-a725-fb261a2e6d58: !Template
     answer_choices: null
-    id: c8f6a2e0-e634-457b-a3da-f80291a14cc9
-    jinja: 'Translate this from Bengali into traditional Chinese: {{ sentence_ben
-      }} ||| {{ sentence_zho_trad }}'
+    id: d0214a2f-c77a-4b05-a725-fb261a2e6d58
+    jinja: 'Vietnamese: {{ sentence_vie }} = Bengali: ||| {{ sentence_ben }}'
     metadata: *id001
-    name: translate-this-ben-zho_trad
-    reference: Translate this from X to Y (Bengali into traditional Chinese)
-  c8fdc7d3-3380-46c5-91f8-318ac5944059: !Template
+    name: flores-xglm-Vietnamese-Bengali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  d0696951-346d-4c60-884b-aae344fcaf48: !Template
     answer_choices: null
-    id: c8fdc7d3-3380-46c5-91f8-318ac5944059
-    jinja: 'Translate this from Vietnamese into Swahili: {{ sentence_vie }} ||| {{
-      sentence_swh }}'
+    id: d0696951-346d-4c60-884b-aae344fcaf48
+    jinja: 'Xhosa: {{ sentence_xho }} = Kannada: ||| {{ sentence_kan }}'
     metadata: *id001
-    name: translate-this-vie-swh
-    reference: Translate this from X to Y (Vietnamese into Swahili)
-  c94984a4-eeec-488e-821a-799b3004e0e0: !Template
+    name: flores-xglm-Xhosa-Kannada
+    reference: 'L1: [sent1] = L2: [sent2]'
+  d0f0f9d7-1fc5-496c-829f-9b2b88b7b139: !Template
     answer_choices: null
-    id: c94984a4-eeec-488e-821a-799b3004e0e0
-    jinja: 'Translate this from Xhosa into French: {{ sentence_xho }} ||| {{ sentence_fra
+    id: d0f0f9d7-1fc5-496c-829f-9b2b88b7b139
+    jinja: 'Assamese: {{ sentence_asm }} = simplified Chinese: ||| {{ sentence_zho_simpl
       }}'
     metadata: *id001
-    name: translate-this-xho-fra
-    reference: Translate this from X to Y (Xhosa into French)
-  c962e86b-42b4-468f-a015-780f6298d6be: !Template
+    name: flores-xglm-Assamese-simplified Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  d101bb4f-bcba-4dac-b91e-b5970d0b2061: !Template
     answer_choices: null
-    id: c962e86b-42b4-468f-a015-780f6298d6be
-    jinja: 'Translate this from Nepali into Xhosa: {{ sentence_npi }} ||| {{ sentence_xho
-      }}'
+    id: d101bb4f-bcba-4dac-b91e-b5970d0b2061
+    jinja: 'English: {{ sentence_eng }} = Tamil: ||| {{ sentence_tam }}'
     metadata: *id001
-    name: translate-this-npi-xho
-    reference: Translate this from X to Y (Nepali into Xhosa)
-  ca09537b-eafb-44af-be91-fc80435a98ee: !Template
+    name: flores-xglm-English-Tamil
+    reference: 'L1: [sent1] = L2: [sent2]'
+  d122728e-fc76-45c2-b830-1dd436c485fb: !Template
     answer_choices: null
-    id: ca09537b-eafb-44af-be91-fc80435a98ee
-    jinja: 'Translate this from Tamil into Vietnamese: {{ sentence_tam }} ||| {{ sentence_vie
-      }}'
+    id: d122728e-fc76-45c2-b830-1dd436c485fb
+    jinja: 'Urdu: {{ sentence_urd }} = Assamese: ||| {{ sentence_asm }}'
     metadata: *id001
-    name: translate-this-tam-vie
-    reference: Translate this from X to Y (Tamil into Vietnamese)
-  ca0a95d3-2e34-4ad3-8ece-c13c1809200d: !Template
+    name: flores-xglm-Urdu-Assamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  d1282cc0-00f7-4536-ad31-c6d35c4eba61: !Template
     answer_choices: null
-    id: ca0a95d3-2e34-4ad3-8ece-c13c1809200d
-    jinja: 'Translate this from Tamil into Marathi: {{ sentence_tam }} ||| {{ sentence_mar
-      }}'
+    id: d1282cc0-00f7-4536-ad31-c6d35c4eba61
+    jinja: 'Assamese: {{ sentence_asm }} = Nepali: ||| {{ sentence_npi }}'
     metadata: *id001
-    name: translate-this-tam-mar
-    reference: Translate this from X to Y (Tamil into Marathi)
-  ca4d4fbb-d705-439c-a2f6-2adc80dd9f1b: !Template
+    name: flores-xglm-Assamese-Nepali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  d12a04ae-5a7e-460a-8d40-7ad18a192c82: !Template
     answer_choices: null
-    id: ca4d4fbb-d705-439c-a2f6-2adc80dd9f1b
-    jinja: 'Translate this from Oriya into French: {{ sentence_ory }} ||| {{ sentence_fra
+    id: d12a04ae-5a7e-460a-8d40-7ad18a192c82
+    jinja: 'Nepali: {{ sentence_npi }} = simplified Chinese: ||| {{ sentence_zho_simpl
       }}'
     metadata: *id001
-    name: translate-this-ory-fra
-    reference: Translate this from X to Y (Oriya into French)
-  ca593aef-eecd-4959-be8a-35d8c8cb0865: !Template
+    name: flores-xglm-Nepali-simplified Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  d1a20b16-7d57-4480-9abe-44f06978c7ff: !Template
     answer_choices: null
-    id: ca593aef-eecd-4959-be8a-35d8c8cb0865
-    jinja: 'Translate this from Latin American Spanish into Northern Sotho: {{ sentence_spa
-      }} ||| {{ sentence_nso }}'
+    id: d1a20b16-7d57-4480-9abe-44f06978c7ff
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Igbo: ||| {{ sentence_ibo }}'
     metadata: *id001
-    name: translate-this-spa-nso
-    reference: Translate this from X to Y (Latin American Spanish into Northern Sotho)
-  cab3b3b5-836f-4cbe-a8a9-c2efb2d32857: !Template
+    name: flores-xglm-Brazilian Portuguese-Igbo
+    reference: 'L1: [sent1] = L2: [sent2]'
+  d1bb7739-3b86-460b-9ef6-487110caa651: !Template
     answer_choices: null
-    id: cab3b3b5-836f-4cbe-a8a9-c2efb2d32857
-    jinja: 'Translate this from Tamil into Yoruba: {{ sentence_tam }} ||| {{ sentence_yor
+    id: d1bb7739-3b86-460b-9ef6-487110caa651
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Arabic: ||| {{ sentence_ara
       }}'
     metadata: *id001
-    name: translate-this-tam-yor
-    reference: Translate this from X to Y (Tamil into Yoruba)
-  cb53ec5b-bec5-4430-bb53-4a17e31a61dc: !Template
+    name: flores-xglm-simplified Chinese-Arabic
+    reference: 'L1: [sent1] = L2: [sent2]'
+  d1bf1582-b3f4-4a2d-9656-07b7fc213818: !Template
     answer_choices: null
-    id: cb53ec5b-bec5-4430-bb53-4a17e31a61dc
-    jinja: 'Translate this from English into French: {{ sentence_eng }} ||| {{ sentence_fra
+    id: d1bf1582-b3f4-4a2d-9656-07b7fc213818
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Zulu: ||| {{ sentence_zul
       }}'
     metadata: *id001
-    name: translate-this-eng-fra
-    reference: Translate this from X to Y (English into French)
-  cb5af6ef-6288-479f-a677-1f6c30c13a0e: !Template
+    name: flores-xglm-traditional Chinese-Zulu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  d2274b43-598d-4870-b172-ebc9619cf46c: !Template
     answer_choices: null
-    id: cb5af6ef-6288-479f-a677-1f6c30c13a0e
-    jinja: 'Translate this from traditional Chinese into Northern Sotho: {{ sentence_zho_trad
-      }} ||| {{ sentence_nso }}'
+    id: d2274b43-598d-4870-b172-ebc9619cf46c
+    jinja: 'Xhosa: {{ sentence_xho }} = Marathi: ||| {{ sentence_mar }}'
     metadata: *id001
-    name: translate-this-zho_trad-nso
-    reference: Translate this from X to Y (traditional Chinese into Northern Sotho)
-  cba4e425-5bbd-4378-8fb1-4e4a2c5b237b: !Template
+    name: flores-xglm-Xhosa-Marathi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  d24f3309-47f1-4c1a-853a-f890ef0a7ec7: !Template
     answer_choices: null
-    id: cba4e425-5bbd-4378-8fb1-4e4a2c5b237b
-    jinja: 'Translate this from Indonesian into English: {{ sentence_ind }} ||| {{
-      sentence_eng }}'
+    id: d24f3309-47f1-4c1a-853a-f890ef0a7ec7
+    jinja: 'Tamil: {{ sentence_tam }} = Urdu: ||| {{ sentence_urd }}'
     metadata: *id001
-    name: translate-this-ind-eng
-    reference: Translate this from X to Y (Indonesian into English)
-  cc4a4901-77d0-4b93-aa16-9d9065d563e2: !Template
+    name: flores-xglm-Tamil-Urdu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  d2c82584-f5a8-40cc-9055-aadd94dcae33: !Template
     answer_choices: null
-    id: cc4a4901-77d0-4b93-aa16-9d9065d563e2
-    jinja: 'Translate this from Gujarati into Vietnamese: {{ sentence_guj }} ||| {{
-      sentence_vie }}'
+    id: d2c82584-f5a8-40cc-9055-aadd94dcae33
+    jinja: 'Kannada: {{ sentence_kan }} = Bengali: ||| {{ sentence_ben }}'
     metadata: *id001
-    name: translate-this-guj-vie
-    reference: Translate this from X to Y (Gujarati into Vietnamese)
-  cc72107a-3ac1-4f29-9267-f870c2be97ac: !Template
+    name: flores-xglm-Kannada-Bengali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  d34a660d-88fe-4041-8670-851d6bc09fce: !Template
     answer_choices: null
-    id: cc72107a-3ac1-4f29-9267-f870c2be97ac
-    jinja: 'Translate this from Malayalam into Vietnamese: {{ sentence_mal }} |||
-      {{ sentence_vie }}'
+    id: d34a660d-88fe-4041-8670-851d6bc09fce
+    jinja: 'Wolof: {{ sentence_wol }} = Northern Sotho: ||| {{ sentence_nso }}'
     metadata: *id001
-    name: translate-this-mal-vie
-    reference: Translate this from X to Y (Malayalam into Vietnamese)
-  cd0996dd-0a80-4a20-bfa1-4108281b4f06: !Template
+    name: flores-xglm-Wolof-Northern Sotho
+    reference: 'L1: [sent1] = L2: [sent2]'
+  d388ffcd-a737-442d-9293-5bfde771ad48: !Template
     answer_choices: null
-    id: cd0996dd-0a80-4a20-bfa1-4108281b4f06
-    jinja: 'Translate this from Nepali into Assamese: {{ sentence_npi }} ||| {{ sentence_asm
+    id: d388ffcd-a737-442d-9293-5bfde771ad48
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = English: ||| {{ sentence_eng
       }}'
     metadata: *id001
-    name: translate-this-npi-asm
-    reference: Translate this from X to Y (Nepali into Assamese)
-  cd8d86a1-ccac-4391-ada5-d3491aead13b: !Template
+    name: flores-xglm-simplified Chinese-English
+    reference: 'L1: [sent1] = L2: [sent2]'
+  d4997211-e0eb-4ed1-9c9f-c6501f2c7a65: !Template
     answer_choices: null
-    id: cd8d86a1-ccac-4391-ada5-d3491aead13b
-    jinja: 'Translate this from Oriya into Kannada: {{ sentence_ory }} ||| {{ sentence_kan
-      }}'
+    id: d4997211-e0eb-4ed1-9c9f-c6501f2c7a65
+    jinja: 'Telugu: {{ sentence_tel }} = Vietnamese: ||| {{ sentence_vie }}'
     metadata: *id001
-    name: translate-this-ory-kan
-    reference: Translate this from X to Y (Oriya into Kannada)
-  cde1a300-769c-48fd-9f8b-92ad58540f21: !Template
+    name: flores-xglm-Telugu-Vietnamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  d4c09eef-3047-459f-a81d-b54938e4bb4e: !Template
     answer_choices: null
-    id: cde1a300-769c-48fd-9f8b-92ad58540f21
-    jinja: 'Translate this from Zulu into Kannada: {{ sentence_zul }} ||| {{ sentence_kan
-      }}'
+    id: d4c09eef-3047-459f-a81d-b54938e4bb4e
+    jinja: 'Urdu: {{ sentence_urd }} = Hindi: ||| {{ sentence_hin }}'
     metadata: *id001
-    name: translate-this-zul-kan
-    reference: Translate this from X to Y (Zulu into Kannada)
-  ce3964d8-ef77-4fea-89fc-69375a3ce5b3: !Template
+    name: flores-xglm-Urdu-Hindi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  d4dfd338-24f9-4d64-b8dd-3b1bef229b26: !Template
     answer_choices: null
-    id: ce3964d8-ef77-4fea-89fc-69375a3ce5b3
-    jinja: 'Translate this from traditional Chinese into Kannada: {{ sentence_zho_trad
-      }} ||| {{ sentence_kan }}'
+    id: d4dfd338-24f9-4d64-b8dd-3b1bef229b26
+    jinja: 'Zulu: {{ sentence_zul }} = Hindi: ||| {{ sentence_hin }}'
     metadata: *id001
-    name: translate-this-zho_trad-kan
-    reference: Translate this from X to Y (traditional Chinese into Kannada)
-  cef15a83-8186-478e-bb59-96a0de087d9b: !Template
+    name: flores-xglm-Zulu-Hindi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  d52096c7-63b4-41b4-908c-df8f543ee8ec: !Template
     answer_choices: null
-    id: cef15a83-8186-478e-bb59-96a0de087d9b
-    jinja: 'Translate this from Nepali into traditional Chinese: {{ sentence_npi }}
-      ||| {{ sentence_zho_trad }}'
+    id: d52096c7-63b4-41b4-908c-df8f543ee8ec
+    jinja: 'Punjabi: {{ sentence_pan }} = Catalan: ||| {{ sentence_cat }}'
     metadata: *id001
-    name: translate-this-npi-zho_trad
-    reference: Translate this from X to Y (Nepali into traditional Chinese)
-  cf6ce659-994c-46a0-9d8d-1cadeb996fbc: !Template
+    name: flores-xglm-Punjabi-Catalan
+    reference: 'L1: [sent1] = L2: [sent2]'
+  d5307e04-5188-40f7-b026-611d0aad0053: !Template
     answer_choices: null
-    id: cf6ce659-994c-46a0-9d8d-1cadeb996fbc
-    jinja: 'Translate this from Swahili into Nepali: {{ sentence_swh }} ||| {{ sentence_npi
-      }}'
+    id: d5307e04-5188-40f7-b026-611d0aad0053
+    jinja: 'Swahili: {{ sentence_swh }} = French: ||| {{ sentence_fra }}'
     metadata: *id001
-    name: translate-this-swh-npi
-    reference: Translate this from X to Y (Swahili into Nepali)
-  cfc3b9ab-3954-461f-8f9e-980a39a774d0: !Template
+    name: flores-xglm-Swahili-French
+    reference: 'L1: [sent1] = L2: [sent2]'
+  d57f322f-5845-4366-bcf6-7ed365b7c7b0: !Template
     answer_choices: null
-    id: cfc3b9ab-3954-461f-8f9e-980a39a774d0
-    jinja: 'Translate this from Brazilian Portuguese into Bengali: {{ sentence_por
-      }} ||| {{ sentence_ben }}'
+    id: d57f322f-5845-4366-bcf6-7ed365b7c7b0
+    jinja: 'Wolof: {{ sentence_wol }} = Vietnamese: ||| {{ sentence_vie }}'
     metadata: *id001
-    name: translate-this-por-ben
-    reference: Translate this from X to Y (Brazilian Portuguese into Bengali)
-  cfe9dbe2-49af-4373-b6ff-54a7960aab69: !Template
+    name: flores-xglm-Wolof-Vietnamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  d58bb113-620f-4cf5-8c4d-aa4a30560cc6: !Template
     answer_choices: null
-    id: cfe9dbe2-49af-4373-b6ff-54a7960aab69
-    jinja: 'Translate this from Assamese into Brazilian Portuguese: {{ sentence_asm
-      }} ||| {{ sentence_por }}'
+    id: d58bb113-620f-4cf5-8c4d-aa4a30560cc6
+    jinja: 'Swahili: {{ sentence_swh }} = Bengali: ||| {{ sentence_ben }}'
     metadata: *id001
-    name: translate-this-asm-por
-    reference: Translate this from X to Y (Assamese into Brazilian Portuguese)
-  cff99b27-7527-49be-9c69-41543c5ad989: !Template
+    name: flores-xglm-Swahili-Bengali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  d5902641-49cb-405d-b17e-39acb1b020d8: !Template
     answer_choices: null
-    id: cff99b27-7527-49be-9c69-41543c5ad989
-    jinja: 'Translate this from Lingala into Malayalam: {{ sentence_lin }} ||| {{
-      sentence_mal }}'
+    id: d5902641-49cb-405d-b17e-39acb1b020d8
+    jinja: 'Wolof: {{ sentence_wol }} = Oriya: ||| {{ sentence_ory }}'
     metadata: *id001
-    name: translate-this-lin-mal
-    reference: Translate this from X to Y (Lingala into Malayalam)
-  d039d04c-6b0e-469f-9d45-a81d9efbed27: !Template
+    name: flores-xglm-Wolof-Oriya
+    reference: 'L1: [sent1] = L2: [sent2]'
+  d5da91a5-9866-4e1b-8d7a-fa07494f0e98: !Template
     answer_choices: null
-    id: d039d04c-6b0e-469f-9d45-a81d9efbed27
-    jinja: 'Translate this from Telugu into Bengali: {{ sentence_tel }} ||| {{ sentence_ben
-      }}'
+    id: d5da91a5-9866-4e1b-8d7a-fa07494f0e98
+    jinja: 'Swahili: {{ sentence_swh }} = Wolof: ||| {{ sentence_wol }}'
     metadata: *id001
-    name: translate-this-tel-ben
-    reference: Translate this from X to Y (Telugu into Bengali)
-  d04f7438-7526-4cf4-a95f-16b9ebbcfa6b: !Template
+    name: flores-xglm-Swahili-Wolof
+    reference: 'L1: [sent1] = L2: [sent2]'
+  d600f2b7-0be5-4245-af1b-949bdeb50eea: !Template
     answer_choices: null
-    id: d04f7438-7526-4cf4-a95f-16b9ebbcfa6b
-    jinja: 'Translate this from Brazilian Portuguese into traditional Chinese: {{
-      sentence_por }} ||| {{ sentence_zho_trad }}'
+    id: d600f2b7-0be5-4245-af1b-949bdeb50eea
+    jinja: 'Oriya: {{ sentence_ory }} = Telugu: ||| {{ sentence_tel }}'
     metadata: *id001
-    name: translate-this-por-zho_trad
-    reference: Translate this from X to Y (Brazilian Portuguese into traditional Chinese)
-  d0c1d141-086a-4054-9a54-1026b6e847f2: !Template
+    name: flores-xglm-Oriya-Telugu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  d624466d-6e14-49be-b55e-50a62a35418f: !Template
     answer_choices: null
-    id: d0c1d141-086a-4054-9a54-1026b6e847f2
-    jinja: 'Translate this from Malayalam into English: {{ sentence_mal }} ||| {{
-      sentence_eng }}'
+    id: d624466d-6e14-49be-b55e-50a62a35418f
+    jinja: 'Wolof: {{ sentence_wol }} = Zulu: ||| {{ sentence_zul }}'
     metadata: *id001
-    name: translate-this-mal-eng
-    reference: Translate this from X to Y (Malayalam into English)
-  d0e46f8c-df58-4976-bce6-c81544a3d314: !Template
+    name: flores-xglm-Wolof-Zulu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  d641ccbd-47ff-4c45-b931-2d784133d5f0: !Template
     answer_choices: null
-    id: d0e46f8c-df58-4976-bce6-c81544a3d314
-    jinja: 'Translate this from Indonesian into Assamese: {{ sentence_ind }} ||| {{
-      sentence_asm }}'
+    id: d641ccbd-47ff-4c45-b931-2d784133d5f0
+    jinja: 'Telugu: {{ sentence_tel }} = Punjabi: ||| {{ sentence_pan }}'
     metadata: *id001
-    name: translate-this-ind-asm
-    reference: Translate this from X to Y (Indonesian into Assamese)
-  d1647208-9489-4508-a772-084c2b846184: !Template
+    name: flores-xglm-Telugu-Punjabi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  d7877892-3c42-4743-a0ff-ca3108b0ce12: !Template
     answer_choices: null
-    id: d1647208-9489-4508-a772-084c2b846184
-    jinja: 'Translate this from Igbo into Wolof: {{ sentence_ibo }} ||| {{ sentence_wol
-      }}'
+    id: d7877892-3c42-4743-a0ff-ca3108b0ce12
+    jinja: 'Indonesian: {{ sentence_ind }} = Yoruba: ||| {{ sentence_yor }}'
     metadata: *id001
-    name: translate-this-ibo-wol
-    reference: Translate this from X to Y (Igbo into Wolof)
-  d175ed20-4df7-4ebf-8dad-b7751fed04ae: !Template
+    name: flores-xglm-Indonesian-Yoruba
+    reference: 'L1: [sent1] = L2: [sent2]'
+  d7eb97c2-86d4-4233-9a1f-5363ed1371bd: !Template
     answer_choices: null
-    id: d175ed20-4df7-4ebf-8dad-b7751fed04ae
-    jinja: 'Translate this from Brazilian Portuguese into Arabic: {{ sentence_por
-      }} ||| {{ sentence_ara }}'
+    id: d7eb97c2-86d4-4233-9a1f-5363ed1371bd
+    jinja: 'French: {{ sentence_fra }} = Telugu: ||| {{ sentence_tel }}'
     metadata: *id001
-    name: translate-this-por-ara
-    reference: Translate this from X to Y (Brazilian Portuguese into Arabic)
-  d1e309a5-2f04-43ba-bc9b-6713527e36fd: !Template
+    name: flores-xglm-French-Telugu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  d82e2278-b8be-4136-9830-cd2f31e1636c: !Template
     answer_choices: null
-    id: d1e309a5-2f04-43ba-bc9b-6713527e36fd
-    jinja: 'Translate this from Urdu into Brazilian Portuguese: {{ sentence_urd }}
-      ||| {{ sentence_por }}'
-    metadata: *id001
-    name: translate-this-urd-por
-    reference: Translate this from X to Y (Urdu into Brazilian Portuguese)
-  d33fccc4-b717-45e4-ab01-d047bdf605f9: !Template
-    answer_choices: null
-    id: d33fccc4-b717-45e4-ab01-d047bdf605f9
-    jinja: 'Translate this from Kannada into Tamil: {{ sentence_kan }} ||| {{ sentence_tam
+    id: d82e2278-b8be-4136-9830-cd2f31e1636c
+    jinja: 'Gujarati: {{ sentence_guj }} = Brazilian Portuguese: ||| {{ sentence_por
       }}'
     metadata: *id001
-    name: translate-this-kan-tam
-    reference: Translate this from X to Y (Kannada into Tamil)
-  d34613de-557d-4515-a133-71236412a675: !Template
+    name: flores-xglm-Gujarati-Brazilian Portuguese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  d84e23c7-ca29-40c6-8de3-337ef510ac67: !Template
     answer_choices: null
-    id: d34613de-557d-4515-a133-71236412a675
-    jinja: 'Translate this from English into Wolof: {{ sentence_eng }} ||| {{ sentence_wol
-      }}'
+    id: d84e23c7-ca29-40c6-8de3-337ef510ac67
+    jinja: 'Xhosa: {{ sentence_xho }} = Urdu: ||| {{ sentence_urd }}'
     metadata: *id001
-    name: translate-this-eng-wol
-    reference: Translate this from X to Y (English into Wolof)
-  d352c29c-15d7-40ef-9e53-36fd1943ca06: !Template
+    name: flores-xglm-Xhosa-Urdu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  d8bad12b-b3c2-4be7-80ae-b64597d0ead5: !Template
     answer_choices: null
-    id: d352c29c-15d7-40ef-9e53-36fd1943ca06
-    jinja: 'Translate this from Yoruba into French: {{ sentence_yor }} ||| {{ sentence_fra
-      }}'
+    id: d8bad12b-b3c2-4be7-80ae-b64597d0ead5
+    jinja: 'Kannada: {{ sentence_kan }} = Oriya: ||| {{ sentence_ory }}'
     metadata: *id001
-    name: translate-this-yor-fra
-    reference: Translate this from X to Y (Yoruba into French)
-  d3545c0f-219b-46a5-a002-d89e44d4dea6: !Template
+    name: flores-xglm-Kannada-Oriya
+    reference: 'L1: [sent1] = L2: [sent2]'
+  d8cc9ce9-c1e1-4fd5-a563-2f1d862e4a66: !Template
     answer_choices: null
-    id: d3545c0f-219b-46a5-a002-d89e44d4dea6
-    jinja: 'Translate this from Hindi into Yoruba: {{ sentence_hin }} ||| {{ sentence_yor
-      }}'
+    id: d8cc9ce9-c1e1-4fd5-a563-2f1d862e4a66
+    jinja: 'Bengali: {{ sentence_ben }} = Telugu: ||| {{ sentence_tel }}'
     metadata: *id001
-    name: translate-this-hin-yor
-    reference: Translate this from X to Y (Hindi into Yoruba)
-  d3aaacfe-b839-4a91-abd4-522c597aa41a: !Template
+    name: flores-xglm-Bengali-Telugu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  d90c110b-6ebd-4c44-b369-14766a4326fe: !Template
     answer_choices: null
-    id: d3aaacfe-b839-4a91-abd4-522c597aa41a
-    jinja: 'Translate this from Punjabi into Telugu: {{ sentence_pan }} ||| {{ sentence_tel
-      }}'
+    id: d90c110b-6ebd-4c44-b369-14766a4326fe
+    jinja: 'Lingala: {{ sentence_lin }} = Zulu: ||| {{ sentence_zul }}'
     metadata: *id001
-    name: translate-this-pan-tel
-    reference: Translate this from X to Y (Punjabi into Telugu)
-  d416d67c-2a61-4ca1-beef-7dad32810e6c: !Template
+    name: flores-xglm-Lingala-Zulu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  d9519e26-4ece-4798-893d-b5c9a768ba80: !Template
     answer_choices: null
-    id: d416d67c-2a61-4ca1-beef-7dad32810e6c
-    jinja: 'Translate this from Yoruba into Telugu: {{ sentence_yor }} ||| {{ sentence_tel
+    id: d9519e26-4ece-4798-893d-b5c9a768ba80
+    jinja: 'Tamil: {{ sentence_tam }} = simplified Chinese: ||| {{ sentence_zho_simpl
       }}'
     metadata: *id001
-    name: translate-this-yor-tel
-    reference: Translate this from X to Y (Yoruba into Telugu)
-  d43b8b80-a276-4871-a6a5-e3564dbda2a7: !Template
-    answer_choices: null
-    id: d43b8b80-a276-4871-a6a5-e3564dbda2a7
-    jinja: 'Translate this from English into simplified Chinese: {{ sentence_eng }}
-      ||| {{ sentence_zho_simpl }}'
-    metadata: *id001
-    name: translate-this-eng-zho_simpl
-    reference: Translate this from X to Y (English into simplified Chinese)
-  d4973f86-a372-4611-8cc1-1757a40c54fc: !Template
+    name: flores-xglm-Tamil-simplified Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  d95b9112-04ec-4657-a6e8-f5e81c6683e0: !Template
     answer_choices: null
-    id: d4973f86-a372-4611-8cc1-1757a40c54fc
-    jinja: 'Translate this from Indonesian into Punjabi: {{ sentence_ind }} ||| {{
-      sentence_pan }}'
+    id: d95b9112-04ec-4657-a6e8-f5e81c6683e0
+    jinja: 'Assamese: {{ sentence_asm }} = Malayalam: ||| {{ sentence_mal }}'
     metadata: *id001
-    name: translate-this-ind-pan
-    reference: Translate this from X to Y (Indonesian into Punjabi)
-  d4dea13b-9d50-4485-8e12-43b249475e07: !Template
+    name: flores-xglm-Assamese-Malayalam
+    reference: 'L1: [sent1] = L2: [sent2]'
+  d98cc2c0-0894-43e7-af9b-a48beb6798fc: !Template
     answer_choices: null
-    id: d4dea13b-9d50-4485-8e12-43b249475e07
-    jinja: 'Translate this from Bengali into Telugu: {{ sentence_ben }} ||| {{ sentence_tel
-      }}'
+    id: d98cc2c0-0894-43e7-af9b-a48beb6798fc
+    jinja: 'Tamil: {{ sentence_tam }} = Catalan: ||| {{ sentence_cat }}'
     metadata: *id001
-    name: translate-this-ben-tel
-    reference: Translate this from X to Y (Bengali into Telugu)
-  d515de0d-6845-4668-a7f4-1c379393dc1f: !Template
+    name: flores-xglm-Tamil-Catalan
+    reference: 'L1: [sent1] = L2: [sent2]'
+  d99f2e54-e984-4fdc-af90-62d0d2b4549f: !Template
     answer_choices: null
-    id: d515de0d-6845-4668-a7f4-1c379393dc1f
-    jinja: 'Translate this from Malayalam into Swahili: {{ sentence_mal }} ||| {{
-      sentence_swh }}'
+    id: d99f2e54-e984-4fdc-af90-62d0d2b4549f
+    jinja: 'English: {{ sentence_eng }} = Punjabi: ||| {{ sentence_pan }}'
     metadata: *id001
-    name: translate-this-mal-swh
-    reference: Translate this from X to Y (Malayalam into Swahili)
-  d5404f3f-328a-4fa1-b8f0-f39b25f8f5ef: !Template
+    name: flores-xglm-English-Punjabi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  d9dc18b4-5a9b-4390-a4e1-75375d8a20f0: !Template
     answer_choices: null
-    id: d5404f3f-328a-4fa1-b8f0-f39b25f8f5ef
-    jinja: 'Translate this from Indonesian into Nepali: {{ sentence_ind }} ||| {{
-      sentence_npi }}'
+    id: d9dc18b4-5a9b-4390-a4e1-75375d8a20f0
+    jinja: 'English: {{ sentence_eng }} = Kannada: ||| {{ sentence_kan }}'
     metadata: *id001
-    name: translate-this-ind-npi
-    reference: Translate this from X to Y (Indonesian into Nepali)
-  d598cf6a-1bd3-442e-be70-6ca4eebbec3c: !Template
+    name: flores-xglm-English-Kannada
+    reference: 'L1: [sent1] = L2: [sent2]'
+  da2d5cf0-3203-4707-a74a-3641a221de59: !Template
     answer_choices: null
-    id: d598cf6a-1bd3-442e-be70-6ca4eebbec3c
-    jinja: 'Translate this from Urdu into Xhosa: {{ sentence_urd }} ||| {{ sentence_xho
-      }}'
+    id: da2d5cf0-3203-4707-a74a-3641a221de59
+    jinja: 'Swahili: {{ sentence_swh }} = English: ||| {{ sentence_eng }}'
     metadata: *id001
-    name: translate-this-urd-xho
-    reference: Translate this from X to Y (Urdu into Xhosa)
-  d5e2f83a-e5cf-4d9c-9b14-c73015642676: !Template
+    name: flores-xglm-Swahili-English
+    reference: 'L1: [sent1] = L2: [sent2]'
+  da58501d-ffee-4379-bb46-a0cca8b4a6b5: !Template
     answer_choices: null
-    id: d5e2f83a-e5cf-4d9c-9b14-c73015642676
-    jinja: 'Translate this from traditional Chinese into Bengali: {{ sentence_zho_trad
-      }} ||| {{ sentence_ben }}'
+    id: da58501d-ffee-4379-bb46-a0cca8b4a6b5
+    jinja: 'Arabic: {{ sentence_ara }} = French: ||| {{ sentence_fra }}'
     metadata: *id001
-    name: translate-this-zho_trad-ben
-    reference: Translate this from X to Y (traditional Chinese into Bengali)
-  d640ed31-e1d5-4a53-8e79-ddd660ad0a0b: !Template
+    name: flores-xglm-Arabic-French
+    reference: 'L1: [sent1] = L2: [sent2]'
+  da7d9486-2438-43fa-b270-2d8c82e8a854: !Template
     answer_choices: null
-    id: d640ed31-e1d5-4a53-8e79-ddd660ad0a0b
-    jinja: 'Translate this from Arabic into Punjabi: {{ sentence_ara }} ||| {{ sentence_pan
+    id: da7d9486-2438-43fa-b270-2d8c82e8a854
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Swahili: ||| {{ sentence_swh
       }}'
     metadata: *id001
-    name: translate-this-ara-pan
-    reference: Translate this from X to Y (Arabic into Punjabi)
-  d7356cfc-3c3d-40a2-8aa4-58cb7197f7d4: !Template
+    name: flores-xglm-traditional Chinese-Swahili
+    reference: 'L1: [sent1] = L2: [sent2]'
+  da8199dc-5d79-45e4-aff1-71d7b61328cc: !Template
     answer_choices: null
-    id: d7356cfc-3c3d-40a2-8aa4-58cb7197f7d4
-    jinja: 'Translate this from Brazilian Portuguese into Wolof: {{ sentence_por }}
-      ||| {{ sentence_wol }}'
+    id: da8199dc-5d79-45e4-aff1-71d7b61328cc
+    jinja: 'Telugu: {{ sentence_tel }} = Swahili: ||| {{ sentence_swh }}'
     metadata: *id001
-    name: translate-this-por-wol
-    reference: Translate this from X to Y (Brazilian Portuguese into Wolof)
-  d74e566a-d261-4483-9d7d-5f19aefee2f9: !Template
+    name: flores-xglm-Telugu-Swahili
+    reference: 'L1: [sent1] = L2: [sent2]'
+  daf3715c-df14-45ad-9735-3a737876e991: !Template
     answer_choices: null
-    id: d74e566a-d261-4483-9d7d-5f19aefee2f9
-    jinja: 'Translate this from Marathi into Oriya: {{ sentence_mar }} ||| {{ sentence_ory
+    id: daf3715c-df14-45ad-9735-3a737876e991
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Hindi: ||| {{ sentence_hin
       }}'
     metadata: *id001
-    name: translate-this-mar-ory
-    reference: Translate this from X to Y (Marathi into Oriya)
-  d7756485-333a-4dbe-9f47-5fa8161b0419: !Template
+    name: flores-xglm-traditional Chinese-Hindi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  db94cea4-1846-4156-a4c3-cf6731572628: !Template
     answer_choices: null
-    id: d7756485-333a-4dbe-9f47-5fa8161b0419
-    jinja: 'Translate this from Northern Sotho into Urdu: {{ sentence_nso }} ||| {{
-      sentence_urd }}'
+    id: db94cea4-1846-4156-a4c3-cf6731572628
+    jinja: 'Arabic: {{ sentence_ara }} = Marathi: ||| {{ sentence_mar }}'
     metadata: *id001
-    name: translate-this-nso-urd
-    reference: Translate this from X to Y (Northern Sotho into Urdu)
-  d7b57fd3-581f-4b9c-8027-bfe0fd8ec161: !Template
+    name: flores-xglm-Arabic-Marathi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  dc7eb89c-62a8-4ee3-a85c-bbb5ad3c9df7: !Template
     answer_choices: null
-    id: d7b57fd3-581f-4b9c-8027-bfe0fd8ec161
-    jinja: 'Translate this from Nepali into Oriya: {{ sentence_npi }} ||| {{ sentence_ory
-      }}'
+    id: dc7eb89c-62a8-4ee3-a85c-bbb5ad3c9df7
+    jinja: 'Yoruba: {{ sentence_yor }} = Catalan: ||| {{ sentence_cat }}'
     metadata: *id001
-    name: translate-this-npi-ory
-    reference: Translate this from X to Y (Nepali into Oriya)
-  d7c80564-5d86-4584-9b40-eb5c0dfd2318: !Template
+    name: flores-xglm-Yoruba-Catalan
+    reference: 'L1: [sent1] = L2: [sent2]'
+  dca99999-20c2-43c6-8319-a5a3156e36ee: !Template
     answer_choices: null
-    id: d7c80564-5d86-4584-9b40-eb5c0dfd2318
-    jinja: 'Translate this from Yoruba into Hindi: {{ sentence_yor }} ||| {{ sentence_hin
+    id: dca99999-20c2-43c6-8319-a5a3156e36ee
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Bengali: ||| {{ sentence_ben
       }}'
     metadata: *id001
-    name: translate-this-yor-hin
-    reference: Translate this from X to Y (Yoruba into Hindi)
-  d7cf8e42-ed75-45a8-9cc8-a22323b6f937: !Template
+    name: flores-xglm-Brazilian Portuguese-Bengali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  dcfc4e52-e9e4-4f13-be75-54683a4aa6f8: !Template
     answer_choices: null
-    id: d7cf8e42-ed75-45a8-9cc8-a22323b6f937
-    jinja: 'Translate this from Igbo into Tamil: {{ sentence_ibo }} ||| {{ sentence_tam
+    id: dcfc4e52-e9e4-4f13-be75-54683a4aa6f8
+    jinja: 'Wolof: {{ sentence_wol }} = Brazilian Portuguese: ||| {{ sentence_por
       }}'
     metadata: *id001
-    name: translate-this-ibo-tam
-    reference: Translate this from X to Y (Igbo into Tamil)
-  d84dd9bb-37d8-4e88-9430-7f6c9c0e655c: !Template
+    name: flores-xglm-Wolof-Brazilian Portuguese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  dd1edcf6-a67b-4d6d-921e-e6fca8e82cd9: !Template
     answer_choices: null
-    id: d84dd9bb-37d8-4e88-9430-7f6c9c0e655c
-    jinja: 'Translate this from Igbo into Bengali: {{ sentence_ibo }} ||| {{ sentence_ben
-      }}'
+    id: dd1edcf6-a67b-4d6d-921e-e6fca8e82cd9
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Northern Sotho: ||| {{
+      sentence_nso }}'
     metadata: *id001
-    name: translate-this-ibo-ben
-    reference: Translate this from X to Y (Igbo into Bengali)
-  d87b5066-48fe-4b4f-a9c7-d47210c19631: !Template
+    name: flores-xglm-traditional Chinese-Northern Sotho
+    reference: 'L1: [sent1] = L2: [sent2]'
+  dd22a806-799c-4d42-8143-0fdcdd87f1df: !Template
     answer_choices: null
-    id: d87b5066-48fe-4b4f-a9c7-d47210c19631
-    jinja: 'Translate this from Punjabi into Bengali: {{ sentence_pan }} ||| {{ sentence_ben
-      }}'
+    id: dd22a806-799c-4d42-8143-0fdcdd87f1df
+    jinja: 'Telugu: {{ sentence_tel }} = Hindi: ||| {{ sentence_hin }}'
     metadata: *id001
-    name: translate-this-pan-ben
-    reference: Translate this from X to Y (Punjabi into Bengali)
-  d8953340-9824-43c4-9f1b-0fc46a9be042: !Template
+    name: flores-xglm-Telugu-Hindi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  dd5fce98-84e1-49f8-ad3f-7b340c52c4c6: !Template
     answer_choices: null
-    id: d8953340-9824-43c4-9f1b-0fc46a9be042
-    jinja: 'Translate this from Latin American Spanish into Vietnamese: {{ sentence_spa
-      }} ||| {{ sentence_vie }}'
+    id: dd5fce98-84e1-49f8-ad3f-7b340c52c4c6
+    jinja: 'Oriya: {{ sentence_ory }} = Marathi: ||| {{ sentence_mar }}'
     metadata: *id001
-    name: translate-this-spa-vie
-    reference: Translate this from X to Y (Latin American Spanish into Vietnamese)
-  d8f96505-d6e8-4392-837b-4d04e198c76a: !Template
+    name: flores-xglm-Oriya-Marathi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  dd7c207f-060d-4307-a1ce-7e50e8387ebc: !Template
     answer_choices: null
-    id: d8f96505-d6e8-4392-837b-4d04e198c76a
-    jinja: 'Translate this from Punjabi into Latin American Spanish: {{ sentence_pan
-      }} ||| {{ sentence_spa }}'
+    id: dd7c207f-060d-4307-a1ce-7e50e8387ebc
+    jinja: 'Bengali: {{ sentence_ben }} = Zulu: ||| {{ sentence_zul }}'
     metadata: *id001
-    name: translate-this-pan-spa
-    reference: Translate this from X to Y (Punjabi into Latin American Spanish)
-  d937753f-ebb4-46f9-b75d-800cefdd4f30: !Template
+    name: flores-xglm-Bengali-Zulu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  ddbb2dcb-8fc1-450f-a6d2-750060053164: !Template
     answer_choices: null
-    id: d937753f-ebb4-46f9-b75d-800cefdd4f30
-    jinja: 'Translate this from Indonesian into Latin American Spanish: {{ sentence_ind
-      }} ||| {{ sentence_spa }}'
+    id: ddbb2dcb-8fc1-450f-a6d2-750060053164
+    jinja: 'Assamese: {{ sentence_asm }} = Swahili: ||| {{ sentence_swh }}'
     metadata: *id001
-    name: translate-this-ind-spa
-    reference: Translate this from X to Y (Indonesian into Latin American Spanish)
-  d99f640a-0abe-4370-82a8-75f618cfa9ab: !Template
+    name: flores-xglm-Assamese-Swahili
+    reference: 'L1: [sent1] = L2: [sent2]'
+  dde83ce7-ccd7-480d-ba7e-570bf78f571f: !Template
     answer_choices: null
-    id: d99f640a-0abe-4370-82a8-75f618cfa9ab
-    jinja: 'Translate this from Hindi into Lingala: {{ sentence_hin }} ||| {{ sentence_lin
+    id: dde83ce7-ccd7-480d-ba7e-570bf78f571f
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Vietnamese: ||| {{ sentence_vie
       }}'
     metadata: *id001
-    name: translate-this-hin-lin
-    reference: Translate this from X to Y (Hindi into Lingala)
-  da222e1d-65c1-47cb-a151-53d4a121c34c: !Template
+    name: flores-xglm-Brazilian Portuguese-Vietnamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  dded110b-9dee-4d18-ab0b-1c991b9d855c: !Template
     answer_choices: null
-    id: da222e1d-65c1-47cb-a151-53d4a121c34c
-    jinja: 'Translate this from Tamil into traditional Chinese: {{ sentence_tam }}
-      ||| {{ sentence_zho_trad }}'
+    id: dded110b-9dee-4d18-ab0b-1c991b9d855c
+    jinja: 'Telugu: {{ sentence_tel }} = Malayalam: ||| {{ sentence_mal }}'
     metadata: *id001
-    name: translate-this-tam-zho_trad
-    reference: Translate this from X to Y (Tamil into traditional Chinese)
-  da8f67c4-bea6-4c08-92cb-fa9a0b14c479: !Template
+    name: flores-xglm-Telugu-Malayalam
+    reference: 'L1: [sent1] = L2: [sent2]'
+  ddf51ffc-9251-4083-83dd-ae7ad366fe5d: !Template
     answer_choices: null
-    id: da8f67c4-bea6-4c08-92cb-fa9a0b14c479
-    jinja: 'Translate this from Northern Sotho into Lingala: {{ sentence_nso }} |||
-      {{ sentence_lin }}'
-    metadata: *id001
-    name: translate-this-nso-lin
-    reference: Translate this from X to Y (Northern Sotho into Lingala)
-  da980ddb-bf65-4d64-a891-03ad4767374d: !Template
-    answer_choices: null
-    id: da980ddb-bf65-4d64-a891-03ad4767374d
-    jinja: 'Translate this from Tamil into Xhosa: {{ sentence_tam }} ||| {{ sentence_xho
+    id: ddf51ffc-9251-4083-83dd-ae7ad366fe5d
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = Xhosa: ||| {{ sentence_xho
       }}'
     metadata: *id001
-    name: translate-this-tam-xho
-    reference: Translate this from X to Y (Tamil into Xhosa)
-  db532d9d-e7df-45b4-8ffb-7054be6b200d: !Template
+    name: flores-xglm-Latin American Spanish-Xhosa
+    reference: 'L1: [sent1] = L2: [sent2]'
+  de66ee52-99bc-4964-ac7f-fe9efa2a8119: !Template
     answer_choices: null
-    id: db532d9d-e7df-45b4-8ffb-7054be6b200d
-    jinja: 'Translate this from Indonesian into Swahili: {{ sentence_ind }} ||| {{
-      sentence_swh }}'
+    id: de66ee52-99bc-4964-ac7f-fe9efa2a8119
+    jinja: 'Vietnamese: {{ sentence_vie }} = Punjabi: ||| {{ sentence_pan }}'
     metadata: *id001
-    name: translate-this-ind-swh
-    reference: Translate this from X to Y (Indonesian into Swahili)
-  db7f5233-3a37-4ea8-97aa-10e6dbffaf6d: !Template
+    name: flores-xglm-Vietnamese-Punjabi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  dec332af-9b7b-4290-b927-6b1c1757de9d: !Template
     answer_choices: null
-    id: db7f5233-3a37-4ea8-97aa-10e6dbffaf6d
-    jinja: 'Translate this from Brazilian Portuguese into Gujarati: {{ sentence_por
-      }} ||| {{ sentence_guj }}'
+    id: dec332af-9b7b-4290-b927-6b1c1757de9d
+    jinja: 'Nepali: {{ sentence_npi }} = Lingala: ||| {{ sentence_lin }}'
     metadata: *id001
-    name: translate-this-por-guj
-    reference: Translate this from X to Y (Brazilian Portuguese into Gujarati)
-  dc167b98-6e0e-41f9-a5b7-c3a6b4183f9b: !Template
+    name: flores-xglm-Nepali-Lingala
+    reference: 'L1: [sent1] = L2: [sent2]'
+  df025439-11d7-497b-8ae6-3bb46f642f41: !Template
     answer_choices: null
-    id: dc167b98-6e0e-41f9-a5b7-c3a6b4183f9b
-    jinja: 'Translate this from Wolof into Lingala: {{ sentence_wol }} ||| {{ sentence_lin
+    id: df025439-11d7-497b-8ae6-3bb46f642f41
+    jinja: 'Oriya: {{ sentence_ory }} = Latin American Spanish: ||| {{ sentence_spa
       }}'
     metadata: *id001
-    name: translate-this-wol-lin
-    reference: Translate this from X to Y (Wolof into Lingala)
-  dd07f9d9-1c72-4b00-9722-43bdfe198946: !Template
+    name: flores-xglm-Oriya-Latin American Spanish
+    reference: 'L1: [sent1] = L2: [sent2]'
+  df3006b1-3f97-43f4-83b3-43670492378d: !Template
     answer_choices: null
-    id: dd07f9d9-1c72-4b00-9722-43bdfe198946
-    jinja: 'Translate this from Indonesian into simplified Chinese: {{ sentence_ind
-      }} ||| {{ sentence_zho_simpl }}'
+    id: df3006b1-3f97-43f4-83b3-43670492378d
+    jinja: 'Gujarati: {{ sentence_guj }} = English: ||| {{ sentence_eng }}'
     metadata: *id001
-    name: translate-this-ind-zho_simpl
-    reference: Translate this from X to Y (Indonesian into simplified Chinese)
-  dd9d340d-ded5-4483-adb8-3709c005c38e: !Template
+    name: flores-xglm-Gujarati-English
+    reference: 'L1: [sent1] = L2: [sent2]'
+  dfc31c02-522b-4778-9d28-09d4a6045327: !Template
     answer_choices: null
-    id: dd9d340d-ded5-4483-adb8-3709c005c38e
-    jinja: 'Translate this from Bengali into Lingala: {{ sentence_ben }} ||| {{ sentence_lin
+    id: dfc31c02-522b-4778-9d28-09d4a6045327
+    jinja: 'Arabic: {{ sentence_ara }} = traditional Chinese: ||| {{ sentence_zho_trad
       }}'
     metadata: *id001
-    name: translate-this-ben-lin
-    reference: Translate this from X to Y (Bengali into Lingala)
-  ddadaaee-760d-4956-b102-3057de9bda4b: !Template
+    name: flores-xglm-Arabic-traditional Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  dff9a1f5-b982-4d25-99a0-0dd5fb6e1f9e: !Template
     answer_choices: null
-    id: ddadaaee-760d-4956-b102-3057de9bda4b
-    jinja: 'Translate this from Latin American Spanish into English: {{ sentence_spa
-      }} ||| {{ sentence_eng }}'
+    id: dff9a1f5-b982-4d25-99a0-0dd5fb6e1f9e
+    jinja: 'Hindi: {{ sentence_hin }} = Arabic: ||| {{ sentence_ara }}'
     metadata: *id001
-    name: translate-this-spa-eng
-    reference: Translate this from X to Y (Latin American Spanish into English)
-  ddb7f4e0-3561-4d1a-a34d-860e045fbbd6: !Template
+    name: flores-xglm-Hindi-Arabic
+    reference: 'L1: [sent1] = L2: [sent2]'
+  e001ccd7-8850-4753-80cf-4092c1146e31: !Template
     answer_choices: null
-    id: ddb7f4e0-3561-4d1a-a34d-860e045fbbd6
-    jinja: 'Translate this from Igbo into Arabic: {{ sentence_ibo }} ||| {{ sentence_ara
-      }}'
+    id: e001ccd7-8850-4753-80cf-4092c1146e31
+    jinja: 'Urdu: {{ sentence_urd }} = Oriya: ||| {{ sentence_ory }}'
     metadata: *id001
-    name: translate-this-ibo-ara
-    reference: Translate this from X to Y (Igbo into Arabic)
-  ddcbd6c4-87d3-443b-8bee-b6aeddcd6aeb: !Template
+    name: flores-xglm-Urdu-Oriya
+    reference: 'L1: [sent1] = L2: [sent2]'
+  e02177c3-9a18-4ba2-b855-2ef0d941444f: !Template
     answer_choices: null
-    id: ddcbd6c4-87d3-443b-8bee-b6aeddcd6aeb
-    jinja: 'Translate this from Latin American Spanish into Wolof: {{ sentence_spa
-      }} ||| {{ sentence_wol }}'
+    id: e02177c3-9a18-4ba2-b855-2ef0d941444f
+    jinja: 'Hindi: {{ sentence_hin }} = traditional Chinese: ||| {{ sentence_zho_trad
+      }}'
     metadata: *id001
-    name: translate-this-spa-wol
-    reference: Translate this from X to Y (Latin American Spanish into Wolof)
-  de2d6c1c-3bd9-46f9-a54b-7ece586eafcb: !Template
+    name: flores-xglm-Hindi-traditional Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  e0358020-40ad-4a80-9176-e02fdfbae5ba: !Template
     answer_choices: null
-    id: de2d6c1c-3bd9-46f9-a54b-7ece586eafcb
-    jinja: 'Translate this from simplified Chinese into English: {{ sentence_zho_simpl
-      }} ||| {{ sentence_eng }}'
+    id: e0358020-40ad-4a80-9176-e02fdfbae5ba
+    jinja: 'Lingala: {{ sentence_lin }} = Malayalam: ||| {{ sentence_mal }}'
     metadata: *id001
-    name: translate-this-zho_simpl-eng
-    reference: Translate this from X to Y (simplified Chinese into English)
-  de378c70-2ef6-4015-8d86-a28bb85f5b1d: !Template
+    name: flores-xglm-Lingala-Malayalam
+    reference: 'L1: [sent1] = L2: [sent2]'
+  e0387ec3-e1a5-41bf-ad74-0f0e0991419d: !Template
     answer_choices: null
-    id: de378c70-2ef6-4015-8d86-a28bb85f5b1d
-    jinja: 'Translate this from simplified Chinese into Swahili: {{ sentence_zho_simpl
-      }} ||| {{ sentence_swh }}'
+    id: e0387ec3-e1a5-41bf-ad74-0f0e0991419d
+    jinja: 'Telugu: {{ sentence_tel }} = Lingala: ||| {{ sentence_lin }}'
     metadata: *id001
-    name: translate-this-zho_simpl-swh
-    reference: Translate this from X to Y (simplified Chinese into Swahili)
-  de63c320-633f-480a-a4bb-bc568b46c80d: !Template
+    name: flores-xglm-Telugu-Lingala
+    reference: 'L1: [sent1] = L2: [sent2]'
+  e0d95a2d-9631-4ed9-9632-f23d729ca3ee: !Template
     answer_choices: null
-    id: de63c320-633f-480a-a4bb-bc568b46c80d
-    jinja: 'Translate this from Igbo into Latin American Spanish: {{ sentence_ibo
-      }} ||| {{ sentence_spa }}'
+    id: e0d95a2d-9631-4ed9-9632-f23d729ca3ee
+    jinja: 'Xhosa: {{ sentence_xho }} = Arabic: ||| {{ sentence_ara }}'
     metadata: *id001
-    name: translate-this-ibo-spa
-    reference: Translate this from X to Y (Igbo into Latin American Spanish)
-  dea1744f-b21c-420a-89ab-ddf56678cfe6: !Template
+    name: flores-xglm-Xhosa-Arabic
+    reference: 'L1: [sent1] = L2: [sent2]'
+  e2912a18-0436-4b92-8f08-4340d75bd987: !Template
     answer_choices: null
-    id: dea1744f-b21c-420a-89ab-ddf56678cfe6
-    jinja: 'Translate this from Vietnamese into simplified Chinese: {{ sentence_vie
-      }} ||| {{ sentence_zho_simpl }}'
+    id: e2912a18-0436-4b92-8f08-4340d75bd987
+    jinja: 'Bengali: {{ sentence_ben }} = Kannada: ||| {{ sentence_kan }}'
     metadata: *id001
-    name: translate-this-vie-zho_simpl
-    reference: Translate this from X to Y (Vietnamese into simplified Chinese)
-  deaaafe3-6698-4bdb-a587-a27c9c5de119: !Template
+    name: flores-xglm-Bengali-Kannada
+    reference: 'L1: [sent1] = L2: [sent2]'
+  e2c07219-aee6-4a9a-b6e4-0749acc3a23c: !Template
     answer_choices: null
-    id: deaaafe3-6698-4bdb-a587-a27c9c5de119
-    jinja: 'Translate this from Yoruba into Igbo: {{ sentence_yor }} ||| {{ sentence_ibo
-      }}'
+    id: e2c07219-aee6-4a9a-b6e4-0749acc3a23c
+    jinja: 'Northern Sotho: {{ sentence_nso }} = Hindi: ||| {{ sentence_hin }}'
     metadata: *id001
-    name: translate-this-yor-ibo
-    reference: Translate this from X to Y (Yoruba into Igbo)
-  def35c44-92aa-4278-97f7-fd09f0b44090: !Template
+    name: flores-xglm-Northern Sotho-Hindi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  e2cd8b93-25d3-435f-9285-ebeb140f528d: !Template
     answer_choices: null
-    id: def35c44-92aa-4278-97f7-fd09f0b44090
-    jinja: 'Translate this from Tamil into Wolof: {{ sentence_tam }} ||| {{ sentence_wol
+    id: e2cd8b93-25d3-435f-9285-ebeb140f528d
+    jinja: 'Kannada: {{ sentence_kan }} = simplified Chinese: ||| {{ sentence_zho_simpl
       }}'
     metadata: *id001
-    name: translate-this-tam-wol
-    reference: Translate this from X to Y (Tamil into Wolof)
-  df265ffa-48e8-465a-804c-0ede43776cc0: !Template
+    name: flores-xglm-Kannada-simplified Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  e3912658-1866-4595-a756-4754aa89a532: !Template
     answer_choices: null
-    id: df265ffa-48e8-465a-804c-0ede43776cc0
-    jinja: 'Translate this from French into Bengali: {{ sentence_fra }} ||| {{ sentence_ben
-      }}'
+    id: e3912658-1866-4595-a756-4754aa89a532
+    jinja: 'Yoruba: {{ sentence_yor }} = Nepali: ||| {{ sentence_npi }}'
     metadata: *id001
-    name: translate-this-fra-ben
-    reference: Translate this from X to Y (French into Bengali)
-  e0001faa-815f-4f44-9c12-fb140ef7cd0f: !Template
+    name: flores-xglm-Yoruba-Nepali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  e4cbfd33-cbb5-4dd5-b94d-41d5177e5ccf: !Template
     answer_choices: null
-    id: e0001faa-815f-4f44-9c12-fb140ef7cd0f
-    jinja: 'Translate this from Oriya into Punjabi: {{ sentence_ory }} ||| {{ sentence_pan
+    id: e4cbfd33-cbb5-4dd5-b94d-41d5177e5ccf
+    jinja: 'Yoruba: {{ sentence_yor }} = Brazilian Portuguese: ||| {{ sentence_por
       }}'
     metadata: *id001
-    name: translate-this-ory-pan
-    reference: Translate this from X to Y (Oriya into Punjabi)
-  e00c5ba2-82a2-4c2d-a4a6-4b567dae9a12: !Template
+    name: flores-xglm-Yoruba-Brazilian Portuguese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  e4d464e0-00e2-4f32-94eb-ef425fca5c2e: !Template
     answer_choices: null
-    id: e00c5ba2-82a2-4c2d-a4a6-4b567dae9a12
-    jinja: 'Translate this from Marathi into Catalan: {{ sentence_mar }} ||| {{ sentence_cat
+    id: e4d464e0-00e2-4f32-94eb-ef425fca5c2e
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = Tamil: ||| {{ sentence_tam
       }}'
     metadata: *id001
-    name: translate-this-mar-cat
-    reference: Translate this from X to Y (Marathi into Catalan)
-  e021baf1-3691-4cf0-bd98-6c0fd54fe366: !Template
-    answer_choices: null
-    id: e021baf1-3691-4cf0-bd98-6c0fd54fe366
-    jinja: 'Translate this from Gujarati into Northern Sotho: {{ sentence_guj }} |||
-      {{ sentence_nso }}'
-    metadata: *id001
-    name: translate-this-guj-nso
-    reference: Translate this from X to Y (Gujarati into Northern Sotho)
-  e0447e32-a327-46d6-91a8-075434871445: !Template
+    name: flores-xglm-Latin American Spanish-Tamil
+    reference: 'L1: [sent1] = L2: [sent2]'
+  e4e9fd2d-0b89-42d6-ac02-6b0d31372ef9: !Template
     answer_choices: null
-    id: e0447e32-a327-46d6-91a8-075434871445
-    jinja: 'Translate this from simplified Chinese into Oriya: {{ sentence_zho_simpl
-      }} ||| {{ sentence_ory }}'
-    metadata: *id001
-    name: translate-this-zho_simpl-ory
-    reference: Translate this from X to Y (simplified Chinese into Oriya)
-  e05341d6-d1d6-4630-85cb-b6f7deb11b60: !Template
-    answer_choices: null
-    id: e05341d6-d1d6-4630-85cb-b6f7deb11b60
-    jinja: 'Translate this from Tamil into Kannada: {{ sentence_tam }} ||| {{ sentence_kan
+    id: e4e9fd2d-0b89-42d6-ac02-6b0d31372ef9
+    jinja: 'Xhosa: {{ sentence_xho }} = Latin American Spanish: ||| {{ sentence_spa
       }}'
     metadata: *id001
-    name: translate-this-tam-kan
-    reference: Translate this from X to Y (Tamil into Kannada)
-  e0aa1623-858c-49cc-a40f-3aabef4389d0: !Template
-    answer_choices: null
-    id: e0aa1623-858c-49cc-a40f-3aabef4389d0
-    jinja: 'Translate this from Indonesian into Catalan: {{ sentence_ind }} ||| {{
-      sentence_cat }}'
-    metadata: *id001
-    name: translate-this-ind-cat
-    reference: Translate this from X to Y (Indonesian into Catalan)
-  e0ab44b1-5102-4bf1-a2d8-c934f0fcb9f3: !Template
+    name: flores-xglm-Xhosa-Latin American Spanish
+    reference: 'L1: [sent1] = L2: [sent2]'
+  e5169540-8e24-44c0-b9f1-cea63b3df220: !Template
     answer_choices: null
-    id: e0ab44b1-5102-4bf1-a2d8-c934f0fcb9f3
-    jinja: 'Translate this from simplified Chinese into Arabic: {{ sentence_zho_simpl
-      }} ||| {{ sentence_ara }}'
+    id: e5169540-8e24-44c0-b9f1-cea63b3df220
+    jinja: 'Punjabi: {{ sentence_pan }} = Brazilian Portuguese: ||| {{ sentence_por
+      }}'
     metadata: *id001
-    name: translate-this-zho_simpl-ara
-    reference: Translate this from X to Y (simplified Chinese into Arabic)
-  e0d3734e-5c8d-4b33-9cf5-316376d63a3d: !Template
+    name: flores-xglm-Punjabi-Brazilian Portuguese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  e536db47-173f-4e5c-8b23-730c871edcb8: !Template
     answer_choices: null
-    id: e0d3734e-5c8d-4b33-9cf5-316376d63a3d
-    jinja: 'Translate this from Urdu into Swahili: {{ sentence_urd }} ||| {{ sentence_swh
-      }}'
+    id: e536db47-173f-4e5c-8b23-730c871edcb8
+    jinja: 'Igbo: {{ sentence_ibo }} = Brazilian Portuguese: ||| {{ sentence_por }}'
     metadata: *id001
-    name: translate-this-urd-swh
-    reference: Translate this from X to Y (Urdu into Swahili)
-  e0d5eee8-6794-46d3-b009-4be4c1ab68d0: !Template
+    name: flores-xglm-Igbo-Brazilian Portuguese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  e54a8219-c2eb-4b12-856f-8c4a6d001b7b: !Template
     answer_choices: null
-    id: e0d5eee8-6794-46d3-b009-4be4c1ab68d0
-    jinja: 'Translate this from Indonesian into Marathi: {{ sentence_ind }} ||| {{
-      sentence_mar }}'
+    id: e54a8219-c2eb-4b12-856f-8c4a6d001b7b
+    jinja: 'Arabic: {{ sentence_ara }} = English: ||| {{ sentence_eng }}'
     metadata: *id001
-    name: translate-this-ind-mar
-    reference: Translate this from X to Y (Indonesian into Marathi)
-  e0e6a62f-3945-4f00-ba41-d34cc6b85a95: !Template
+    name: flores-xglm-Arabic-English
+    reference: 'L1: [sent1] = L2: [sent2]'
+  e5b93ec6-1a4f-4983-89b9-71f13ab75b6f: !Template
     answer_choices: null
-    id: e0e6a62f-3945-4f00-ba41-d34cc6b85a95
-    jinja: 'Translate this from Zulu into Igbo: {{ sentence_zul }} ||| {{ sentence_ibo
-      }}'
+    id: e5b93ec6-1a4f-4983-89b9-71f13ab75b6f
+    jinja: 'Yoruba: {{ sentence_yor }} = Gujarati: ||| {{ sentence_guj }}'
     metadata: *id001
-    name: translate-this-zul-ibo
-    reference: Translate this from X to Y (Zulu into Igbo)
-  e1911915-6af0-4bd6-8832-31ef770a02b9: !Template
+    name: flores-xglm-Yoruba-Gujarati
+    reference: 'L1: [sent1] = L2: [sent2]'
+  e5d22919-f2ea-46de-86a5-1b508ebc60ba: !Template
     answer_choices: null
-    id: e1911915-6af0-4bd6-8832-31ef770a02b9
-    jinja: 'Translate this from Marathi into Kannada: {{ sentence_mar }} ||| {{ sentence_kan
-      }}'
+    id: e5d22919-f2ea-46de-86a5-1b508ebc60ba
+    jinja: 'Xhosa: {{ sentence_xho }} = French: ||| {{ sentence_fra }}'
     metadata: *id001
-    name: translate-this-mar-kan
-    reference: Translate this from X to Y (Marathi into Kannada)
-  e1c2c82b-7786-4aae-95c1-feee1d5842af: !Template
+    name: flores-xglm-Xhosa-French
+    reference: 'L1: [sent1] = L2: [sent2]'
+  e5e9ba2e-d401-4f03-b975-784eeadf7146: !Template
     answer_choices: null
-    id: e1c2c82b-7786-4aae-95c1-feee1d5842af
-    jinja: 'Translate this from Urdu into Punjabi: {{ sentence_urd }} ||| {{ sentence_pan
+    id: e5e9ba2e-d401-4f03-b975-784eeadf7146
+    jinja: 'Yoruba: {{ sentence_yor }} = simplified Chinese: ||| {{ sentence_zho_simpl
       }}'
     metadata: *id001
-    name: translate-this-urd-pan
-    reference: Translate this from X to Y (Urdu into Punjabi)
-  e1e8d51b-2422-4228-ada7-8f0b40eb1846: !Template
+    name: flores-xglm-Yoruba-simplified Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  e6084d46-86cb-4b38-afa7-e97f9624fe3a: !Template
     answer_choices: null
-    id: e1e8d51b-2422-4228-ada7-8f0b40eb1846
-    jinja: 'Translate this from Marathi into Hindi: {{ sentence_mar }} ||| {{ sentence_hin
-      }}'
+    id: e6084d46-86cb-4b38-afa7-e97f9624fe3a
+    jinja: 'Indonesian: {{ sentence_ind }} = Arabic: ||| {{ sentence_ara }}'
     metadata: *id001
-    name: translate-this-mar-hin
-    reference: Translate this from X to Y (Marathi into Hindi)
-  e227367a-810f-4269-8b9e-932bf4659ab1: !Template
+    name: flores-xglm-Indonesian-Arabic
+    reference: 'L1: [sent1] = L2: [sent2]'
+  e620d8a4-056b-43b9-9202-43e966192471: !Template
     answer_choices: null
-    id: e227367a-810f-4269-8b9e-932bf4659ab1
-    jinja: 'Translate this from Tamil into Swahili: {{ sentence_tam }} ||| {{ sentence_swh
+    id: e620d8a4-056b-43b9-9202-43e966192471
+    jinja: 'French: {{ sentence_fra }} = traditional Chinese: ||| {{ sentence_zho_trad
       }}'
     metadata: *id001
-    name: translate-this-tam-swh
-    reference: Translate this from X to Y (Tamil into Swahili)
-  e2298511-03d1-47e3-9818-22655829503d: !Template
+    name: flores-xglm-French-traditional Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  e65214e4-fc0c-4c45-84f0-a8e3748d9024: !Template
     answer_choices: null
-    id: e2298511-03d1-47e3-9818-22655829503d
-    jinja: 'Translate this from Malayalam into Punjabi: {{ sentence_mal }} ||| {{
-      sentence_pan }}'
+    id: e65214e4-fc0c-4c45-84f0-a8e3748d9024
+    jinja: 'Gujarati: {{ sentence_guj }} = Assamese: ||| {{ sentence_asm }}'
     metadata: *id001
-    name: translate-this-mal-pan
-    reference: Translate this from X to Y (Malayalam into Punjabi)
-  e33eb5a0-6d21-4ea6-9e5f-00ec622278d7: !Template
+    name: flores-xglm-Gujarati-Assamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  e6f610f1-b211-40fe-bc7c-7133ee8bfc48: !Template
     answer_choices: null
-    id: e33eb5a0-6d21-4ea6-9e5f-00ec622278d7
-    jinja: 'Translate this from Telugu into Latin American Spanish: {{ sentence_tel
-      }} ||| {{ sentence_spa }}'
+    id: e6f610f1-b211-40fe-bc7c-7133ee8bfc48
+    jinja: 'French: {{ sentence_fra }} = Gujarati: ||| {{ sentence_guj }}'
     metadata: *id001
-    name: translate-this-tel-spa
-    reference: Translate this from X to Y (Telugu into Latin American Spanish)
-  e3954e61-c3a4-416c-a770-aeb628b283b4: !Template
+    name: flores-xglm-French-Gujarati
+    reference: 'L1: [sent1] = L2: [sent2]'
+  e706d8fa-b002-496e-92fe-630e26e5395e: !Template
     answer_choices: null
-    id: e3954e61-c3a4-416c-a770-aeb628b283b4
-    jinja: 'Translate this from Xhosa into Urdu: {{ sentence_xho }} ||| {{ sentence_urd
-      }}'
+    id: e706d8fa-b002-496e-92fe-630e26e5395e
+    jinja: 'Urdu: {{ sentence_urd }} = Kannada: ||| {{ sentence_kan }}'
     metadata: *id001
-    name: translate-this-xho-urd
-    reference: Translate this from X to Y (Xhosa into Urdu)
-  e3dbc8ff-7709-4dc7-999b-e1e5f4e1e846: !Template
+    name: flores-xglm-Urdu-Kannada
+    reference: 'L1: [sent1] = L2: [sent2]'
+  e72ac40e-68ac-4652-8b04-4dcdd0a9edb1: !Template
     answer_choices: null
-    id: e3dbc8ff-7709-4dc7-999b-e1e5f4e1e846
-    jinja: 'Translate this from Brazilian Portuguese into simplified Chinese: {{ sentence_por
-      }} ||| {{ sentence_zho_simpl }}'
+    id: e72ac40e-68ac-4652-8b04-4dcdd0a9edb1
+    jinja: 'Vietnamese: {{ sentence_vie }} = Tamil: ||| {{ sentence_tam }}'
     metadata: *id001
-    name: translate-this-por-zho_simpl
-    reference: Translate this from X to Y (Brazilian Portuguese into simplified Chinese)
-  e52530f9-83b4-408f-acdd-b045163e7920: !Template
+    name: flores-xglm-Vietnamese-Tamil
+    reference: 'L1: [sent1] = L2: [sent2]'
+  e756a803-78e7-42ab-b998-2c5ce90cc9c0: !Template
     answer_choices: null
-    id: e52530f9-83b4-408f-acdd-b045163e7920
-    jinja: 'Translate this from Kannada into Igbo: {{ sentence_kan }} ||| {{ sentence_ibo
-      }}'
+    id: e756a803-78e7-42ab-b998-2c5ce90cc9c0
+    jinja: 'Wolof: {{ sentence_wol }} = Telugu: ||| {{ sentence_tel }}'
     metadata: *id001
-    name: translate-this-kan-ibo
-    reference: Translate this from X to Y (Kannada into Igbo)
-  e5608923-4056-4476-b17c-ed3c38d179da: !Template
+    name: flores-xglm-Wolof-Telugu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  e76c9bec-9755-4801-ad0c-56fd34fdf49f: !Template
     answer_choices: null
-    id: e5608923-4056-4476-b17c-ed3c38d179da
-    jinja: 'Translate this from Marathi into Indonesian: {{ sentence_mar }} ||| {{
-      sentence_ind }}'
+    id: e76c9bec-9755-4801-ad0c-56fd34fdf49f
+    jinja: 'Assamese: {{ sentence_asm }} = English: ||| {{ sentence_eng }}'
     metadata: *id001
-    name: translate-this-mar-ind
-    reference: Translate this from X to Y (Marathi into Indonesian)
-  e5e9a927-f0ac-4621-8846-b04314c89693: !Template
+    name: flores-xglm-Assamese-English
+    reference: 'L1: [sent1] = L2: [sent2]'
+  e79d979f-e8fb-41a3-80ae-217056d93135: !Template
     answer_choices: null
-    id: e5e9a927-f0ac-4621-8846-b04314c89693
-    jinja: 'Translate this from Gujarati into Lingala: {{ sentence_guj }} ||| {{ sentence_lin
+    id: e79d979f-e8fb-41a3-80ae-217056d93135
+    jinja: 'Lingala: {{ sentence_lin }} = Latin American Spanish: ||| {{ sentence_spa
       }}'
     metadata: *id001
-    name: translate-this-guj-lin
-    reference: Translate this from X to Y (Gujarati into Lingala)
-  e60f097c-b0b1-48e5-b32f-65c03110631a: !Template
+    name: flores-xglm-Lingala-Latin American Spanish
+    reference: 'L1: [sent1] = L2: [sent2]'
+  e7a2ee9e-cbaa-4756-9f45-e3faba3515e1: !Template
     answer_choices: null
-    id: e60f097c-b0b1-48e5-b32f-65c03110631a
-    jinja: 'Translate this from Wolof into Punjabi: {{ sentence_wol }} ||| {{ sentence_pan
-      }}'
+    id: e7a2ee9e-cbaa-4756-9f45-e3faba3515e1
+    jinja: 'Indonesian: {{ sentence_ind }} = Nepali: ||| {{ sentence_npi }}'
     metadata: *id001
-    name: translate-this-wol-pan
-    reference: Translate this from X to Y (Wolof into Punjabi)
-  e62aaa83-154c-4bf5-8900-4f87cc595d35: !Template
+    name: flores-xglm-Indonesian-Nepali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  e7a6ff7b-e36c-41e9-a0b7-3cb6de329fc7: !Template
     answer_choices: null
-    id: e62aaa83-154c-4bf5-8900-4f87cc595d35
-    jinja: 'Translate this from Northern Sotho into Vietnamese: {{ sentence_nso }}
-      ||| {{ sentence_vie }}'
+    id: e7a6ff7b-e36c-41e9-a0b7-3cb6de329fc7
+    jinja: 'Assamese: {{ sentence_asm }} = French: ||| {{ sentence_fra }}'
     metadata: *id001
-    name: translate-this-nso-vie
-    reference: Translate this from X to Y (Northern Sotho into Vietnamese)
-  e6553933-a07d-477a-a43b-4a176e7b9283: !Template
+    name: flores-xglm-Assamese-French
+    reference: 'L1: [sent1] = L2: [sent2]'
+  e7de3e48-9b25-4a1e-b2ba-91516cfa8bec: !Template
     answer_choices: null
-    id: e6553933-a07d-477a-a43b-4a176e7b9283
-    jinja: 'Translate this from English into Malayalam: {{ sentence_eng }} ||| {{
-      sentence_mal }}'
+    id: e7de3e48-9b25-4a1e-b2ba-91516cfa8bec
+    jinja: 'Catalan: {{ sentence_cat }} = English: ||| {{ sentence_eng }}'
     metadata: *id001
-    name: translate-this-eng-mal
-    reference: Translate this from X to Y (English into Malayalam)
-  e6a71e7d-6c9a-4856-8ee9-29cbedf97de7: !Template
+    name: flores-xglm-Catalan-English
+    reference: 'L1: [sent1] = L2: [sent2]'
+  e873ffbe-929b-4322-9ecc-d8ba5ea9b261: !Template
     answer_choices: null
-    id: e6a71e7d-6c9a-4856-8ee9-29cbedf97de7
-    jinja: 'Translate this from Nepali into Kannada: {{ sentence_npi }} ||| {{ sentence_kan
+    id: e873ffbe-929b-4322-9ecc-d8ba5ea9b261
+    jinja: 'Xhosa: {{ sentence_xho }} = simplified Chinese: ||| {{ sentence_zho_simpl
       }}'
     metadata: *id001
-    name: translate-this-npi-kan
-    reference: Translate this from X to Y (Nepali into Kannada)
-  e6cb9aa9-b184-42a6-9f70-d4dd1abef223: !Template
+    name: flores-xglm-Xhosa-simplified Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  e87fabf2-f7f2-4af5-9f68-9226fa224b1c: !Template
     answer_choices: null
-    id: e6cb9aa9-b184-42a6-9f70-d4dd1abef223
-    jinja: 'Translate this from Wolof into Swahili: {{ sentence_wol }} ||| {{ sentence_swh
-      }}'
+    id: e87fabf2-f7f2-4af5-9f68-9226fa224b1c
+    jinja: 'Yoruba: {{ sentence_yor }} = Bengali: ||| {{ sentence_ben }}'
     metadata: *id001
-    name: translate-this-wol-swh
-    reference: Translate this from X to Y (Wolof into Swahili)
-  e707087a-4294-4a3d-8d1f-a03a2884139d: !Template
+    name: flores-xglm-Yoruba-Bengali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  e8cd98c0-010b-4e64-afa1-69ada481cdfc: !Template
     answer_choices: null
-    id: e707087a-4294-4a3d-8d1f-a03a2884139d
-    jinja: 'Translate this from Nepali into Telugu: {{ sentence_npi }} ||| {{ sentence_tel
-      }}'
+    id: e8cd98c0-010b-4e64-afa1-69ada481cdfc
+    jinja: 'Xhosa: {{ sentence_xho }} = Igbo: ||| {{ sentence_ibo }}'
     metadata: *id001
-    name: translate-this-npi-tel
-    reference: Translate this from X to Y (Nepali into Telugu)
-  e76c254b-4318-44c0-ad73-3affac37348a: !Template
+    name: flores-xglm-Xhosa-Igbo
+    reference: 'L1: [sent1] = L2: [sent2]'
+  e9036778-d5cb-412b-be39-952c705986f0: !Template
     answer_choices: null
-    id: e76c254b-4318-44c0-ad73-3affac37348a
-    jinja: 'Translate this from Gujarati into Telugu: {{ sentence_guj }} ||| {{ sentence_tel
-      }}'
+    id: e9036778-d5cb-412b-be39-952c705986f0
+    jinja: 'Xhosa: {{ sentence_xho }} = Hindi: ||| {{ sentence_hin }}'
     metadata: *id001
-    name: translate-this-guj-tel
-    reference: Translate this from X to Y (Gujarati into Telugu)
-  e7845fb2-0409-41aa-b24d-bc4219d1cda4: !Template
+    name: flores-xglm-Xhosa-Hindi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  e9514748-cedb-480b-b243-19c6be0d77c9: !Template
     answer_choices: null
-    id: e7845fb2-0409-41aa-b24d-bc4219d1cda4
-    jinja: 'Translate this from Wolof into Marathi: {{ sentence_wol }} ||| {{ sentence_mar
-      }}'
+    id: e9514748-cedb-480b-b243-19c6be0d77c9
+    jinja: 'Gujarati: {{ sentence_guj }} = Igbo: ||| {{ sentence_ibo }}'
     metadata: *id001
-    name: translate-this-wol-mar
-    reference: Translate this from X to Y (Wolof into Marathi)
-  e7beaab5-84ad-4857-84db-998a4b408175: !Template
+    name: flores-xglm-Gujarati-Igbo
+    reference: 'L1: [sent1] = L2: [sent2]'
+  e95fdc83-545d-4381-a3c8-ed3447b3eb83: !Template
     answer_choices: null
-    id: e7beaab5-84ad-4857-84db-998a4b408175
-    jinja: 'Translate this from Swahili into Oriya: {{ sentence_swh }} ||| {{ sentence_ory
-      }}'
+    id: e95fdc83-545d-4381-a3c8-ed3447b3eb83
+    jinja: 'Hindi: {{ sentence_hin }} = Assamese: ||| {{ sentence_asm }}'
     metadata: *id001
-    name: translate-this-swh-ory
-    reference: Translate this from X to Y (Swahili into Oriya)
-  e7e7e6bb-9fc9-4f91-ba30-f9e81b1e7315: !Template
+    name: flores-xglm-Hindi-Assamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  e9a9611d-fd7b-49f9-889f-033cecc71558: !Template
     answer_choices: null
-    id: e7e7e6bb-9fc9-4f91-ba30-f9e81b1e7315
-    jinja: 'Translate this from Catalan into Brazilian Portuguese: {{ sentence_cat
-      }} ||| {{ sentence_por }}'
+    id: e9a9611d-fd7b-49f9-889f-033cecc71558
+    jinja: 'Swahili: {{ sentence_swh }} = Kannada: ||| {{ sentence_kan }}'
     metadata: *id001
-    name: translate-this-cat-por
-    reference: Translate this from X to Y (Catalan into Brazilian Portuguese)
-  e80e5f8f-9942-485b-8bff-d2b0f77374eb: !Template
+    name: flores-xglm-Swahili-Kannada
+    reference: 'L1: [sent1] = L2: [sent2]'
+  e9df9806-00f8-4b81-88e4-bb966f811ee4: !Template
     answer_choices: null
-    id: e80e5f8f-9942-485b-8bff-d2b0f77374eb
-    jinja: 'Translate this from Kannada into Zulu: {{ sentence_kan }} ||| {{ sentence_zul
+    id: e9df9806-00f8-4b81-88e4-bb966f811ee4
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Wolof: ||| {{ sentence_wol
       }}'
     metadata: *id001
-    name: translate-this-kan-zul
-    reference: Translate this from X to Y (Kannada into Zulu)
-  e8601c55-1ea6-4540-9787-d3384e575591: !Template
+    name: flores-xglm-traditional Chinese-Wolof
+    reference: 'L1: [sent1] = L2: [sent2]'
+  e9e0fc48-d482-4001-837c-3260d040b739: !Template
     answer_choices: null
-    id: e8601c55-1ea6-4540-9787-d3384e575591
-    jinja: 'Translate this from simplified Chinese into Urdu: {{ sentence_zho_simpl
-      }} ||| {{ sentence_urd }}'
+    id: e9e0fc48-d482-4001-837c-3260d040b739
+    jinja: 'Northern Sotho: {{ sentence_nso }} = Indonesian: ||| {{ sentence_ind }}'
     metadata: *id001
-    name: translate-this-zho_simpl-urd
-    reference: Translate this from X to Y (simplified Chinese into Urdu)
-  e87cfde9-b6ea-4bba-ae03-2b0709775634: !Template
+    name: flores-xglm-Northern Sotho-Indonesian
+    reference: 'L1: [sent1] = L2: [sent2]'
+  e9eafcd0-ee0a-4490-9d0b-459c0bbdcef1: !Template
     answer_choices: null
-    id: e87cfde9-b6ea-4bba-ae03-2b0709775634
-    jinja: 'Translate this from Latin American Spanish into Brazilian Portuguese:
-      {{ sentence_spa }} ||| {{ sentence_por }}'
+    id: e9eafcd0-ee0a-4490-9d0b-459c0bbdcef1
+    jinja: 'Malayalam: {{ sentence_mal }} = Swahili: ||| {{ sentence_swh }}'
     metadata: *id001
-    name: translate-this-spa-por
-    reference: Translate this from X to Y (Latin American Spanish into Brazilian Portuguese)
-  e8e21c4f-bd2b-418a-aa63-aa7858c78872: !Template
+    name: flores-xglm-Malayalam-Swahili
+    reference: 'L1: [sent1] = L2: [sent2]'
+  ea3927fb-b5f9-4de0-8392-6bf29ec3eee0: !Template
     answer_choices: null
-    id: e8e21c4f-bd2b-418a-aa63-aa7858c78872
-    jinja: 'Translate this from Oriya into Marathi: {{ sentence_ory }} ||| {{ sentence_mar
-      }}'
+    id: ea3927fb-b5f9-4de0-8392-6bf29ec3eee0
+    jinja: 'Assamese: {{ sentence_asm }} = Punjabi: ||| {{ sentence_pan }}'
     metadata: *id001
-    name: translate-this-ory-mar
-    reference: Translate this from X to Y (Oriya into Marathi)
-  e9ec69f6-c632-4047-9475-5bd18f407fef: !Template
+    name: flores-xglm-Assamese-Punjabi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  eac400cc-a84f-41f3-b8c0-4f0216b0f401: !Template
     answer_choices: null
-    id: e9ec69f6-c632-4047-9475-5bd18f407fef
-    jinja: 'Translate this from Tamil into Oriya: {{ sentence_tam }} ||| {{ sentence_ory
-      }}'
+    id: eac400cc-a84f-41f3-b8c0-4f0216b0f401
+    jinja: 'Nepali: {{ sentence_npi }} = Marathi: ||| {{ sentence_mar }}'
     metadata: *id001
-    name: translate-this-tam-ory
-    reference: Translate this from X to Y (Tamil into Oriya)
-  ea0b2a3f-b4f3-415e-8c59-b0340208726d: !Template
+    name: flores-xglm-Nepali-Marathi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  eadbf269-d00d-4535-95cc-d5aa77cda988: !Template
     answer_choices: null
-    id: ea0b2a3f-b4f3-415e-8c59-b0340208726d
-    jinja: 'Translate this from Zulu into Catalan: {{ sentence_zul }} ||| {{ sentence_cat
+    id: eadbf269-d00d-4535-95cc-d5aa77cda988
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = French: ||| {{ sentence_fra
       }}'
     metadata: *id001
-    name: translate-this-zul-cat
-    reference: Translate this from X to Y (Zulu into Catalan)
-  ea4a25ab-4cf4-4926-88bc-bb2adc3e4f3d: !Template
+    name: flores-xglm-Latin American Spanish-French
+    reference: 'L1: [sent1] = L2: [sent2]'
+  eaf37333-8d2a-43d2-9298-3c1766977db5: !Template
     answer_choices: null
-    id: ea4a25ab-4cf4-4926-88bc-bb2adc3e4f3d
-    jinja: 'Translate this from simplified Chinese into Catalan: {{ sentence_zho_simpl
-      }} ||| {{ sentence_cat }}'
+    id: eaf37333-8d2a-43d2-9298-3c1766977db5
+    jinja: 'Lingala: {{ sentence_lin }} = Marathi: ||| {{ sentence_mar }}'
     metadata: *id001
-    name: translate-this-zho_simpl-cat
-    reference: Translate this from X to Y (simplified Chinese into Catalan)
-  eadb3ae1-f9de-433c-aade-6614053e8ccb: !Template
+    name: flores-xglm-Lingala-Marathi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  eb6a2ad9-26a2-45fb-925c-7c79a4f60efc: !Template
     answer_choices: null
-    id: eadb3ae1-f9de-433c-aade-6614053e8ccb
-    jinja: 'Translate this from Gujarati into Oriya: {{ sentence_guj }} ||| {{ sentence_ory
-      }}'
+    id: eb6a2ad9-26a2-45fb-925c-7c79a4f60efc
+    jinja: 'Northern Sotho: {{ sentence_nso }} = English: ||| {{ sentence_eng }}'
     metadata: *id001
-    name: translate-this-guj-ory
-    reference: Translate this from X to Y (Gujarati into Oriya)
-  eb473c1c-a9d6-46ba-aea4-7bc94ec2803c: !Template
+    name: flores-xglm-Northern Sotho-English
+    reference: 'L1: [sent1] = L2: [sent2]'
+  eba08574-857a-4f05-a944-e8ada6c73bf9: !Template
     answer_choices: null
-    id: eb473c1c-a9d6-46ba-aea4-7bc94ec2803c
-    jinja: 'Translate this from Lingala into Zulu: {{ sentence_lin }} ||| {{ sentence_zul
+    id: eba08574-857a-4f05-a944-e8ada6c73bf9
+    jinja: 'French: {{ sentence_fra }} = Latin American Spanish: ||| {{ sentence_spa
       }}'
     metadata: *id001
-    name: translate-this-lin-zul
-    reference: Translate this from X to Y (Lingala into Zulu)
-  ec6386ff-a6b5-4447-9e53-ba6ac608f016: !Template
+    name: flores-xglm-French-Latin American Spanish
+    reference: 'L1: [sent1] = L2: [sent2]'
+  ec34d239-ae0d-4c18-b45e-b1e5b3b78a02: !Template
     answer_choices: null
-    id: ec6386ff-a6b5-4447-9e53-ba6ac608f016
-    jinja: 'Translate this from Hindi into Kannada: {{ sentence_hin }} ||| {{ sentence_kan
-      }}'
+    id: ec34d239-ae0d-4c18-b45e-b1e5b3b78a02
+    jinja: 'Marathi: {{ sentence_mar }} = English: ||| {{ sentence_eng }}'
     metadata: *id001
-    name: translate-this-hin-kan
-    reference: Translate this from X to Y (Hindi into Kannada)
-  ece55c22-4752-438f-a13a-1ef8fdc01750: !Template
+    name: flores-xglm-Marathi-English
+    reference: 'L1: [sent1] = L2: [sent2]'
+  eccfff65-9982-4e7d-83d0-142a0bd1499a: !Template
     answer_choices: null
-    id: ece55c22-4752-438f-a13a-1ef8fdc01750
-    jinja: 'Translate this from Brazilian Portuguese into Igbo: {{ sentence_por }}
-      ||| {{ sentence_ibo }}'
+    id: eccfff65-9982-4e7d-83d0-142a0bd1499a
+    jinja: 'Telugu: {{ sentence_tel }} = Kannada: ||| {{ sentence_kan }}'
     metadata: *id001
-    name: translate-this-por-ibo
-    reference: Translate this from X to Y (Brazilian Portuguese into Igbo)
-  ed87992b-9728-4dc4-a699-dd74cb451133: !Template
+    name: flores-xglm-Telugu-Kannada
+    reference: 'L1: [sent1] = L2: [sent2]'
+  ed80126c-4076-440e-b0fe-da670140c057: !Template
     answer_choices: null
-    id: ed87992b-9728-4dc4-a699-dd74cb451133
-    jinja: 'Translate this from Lingala into Gujarati: {{ sentence_lin }} ||| {{ sentence_guj
-      }}'
+    id: ed80126c-4076-440e-b0fe-da670140c057
+    jinja: 'Malayalam: {{ sentence_mal }} = Xhosa: ||| {{ sentence_xho }}'
     metadata: *id001
-    name: translate-this-lin-guj
-    reference: Translate this from X to Y (Lingala into Gujarati)
-  edca82dd-591c-4421-ae6e-2626214a026f: !Template
+    name: flores-xglm-Malayalam-Xhosa
+    reference: 'L1: [sent1] = L2: [sent2]'
+  ee014ebc-bf45-472e-ae47-1dab896fb1f4: !Template
     answer_choices: null
-    id: edca82dd-591c-4421-ae6e-2626214a026f
-    jinja: 'Translate this from Assamese into Lingala: {{ sentence_asm }} ||| {{ sentence_lin
+    id: ee014ebc-bf45-472e-ae47-1dab896fb1f4
+    jinja: 'simplified Chinese: {{ sentence_zho_simpl }} = Punjabi: ||| {{ sentence_pan
       }}'
     metadata: *id001
-    name: translate-this-asm-lin
-    reference: Translate this from X to Y (Assamese into Lingala)
-  ee140d7e-5f58-4417-a3b8-21ee17e234e6: !Template
+    name: flores-xglm-simplified Chinese-Punjabi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  eec8a0c3-bc0d-403f-a6d7-7ad07e118427: !Template
     answer_choices: null
-    id: ee140d7e-5f58-4417-a3b8-21ee17e234e6
-    jinja: 'Translate this from Northern Sotho into Indonesian: {{ sentence_nso }}
-      ||| {{ sentence_ind }}'
+    id: eec8a0c3-bc0d-403f-a6d7-7ad07e118427
+    jinja: 'Catalan: {{ sentence_cat }} = Malayalam: ||| {{ sentence_mal }}'
     metadata: *id001
-    name: translate-this-nso-ind
-    reference: Translate this from X to Y (Northern Sotho into Indonesian)
-  ee2555d2-95b4-4667-bb7b-1cc4a2095a92: !Template
+    name: flores-xglm-Catalan-Malayalam
+    reference: 'L1: [sent1] = L2: [sent2]'
+  ef3b5166-b75c-4716-ba75-5bb7ea1a1a96: !Template
     answer_choices: null
-    id: ee2555d2-95b4-4667-bb7b-1cc4a2095a92
-    jinja: 'Translate this from Wolof into Arabic: {{ sentence_wol }} ||| {{ sentence_ara
+    id: ef3b5166-b75c-4716-ba75-5bb7ea1a1a96
+    jinja: 'Marathi: {{ sentence_mar }} = traditional Chinese: ||| {{ sentence_zho_trad
       }}'
     metadata: *id001
-    name: translate-this-wol-ara
-    reference: Translate this from X to Y (Wolof into Arabic)
-  ee3c91d7-b4ca-4780-ae72-565422a54d23: !Template
+    name: flores-xglm-Marathi-traditional Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  ef7dcc05-b767-4e3b-ac3d-6548d060aa87: !Template
     answer_choices: null
-    id: ee3c91d7-b4ca-4780-ae72-565422a54d23
-    jinja: 'Translate this from Assamese into Wolof: {{ sentence_asm }} ||| {{ sentence_wol
-      }}'
+    id: ef7dcc05-b767-4e3b-ac3d-6548d060aa87
+    jinja: 'Tamil: {{ sentence_tam }} = French: ||| {{ sentence_fra }}'
     metadata: *id001
-    name: translate-this-asm-wol
-    reference: Translate this from X to Y (Assamese into Wolof)
-  ee62420e-0175-47ed-a087-e3734a7dd1f8: !Template
+    name: flores-xglm-Tamil-French
+    reference: 'L1: [sent1] = L2: [sent2]'
+  ef981a1e-0fa2-499d-ae4b-598190906f45: !Template
     answer_choices: null
-    id: ee62420e-0175-47ed-a087-e3734a7dd1f8
-    jinja: 'Translate this from Marathi into Arabic: {{ sentence_mar }} ||| {{ sentence_ara
-      }}'
+    id: ef981a1e-0fa2-499d-ae4b-598190906f45
+    jinja: 'Urdu: {{ sentence_urd }} = English: ||| {{ sentence_eng }}'
     metadata: *id001
-    name: translate-this-mar-ara
-    reference: Translate this from X to Y (Marathi into Arabic)
-  ee75f29a-ff92-4bac-b773-467eabc015ea: !Template
+    name: flores-xglm-Urdu-English
+    reference: 'L1: [sent1] = L2: [sent2]'
+  f05c5d54-1622-45f6-a6e6-0a3186fa28ba: !Template
     answer_choices: null
-    id: ee75f29a-ff92-4bac-b773-467eabc015ea
-    jinja: 'Translate this from Indonesian into Oriya: {{ sentence_ind }} ||| {{ sentence_ory
+    id: f05c5d54-1622-45f6-a6e6-0a3186fa28ba
+    jinja: 'Northern Sotho: {{ sentence_nso }} = Latin American Spanish: ||| {{ sentence_spa
       }}'
     metadata: *id001
-    name: translate-this-ind-ory
-    reference: Translate this from X to Y (Indonesian into Oriya)
-  ee87defd-ff56-48f8-862e-be388fd3a40d: !Template
+    name: flores-xglm-Northern Sotho-Latin American Spanish
+    reference: 'L1: [sent1] = L2: [sent2]'
+  f09333ba-b8f6-4dcf-af12-47da2a66897f: !Template
     answer_choices: null
-    id: ee87defd-ff56-48f8-862e-be388fd3a40d
-    jinja: 'Translate this from Zulu into Telugu: {{ sentence_zul }} ||| {{ sentence_tel
-      }}'
+    id: f09333ba-b8f6-4dcf-af12-47da2a66897f
+    jinja: 'Northern Sotho: {{ sentence_nso }} = Assamese: ||| {{ sentence_asm }}'
     metadata: *id001
-    name: translate-this-zul-tel
-    reference: Translate this from X to Y (Zulu into Telugu)
-  eefd3bd0-11dd-482a-a6fd-8b8b78364020: !Template
+    name: flores-xglm-Northern Sotho-Assamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  f0d5d550-2d43-45f8-9bef-8fde102f5c5a: !Template
     answer_choices: null
-    id: eefd3bd0-11dd-482a-a6fd-8b8b78364020
-    jinja: 'Translate this from Arabic into Yoruba: {{ sentence_ara }} ||| {{ sentence_yor
-      }}'
+    id: f0d5d550-2d43-45f8-9bef-8fde102f5c5a
+    jinja: 'Indonesian: {{ sentence_ind }} = Hindi: ||| {{ sentence_hin }}'
     metadata: *id001
-    name: translate-this-ara-yor
-    reference: Translate this from X to Y (Arabic into Yoruba)
-  ef48e6ab-b474-4069-8543-bcaa29731712: !Template
+    name: flores-xglm-Indonesian-Hindi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  f102f3ac-d72c-417c-997c-11dfe7ea45b0: !Template
     answer_choices: null
-    id: ef48e6ab-b474-4069-8543-bcaa29731712
-    jinja: 'Translate this from Urdu into Latin American Spanish: {{ sentence_urd
-      }} ||| {{ sentence_spa }}'
+    id: f102f3ac-d72c-417c-997c-11dfe7ea45b0
+    jinja: 'Kannada: {{ sentence_kan }} = Vietnamese: ||| {{ sentence_vie }}'
     metadata: *id001
-    name: translate-this-urd-spa
-    reference: Translate this from X to Y (Urdu into Latin American Spanish)
-  efbc4e49-2900-458a-b12d-c25a17fee05b: !Template
+    name: flores-xglm-Kannada-Vietnamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  f12b4ab8-96b0-4108-876c-5a76cad03001: !Template
     answer_choices: null
-    id: efbc4e49-2900-458a-b12d-c25a17fee05b
-    jinja: 'Translate this from Hindi into Latin American Spanish: {{ sentence_hin
-      }} ||| {{ sentence_spa }}'
+    id: f12b4ab8-96b0-4108-876c-5a76cad03001
+    jinja: 'Indonesian: {{ sentence_ind }} = Vietnamese: ||| {{ sentence_vie }}'
     metadata: *id001
-    name: translate-this-hin-spa
-    reference: Translate this from X to Y (Hindi into Latin American Spanish)
-  efdaad42-0d87-4908-80d6-a80f13b89982: !Template
+    name: flores-xglm-Indonesian-Vietnamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  f12e2db3-2bb6-4652-8e88-d944a93327cc: !Template
     answer_choices: null
-    id: efdaad42-0d87-4908-80d6-a80f13b89982
-    jinja: 'Translate this from Kannada into Catalan: {{ sentence_kan }} ||| {{ sentence_cat
-      }}'
+    id: f12e2db3-2bb6-4652-8e88-d944a93327cc
+    jinja: 'Tamil: {{ sentence_tam }} = Telugu: ||| {{ sentence_tel }}'
     metadata: *id001
-    name: translate-this-kan-cat
-    reference: Translate this from X to Y (Kannada into Catalan)
-  efe2bc14-cdfd-462b-b96b-7aa446563824: !Template
+    name: flores-xglm-Tamil-Telugu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  f163ff3b-b169-48fa-b58a-b1567a858bbe: !Template
     answer_choices: null
-    id: efe2bc14-cdfd-462b-b96b-7aa446563824
-    jinja: 'Translate this from Malayalam into traditional Chinese: {{ sentence_mal
-      }} ||| {{ sentence_zho_trad }}'
+    id: f163ff3b-b169-48fa-b58a-b1567a858bbe
+    jinja: 'Tamil: {{ sentence_tam }} = Wolof: ||| {{ sentence_wol }}'
     metadata: *id001
-    name: translate-this-mal-zho_trad
-    reference: Translate this from X to Y (Malayalam into traditional Chinese)
-  efe437d9-d524-4e8c-a21b-cbfdbaf631fb: !Template
+    name: flores-xglm-Tamil-Wolof
+    reference: 'L1: [sent1] = L2: [sent2]'
+  f1a6b2d7-60e6-4613-a75c-b169505446a9: !Template
     answer_choices: null
-    id: efe437d9-d524-4e8c-a21b-cbfdbaf631fb
-    jinja: 'Translate this from Telugu into Urdu: {{ sentence_tel }} ||| {{ sentence_urd
-      }}'
+    id: f1a6b2d7-60e6-4613-a75c-b169505446a9
+    jinja: 'Indonesian: {{ sentence_ind }} = Malayalam: ||| {{ sentence_mal }}'
     metadata: *id001
-    name: translate-this-tel-urd
-    reference: Translate this from X to Y (Telugu into Urdu)
-  f01ac1a4-fdfa-49c7-b742-48128f4c0984: !Template
+    name: flores-xglm-Indonesian-Malayalam
+    reference: 'L1: [sent1] = L2: [sent2]'
+  f26aa657-8560-4699-a4b8-103d24dc0c48: !Template
     answer_choices: null
-    id: f01ac1a4-fdfa-49c7-b742-48128f4c0984
-    jinja: 'Translate this from Marathi into French: {{ sentence_mar }} ||| {{ sentence_fra
-      }}'
+    id: f26aa657-8560-4699-a4b8-103d24dc0c48
+    jinja: 'Bengali: {{ sentence_ben }} = Malayalam: ||| {{ sentence_mal }}'
     metadata: *id001
-    name: translate-this-mar-fra
-    reference: Translate this from X to Y (Marathi into French)
-  f01ce632-31d4-4b01-b352-e2d70b49a4c4: !Template
+    name: flores-xglm-Bengali-Malayalam
+    reference: 'L1: [sent1] = L2: [sent2]'
+  f28151cb-38aa-4a52-8744-ec7e2c1cca3b: !Template
     answer_choices: null
-    id: f01ce632-31d4-4b01-b352-e2d70b49a4c4
-    jinja: 'Translate this from Kannada into Marathi: {{ sentence_kan }} ||| {{ sentence_mar
-      }}'
+    id: f28151cb-38aa-4a52-8744-ec7e2c1cca3b
+    jinja: 'Tamil: {{ sentence_tam }} = Malayalam: ||| {{ sentence_mal }}'
     metadata: *id001
-    name: translate-this-kan-mar
-    reference: Translate this from X to Y (Kannada into Marathi)
-  f01d3921-b511-4987-9f2d-2e9bc12516fd: !Template
+    name: flores-xglm-Tamil-Malayalam
+    reference: 'L1: [sent1] = L2: [sent2]'
+  f2dee7b7-adb6-4118-99e2-3045cfcc5fbb: !Template
     answer_choices: null
-    id: f01d3921-b511-4987-9f2d-2e9bc12516fd
-    jinja: 'Translate this from Oriya into Vietnamese: {{ sentence_ory }} ||| {{ sentence_vie
-      }}'
+    id: f2dee7b7-adb6-4118-99e2-3045cfcc5fbb
+    jinja: 'Tamil: {{ sentence_tam }} = Marathi: ||| {{ sentence_mar }}'
     metadata: *id001
-    name: translate-this-ory-vie
-    reference: Translate this from X to Y (Oriya into Vietnamese)
-  f023ff21-3f36-4757-bce9-c1370325c7e1: !Template
+    name: flores-xglm-Tamil-Marathi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  f31170a5-4db6-4e4e-97c6-9a770ee6c50b: !Template
     answer_choices: null
-    id: f023ff21-3f36-4757-bce9-c1370325c7e1
-    jinja: 'Translate this from Marathi into Nepali: {{ sentence_mar }} ||| {{ sentence_npi
-      }}'
+    id: f31170a5-4db6-4e4e-97c6-9a770ee6c50b
+    jinja: 'Nepali: {{ sentence_npi }} = Kannada: ||| {{ sentence_kan }}'
     metadata: *id001
-    name: translate-this-mar-npi
-    reference: Translate this from X to Y (Marathi into Nepali)
-  f07681d7-66a2-4c6c-9787-662f220460fb: !Template
+    name: flores-xglm-Nepali-Kannada
+    reference: 'L1: [sent1] = L2: [sent2]'
+  f3488ec0-b23b-45f7-a415-5bcab69922d9: !Template
     answer_choices: null
-    id: f07681d7-66a2-4c6c-9787-662f220460fb
-    jinja: 'Translate this from Malayalam into Igbo: {{ sentence_mal }} ||| {{ sentence_ibo
+    id: f3488ec0-b23b-45f7-a415-5bcab69922d9
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = Punjabi: ||| {{ sentence_pan
       }}'
     metadata: *id001
-    name: translate-this-mal-ibo
-    reference: Translate this from X to Y (Malayalam into Igbo)
-  f0843bb8-5d42-4a0a-b69d-01f5c95a88bf: !Template
+    name: flores-xglm-Latin American Spanish-Punjabi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  f391205a-d30a-43ec-8aae-477e664390df: !Template
     answer_choices: null
-    id: f0843bb8-5d42-4a0a-b69d-01f5c95a88bf
-    jinja: 'Translate this from Northern Sotho into Telugu: {{ sentence_nso }} |||
-      {{ sentence_tel }}'
+    id: f391205a-d30a-43ec-8aae-477e664390df
+    jinja: 'Bengali: {{ sentence_ben }} = Marathi: ||| {{ sentence_mar }}'
     metadata: *id001
-    name: translate-this-nso-tel
-    reference: Translate this from X to Y (Northern Sotho into Telugu)
-  f086694a-6295-405e-b090-b825ef427574: !Template
+    name: flores-xglm-Bengali-Marathi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  f403f7c5-5397-4776-8135-4f24952e6af4: !Template
     answer_choices: null
-    id: f086694a-6295-405e-b090-b825ef427574
-    jinja: 'Translate this from Catalan into Northern Sotho: {{ sentence_cat }} |||
-      {{ sentence_nso }}'
+    id: f403f7c5-5397-4776-8135-4f24952e6af4
+    jinja: 'Xhosa: {{ sentence_xho }} = Lingala: ||| {{ sentence_lin }}'
     metadata: *id001
-    name: translate-this-cat-nso
-    reference: Translate this from X to Y (Catalan into Northern Sotho)
-  f0e43f53-5411-42e9-a4db-fe8118155861: !Template
+    name: flores-xglm-Xhosa-Lingala
+    reference: 'L1: [sent1] = L2: [sent2]'
+  f4499420-5dc1-4e1b-bdfb-4e68b1ac80a5: !Template
     answer_choices: null
-    id: f0e43f53-5411-42e9-a4db-fe8118155861
-    jinja: 'Translate this from Vietnamese into French: {{ sentence_vie }} ||| {{
-      sentence_fra }}'
+    id: f4499420-5dc1-4e1b-bdfb-4e68b1ac80a5
+    jinja: 'Zulu: {{ sentence_zul }} = Wolof: ||| {{ sentence_wol }}'
     metadata: *id001
-    name: translate-this-vie-fra
-    reference: Translate this from X to Y (Vietnamese into French)
-  f112c0b9-3b55-4e45-8f04-5335ff10d362: !Template
+    name: flores-xglm-Zulu-Wolof
+    reference: 'L1: [sent1] = L2: [sent2]'
+  f4bdf931-b85f-405f-8ae9-10c960c06330: !Template
     answer_choices: null
-    id: f112c0b9-3b55-4e45-8f04-5335ff10d362
-    jinja: 'Translate this from Tamil into Brazilian Portuguese: {{ sentence_tam }}
-      ||| {{ sentence_por }}'
+    id: f4bdf931-b85f-405f-8ae9-10c960c06330
+    jinja: 'Catalan: {{ sentence_cat }} = Igbo: ||| {{ sentence_ibo }}'
     metadata: *id001
-    name: translate-this-tam-por
-    reference: Translate this from X to Y (Tamil into Brazilian Portuguese)
-  f188f5f4-da4f-437b-808d-c22fcd5e8220: !Template
+    name: flores-xglm-Catalan-Igbo
+    reference: 'L1: [sent1] = L2: [sent2]'
+  f53e37be-ec61-448a-a92b-f61631ee4ed7: !Template
     answer_choices: null
-    id: f188f5f4-da4f-437b-808d-c22fcd5e8220
-    jinja: 'Translate this from Malayalam into Assamese: {{ sentence_mal }} ||| {{
-      sentence_asm }}'
+    id: f53e37be-ec61-448a-a92b-f61631ee4ed7
+    jinja: 'Malayalam: {{ sentence_mal }} = Gujarati: ||| {{ sentence_guj }}'
     metadata: *id001
-    name: translate-this-mal-asm
-    reference: Translate this from X to Y (Malayalam into Assamese)
-  f23ffad2-7fbb-4e14-9577-3d83ade39d6e: !Template
+    name: flores-xglm-Malayalam-Gujarati
+    reference: 'L1: [sent1] = L2: [sent2]'
+  f5483cea-167e-4be4-9dd8-927f4e53181a: !Template
     answer_choices: null
-    id: f23ffad2-7fbb-4e14-9577-3d83ade39d6e
-    jinja: 'Translate this from Punjabi into Yoruba: {{ sentence_pan }} ||| {{ sentence_yor
-      }}'
+    id: f5483cea-167e-4be4-9dd8-927f4e53181a
+    jinja: 'Lingala: {{ sentence_lin }} = Igbo: ||| {{ sentence_ibo }}'
     metadata: *id001
-    name: translate-this-pan-yor
-    reference: Translate this from X to Y (Punjabi into Yoruba)
-  f26bed06-a456-4085-8873-5d64b5e8c3c5: !Template
+    name: flores-xglm-Lingala-Igbo
+    reference: 'L1: [sent1] = L2: [sent2]'
+  f54ebc9f-73c8-4176-82aa-47cf76d48c68: !Template
     answer_choices: null
-    id: f26bed06-a456-4085-8873-5d64b5e8c3c5
-    jinja: 'Translate this from Wolof into Bengali: {{ sentence_wol }} ||| {{ sentence_ben
+    id: f54ebc9f-73c8-4176-82aa-47cf76d48c68
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Kannada: ||| {{ sentence_kan
       }}'
     metadata: *id001
-    name: translate-this-wol-ben
-    reference: Translate this from X to Y (Wolof into Bengali)
-  f2e74d7d-8188-4b5b-bab7-14616aead5d4: !Template
+    name: flores-xglm-Brazilian Portuguese-Kannada
+    reference: 'L1: [sent1] = L2: [sent2]'
+  f575216f-cf03-467f-b56b-9cd373c334b3: !Template
     answer_choices: null
-    id: f2e74d7d-8188-4b5b-bab7-14616aead5d4
-    jinja: 'Translate this from Indonesian into Xhosa: {{ sentence_ind }} ||| {{ sentence_xho
-      }}'
+    id: f575216f-cf03-467f-b56b-9cd373c334b3
+    jinja: 'Marathi: {{ sentence_mar }} = Telugu: ||| {{ sentence_tel }}'
     metadata: *id001
-    name: translate-this-ind-xho
-    reference: Translate this from X to Y (Indonesian into Xhosa)
-  f310c3f0-d7d6-48e2-82fa-856764d96968: !Template
+    name: flores-xglm-Marathi-Telugu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  f5875d31-cf8e-4bb0-ad36-f25e38abcdb0: !Template
     answer_choices: null
-    id: f310c3f0-d7d6-48e2-82fa-856764d96968
-    jinja: 'Translate this from Yoruba into Kannada: {{ sentence_yor }} ||| {{ sentence_kan
-      }}'
+    id: f5875d31-cf8e-4bb0-ad36-f25e38abcdb0
+    jinja: 'Vietnamese: {{ sentence_vie }} = Marathi: ||| {{ sentence_mar }}'
     metadata: *id001
-    name: translate-this-yor-kan
-    reference: Translate this from X to Y (Yoruba into Kannada)
-  f3efd0c9-945a-4ea4-b151-09262b9117e1: !Template
+    name: flores-xglm-Vietnamese-Marathi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  f6342784-5f44-409f-b884-47ff4cba9e1c: !Template
     answer_choices: null
-    id: f3efd0c9-945a-4ea4-b151-09262b9117e1
-    jinja: 'Translate this from Assamese into Telugu: {{ sentence_asm }} ||| {{ sentence_tel
+    id: f6342784-5f44-409f-b884-47ff4cba9e1c
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = Northern Sotho: ||| {{ sentence_nso
       }}'
     metadata: *id001
-    name: translate-this-asm-tel
-    reference: Translate this from X to Y (Assamese into Telugu)
-  f3efdde0-e1fa-491c-9fe6-0bffe700963e: !Template
+    name: flores-xglm-Brazilian Portuguese-Northern Sotho
+    reference: 'L1: [sent1] = L2: [sent2]'
+  f67dd256-6a90-4aea-b573-b90ed7214b04: !Template
     answer_choices: null
-    id: f3efdde0-e1fa-491c-9fe6-0bffe700963e
-    jinja: 'Translate this from traditional Chinese into Arabic: {{ sentence_zho_trad
-      }} ||| {{ sentence_ara }}'
+    id: f67dd256-6a90-4aea-b573-b90ed7214b04
+    jinja: 'Tamil: {{ sentence_tam }} = Gujarati: ||| {{ sentence_guj }}'
     metadata: *id001
-    name: translate-this-zho_trad-ara
-    reference: Translate this from X to Y (traditional Chinese into Arabic)
-  f41aadd4-3a3c-42ab-82d7-5082750e893d: !Template
+    name: flores-xglm-Tamil-Gujarati
+    reference: 'L1: [sent1] = L2: [sent2]'
+  f6b8b65a-ebe7-482d-ae01-4cbd3e3dca2d: !Template
     answer_choices: null
-    id: f41aadd4-3a3c-42ab-82d7-5082750e893d
-    jinja: 'Translate this from Oriya into Brazilian Portuguese: {{ sentence_ory }}
-      ||| {{ sentence_por }}'
+    id: f6b8b65a-ebe7-482d-ae01-4cbd3e3dca2d
+    jinja: 'Marathi: {{ sentence_mar }} = Swahili: ||| {{ sentence_swh }}'
     metadata: *id001
-    name: translate-this-ory-por
-    reference: Translate this from X to Y (Oriya into Brazilian Portuguese)
-  f4ef8074-7e0c-40ca-9006-93139cafbf5d: !Template
+    name: flores-xglm-Marathi-Swahili
+    reference: 'L1: [sent1] = L2: [sent2]'
+  f8607826-3ee8-4eac-b3f9-21e9c6e5e50d: !Template
     answer_choices: null
-    id: f4ef8074-7e0c-40ca-9006-93139cafbf5d
-    jinja: 'Translate this from Wolof into Assamese: {{ sentence_wol }} ||| {{ sentence_asm
-      }}'
+    id: f8607826-3ee8-4eac-b3f9-21e9c6e5e50d
+    jinja: 'Zulu: {{ sentence_zul }} = Kannada: ||| {{ sentence_kan }}'
     metadata: *id001
-    name: translate-this-wol-asm
-    reference: Translate this from X to Y (Wolof into Assamese)
-  f4f02b8c-3eb7-43c0-8658-fa00b58b2cba: !Template
+    name: flores-xglm-Zulu-Kannada
+    reference: 'L1: [sent1] = L2: [sent2]'
+  f8c81094-2816-44d3-955f-856e01125883: !Template
     answer_choices: null
-    id: f4f02b8c-3eb7-43c0-8658-fa00b58b2cba
-    jinja: 'Translate this from Xhosa into Marathi: {{ sentence_xho }} ||| {{ sentence_mar
-      }}'
+    id: f8c81094-2816-44d3-955f-856e01125883
+    jinja: 'Gujarati: {{ sentence_guj }} = Northern Sotho: ||| {{ sentence_nso }}'
     metadata: *id001
-    name: translate-this-xho-mar
-    reference: Translate this from X to Y (Xhosa into Marathi)
-  f58fc195-a902-47be-a673-df83cb196637: !Template
+    name: flores-xglm-Gujarati-Northern Sotho
+    reference: 'L1: [sent1] = L2: [sent2]'
+  f8d391bf-3f1c-4e74-97db-14fde11b8d56: !Template
     answer_choices: null
-    id: f58fc195-a902-47be-a673-df83cb196637
-    jinja: 'Translate this from simplified Chinese into Lingala: {{ sentence_zho_simpl
-      }} ||| {{ sentence_lin }}'
+    id: f8d391bf-3f1c-4e74-97db-14fde11b8d56
+    jinja: 'Lingala: {{ sentence_lin }} = Indonesian: ||| {{ sentence_ind }}'
     metadata: *id001
-    name: translate-this-zho_simpl-lin
-    reference: Translate this from X to Y (simplified Chinese into Lingala)
-  f5a04658-994f-4039-ae76-4fc1ba41a0eb: !Template
+    name: flores-xglm-Lingala-Indonesian
+    reference: 'L1: [sent1] = L2: [sent2]'
+  f8d949b1-521b-4d73-9308-7fa0fb276e42: !Template
     answer_choices: null
-    id: f5a04658-994f-4039-ae76-4fc1ba41a0eb
-    jinja: 'Translate this from Wolof into French: {{ sentence_wol }} ||| {{ sentence_fra
-      }}'
+    id: f8d949b1-521b-4d73-9308-7fa0fb276e42
+    jinja: 'Zulu: {{ sentence_zul }} = Xhosa: ||| {{ sentence_xho }}'
     metadata: *id001
-    name: translate-this-wol-fra
-    reference: Translate this from X to Y (Wolof into French)
-  f63c4a9c-af61-47f2-b6c0-4916dfea4b44: !Template
+    name: flores-xglm-Zulu-Xhosa
+    reference: 'L1: [sent1] = L2: [sent2]'
+  f8e296a4-418a-49ba-b655-92bb1a11e709: !Template
     answer_choices: null
-    id: f63c4a9c-af61-47f2-b6c0-4916dfea4b44
-    jinja: 'Translate this from Malayalam into Arabic: {{ sentence_mal }} ||| {{ sentence_ara
+    id: f8e296a4-418a-49ba-b655-92bb1a11e709
+    jinja: 'Brazilian Portuguese: {{ sentence_por }} = French: ||| {{ sentence_fra
       }}'
     metadata: *id001
-    name: translate-this-mal-ara
-    reference: Translate this from X to Y (Malayalam into Arabic)
-  f727f10f-56bc-4a09-a1d1-53d4eda80d9d: !Template
+    name: flores-xglm-Brazilian Portuguese-French
+    reference: 'L1: [sent1] = L2: [sent2]'
+  f9348176-6bd7-4561-a6c4-9aebbb73080e: !Template
     answer_choices: null
-    id: f727f10f-56bc-4a09-a1d1-53d4eda80d9d
-    jinja: 'Translate this from Xhosa into Indonesian: {{ sentence_xho }} ||| {{ sentence_ind
-      }}'
+    id: f9348176-6bd7-4561-a6c4-9aebbb73080e
+    jinja: 'Zulu: {{ sentence_zul }} = Nepali: ||| {{ sentence_npi }}'
     metadata: *id001
-    name: translate-this-xho-ind
-    reference: Translate this from X to Y (Xhosa into Indonesian)
-  f72c69b7-d7d8-4234-8da5-c4906ad576fc: !Template
+    name: flores-xglm-Zulu-Nepali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  f935d461-7dcd-4652-b87f-24199e524b8e: !Template
     answer_choices: null
-    id: f72c69b7-d7d8-4234-8da5-c4906ad576fc
-    jinja: 'Translate this from Igbo into Brazilian Portuguese: {{ sentence_ibo }}
-      ||| {{ sentence_por }}'
+    id: f935d461-7dcd-4652-b87f-24199e524b8e
+    jinja: 'Urdu: {{ sentence_urd }} = simplified Chinese: ||| {{ sentence_zho_simpl
+      }}'
     metadata: *id001
-    name: translate-this-ibo-por
-    reference: Translate this from X to Y (Igbo into Brazilian Portuguese)
-  f75c5ba9-7bda-4963-bdc3-015050473a72: !Template
+    name: flores-xglm-Urdu-simplified Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  f94dde62-79d3-4ee8-9378-7efed89c59ad: !Template
     answer_choices: null
-    id: f75c5ba9-7bda-4963-bdc3-015050473a72
-    jinja: 'Translate this from Latin American Spanish into Catalan: {{ sentence_spa
-      }} ||| {{ sentence_cat }}'
+    id: f94dde62-79d3-4ee8-9378-7efed89c59ad
+    jinja: 'Tamil: {{ sentence_tam }} = Northern Sotho: ||| {{ sentence_nso }}'
     metadata: *id001
-    name: translate-this-spa-cat
-    reference: Translate this from X to Y (Latin American Spanish into Catalan)
-  f7ec9c9c-d60a-43ed-b464-6a6a793b3fa8: !Template
+    name: flores-xglm-Tamil-Northern Sotho
+    reference: 'L1: [sent1] = L2: [sent2]'
+  f976ee7b-e628-42ce-9cc6-142e5514af89: !Template
     answer_choices: null
-    id: f7ec9c9c-d60a-43ed-b464-6a6a793b3fa8
-    jinja: 'Translate this from Assamese into Bengali: {{ sentence_asm }} ||| {{ sentence_ben
-      }}'
+    id: f976ee7b-e628-42ce-9cc6-142e5514af89
+    jinja: 'Catalan: {{ sentence_cat }} = French: ||| {{ sentence_fra }}'
     metadata: *id001
-    name: translate-this-asm-ben
-    reference: Translate this from X to Y (Assamese into Bengali)
-  f84ff479-2bce-4e05-85c9-fb8d3dbf48a7: !Template
+    name: flores-xglm-Catalan-French
+    reference: 'L1: [sent1] = L2: [sent2]'
+  f985fac8-614f-4056-83b5-8c0bb5c6f41d: !Template
     answer_choices: null
-    id: f84ff479-2bce-4e05-85c9-fb8d3dbf48a7
-    jinja: 'Translate this from Catalan into Nepali: {{ sentence_cat }} ||| {{ sentence_npi
-      }}'
+    id: f985fac8-614f-4056-83b5-8c0bb5c6f41d
+    jinja: 'Swahili: {{ sentence_swh }} = Igbo: ||| {{ sentence_ibo }}'
     metadata: *id001
-    name: translate-this-cat-npi
-    reference: Translate this from X to Y (Catalan into Nepali)
-  f8534e41-f498-4454-98a1-fc8fbb884311: !Template
+    name: flores-xglm-Swahili-Igbo
+    reference: 'L1: [sent1] = L2: [sent2]'
+  f9e8466f-d5f5-4814-96f3-eefe67c4737a: !Template
     answer_choices: null
-    id: f8534e41-f498-4454-98a1-fc8fbb884311
-    jinja: 'Translate this from Assamese into Igbo: {{ sentence_asm }} ||| {{ sentence_ibo
+    id: f9e8466f-d5f5-4814-96f3-eefe67c4737a
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Punjabi: ||| {{ sentence_pan
       }}'
     metadata: *id001
-    name: translate-this-asm-ibo
-    reference: Translate this from X to Y (Assamese into Igbo)
-  f8c9edbb-257f-4d36-be8b-ef7d0726a930: !Template
+    name: flores-xglm-traditional Chinese-Punjabi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  fa0c6ab2-eee2-4e58-ba80-251e3e0610f6: !Template
     answer_choices: null
-    id: f8c9edbb-257f-4d36-be8b-ef7d0726a930
-    jinja: 'Translate this from Gujarati into Xhosa: {{ sentence_guj }} ||| {{ sentence_xho
-      }}'
+    id: fa0c6ab2-eee2-4e58-ba80-251e3e0610f6
+    jinja: 'Arabic: {{ sentence_ara }} = Telugu: ||| {{ sentence_tel }}'
     metadata: *id001
-    name: translate-this-guj-xho
-    reference: Translate this from X to Y (Gujarati into Xhosa)
-  f91f582c-c5c0-4dd3-a1fe-aa114f7f26c2: !Template
+    name: flores-xglm-Arabic-Telugu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  fa2422ed-769a-46e2-b00f-95fa54e73ee4: !Template
     answer_choices: null
-    id: f91f582c-c5c0-4dd3-a1fe-aa114f7f26c2
-    jinja: 'Translate this from Marathi into simplified Chinese: {{ sentence_mar }}
-      ||| {{ sentence_zho_simpl }}'
+    id: fa2422ed-769a-46e2-b00f-95fa54e73ee4
+    jinja: 'Northern Sotho: {{ sentence_nso }} = Xhosa: ||| {{ sentence_xho }}'
     metadata: *id001
-    name: translate-this-mar-zho_simpl
-    reference: Translate this from X to Y (Marathi into simplified Chinese)
-  f955418d-0cd4-497b-8d30-e05d6d632540: !Template
+    name: flores-xglm-Northern Sotho-Xhosa
+    reference: 'L1: [sent1] = L2: [sent2]'
+  fa2d4ad6-4ad0-454c-897c-e9829966251e: !Template
     answer_choices: null
-    id: f955418d-0cd4-497b-8d30-e05d6d632540
-    jinja: 'Translate this from simplified Chinese into Northern Sotho: {{ sentence_zho_simpl
-      }} ||| {{ sentence_nso }}'
+    id: fa2d4ad6-4ad0-454c-897c-e9829966251e
+    jinja: 'Hindi: {{ sentence_hin }} = Oriya: ||| {{ sentence_ory }}'
     metadata: *id001
-    name: translate-this-zho_simpl-nso
-    reference: Translate this from X to Y (simplified Chinese into Northern Sotho)
-  f9ea792f-0894-4281-a88b-0903bf2d7660: !Template
+    name: flores-xglm-Hindi-Oriya
+    reference: 'L1: [sent1] = L2: [sent2]'
+  fa3030d6-5aa2-47fe-96ac-f320e741a99e: !Template
     answer_choices: null
-    id: f9ea792f-0894-4281-a88b-0903bf2d7660
-    jinja: 'Translate this from English into Northern Sotho: {{ sentence_eng }} |||
-      {{ sentence_nso }}'
+    id: fa3030d6-5aa2-47fe-96ac-f320e741a99e
+    jinja: 'Yoruba: {{ sentence_yor }} = Oriya: ||| {{ sentence_ory }}'
     metadata: *id001
-    name: translate-this-eng-nso
-    reference: Translate this from X to Y (English into Northern Sotho)
-  fa53e3df-d995-4f36-9a1f-6a126cae3fa4: !Template
+    name: flores-xglm-Yoruba-Oriya
+    reference: 'L1: [sent1] = L2: [sent2]'
+  fa3829ec-ee06-42b5-8985-82f3f04da338: !Template
     answer_choices: null
-    id: fa53e3df-d995-4f36-9a1f-6a126cae3fa4
-    jinja: 'Translate this from Catalan into Indonesian: {{ sentence_cat }} ||| {{
-      sentence_ind }}'
+    id: fa3829ec-ee06-42b5-8985-82f3f04da338
+    jinja: 'Kannada: {{ sentence_kan }} = Yoruba: ||| {{ sentence_yor }}'
     metadata: *id001
-    name: translate-this-cat-ind
-    reference: Translate this from X to Y (Catalan into Indonesian)
-  fa545807-bdb7-44e9-898b-95bd91013743: !Template
+    name: flores-xglm-Kannada-Yoruba
+    reference: 'L1: [sent1] = L2: [sent2]'
+  fa4d78f0-559f-49a1-90fd-7fbce2b693c4: !Template
     answer_choices: null
-    id: fa545807-bdb7-44e9-898b-95bd91013743
-    jinja: 'Translate this from Vietnamese into Igbo: {{ sentence_vie }} ||| {{ sentence_ibo
-      }}'
+    id: fa4d78f0-559f-49a1-90fd-7fbce2b693c4
+    jinja: 'French: {{ sentence_fra }} = Kannada: ||| {{ sentence_kan }}'
     metadata: *id001
-    name: translate-this-vie-ibo
-    reference: Translate this from X to Y (Vietnamese into Igbo)
-  fae0080c-b3cf-4308-a900-e67bb320a510: !Template
+    name: flores-xglm-French-Kannada
+    reference: 'L1: [sent1] = L2: [sent2]'
+  fac3c1c2-0b88-4b65-abdf-626b638ff94f: !Template
     answer_choices: null
-    id: fae0080c-b3cf-4308-a900-e67bb320a510
-    jinja: 'Translate this from Yoruba into Marathi: {{ sentence_yor }} ||| {{ sentence_mar
-      }}'
+    id: fac3c1c2-0b88-4b65-abdf-626b638ff94f
+    jinja: 'Vietnamese: {{ sentence_vie }} = Kannada: ||| {{ sentence_kan }}'
     metadata: *id001
-    name: translate-this-yor-mar
-    reference: Translate this from X to Y (Yoruba into Marathi)
-  fbb44e04-c0be-4dd0-8ceb-65e3effa1952: !Template
+    name: flores-xglm-Vietnamese-Kannada
+    reference: 'L1: [sent1] = L2: [sent2]'
+  faccc6e8-38be-4c00-ac18-0eced35290f0: !Template
     answer_choices: null
-    id: fbb44e04-c0be-4dd0-8ceb-65e3effa1952
-    jinja: 'Translate this from Lingala into Punjabi: {{ sentence_lin }} ||| {{ sentence_pan
+    id: faccc6e8-38be-4c00-ac18-0eced35290f0
+    jinja: 'Gujarati: {{ sentence_guj }} = simplified Chinese: ||| {{ sentence_zho_simpl
       }}'
     metadata: *id001
-    name: translate-this-lin-pan
-    reference: Translate this from X to Y (Lingala into Punjabi)
-  fc6453f1-b7e8-4198-8f08-bcff636aac9f: !Template
+    name: flores-xglm-Gujarati-simplified Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  fb0f2351-29aa-404e-85b0-0155469150f6: !Template
     answer_choices: null
-    id: fc6453f1-b7e8-4198-8f08-bcff636aac9f
-    jinja: 'Translate this from Brazilian Portuguese into Punjabi: {{ sentence_por
-      }} ||| {{ sentence_pan }}'
-    metadata: *id001
-    name: translate-this-por-pan
-    reference: Translate this from X to Y (Brazilian Portuguese into Punjabi)
-  fcc49e8b-157d-4c3e-9a7e-b161b5f21e79: !Template
-    answer_choices: null
-    id: fcc49e8b-157d-4c3e-9a7e-b161b5f21e79
-    jinja: 'Translate this from Bengali into Assamese: {{ sentence_ben }} ||| {{ sentence_asm
-      }}'
+    id: fb0f2351-29aa-404e-85b0-0155469150f6
+    jinja: 'Igbo: {{ sentence_ibo }} = Indonesian: ||| {{ sentence_ind }}'
     metadata: *id001
-    name: translate-this-ben-asm
-    reference: Translate this from X to Y (Bengali into Assamese)
-  fccf6caf-9a63-4069-bfdd-ff85256b1779: !Template
+    name: flores-xglm-Igbo-Indonesian
+    reference: 'L1: [sent1] = L2: [sent2]'
+  fb51cff4-bd8c-4979-a26b-ccce015c0c20: !Template
     answer_choices: null
-    id: fccf6caf-9a63-4069-bfdd-ff85256b1779
-    jinja: 'Translate this from Northern Sotho into Marathi: {{ sentence_nso }} |||
-      {{ sentence_mar }}'
+    id: fb51cff4-bd8c-4979-a26b-ccce015c0c20
+    jinja: 'Arabic: {{ sentence_ara }} = Vietnamese: ||| {{ sentence_vie }}'
     metadata: *id001
-    name: translate-this-nso-mar
-    reference: Translate this from X to Y (Northern Sotho into Marathi)
-  fd0e5655-ccac-4a11-a1bf-79678c0858b1: !Template
+    name: flores-xglm-Arabic-Vietnamese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  fb67f239-c4b6-426d-8093-c632736aadf6: !Template
     answer_choices: null
-    id: fd0e5655-ccac-4a11-a1bf-79678c0858b1
-    jinja: 'Translate this from Hindi into Wolof: {{ sentence_hin }} ||| {{ sentence_wol
-      }}'
+    id: fb67f239-c4b6-426d-8093-c632736aadf6
+    jinja: 'Kannada: {{ sentence_kan }} = English: ||| {{ sentence_eng }}'
     metadata: *id001
-    name: translate-this-hin-wol
-    reference: Translate this from X to Y (Hindi into Wolof)
-  fd24ee3f-8ed3-4b53-9bb8-90294e9bc9ef: !Template
+    name: flores-xglm-Kannada-English
+    reference: 'L1: [sent1] = L2: [sent2]'
+  fb74c862-15b0-4646-9502-f86f4ba4e797: !Template
     answer_choices: null
-    id: fd24ee3f-8ed3-4b53-9bb8-90294e9bc9ef
-    jinja: 'Translate this from Catalan into Bengali: {{ sentence_cat }} ||| {{ sentence_ben
-      }}'
+    id: fb74c862-15b0-4646-9502-f86f4ba4e797
+    jinja: 'Urdu: {{ sentence_urd }} = Catalan: ||| {{ sentence_cat }}'
     metadata: *id001
-    name: translate-this-cat-ben
-    reference: Translate this from X to Y (Catalan into Bengali)
-  fd366982-6cc3-456c-b1fe-29fc695151ad: !Template
+    name: flores-xglm-Urdu-Catalan
+    reference: 'L1: [sent1] = L2: [sent2]'
+  fb9fb355-c39a-4e7e-81c6-4f223af8314a: !Template
     answer_choices: null
-    id: fd366982-6cc3-456c-b1fe-29fc695151ad
-    jinja: 'Translate this from Igbo into Nepali: {{ sentence_ibo }} ||| {{ sentence_npi
-      }}'
+    id: fb9fb355-c39a-4e7e-81c6-4f223af8314a
+    jinja: 'Kannada: {{ sentence_kan }} = Igbo: ||| {{ sentence_ibo }}'
     metadata: *id001
-    name: translate-this-ibo-npi
-    reference: Translate this from X to Y (Igbo into Nepali)
-  fd6bbfc0-13cd-4fe3-b7b3-d3e3eee64f62: !Template
+    name: flores-xglm-Kannada-Igbo
+    reference: 'L1: [sent1] = L2: [sent2]'
+  fbdb02f0-e984-4309-ba5b-94c66f8b0f40: !Template
     answer_choices: null
-    id: fd6bbfc0-13cd-4fe3-b7b3-d3e3eee64f62
-    jinja: 'Translate this from Punjabi into Lingala: {{ sentence_pan }} ||| {{ sentence_lin
-      }}'
+    id: fbdb02f0-e984-4309-ba5b-94c66f8b0f40
+    jinja: 'Malayalam: {{ sentence_mal }} = Wolof: ||| {{ sentence_wol }}'
     metadata: *id001
-    name: translate-this-pan-lin
-    reference: Translate this from X to Y (Punjabi into Lingala)
-  fd7aa6fa-2357-4d52-9fab-0f91c9c57adf: !Template
+    name: flores-xglm-Malayalam-Wolof
+    reference: 'L1: [sent1] = L2: [sent2]'
+  fc37daf3-e40a-4965-98ee-f3adb73654e1: !Template
     answer_choices: null
-    id: fd7aa6fa-2357-4d52-9fab-0f91c9c57adf
-    jinja: 'Translate this from Northern Sotho into Nepali: {{ sentence_nso }} |||
-      {{ sentence_npi }}'
+    id: fc37daf3-e40a-4965-98ee-f3adb73654e1
+    jinja: 'Gujarati: {{ sentence_guj }} = Marathi: ||| {{ sentence_mar }}'
     metadata: *id001
-    name: translate-this-nso-npi
-    reference: Translate this from X to Y (Northern Sotho into Nepali)
-  fd9155cf-34f2-4c31-b285-87fd77ac6bc4: !Template
+    name: flores-xglm-Gujarati-Marathi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  fc876d88-f31a-42c3-9f45-8a88d38b148e: !Template
     answer_choices: null
-    id: fd9155cf-34f2-4c31-b285-87fd77ac6bc4
-    jinja: 'Translate this from French into Brazilian Portuguese: {{ sentence_fra
-      }} ||| {{ sentence_por }}'
+    id: fc876d88-f31a-42c3-9f45-8a88d38b148e
+    jinja: 'Wolof: {{ sentence_wol }} = Marathi: ||| {{ sentence_mar }}'
     metadata: *id001
-    name: translate-this-fra-por
-    reference: Translate this from X to Y (French into Brazilian Portuguese)
-  fda16240-7133-4fb3-9399-fad4b22e6cf7: !Template
+    name: flores-xglm-Wolof-Marathi
+    reference: 'L1: [sent1] = L2: [sent2]'
+  fdcc17b3-ca1a-4a51-99a1-cd74ffccf537: !Template
     answer_choices: null
-    id: fda16240-7133-4fb3-9399-fad4b22e6cf7
-    jinja: 'Translate this from Punjabi into Northern Sotho: {{ sentence_pan }} |||
-      {{ sentence_nso }}'
+    id: fdcc17b3-ca1a-4a51-99a1-cd74ffccf537
+    jinja: 'Telugu: {{ sentence_tel }} = simplified Chinese: ||| {{ sentence_zho_simpl
+      }}'
     metadata: *id001
-    name: translate-this-pan-nso
-    reference: Translate this from X to Y (Punjabi into Northern Sotho)
-  fdd84b23-00c7-40df-a229-124ce87ee94a: !Template
+    name: flores-xglm-Telugu-simplified Chinese
+    reference: 'L1: [sent1] = L2: [sent2]'
+  fde586b3-742e-4ea2-98a9-478b39f0ec7b: !Template
     answer_choices: null
-    id: fdd84b23-00c7-40df-a229-124ce87ee94a
-    jinja: 'Translate this from Malayalam into simplified Chinese: {{ sentence_mal
-      }} ||| {{ sentence_zho_simpl }}'
+    id: fde586b3-742e-4ea2-98a9-478b39f0ec7b
+    jinja: 'Arabic: {{ sentence_ara }} = Malayalam: ||| {{ sentence_mal }}'
     metadata: *id001
-    name: translate-this-mal-zho_simpl
-    reference: Translate this from X to Y (Malayalam into simplified Chinese)
-  fded522d-6efc-430a-af49-69921d62846a: !Template
+    name: flores-xglm-Arabic-Malayalam
+    reference: 'L1: [sent1] = L2: [sent2]'
+  fdf7b9a1-c640-4ad7-996a-1c4295a2f3fd: !Template
     answer_choices: null
-    id: fded522d-6efc-430a-af49-69921d62846a
-    jinja: 'Translate this from Assamese into Urdu: {{ sentence_asm }} ||| {{ sentence_urd
-      }}'
+    id: fdf7b9a1-c640-4ad7-996a-1c4295a2f3fd
+    jinja: 'Vietnamese: {{ sentence_vie }} = Nepali: ||| {{ sentence_npi }}'
     metadata: *id001
-    name: translate-this-asm-urd
-    reference: Translate this from X to Y (Assamese into Urdu)
-  fe147c33-6cc1-4296-bdae-588789521618: !Template
+    name: flores-xglm-Vietnamese-Nepali
+    reference: 'L1: [sent1] = L2: [sent2]'
+  fe307b38-75b9-4e98-b53d-2685f7fe7271: !Template
     answer_choices: null
-    id: fe147c33-6cc1-4296-bdae-588789521618
-    jinja: 'Translate this from Kannada into Assamese: {{ sentence_kan }} ||| {{ sentence_asm
-      }}'
+    id: fe307b38-75b9-4e98-b53d-2685f7fe7271
+    jinja: 'Marathi: {{ sentence_mar }} = Wolof: ||| {{ sentence_wol }}'
     metadata: *id001
-    name: translate-this-kan-asm
-    reference: Translate this from X to Y (Kannada into Assamese)
-  fe2f39b2-9cd0-4408-b700-f683d72e0c82: !Template
+    name: flores-xglm-Marathi-Wolof
+    reference: 'L1: [sent1] = L2: [sent2]'
+  fedb28a8-a00f-44ad-bc90-cedcd30a0c84: !Template
     answer_choices: null
-    id: fe2f39b2-9cd0-4408-b700-f683d72e0c82
-    jinja: 'Translate this from Arabic into Bengali: {{ sentence_ara }} ||| {{ sentence_ben
+    id: fedb28a8-a00f-44ad-bc90-cedcd30a0c84
+    jinja: 'traditional Chinese: {{ sentence_zho_trad }} = Indonesian: ||| {{ sentence_ind
       }}'
     metadata: *id001
-    name: translate-this-ara-ben
-    reference: Translate this from X to Y (Arabic into Bengali)
-  fe324eef-5568-4ecf-b465-d8ab58d4ffa1: !Template
+    name: flores-xglm-traditional Chinese-Indonesian
+    reference: 'L1: [sent1] = L2: [sent2]'
+  ff804217-67f2-47a2-9246-0ff6831b63cd: !Template
     answer_choices: null
-    id: fe324eef-5568-4ecf-b465-d8ab58d4ffa1
-    jinja: 'Translate this from Gujarati into Swahili: {{ sentence_guj }} ||| {{ sentence_swh
+    id: ff804217-67f2-47a2-9246-0ff6831b63cd
+    jinja: 'Latin American Spanish: {{ sentence_spa }} = Urdu: ||| {{ sentence_urd
       }}'
     metadata: *id001
-    name: translate-this-guj-swh
-    reference: Translate this from X to Y (Gujarati into Swahili)
-  ffc496b0-c8e3-49ec-a77d-65424cb0ce04: !Template
+    name: flores-xglm-Latin American Spanish-Urdu
+    reference: 'L1: [sent1] = L2: [sent2]'
+  ffa13828-37ae-4d5c-8848-060dd3ce6983: !Template
     answer_choices: null
-    id: ffc496b0-c8e3-49ec-a77d-65424cb0ce04
-    jinja: 'Translate this from English into Vietnamese: {{ sentence_eng }} ||| {{
-      sentence_vie }}'
+    id: ffa13828-37ae-4d5c-8848-060dd3ce6983
+    jinja: 'French: {{ sentence_fra }} = Indonesian: ||| {{ sentence_ind }}'
     metadata: *id001
-    name: translate-this-eng-vie
-    reference: Translate this from X to Y (English into Vietnamese)
-  ffd7419c-3587-48eb-8689-8e340a694167: !Template
+    name: flores-xglm-French-Indonesian
+    reference: 'L1: [sent1] = L2: [sent2]'
+  ffc04ea0-1983-43db-b88d-678b151049db: !Template
     answer_choices: null
-    id: ffd7419c-3587-48eb-8689-8e340a694167
-    jinja: 'Translate this from Northern Sotho into simplified Chinese: {{ sentence_nso
-      }} ||| {{ sentence_zho_simpl }}'
+    id: ffc04ea0-1983-43db-b88d-678b151049db
+    jinja: 'Malayalam: {{ sentence_mal }} = Indonesian: ||| {{ sentence_ind }}'
     metadata: *id001
-    name: translate-this-nso-zho_simpl
-    reference: Translate this from X to Y (Northern Sotho into simplified Chinese)
+    name: flores-xglm-Malayalam-Indonesian
+    reference: 'L1: [sent1] = L2: [sent2]'

From fa47d4132f528bb4f73abb2a03b9aad54ded139e Mon Sep 17 00:00:00 2001
From: Rachel Bawden <rachel.bawden@inria.fr@users.noreply.github.com>
Date: Tue, 27 Sep 2022 17:02:32 +0200
Subject: [PATCH 29/31] regenerated prompts

---
 promptsource/templates.py | 1 -
 1 file changed, 1 deletion(-)

diff --git a/promptsource/templates.py b/promptsource/templates.py
index 198f3f2a2..2b9eb341e 100644
--- a/promptsource/templates.py
+++ b/promptsource/templates.py
@@ -236,7 +236,6 @@
 }
 
 
-
 def highlight(input):
     return "<span style='color: #F08080'>" + input + "</span>"
 

From 0ab76ccb2da337567606f99464eae343d3e79afd Mon Sep 17 00:00:00 2001
From: Rachel Bawden <rachel.bawden@inria.fr@users.noreply.github.com>
Date: Tue, 27 Sep 2022 17:13:30 +0200
Subject: [PATCH 30/31] regenerated prompts

---
 promptsource/templates.py | 89 ++++++++++++++++++++++++++++++---------
 1 file changed, 68 insertions(+), 21 deletions(-)

diff --git a/promptsource/templates.py b/promptsource/templates.py
index 2b9eb341e..fc52ca687 100644
--- a/promptsource/templates.py
+++ b/promptsource/templates.py
@@ -27,7 +27,17 @@
 # These are users whose datasets should be included in the results returned by
 # filter_english_datasets (regardless of their metadata)
 
-INCLUDED_USERS = {"Zaid", "craffel", "GEM", "aps", "khalidalt", "shanya", "rbawden", "BigScienceBiasEval", "gsarti"}
+INCLUDED_USERS = {
+    "Zaid",
+    "craffel",
+    "GEM",
+    "aps",
+    "khalidalt",
+    "shanya",
+    "rbawden",
+    "BigScienceBiasEval",
+    "gsarti",
+}
 
 # These are the metrics with which templates can be tagged
 METRICS = {
@@ -340,7 +350,10 @@ def get_answer_choices_list(self, example):
         rtemplate = env.from_string(jinja)
         protected_example = self._escape_pipe(example)
         rendered_choices = rtemplate.render(**protected_example)
-        return [self._unescape_pipe(answer_choice.strip()) for answer_choice in rendered_choices.split("|||")]
+        return [
+            self._unescape_pipe(answer_choice.strip())
+            for answer_choice in rendered_choices.split("|||")
+        ]
 
     def get_fixed_answer_choices_list(self):
         """
@@ -356,11 +369,15 @@ def get_fixed_answer_choices_list(self):
         if len(variables) == 0:
             rtemplate = env.from_string(jinja)
             rendered_choices = rtemplate.render()
-            return [answer_choice.strip() for answer_choice in rendered_choices.split("|||")]
+            return [
+                answer_choice.strip() for answer_choice in rendered_choices.split("|||")
+            ]
         else:
             return None
 
-    def apply(self, example, truncate=True, highlight_variables=False) -> Tuple[str, List[str]]:
+    def apply(
+        self, example, truncate=True, highlight_variables=False
+    ) -> Tuple[str, List[str]]:
         """
         Creates a prompt by applying this template to an example
 
@@ -373,9 +390,7 @@ def apply(self, example, truncate=True, highlight_variables=False) -> Tuple[str,
 
         # Truncates the prompt if needed
         if truncate:
-            trunc_command = (
-                f" | string | truncate({TEXT_VAR_LENGTH}) }}}}"  # Escaping curly braces requires doubling them
-            )
+            trunc_command = f" | string | truncate({TEXT_VAR_LENGTH}) }}}}"  # Escaping curly braces requires doubling them
             jinja = jinja.replace("}}", trunc_command)
 
         # Highlights text that was substituted for variables, if requested
@@ -396,7 +411,9 @@ def apply(self, example, truncate=True, highlight_variables=False) -> Tuple[str,
 
         # Splits on the separator, and then replaces back any occurrences of the
         # separator in the original example
-        parts = [self._unescape_pipe(part).strip() for part in rendered_example.split("|||")]
+        parts = [
+            self._unescape_pipe(part).strip() for part in rendered_example.split("|||")
+        ]
         if parts == [""]:
             # Handles the case of blank results
             # Example: `tydiqa` where prompts are conditionned on the language and thus most of the time will return a blank result
@@ -413,7 +430,9 @@ def _escape_pipe(cls, example):
         # Replaces any occurrences of the "|||" separator in the example, which
         # which will be replaced back after splitting
         protected_example = {
-            key: value.replace("|||", cls.pipe_protector) if isinstance(value, str) else value
+            key: value.replace("|||", cls.pipe_protector)
+            if isinstance(value, str)
+            else value
             for key, value in example.items()
         }
         return protected_example
@@ -468,7 +487,9 @@ class TemplateCollection:
     def __init__(self):
 
         # Dict of all the DatasetTemplates, key is the tuple (dataset_name, subset_name)
-        self.datasets_templates: Dict[(str, Optional[str]), DatasetTemplates] = self._collect_datasets()
+        self.datasets_templates: Dict[
+            (str, Optional[str]), DatasetTemplates
+        ] = self._collect_datasets()
 
     @property
     def keys(self):
@@ -487,13 +508,20 @@ def _collect_datasets(self) -> Dict[Tuple[str, str], "DatasetTemplates"]:
         Returns: a dict with key=(dataset_name, subset_name)
         """
         dataset_folders = os.listdir(TEMPLATES_FOLDER_PATH)
-        dataset_folders = [folder for folder in dataset_folders if not folder.startswith(".")]
+        dataset_folders = [
+            folder for folder in dataset_folders if not folder.startswith(".")
+        ]
 
         output = {}  # format is {(dataset_name, subset_name): DatasetsTemplates}
         for dataset in dataset_folders:
             if dataset in INCLUDED_USERS:
-                for filename in os.listdir(os.path.join(TEMPLATES_FOLDER_PATH, dataset)):
-                    output = {**output, **self._collect_dataset(dataset + "/" + filename)}
+                for filename in os.listdir(
+                    os.path.join(TEMPLATES_FOLDER_PATH, dataset)
+                ):
+                    output = {
+                        **output,
+                        **self._collect_dataset(dataset + "/" + filename),
+                    }
             else:
                 output = {**output, **self._collect_dataset(dataset)}
         return output
@@ -506,10 +534,14 @@ def _collect_dataset(self, dataset):
                 output[(dataset, None)] = DatasetTemplates(dataset)
             else:
                 # This is a subfolder, and its name corresponds to the subset name
-                output[(dataset, filename)] = DatasetTemplates(dataset_name=dataset, subset_name=filename)
+                output[(dataset, filename)] = DatasetTemplates(
+                    dataset_name=dataset, subset_name=filename
+                )
         return output
 
-    def get_dataset(self, dataset_name: str, subset_name: Optional[str] = None) -> "DatasetTemplates":
+    def get_dataset(
+        self, dataset_name: str, subset_name: Optional[str] = None
+    ) -> "DatasetTemplates":
         """
         Return the DatasetTemplates object corresponding to the dataset name
 
@@ -518,7 +550,9 @@ def get_dataset(self, dataset_name: str, subset_name: Optional[str] = None) -> "
         """
         # if the dataset does not exist, we add it
         if dataset_name not in self.keys:
-            self.datasets_templates[(dataset_name, subset_name)] = DatasetTemplates(dataset_name, subset_name)
+            self.datasets_templates[(dataset_name, subset_name)] = DatasetTemplates(
+                dataset_name, subset_name
+            )
 
         return self.datasets_templates[(dataset_name, subset_name)]
 
@@ -563,7 +597,9 @@ def sync_mapping(self) -> None:
         """
         Re-compute the name_to_id_mapping to ensure it is in sync with self.templates
         """
-        self.name_to_id_mapping = {template.name: template.id for template in self.templates.values()}
+        self.name_to_id_mapping = {
+            template.name: template.id for template in self.templates.values()
+        }
 
     @property
     def all_template_names(self) -> List[str]:
@@ -575,7 +611,9 @@ def all_template_names(self) -> List[str]:
     @property
     def folder_path(self) -> str:
         if self.subset_name:
-            return os.path.join(TEMPLATES_FOLDER_PATH, self.dataset_name, self.subset_name)
+            return os.path.join(
+                TEMPLATES_FOLDER_PATH, self.dataset_name, self.subset_name
+            )
         else:
             return os.path.join(TEMPLATES_FOLDER_PATH, self.dataset_name)
 
@@ -587,7 +625,10 @@ def format_for_dump(self) -> Dict:
         """
         Create a formatted dictionary for the class attributes
         """
-        formatted_dict = {self.DATASET_KEY: self.dataset_name, self.TEMPLATES_KEY: self.templates}
+        formatted_dict = {
+            self.DATASET_KEY: self.dataset_name,
+            self.TEMPLATES_KEY: self.templates,
+        }
         if self.subset_name:
             formatted_dict[self.SUBSET_KEY] = self.subset_name
         return formatted_dict
@@ -598,7 +639,11 @@ def read_from_file(self) -> Dict:
         """
 
         if not os.path.exists(self.yaml_path):
-            dataset_name = f"{self.dataset_name} {self.subset_name}" if self.subset_name else self.dataset_name
+            dataset_name = (
+                f"{self.dataset_name} {self.subset_name}"
+                if self.subset_name
+                else self.dataset_name
+            )
             logging.warning(
                 f"Tried instantiating `DatasetTemplates` for {dataset_name}, but no prompts found. "
                 "Please ignore this warning if you are creating new prompts for this dataset."
@@ -638,7 +683,9 @@ def remove_template(self, template_name: str) -> None:
 
         # Even if we have an ID, we want to check for duplicate names
         if template_name not in self.all_template_names:
-            raise ValueError(f"No template with name {template_name} for dataset {self.dataset_name} exists.")
+            raise ValueError(
+                f"No template with name {template_name} for dataset {self.dataset_name} exists."
+            )
 
         del self.templates[self.name_to_id_mapping[template_name]]
 

From 9b35a8ae27c5b8ab8f1de532872f13539a6a815e Mon Sep 17 00:00:00 2001
From: Rachel Bawden <rachel.bawden@inria.fr@users.noreply.github.com>
Date: Tue, 27 Sep 2022 17:17:51 +0200
Subject: [PATCH 31/31] regenerated prompts

---
 promptsource/templates.py | 75 ++++++++++++---------------------------
 1 file changed, 22 insertions(+), 53 deletions(-)

diff --git a/promptsource/templates.py b/promptsource/templates.py
index fc52ca687..6aa100553 100644
--- a/promptsource/templates.py
+++ b/promptsource/templates.py
@@ -89,7 +89,7 @@
     "ce": "Chechen",
     "ny": "Chichewa, Chewa, Nyanja",
     "zh": "Chinese",
-    "cu": "Church Slavic, Old Slavonic, Church Slavonic, Old Bulgarian, Old Church Slavonic",
+    "cu": "Church Slavic, Old Slavonic, Church Slavonic, Old Bulgarian, Old Church Slavonic",
     "cv": "Chuvash",
     "kw": "Cornish",
     "co": "Corsican",
@@ -130,7 +130,7 @@
     "io": "Ido",
     "ig": "Igbo",
     "id": "Indonesian",
-    "ia": "Interlingua (International Auxiliary Language Association)",
+    "ia": "Interlingua (International Auxiliary Language Association)",
     "ie": "Interlingue, Occidental",
     "iu": "Inuktitut",
     "ik": "Inupiaq",
@@ -191,7 +191,7 @@
     "pt": "Portuguese",
     "pa": "Punjabi, Panjabi",
     "qu": "Quechua",
-    "ro": "Romanian, Moldavian, Moldovan",
+    "ro": "Romanian, Moldavian, Moldovan",
     "rm": "Romansh",
     "rn": "Rundi",
     "ru": "Russian",
@@ -222,7 +222,7 @@
     "th": "Thai",
     "bo": "Tibetan",
     "ti": "Tigrinya",
-    "to": "Tonga (Tonga Islands)",
+    "to": "Tonga (Tonga Islands)",
     "ts": "Tsonga",
     "tn": "Tswana",
     "tr": "Turkish",
@@ -350,10 +350,7 @@ def get_answer_choices_list(self, example):
         rtemplate = env.from_string(jinja)
         protected_example = self._escape_pipe(example)
         rendered_choices = rtemplate.render(**protected_example)
-        return [
-            self._unescape_pipe(answer_choice.strip())
-            for answer_choice in rendered_choices.split("|||")
-        ]
+        return [self._unescape_pipe(answer_choice.strip()) for answer_choice in rendered_choices.split("|||")]
 
     def get_fixed_answer_choices_list(self):
         """
@@ -369,15 +366,11 @@ def get_fixed_answer_choices_list(self):
         if len(variables) == 0:
             rtemplate = env.from_string(jinja)
             rendered_choices = rtemplate.render()
-            return [
-                answer_choice.strip() for answer_choice in rendered_choices.split("|||")
-            ]
+            return [answer_choice.strip() for answer_choice in rendered_choices.split("|||")]
         else:
             return None
 
-    def apply(
-        self, example, truncate=True, highlight_variables=False
-    ) -> Tuple[str, List[str]]:
+    def apply(self, example, truncate=True, highlight_variables=False) -> Tuple[str, List[str]]:
         """
         Creates a prompt by applying this template to an example
 
@@ -390,7 +383,9 @@ def apply(
 
         # Truncates the prompt if needed
         if truncate:
-            trunc_command = f" | string | truncate({TEXT_VAR_LENGTH}) }}}}"  # Escaping curly braces requires doubling them
+            trunc_command = (
+                f" | string | truncate({TEXT_VAR_LENGTH}) }}}}"  # Escaping curly braces requires doubling them
+            )
             jinja = jinja.replace("}}", trunc_command)
 
         # Highlights text that was substituted for variables, if requested
@@ -411,9 +406,7 @@ def apply(
 
         # Splits on the separator, and then replaces back any occurrences of the
         # separator in the original example
-        parts = [
-            self._unescape_pipe(part).strip() for part in rendered_example.split("|||")
-        ]
+        parts = [self._unescape_pipe(part).strip() for part in rendered_example.split("|||")]
         if parts == [""]:
             # Handles the case of blank results
             # Example: `tydiqa` where prompts are conditionned on the language and thus most of the time will return a blank result
@@ -430,9 +423,7 @@ def _escape_pipe(cls, example):
         # Replaces any occurrences of the "|||" separator in the example, which
         # which will be replaced back after splitting
         protected_example = {
-            key: value.replace("|||", cls.pipe_protector)
-            if isinstance(value, str)
-            else value
+            key: value.replace("|||", cls.pipe_protector) if isinstance(value, str) else value
             for key, value in example.items()
         }
         return protected_example
@@ -487,9 +478,7 @@ class TemplateCollection:
     def __init__(self):
 
         # Dict of all the DatasetTemplates, key is the tuple (dataset_name, subset_name)
-        self.datasets_templates: Dict[
-            (str, Optional[str]), DatasetTemplates
-        ] = self._collect_datasets()
+        self.datasets_templates: Dict[(str, Optional[str]), DatasetTemplates] = self._collect_datasets()
 
     @property
     def keys(self):
@@ -508,16 +497,12 @@ def _collect_datasets(self) -> Dict[Tuple[str, str], "DatasetTemplates"]:
         Returns: a dict with key=(dataset_name, subset_name)
         """
         dataset_folders = os.listdir(TEMPLATES_FOLDER_PATH)
-        dataset_folders = [
-            folder for folder in dataset_folders if not folder.startswith(".")
-        ]
+        dataset_folders = [folder for folder in dataset_folders if not folder.startswith(".")]
 
         output = {}  # format is {(dataset_name, subset_name): DatasetsTemplates}
         for dataset in dataset_folders:
             if dataset in INCLUDED_USERS:
-                for filename in os.listdir(
-                    os.path.join(TEMPLATES_FOLDER_PATH, dataset)
-                ):
+                for filename in os.listdir(os.path.join(TEMPLATES_FOLDER_PATH, dataset)):
                     output = {
                         **output,
                         **self._collect_dataset(dataset + "/" + filename),
@@ -534,14 +519,10 @@ def _collect_dataset(self, dataset):
                 output[(dataset, None)] = DatasetTemplates(dataset)
             else:
                 # This is a subfolder, and its name corresponds to the subset name
-                output[(dataset, filename)] = DatasetTemplates(
-                    dataset_name=dataset, subset_name=filename
-                )
+                output[(dataset, filename)] = DatasetTemplates(dataset_name=dataset, subset_name=filename)
         return output
 
-    def get_dataset(
-        self, dataset_name: str, subset_name: Optional[str] = None
-    ) -> "DatasetTemplates":
+    def get_dataset(self, dataset_name: str, subset_name: Optional[str] = None) -> "DatasetTemplates":
         """
         Return the DatasetTemplates object corresponding to the dataset name
 
@@ -550,9 +531,7 @@ def get_dataset(
         """
         # if the dataset does not exist, we add it
         if dataset_name not in self.keys:
-            self.datasets_templates[(dataset_name, subset_name)] = DatasetTemplates(
-                dataset_name, subset_name
-            )
+            self.datasets_templates[(dataset_name, subset_name)] = DatasetTemplates(dataset_name, subset_name)
 
         return self.datasets_templates[(dataset_name, subset_name)]
 
@@ -597,9 +576,7 @@ def sync_mapping(self) -> None:
         """
         Re-compute the name_to_id_mapping to ensure it is in sync with self.templates
         """
-        self.name_to_id_mapping = {
-            template.name: template.id for template in self.templates.values()
-        }
+        self.name_to_id_mapping = {template.name: template.id for template in self.templates.values()}
 
     @property
     def all_template_names(self) -> List[str]:
@@ -611,9 +588,7 @@ def all_template_names(self) -> List[str]:
     @property
     def folder_path(self) -> str:
         if self.subset_name:
-            return os.path.join(
-                TEMPLATES_FOLDER_PATH, self.dataset_name, self.subset_name
-            )
+            return os.path.join(TEMPLATES_FOLDER_PATH, self.dataset_name, self.subset_name)
         else:
             return os.path.join(TEMPLATES_FOLDER_PATH, self.dataset_name)
 
@@ -639,11 +614,7 @@ def read_from_file(self) -> Dict:
         """
 
         if not os.path.exists(self.yaml_path):
-            dataset_name = (
-                f"{self.dataset_name} {self.subset_name}"
-                if self.subset_name
-                else self.dataset_name
-            )
+            dataset_name = f"{self.dataset_name} {self.subset_name}" if self.subset_name else self.dataset_name
             logging.warning(
                 f"Tried instantiating `DatasetTemplates` for {dataset_name}, but no prompts found. "
                 "Please ignore this warning if you are creating new prompts for this dataset."
@@ -683,9 +654,7 @@ def remove_template(self, template_name: str) -> None:
 
         # Even if we have an ID, we want to check for duplicate names
         if template_name not in self.all_template_names:
-            raise ValueError(
-                f"No template with name {template_name} for dataset {self.dataset_name} exists."
-            )
+            raise ValueError(f"No template with name {template_name} for dataset {self.dataset_name} exists.")
 
         del self.templates[self.name_to_id_mapping[template_name]]