diff --git a/.gitignore b/.gitignore
index 30ee18a2381786208cefe187dd136105d9766620..32b42d4e9754651c3b45e7b605fde3b9132e0ee2 100644
--- a/.gitignore
+++ b/.gitignore
@@ -6,6 +6,7 @@ cmd.txt
 DB_inserts.txt
 dumb.sql
 scrap_script.py
+config.py
 *.pyc
 *.db
 
diff --git a/app/routes.py b/app/routes.py
index 847d23f71cc0dc0374299870e0a3a22a7d91d638..5cc7193023ac0a5aaf22ca61b706a2b20432379b 100644
--- a/app/routes.py
+++ b/app/routes.py
@@ -1929,7 +1929,6 @@ def remove_research_notification():
 
 
 @app.route('/view_research_notification')
-@login_required
 def view_research_notification():
     
     exp_id = request.args.get('exp_id', None)
diff --git a/app/templates/consent.html b/app/templates/consent.html
index ada1b8be9ec8457aae5956a6696ec3202795e0a9..f8a236d20baa19d6028e5c729a6a9a200648ee97 100644
--- a/app/templates/consent.html
+++ b/app/templates/consent.html
@@ -17,7 +17,7 @@
 <h3>{{ _('Consent for participation:') }}</h3>
 
 {% if experiment_info.research_notification_filename  %}
-<h5> {{ _('Research bulletin can be read') }}  <a href="{{ url_for('view_research_notification', exp_id=experiment_info.idexperiment) }}">{{ _('here.') }}</a></h5>
+<h5> <a href="{{ url_for('view_research_notification', exp_id=experiment_info.idexperiment) }}">{{ _('Research bulletin can be read here') }} </a></h5>
 {% endif %}
 
 {% for para in consent_paragraphs %}
diff --git a/app/templates/index.html b/app/templates/index.html
index ba931b15e0c8645b53d61406d965a85dd657411e..8fa709a1d72f145411dfd56e57415d229b203b06 100644
--- a/app/templates/index.html
+++ b/app/templates/index.html
@@ -34,7 +34,7 @@
                     
                      <ul class="list-group mb-3">
                          <li class="list-group-item active"><span class="font-weight-bold">{{ _('Name:') }}</span> {{ exp.name }} </li>
-                         <li class="list-group-item text-justify"><span class="font-weight-bold">{{ _('Instruction:') }}</span> 
+                         <li class="list-group-item"><span class="font-weight-bold">{{ _('Instruction:') }}</span> 
                          
                          {% autoescape false %}
                          {{ exp.short_instruction }}</li>
@@ -75,7 +75,7 @@
                     
                      <ul class="list-group mb-4">
                          <li class="list-group-item active"><span class="font-weight-bold">{{ _('Name:') }}</span> {{ exp.name }} </li>
-                         <li class="list-group-item text-justify"><span class="font-weight-bold">{{ _('Instruction:') }}</span> 
+                         <li class="list-group-item"><span class="font-weight-bold">{{ _('Instruction:') }}</span> 
                          
                          {% autoescape false %}
                          {{ exp.short_instruction }}</li>
@@ -119,7 +119,7 @@
                     <h3>Unpublished experiment:</h3>
                      <ul class="list-group mb-4">
                         <li class="list-group-item list-group-item-dark"><span class="font-weight-bold">Name:</span> {{ exp.name }} </li>
-                        <li class="list-group-item text-justify"><span class="font-weight-bold">Instruction:</span> 
+                        <li class="list-group-item"><span class="font-weight-bold">Instruction:</span> 
                         
                          {% autoescape false %}
                          {{ exp.short_instruction }}</li>
@@ -159,7 +159,7 @@
                     <h3>Unpublished experiment:</h3>
                      <ul class="list-group mb-4">
                         <li class="list-group-item list-group-item-dark"><span class="font-weight-bold">Name:</span> {{ exp.name }} </li>
-                        <li class="list-group-item text-justify"><span class="font-weight-bold">Instruction:</span> 
+                        <li class="list-group-item"><span class="font-weight-bold">Instruction:</span> 
                         
                         
                          {% autoescape false %}
diff --git a/app/templates/task.html b/app/templates/task.html
index 558975d8de82996bd91276667c0334ff11d50423..8eeaf5c4fb0cdb07131c158c606caa15f5b1f347 100644
--- a/app/templates/task.html
+++ b/app/templates/task.html
@@ -28,6 +28,10 @@
     
     {% if session['type']=='video' %}
         <div class="col-{{stimulus_size}} container stimulus mt-5 pt-5">
+        
+        
+        
+        
             {% for page in pages.items %}
                 <div class="embed-responsive embed-responsive-16by9">
                     <iframe class="embed-responsive-item" src="/{{ page.media }}" allowfullscreen></iframe>
@@ -38,7 +42,12 @@
 
 
     {% if session['type']=='audio' %}
+
         <div class="col-{{stimulus_size}} container stimulus mt-5 pt-5">
+
+
+
+
             {% for page in pages.items %}
                 <div class="embed-responsive embed-responsive-16by9">
                     <iframe class="embed-responsive-item" src="/{{ page.media }}" allowfullscreen></iframe>
@@ -73,6 +82,10 @@
     
     {% if session['type']=='video' %}
         <div class="col-{{stimulus_size}} container stimulus mt-5 pt-5">
+
+
+
+
             {% for page in pages.items %}
                 <div class="embed-responsive embed-responsive-16by9">
                     <iframe class="embed-responsive-item" src="/{{ randomized_stimulus.media }}" allowfullscreen></iframe>
@@ -84,6 +97,9 @@
 
     {% if session['type']=='audio' %}
         <div class="col-{{stimulus_size}} container stimulus mt-5 pt-5">
+
+
+
             {% for page in pages.items %}
                 <div class="embed-responsive embed-responsive-16by9">
                     <iframe class="embed-responsive-item" src="/{{ randomized_stimulus.media }}" allowfullscreen></iframe>
diff --git a/app/translations/el/LC_MESSAGES/messages.mo b/app/translations/el/LC_MESSAGES/messages.mo
index 7425c11d7744e83eed3dbf5241191577b486df07..2bc1396a866c90deb8c0e9897093ef49ea56d91d 100644
Binary files a/app/translations/el/LC_MESSAGES/messages.mo and b/app/translations/el/LC_MESSAGES/messages.mo differ
diff --git a/app/translations/el/LC_MESSAGES/messages.po b/app/translations/el/LC_MESSAGES/messages.po
index d22d2d5a6a7117b438a396f5ec0769561ea1c36f..4af436413fa5917c31dcbff855fd2d9ae81afc7d 100644
--- a/app/translations/el/LC_MESSAGES/messages.po
+++ b/app/translations/el/LC_MESSAGES/messages.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2018-12-13 13:13+0200\n"
+"POT-Creation-Date: 2018-12-21 11:49+0200\n"
 "PO-Revision-Date: 2018-11-27 16:38+0200\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language: el\n"
@@ -28,15 +28,15 @@ msgstr "Είμαι έτοιμος να ξεκινήσω"
 
 #: app/routes.py:371
 msgid "ID already in use"
-msgstr ""
+msgstr "ID που χρησιμοποιείται ήδη."
 
 #: app/routes.py:380
 msgid "No such ID set for this experiment"
-msgstr ""
+msgstr "Δεν έχει οριστεί τέτοιο αναγνωριστικό (ID) για αυτό το πείραμα."
 
 #: app/templates/base.html:35
 msgid "Task progress:"
-msgstr ""
+msgstr "Πρόοδος εργασιών"
 
 #: app/templates/begin_with_id.html:8
 msgid "Please insert your ID-code below:"
@@ -52,19 +52,15 @@ msgstr "Προσοχή!"
 msgid ""
 "Participation in this experiment requires a login with a predetermined ID"
 " code. Please input ID below."
-msgstr ""
+msgstr "Η συμμετοχή σε αυτό το πείραμα απαιτεί σύνδεση με προκαθορισμένο κωδικό ταυτότητας. Εισαγάγετε το αναγνωριστικό παρακάτω."
 
 #: app/templates/consent.html:17
 msgid "Consent for participation:"
-msgstr ""
-
-#: app/templates/consent.html:20
-msgid "Research bulletin can be read"
-msgstr ""
+msgstr "Συγκατάθεση για συμμετοχή:"
 
 #: app/templates/consent.html:20
-msgid "here."
-msgstr ""
+msgid "Research bulletin can be read here"
+msgstr "Mπορείτε να διαβάσετε τo ερευνητικό δελτίο εδώ."
 
 #: app/templates/consent.html:29
 msgid "Agree"
@@ -99,60 +95,60 @@ msgid ""
 "Welcome to the Human Emotion Systems -laboratory`s Onni-net laboratory! "
 "The experiments that are currently underway are listed below -\n"
 "       you can participate for as many experiments you want."
-msgstr ""
+msgstr "Καλώς ήρθατε στο εργαστήριο συστημάτων των ανθρώπινων συναισθημάτων! Τα πειράματα που βρίσκονται σε εξέλιξη αναφέρονται παρακάτω - μπορείτε να συμμετάσχετε σε όσα πειράματα θέλετε."
 
 #: app/templates/index.html:20
 msgid ""
 "If you are participating for a study for the first time, click on the "
 "\"Begin task\" -button. If you are returning to continue \n"
 "      a previously started task, click on the \"Continue task\" button."
-msgstr ""
+msgstr "Εάν συμμετέχετε για μελέτη για πρώτη φορά, κάντε κλικ στο κουμπί \"Έναρξη εργασίας\". Εάν επιστρέφετε για να συνεχίσετε μια εργασία που έχει ήδη ξεκινήσει, κάντε κλικ στο κουμπί \"Συνέχεια\"."
 
 #: app/templates/index.html:23
 msgid ""
 "You can choose the language suitable for you from the language menu in "
 "the upper right corner."
-msgstr ""
+msgstr "Μπορείτε να επιλέξετε τη γλώσσα που σας αρμόζει από το μενού γλώσσας στην επάνω δεξιά γωνία."
 
 #: app/templates/index.html:29
 msgid "List of experiments:"
-msgstr ""
+msgstr "Κατάλογος πειραμάτων:"
 
-#: app/templates/index.html:36 app/templates/index.html:72
+#: app/templates/index.html:36 app/templates/index.html:77
 msgid "Name:"
-msgstr ""
+msgstr "'Ονομα:"
 
-#: app/templates/index.html:37 app/templates/index.html:73
+#: app/templates/index.html:37 app/templates/index.html:78
 msgid "Instruction:"
-msgstr ""
+msgstr "Οδηγία:"
 
-#: app/templates/index.html:45 app/templates/index.html:80
+#: app/templates/index.html:50 app/templates/index.html:93
 msgid "Participation ID is required for this task."
-msgstr ""
+msgstr "Το ID συμμετοχής απαιτείται για αυτήν την εργασία"
 
-#: app/templates/index.html:51 app/templates/index.html:86
+#: app/templates/index.html:56 app/templates/index.html:99
 msgid "Begin task"
 msgstr "Ξεκίνα την άσκηση"
 
-#: app/templates/index.html:52 app/templates/index.html:87
+#: app/templates/index.html:57 app/templates/index.html:100
 msgid "Continue task"
 msgstr "Συνέχιση της εργασίας"
 
-#: app/templates/index.html:56 app/templates/index.html:91
+#: app/templates/index.html:61 app/templates/index.html:104
 msgid "AdminRun"
 msgstr ""
 
-#: app/templates/index.html:57 app/templates/index.html:92
+#: app/templates/index.html:62 app/templates/index.html:105
 msgid "Statistics"
 msgstr ""
 
-#: app/templates/index.html:58 app/templates/index.html:93
+#: app/templates/index.html:63 app/templates/index.html:106
 msgid "View / Edit"
 msgstr ""
 
 #: app/templates/instructions.html:4
 msgid "Instructions:"
-msgstr ""
+msgstr "Οδηγία:"
 
 #: app/templates/instructions.html:14
 msgid ""
@@ -199,25 +195,25 @@ msgstr ""
 
 #: app/templates/register.html:14
 msgid "Please select"
-msgstr ""
+msgstr "Παρακαλώ επιλέξτε"
 
 #: app/templates/register.html:22
 msgid "Submit"
 msgstr "Υποβολή"
 
-#: app/templates/task.html:127
+#: app/templates/task.html:143
 msgid "Quit task"
 msgstr "Εγκαταλείπω την εργασία"
 
-#: app/templates/task.html:128
+#: app/templates/task.html:144
 msgid "Next page"
 msgstr "Επόμενη σελίδα"
 
-#: app/templates/task.html:132
+#: app/templates/task.html:148
 msgid ""
 "You can zoom in/out the page view by pressing ctrl+/ctrl- (Windows) or "
 "⌘+/⌘- (Mac)"
-msgstr ""
+msgstr "Μπορείτε να κάνετε μεγέθυνση / σμίκρυνση της προβολής σελίδας πατώντας ctrl + / ctrl- (Windows) ή ⌘ + / ⌘- (Mac)"
 
 #: app/templates/task_completed.html:7
 msgid "Task completed!"
@@ -295,3 +291,9 @@ msgstr ""
 #~ msgid "Continue task"
 #~ msgstr ""
 
+#~ msgid "Research bulletin can be read"
+#~ msgstr ""
+
+#~ msgid "here."
+#~ msgstr ""
+
diff --git a/app/translations/en/LC_MESSAGES/messages.mo b/app/translations/en/LC_MESSAGES/messages.mo
index bb77614203283df279384b59d0984ad20031ff55..f15f4f43a9ded6f9114729e8f9eff3ff7ebf00c3 100644
Binary files a/app/translations/en/LC_MESSAGES/messages.mo and b/app/translations/en/LC_MESSAGES/messages.mo differ
diff --git a/app/translations/en/LC_MESSAGES/messages.po b/app/translations/en/LC_MESSAGES/messages.po
index 94c651f04a978965688d2720daa1e7c6e9224afd..90d3ddf4eec9cc40fa474a3dab5c07993bbef0ab 100644
--- a/app/translations/en/LC_MESSAGES/messages.po
+++ b/app/translations/en/LC_MESSAGES/messages.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2018-12-13 13:13+0200\n"
+"POT-Creation-Date: 2018-12-21 11:49+0200\n"
 "PO-Revision-Date: 2018-11-27 16:38+0200\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language: en\n"
@@ -59,11 +59,7 @@ msgid "Consent for participation:"
 msgstr ""
 
 #: app/templates/consent.html:20
-msgid "Research bulletin can be read"
-msgstr ""
-
-#: app/templates/consent.html:20
-msgid "here."
+msgid "Research bulletin can be read here"
 msgstr ""
 
 #: app/templates/consent.html:29
@@ -116,35 +112,35 @@ msgstr ""
 msgid "List of experiments:"
 msgstr ""
 
-#: app/templates/index.html:36 app/templates/index.html:72
+#: app/templates/index.html:36 app/templates/index.html:77
 msgid "Name:"
 msgstr ""
 
-#: app/templates/index.html:37 app/templates/index.html:73
+#: app/templates/index.html:37 app/templates/index.html:78
 msgid "Instruction:"
 msgstr ""
 
-#: app/templates/index.html:45 app/templates/index.html:80
+#: app/templates/index.html:50 app/templates/index.html:93
 msgid "Participation ID is required for this task."
 msgstr ""
 
-#: app/templates/index.html:51 app/templates/index.html:86
+#: app/templates/index.html:56 app/templates/index.html:99
 msgid "Begin task"
 msgstr ""
 
-#: app/templates/index.html:52 app/templates/index.html:87
+#: app/templates/index.html:57 app/templates/index.html:100
 msgid "Continue task"
 msgstr ""
 
-#: app/templates/index.html:56 app/templates/index.html:91
+#: app/templates/index.html:61 app/templates/index.html:104
 msgid "AdminRun"
 msgstr ""
 
-#: app/templates/index.html:57 app/templates/index.html:92
+#: app/templates/index.html:62 app/templates/index.html:105
 msgid "Statistics"
 msgstr ""
 
-#: app/templates/index.html:58 app/templates/index.html:93
+#: app/templates/index.html:63 app/templates/index.html:106
 msgid "View / Edit"
 msgstr ""
 
@@ -194,15 +190,15 @@ msgstr ""
 msgid "Submit"
 msgstr ""
 
-#: app/templates/task.html:127
+#: app/templates/task.html:143
 msgid "Quit task"
 msgstr ""
 
-#: app/templates/task.html:128
+#: app/templates/task.html:144
 msgid "Next page"
 msgstr ""
 
-#: app/templates/task.html:132
+#: app/templates/task.html:148
 msgid ""
 "You can zoom in/out the page view by pressing ctrl+/ctrl- (Windows) or "
 "⌘+/⌘- (Mac)"
@@ -269,3 +265,9 @@ msgstr ""
 #~ msgid "Continue task"
 #~ msgstr ""
 
+#~ msgid "Research bulletin can be read"
+#~ msgstr ""
+
+#~ msgid "here."
+#~ msgstr ""
+
diff --git a/app/translations/fa/LC_MESSAGES/messages.mo b/app/translations/fa/LC_MESSAGES/messages.mo
index 86ae7e57e678f6f577d7576b10ec1fe02845f890..a2d5c96d7e279ddc626a202e8d5310f2f51aecc0 100644
Binary files a/app/translations/fa/LC_MESSAGES/messages.mo and b/app/translations/fa/LC_MESSAGES/messages.mo differ
diff --git a/app/translations/fa/LC_MESSAGES/messages.po b/app/translations/fa/LC_MESSAGES/messages.po
index 7c2461298f1f470c0c498784d4177f8c00b3288d..e19b13821ba1927f796b08bba84ca0c54f797542 100644
--- a/app/translations/fa/LC_MESSAGES/messages.po
+++ b/app/translations/fa/LC_MESSAGES/messages.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2018-12-13 13:13+0200\n"
+"POT-Creation-Date: 2018-12-21 11:49+0200\n"
 "PO-Revision-Date: 2018-11-27 16:38+0200\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language: fa\n"
@@ -28,15 +28,15 @@ msgstr "برای شروع آزمایش آماده ام"
 
 #: app/routes.py:371
 msgid "ID already in use"
-msgstr ""
+msgstr "این شناسه در حال حاضر در حال استفاده است"
 
 #: app/routes.py:380
 msgid "No such ID set for this experiment"
-msgstr ""
+msgstr "چنین شناسه ای برای این آزمایش تعیین نشده است."
 
 #: app/templates/base.html:35
 msgid "Task progress:"
-msgstr ""
+msgstr "پیشرفت کار:"
 
 #: app/templates/begin_with_id.html:8
 msgid "Please insert your ID-code below:"
@@ -53,18 +53,16 @@ msgid ""
 "Participation in this experiment requires a login with a predetermined ID"
 " code. Please input ID below."
 msgstr ""
+"شرکت در این آزمایش نیاز به ورود به سامانه از طربق یک کد شناسایی از پیش "
+"تعیین شده دارد. لطفا  کد شناسایی را در زیر وارد کنید."
 
 #: app/templates/consent.html:17
 msgid "Consent for participation:"
-msgstr ""
+msgstr "موافقت برای مشارکت:"
 
 #: app/templates/consent.html:20
-msgid "Research bulletin can be read"
-msgstr ""
-
-#: app/templates/consent.html:20
-msgid "here."
-msgstr ""
+msgid "Research bulletin can be read here"
+msgstr "تحریریه تحقیقاتی را می توان در اینجا مطالعه کرد."
 
 #: app/templates/consent.html:29
 msgid "Agree"
@@ -97,60 +95,62 @@ msgid ""
 "Welcome to the Human Emotion Systems -laboratory`s Onni-net laboratory! "
 "The experiments that are currently underway are listed below -\n"
 "       you can participate for as many experiments you want."
-msgstr ""
+msgstr "به تحقیق ...از گروه تحقیقاتی احساسات انسانها خوش آمدید. تحقیقاتی که در حال حاضرقابل انجام هستند در زیر ذکر شده است. شما می توانید درهر تعداد ازاین تحقیقات که مایل هستید شرکت کنید."
 
 #: app/templates/index.html:20
 msgid ""
 "If you are participating for a study for the first time, click on the "
 "\"Begin task\" -button. If you are returning to continue \n"
 "      a previously started task, click on the \"Continue task\" button."
-msgstr ""
+msgstr "اگر برای اولین بار در یک تحقیق شرکت میکنید، روی دکمه «شروع کار» کلیک کنید. اگرقصد بازگشت به یک تحقیق که قبلا شروع کرده اید دارید، دوباره روی دکمه \"ادامه کار\" کلیک کنید."
 
 #: app/templates/index.html:23
 msgid ""
 "You can choose the language suitable for you from the language menu in "
 "the upper right corner."
 msgstr ""
+"شما می توانید زبان مورد نظر خود را از منوی زبان در گوشه سمت راست بالا "
+"انتخاب کنید"
 
 #: app/templates/index.html:29
 msgid "List of experiments:"
-msgstr ""
+msgstr "لیست تحقیقات موجود در بانک اطلاعاتی::"
 
-#: app/templates/index.html:36 app/templates/index.html:72
+#: app/templates/index.html:36 app/templates/index.html:77
 msgid "Name:"
-msgstr ""
+msgstr "نام:"
 
-#: app/templates/index.html:37 app/templates/index.html:73
+#: app/templates/index.html:37 app/templates/index.html:78
 msgid "Instruction:"
-msgstr ""
+msgstr "دستورالعمل:"
 
-#: app/templates/index.html:45 app/templates/index.html:80
+#: app/templates/index.html:50 app/templates/index.html:93
 msgid "Participation ID is required for this task."
-msgstr ""
+msgstr "داشتن کد شناسایی برای انجام این مرحله ضروری می باشد."
 
-#: app/templates/index.html:51 app/templates/index.html:86
+#: app/templates/index.html:56 app/templates/index.html:99
 msgid "Begin task"
 msgstr "آزمایش را شروع کنید"
 
-#: app/templates/index.html:52 app/templates/index.html:87
+#: app/templates/index.html:57 app/templates/index.html:100
 msgid "Continue task"
 msgstr "ادامه آزمایش"
 
-#: app/templates/index.html:56 app/templates/index.html:91
+#: app/templates/index.html:61 app/templates/index.html:104
 msgid "AdminRun"
 msgstr ""
 
-#: app/templates/index.html:57 app/templates/index.html:92
+#: app/templates/index.html:62 app/templates/index.html:105
 msgid "Statistics"
 msgstr ""
 
-#: app/templates/index.html:58 app/templates/index.html:93
+#: app/templates/index.html:63 app/templates/index.html:106
 msgid "View / Edit"
 msgstr ""
 
 #: app/templates/instructions.html:4
 msgid "Instructions:"
-msgstr ""
+msgstr "دستورالعمل:"
 
 #: app/templates/instructions.html:14
 msgid ""
@@ -194,25 +194,27 @@ msgstr "لطفا قبل از شروع امتیازدهی به سوالات زم
 
 #: app/templates/register.html:14
 msgid "Please select"
-msgstr ""
+msgstr "لطفا انتخاب کنید"
 
 #: app/templates/register.html:22
 msgid "Submit"
 msgstr "ارسال"
 
-#: app/templates/task.html:127
+#: app/templates/task.html:143
 msgid "Quit task"
 msgstr "خروج از آزمایش"
 
-#: app/templates/task.html:128
+#: app/templates/task.html:144
 msgid "Next page"
 msgstr "صفحه بعد"
 
-#: app/templates/task.html:132
+#: app/templates/task.html:148
 msgid ""
 "You can zoom in/out the page view by pressing ctrl+/ctrl- (Windows) or "
 "⌘+/⌘- (Mac)"
 msgstr ""
+"شما می توانید با فشار دادن ctrl + / ctrl- (ویندوز) یا ⌘ + / ⌘- (مکینتاش) "
+"بزرگنمایی صفحه نمایش را  تنظیم کنید."
 
 #: app/templates/task_completed.html:7
 msgid "Task completed!"
@@ -284,3 +286,9 @@ msgstr ""
 #~ msgid "Continue task"
 #~ msgstr ""
 
+#~ msgid "Research bulletin can be read"
+#~ msgstr "تحریریه تحقیقاتی را می توان در اینجا مطالعه کرد."
+
+#~ msgid "here."
+#~ msgstr "کلیک"
+
diff --git a/app/translations/fi/LC_MESSAGES/messages.mo b/app/translations/fi/LC_MESSAGES/messages.mo
index c722da35c6e3e25879f7f2b5a65166bda29a6754..405d930bafd9be2894b1fb3b27267e47b53d92da 100644
Binary files a/app/translations/fi/LC_MESSAGES/messages.mo and b/app/translations/fi/LC_MESSAGES/messages.mo differ
diff --git a/app/translations/fi/LC_MESSAGES/messages.po b/app/translations/fi/LC_MESSAGES/messages.po
index 5d179b8597f0460e6da1d2604f4e4c9b0edc6a1d..c3301adb025e356b2033bd0a3445e746cbf587a1 100644
--- a/app/translations/fi/LC_MESSAGES/messages.po
+++ b/app/translations/fi/LC_MESSAGES/messages.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2018-12-13 13:13+0200\n"
+"POT-Creation-Date: 2018-12-21 11:49+0200\n"
 "PO-Revision-Date: 2018-11-27 16:38+0200\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language: fi\n"
@@ -61,12 +61,8 @@ msgid "Consent for participation:"
 msgstr "Suostumus osallistumiseksi:"
 
 #: app/templates/consent.html:20
-msgid "Research bulletin can be read"
-msgstr "Tutkimustiedote on luettavissa"
-
-#: app/templates/consent.html:20
-msgid "here."
-msgstr "täällä"
+msgid "Research bulletin can be read here"
+msgstr ""
 
 #: app/templates/consent.html:29
 msgid "Agree"
@@ -99,14 +95,20 @@ msgid ""
 "Welcome to the Human Emotion Systems -laboratory`s Onni-net laboratory! "
 "The experiments that are currently underway are listed below -\n"
 "       you can participate for as many experiments you want."
-msgstr "Tervetuloa Human Emotion Systems –laboratorion Onni-nettilaboratorioon! Alla on listattuna tällä hetkellä käynnissä olevat kokeet – voit osallistua niin moneen kuin vain haluat."
+msgstr ""
+"Tervetuloa Human Emotion Systems –laboratorion Onni-nettilaboratorioon! "
+"Alla on listattuna tällä hetkellä käynnissä olevat kokeet – voit "
+"osallistua niin moneen kuin vain haluat."
 
 #: app/templates/index.html:20
 msgid ""
 "If you are participating for a study for the first time, click on the "
 "\"Begin task\" -button. If you are returning to continue \n"
 "      a previously started task, click on the \"Continue task\" button."
-msgstr "Jos osallistut kokeeseen ensimmäistä kertaa, klikkaa \"Aloita\" –painiketta. Jos taas palaat täyttämään kesken jäänyttä koetta, klikkaa \"Jatka\" –nappulaa.
+msgstr ""
+"Jos osallistut kokeeseen ensimmäistä kertaa, klikkaa \"Aloita\" "
+"–painiketta. Jos taas palaat täyttämään kesken jäänyttä koetta, klikkaa "
+"\"Jatka\" –nappulaa"
 
 #: app/templates/index.html:23
 msgid ""
@@ -116,37 +118,37 @@ msgstr "Voit valita kielen oikeassa yläkulmassa olevasta language-valikosta."
 
 #: app/templates/index.html:29
 msgid "List of experiments:"
-msgstr ""
+msgstr "Käynnissä olevat kokeet"
 
-#: app/templates/index.html:36 app/templates/index.html:72
+#: app/templates/index.html:36 app/templates/index.html:77
 msgid "Name:"
 msgstr "Nimi:"
 
-#: app/templates/index.html:37 app/templates/index.html:73
+#: app/templates/index.html:37 app/templates/index.html:78
 msgid "Instruction:"
 msgstr "Ohjeet:"
 
-#: app/templates/index.html:45 app/templates/index.html:80
+#: app/templates/index.html:50 app/templates/index.html:93
 msgid "Participation ID is required for this task."
 msgstr "Tähän kokeeseen osallistumiseen vaaditaan ID-tunnus."
 
-#: app/templates/index.html:51 app/templates/index.html:86
+#: app/templates/index.html:56 app/templates/index.html:99
 msgid "Begin task"
 msgstr "Aloita"
 
-#: app/templates/index.html:52 app/templates/index.html:87
+#: app/templates/index.html:57 app/templates/index.html:100
 msgid "Continue task"
 msgstr "Jatka"
 
-#: app/templates/index.html:56 app/templates/index.html:91
+#: app/templates/index.html:61 app/templates/index.html:104
 msgid "AdminRun"
 msgstr "AdminRun"
 
-#: app/templates/index.html:57 app/templates/index.html:92
+#: app/templates/index.html:62 app/templates/index.html:105
 msgid "Statistics"
 msgstr "Statistics"
 
-#: app/templates/index.html:58 app/templates/index.html:93
+#: app/templates/index.html:63 app/templates/index.html:106
 msgid "View / Edit"
 msgstr "View / Edit"
 
@@ -160,7 +162,10 @@ msgid ""
 "return to finish the task later but you will need your participant ID-"
 "number in order to do that. Please save your participant ID before "
 "starting the rating task!"
-msgstr "Voit palata myöhemmin jatkamaan mahdollisesti kesken jäänyttä tehtävää, mutta tarvitset silloin osallistujatunnustasi. Ole hyvä ja talleta alla oleva ID-numerosi ennen kuin aloitat!"
+msgstr ""
+"Voit palata myöhemmin jatkamaan mahdollisesti kesken jäänyttä tehtävää, "
+"mutta tarvitset silloin osallistujatunnustasi. Ole hyvä ja talleta alla "
+"oleva ID-numerosi ennen kuin aloitat!"
 
 #: app/templates/instructions.html:17 app/templates/quit_task.html:11
 msgid "Your participant ID is:"
@@ -198,15 +203,15 @@ msgstr "Valitse"
 msgid "Submit"
 msgstr "Jatka"
 
-#: app/templates/task.html:127
+#: app/templates/task.html:143
 msgid "Quit task"
 msgstr "Lopeta"
 
-#: app/templates/task.html:128
+#: app/templates/task.html:144
 msgid "Next page"
 msgstr "Seuraava"
 
-#: app/templates/task.html:132
+#: app/templates/task.html:148
 msgid ""
 "You can zoom in/out the page view by pressing ctrl+/ctrl- (Windows) or "
 "⌘+/⌘- (Mac)"
@@ -275,3 +280,9 @@ msgstr ""
 #~ msgid "Continue task"
 #~ msgstr "Jatka"
 
+#~ msgid "Research bulletin can be read"
+#~ msgstr "Tutkimustiedote on luettavissa"
+
+#~ msgid "here."
+#~ msgstr "täällä"
+
diff --git a/app/translations/it/LC_MESSAGES/messages.mo b/app/translations/it/LC_MESSAGES/messages.mo
index d5fb67d82144de40feb3f0b675e7fe8e99a12415..3cae4a0828bd1482dfa48fe4e689d3528520ca55 100644
Binary files a/app/translations/it/LC_MESSAGES/messages.mo and b/app/translations/it/LC_MESSAGES/messages.mo differ
diff --git a/app/translations/it/LC_MESSAGES/messages.po b/app/translations/it/LC_MESSAGES/messages.po
index c58ab6704749e34277103589bbc8f860b4f19c56..b8adfb3cf553baa30c1d9e9cdcfa844afab2a4e7 100644
--- a/app/translations/it/LC_MESSAGES/messages.po
+++ b/app/translations/it/LC_MESSAGES/messages.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2018-12-13 13:13+0200\n"
+"POT-Creation-Date: 2018-12-21 11:49+0200\n"
 "PO-Revision-Date: 2018-11-27 16:38+0200\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language: it\n"
@@ -20,137 +20,133 @@ msgstr ""
 
 #: app/forms.py:36
 msgid "Continue rating"
-msgstr ""
+msgstr "Continuare a valutare"
 
 #: app/forms.py:41
 msgid "Start rating"
-msgstr ""
+msgstr "Cominciare la valutazione"
 
 #: app/routes.py:371
 msgid "ID already in use"
-msgstr ""
+msgstr "ID già in uso"
 
 #: app/routes.py:380
 msgid "No such ID set for this experiment"
-msgstr ""
+msgstr "Nessun ID impostato per questo esperimento"
 
 #: app/templates/base.html:35
 msgid "Task progress:"
-msgstr ""
+msgstr "Progresso del processo:"
 
 #: app/templates/begin_with_id.html:8
 msgid "Please insert your ID-code below:"
-msgstr ""
+msgstr "Prego, inserire il codice ID qui sotto:"
 
 #: app/templates/begin_with_id.html:12 app/templates/consent.html:38
 #: app/templates/instructions.html:12 app/templates/quit_task.html:4
 #: app/templates/quit_task.html:7
 msgid "Notice!"
-msgstr ""
+msgstr "Attenzione!"
 
 #: app/templates/begin_with_id.html:13
 msgid ""
 "Participation in this experiment requires a login with a predetermined ID"
 " code. Please input ID below."
-msgstr ""
+msgstr "La partecipazione in questo esperimento richiede un login con un codice-ID predeterminato. Per favore inserire l'ID qui sotto."
 
 #: app/templates/consent.html:17
 msgid "Consent for participation:"
-msgstr ""
-
-#: app/templates/consent.html:20
-msgid "Research bulletin can be read"
-msgstr ""
+msgstr "Acconsento alla partecipazione:"
 
 #: app/templates/consent.html:20
-msgid "here."
-msgstr ""
+msgid "Research bulletin can be read here"
+msgstr "Il bollettino della ricerca può essere letto qui."
 
 #: app/templates/consent.html:29
 msgid "Agree"
-msgstr ""
+msgstr "Consento"
 
 #: app/templates/consent.html:30
 msgid "Disagree"
-msgstr ""
+msgstr "Non consento"
 
 #: app/templates/consent.html:41
 msgid ""
 "In order to participate for the study you need to agree with the terms "
 "presented."
-msgstr ""
+msgstr "Per partecipare allo studio deve consentire ai termini presentati"
 
 #: app/templates/consent.html:44
 msgid "Close Notice"
-msgstr ""
+msgstr "Chiudere l'avviso"
 
 #: app/templates/consent.html:45 app/templates/task_completed.html:15
 msgid "Return Home"
-msgstr ""
+msgstr "Ritornare alla Home"
 
 #: app/templates/continue_task.html:9
 msgid "Please insert your participant ID:"
-msgstr ""
+msgstr "Per favore inserisca il suo ID di partecipazione:"
 
 #: app/templates/index.html:18
 msgid ""
 "Welcome to the Human Emotion Systems -laboratory`s Onni-net laboratory! "
 "The experiments that are currently underway are listed below -\n"
 "       you can participate for as many experiments you want."
-msgstr ""
+msgstr "Benvenuto al laboratorio Onni-net del laboratorio di sistemi di emozioni umane (Human Emotion Systems)! Gli esperimenti che sono attivi al momento sono listati qui sotto - può partecipare a quanti e quali esperimenti vuole."
 
 #: app/templates/index.html:20
 msgid ""
 "If you are participating for a study for the first time, click on the "
 "\"Begin task\" -button. If you are returning to continue \n"
 "      a previously started task, click on the \"Continue task\" button."
-msgstr ""
+msgstr "Se partecipa ad uno studio per la prima volta, clicchi sul bottone \"Comincia processo\". Se sta ritornando per continuare un processo cominciato precedentemente, clicchi sul bottone \"Continua processo\"."
 
 #: app/templates/index.html:23
 msgid ""
 "You can choose the language suitable for you from the language menu in "
 "the upper right corner."
-msgstr ""
+msgstr "Può scegliere la lingua preferita dal menu del linguaggio nell'angolo in alto a destra."
 
 #: app/templates/index.html:29
 msgid "List of experiments:"
-msgstr ""
+msgstr "Lista degli esperimenti:"
 
-#: app/templates/index.html:36 app/templates/index.html:72
+#: app/templates/index.html:36 app/templates/index.html:77
 msgid "Name:"
-msgstr ""
+msgstr "Nome:"
 
-#: app/templates/index.html:37 app/templates/index.html:73
+#: app/templates/index.html:37 app/templates/index.html:78
 msgid "Instruction:"
-msgstr ""
+msgstr "Istruzione:"
 
-#: app/templates/index.html:45 app/templates/index.html:80
+#: app/templates/index.html:50 app/templates/index.html:93
 msgid "Participation ID is required for this task."
-msgstr ""
+msgstr "L'ID di partecipazione è richiesto per questo processo."
 
-#: app/templates/index.html:51 app/templates/index.html:86
+#: app/templates/index.html:56 app/templates/index.html:99
 msgid "Begin task"
-msgstr ""
+msgstr "Cominciare il processo"
 
-#: app/templates/index.html:52 app/templates/index.html:87
+#: app/templates/index.html:57 app/templates/index.html:100
 msgid "Continue task"
-msgstr ""
+msgstr "Continuare il processo"
 
-#: app/templates/index.html:56 app/templates/index.html:91
+#: app/templates/index.html:61 app/templates/index.html:104
 msgid "AdminRun"
 msgstr ""
 
-#: app/templates/index.html:57 app/templates/index.html:92
+#: app/templates/index.html:62 app/templates/index.html:105
 msgid "Statistics"
 msgstr ""
 
-#: app/templates/index.html:58 app/templates/index.html:93
+#: app/templates/index.html:63 app/templates/index.html:106
 msgid "View / Edit"
 msgstr ""
 
 #: app/templates/instructions.html:4
 msgid "Instructions:"
-msgstr ""
+msgstr "Istruzioni"
 
 #: app/templates/instructions.html:14
 msgid ""
@@ -158,63 +154,63 @@ msgid ""
 "return to finish the task later but you will need your participant ID-"
 "number in order to do that. Please save your participant ID before "
 "starting the rating task!"
-msgstr ""
+msgstr "Se vuole uscire dal processo di valutazione prima che sia pienamente completato, può ritornare a completare il process più tardi, ma avrà bisogno del suo ID per farlo. Per favore memorizzare o appuntarsi l'ID di partecipazione prima di cominciare il processo di valutazione!"
 
 #: app/templates/instructions.html:17 app/templates/quit_task.html:11
 msgid "Your participant ID is:"
-msgstr ""
+msgstr "Il suo ID di partecipazione è:"
 
 #: app/templates/instructions.html:20
 msgid "Ready to start"
-msgstr ""
+msgstr "Pronto a partire"
 
 #: app/templates/quit_task.html:8
 msgid ""
 "Please write down your participant ID so you can return and finish the "
 "rating task later!"
-msgstr ""
+msgstr "Per favore si appunti il suo ID di partecipazione di modo da poter ritornare e completare il processo di valutazione più tardi."
 
 #: app/templates/quit_task.html:14
 msgid "Quit!"
-msgstr ""
+msgstr "Esci!"
 
 #: app/templates/register.html:6
 msgid "This is the registration page."
-msgstr ""
+msgstr "Questa è la pagina di registrazione"
 
 #: app/templates/register.html:7
 msgid "Please fill in these background questions before starting the rating task:"
-msgstr ""
+msgstr "Completare queste domande sul suo passato"
 
 #: app/templates/register.html:14
 msgid "Please select"
-msgstr ""
+msgstr "Selezionare per favore"
 
 #: app/templates/register.html:22
 msgid "Submit"
-msgstr ""
+msgstr "Completa (manda per considerazione)"
 
-#: app/templates/task.html:127
+#: app/templates/task.html:143
 msgid "Quit task"
-msgstr ""
+msgstr "Esci dal processo"
 
-#: app/templates/task.html:128
+#: app/templates/task.html:144
 msgid "Next page"
-msgstr ""
+msgstr "Prossima pagina"
 
-#: app/templates/task.html:132
+#: app/templates/task.html:148
 msgid ""
 "You can zoom in/out the page view by pressing ctrl+/ctrl- (Windows) or "
 "⌘+/⌘- (Mac)"
-msgstr ""
+msgstr "Si può cambiare lo zoom della visualizzazione della pagina premendo ctrl+/ctrl- (Windows) oppure ⌘+/⌘- (Mac)"
 
 #: app/templates/task_completed.html:7
 msgid "Task completed!"
-msgstr ""
+msgstr "Processo completato!"
 
 #: app/templates/task_completed.html:11
 msgid "You have completed the rating task. Thank you for your participation."
-msgstr ""
+msgstr "Il processo di valutazione è stato completo. Grazie per la partecipazione."
 
 #: app/templates/test_page.html:7
 msgid "File Not Found"
@@ -269,3 +265,9 @@ msgstr ""
 #~ msgid "Continue task"
 #~ msgstr ""
 
+#~ msgid "Research bulletin can be read"
+#~ msgstr ""
+
+#~ msgid "here."
+#~ msgstr ""
+
diff --git a/app/translations/zh/LC_MESSAGES/messages.mo b/app/translations/zh/LC_MESSAGES/messages.mo
index 91aff88f0a2c2e391fd6b221702506ed205c52c8..8bb0c4c3791602e08f7bb0e3ebfab09d9c388cb4 100644
Binary files a/app/translations/zh/LC_MESSAGES/messages.mo and b/app/translations/zh/LC_MESSAGES/messages.mo differ
diff --git a/app/translations/zh/LC_MESSAGES/messages.po b/app/translations/zh/LC_MESSAGES/messages.po
index 6246005cbc838e7976774f36daf712ed58f7f22c..dfb48afb76303fc4eddaa43aa4e502f604b449da 100644
--- a/app/translations/zh/LC_MESSAGES/messages.po
+++ b/app/translations/zh/LC_MESSAGES/messages.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2018-12-13 13:13+0200\n"
+"POT-Creation-Date: 2018-12-21 11:49+0200\n"
 "PO-Revision-Date: 2018-11-27 16:38+0200\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language: zh\n"
@@ -28,15 +28,15 @@ msgstr "我准备开始了"
 
 #: app/routes.py:371
 msgid "ID already in use"
-msgstr ""
+msgstr "用户名已被使用"
 
 #: app/routes.py:380
 msgid "No such ID set for this experiment"
-msgstr ""
+msgstr "该实验中用户名不存在"
 
 #: app/templates/base.html:35
 msgid "Task progress:"
-msgstr ""
+msgstr "任务进行中"
 
 #: app/templates/begin_with_id.html:8
 msgid "Please insert your ID-code below:"
@@ -52,19 +52,15 @@ msgstr "注意!"
 msgid ""
 "Participation in this experiment requires a login with a predetermined ID"
 " code. Please input ID below."
-msgstr ""
+msgstr "参加本实验需要用已有的用户名登陆,请输入用户名"
 
 #: app/templates/consent.html:17
 msgid "Consent for participation:"
-msgstr ""
-
-#: app/templates/consent.html:20
-msgid "Research bulletin can be read"
-msgstr ""
+msgstr "实验须知"
 
 #: app/templates/consent.html:20
-msgid "here."
-msgstr ""
+msgid "Research bulletin can be read here"
+msgstr "实验条目可在下面读取"
 
 #: app/templates/consent.html:29
 msgid "Agree"
@@ -97,60 +93,60 @@ msgid ""
 "Welcome to the Human Emotion Systems -laboratory`s Onni-net laboratory! "
 "The experiments that are currently underway are listed below -\n"
 "       you can participate for as many experiments you want."
-msgstr ""
+msgstr "欢迎来到人类情感系统实验室。可以参加的实验项目被列在以下。 你可以随心所欲参加任何实验"
 
 #: app/templates/index.html:20
 msgid ""
 "If you are participating for a study for the first time, click on the "
 "\"Begin task\" -button. If you are returning to continue \n"
 "      a previously started task, click on the \"Continue task\" button."
-msgstr ""
+msgstr "如果你是第一次参与该实验,请按“开始任务”按钮。如果你继续上次的任务,请按“继续任务”按钮。"
 
 #: app/templates/index.html:23
 msgid ""
 "You can choose the language suitable for you from the language menu in "
 "the upper right corner."
-msgstr ""
+msgstr "你可以在屏幕右上角的语言菜单选择你习惯的语言"
 
 #: app/templates/index.html:29
 msgid "List of experiments:"
-msgstr ""
+msgstr "实验列表:"
 
-#: app/templates/index.html:36 app/templates/index.html:72
+#: app/templates/index.html:36 app/templates/index.html:77
 msgid "Name:"
-msgstr ""
+msgstr "名字:"
 
-#: app/templates/index.html:37 app/templates/index.html:73
+#: app/templates/index.html:37 app/templates/index.html:78
 msgid "Instruction:"
-msgstr ""
+msgstr "说明:"
 
-#: app/templates/index.html:45 app/templates/index.html:80
+#: app/templates/index.html:50 app/templates/index.html:93
 msgid "Participation ID is required for this task."
-msgstr ""
+msgstr "本任务需要用户名。"
 
-#: app/templates/index.html:51 app/templates/index.html:86
+#: app/templates/index.html:56 app/templates/index.html:99
 msgid "Begin task"
 msgstr "开始任务"
 
-#: app/templates/index.html:52 app/templates/index.html:87
+#: app/templates/index.html:57 app/templates/index.html:100
 msgid "Continue task"
 msgstr "继续任务"
 
-#: app/templates/index.html:56 app/templates/index.html:91
+#: app/templates/index.html:61 app/templates/index.html:104
 msgid "AdminRun"
 msgstr ""
 
-#: app/templates/index.html:57 app/templates/index.html:92
+#: app/templates/index.html:62 app/templates/index.html:105
 msgid "Statistics"
 msgstr ""
 
-#: app/templates/index.html:58 app/templates/index.html:93
+#: app/templates/index.html:63 app/templates/index.html:106
 msgid "View / Edit"
 msgstr ""
 
 #: app/templates/instructions.html:4
 msgid "Instructions:"
-msgstr ""
+msgstr "说明:"
 
 #: app/templates/instructions.html:14
 msgid ""
@@ -188,25 +184,25 @@ msgstr "请在开始评分前填写以下相关的问题:"
 
 #: app/templates/register.html:14
 msgid "Please select"
-msgstr ""
+msgstr "请选择。"
 
 #: app/templates/register.html:22
 msgid "Submit"
 msgstr "提交"
 
-#: app/templates/task.html:127
+#: app/templates/task.html:143
 msgid "Quit task"
 msgstr "退出任务"
 
-#: app/templates/task.html:128
+#: app/templates/task.html:144
 msgid "Next page"
 msgstr "下一页"
 
-#: app/templates/task.html:132
+#: app/templates/task.html:148
 msgid ""
 "You can zoom in/out the page view by pressing ctrl+/ctrl- (Windows) or "
 "⌘+/⌘- (Mac)"
-msgstr ""
+msgstr "可以按 ctrl+/ctrl- (Windows) 或 ⌘+/⌘- (Mac) 扩大或缩小页面"
 
 #: app/templates/task_completed.html:7
 msgid "Task completed!"
@@ -269,3 +265,9 @@ msgstr ""
 #~ msgid "Continue task"
 #~ msgstr ""
 
+#~ msgid "Research bulletin can be read"
+#~ msgstr ""
+
+#~ msgid "here."
+#~ msgstr ""
+
diff --git a/messages.pot b/messages.pot
index 3d74795e2a5f93a4f13b32013bd267b72477847b..989302a1709eafc17cbf9f0ed8ef9fb78f2f93de 100644
--- a/messages.pot
+++ b/messages.pot
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2018-12-13 13:13+0200\n"
+"POT-Creation-Date: 2018-12-21 11:49+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -58,11 +58,7 @@ msgid "Consent for participation:"
 msgstr ""
 
 #: app/templates/consent.html:20
-msgid "Research bulletin can be read"
-msgstr ""
-
-#: app/templates/consent.html:20
-msgid "here."
+msgid "Research bulletin can be read here"
 msgstr ""
 
 #: app/templates/consent.html:29
@@ -115,35 +111,35 @@ msgstr ""
 msgid "List of experiments:"
 msgstr ""
 
-#: app/templates/index.html:36 app/templates/index.html:72
+#: app/templates/index.html:36 app/templates/index.html:77
 msgid "Name:"
 msgstr ""
 
-#: app/templates/index.html:37 app/templates/index.html:73
+#: app/templates/index.html:37 app/templates/index.html:78
 msgid "Instruction:"
 msgstr ""
 
-#: app/templates/index.html:45 app/templates/index.html:80
+#: app/templates/index.html:50 app/templates/index.html:93
 msgid "Participation ID is required for this task."
 msgstr ""
 
-#: app/templates/index.html:51 app/templates/index.html:86
+#: app/templates/index.html:56 app/templates/index.html:99
 msgid "Begin task"
 msgstr ""
 
-#: app/templates/index.html:52 app/templates/index.html:87
+#: app/templates/index.html:57 app/templates/index.html:100
 msgid "Continue task"
 msgstr ""
 
-#: app/templates/index.html:56 app/templates/index.html:91
+#: app/templates/index.html:61 app/templates/index.html:104
 msgid "AdminRun"
 msgstr ""
 
-#: app/templates/index.html:57 app/templates/index.html:92
+#: app/templates/index.html:62 app/templates/index.html:105
 msgid "Statistics"
 msgstr ""
 
-#: app/templates/index.html:58 app/templates/index.html:93
+#: app/templates/index.html:63 app/templates/index.html:106
 msgid "View / Edit"
 msgstr ""
 
@@ -193,15 +189,15 @@ msgstr ""
 msgid "Submit"
 msgstr ""
 
-#: app/templates/task.html:127
+#: app/templates/task.html:143
 msgid "Quit task"
 msgstr ""
 
-#: app/templates/task.html:128
+#: app/templates/task.html:144
 msgid "Next page"
 msgstr ""
 
-#: app/templates/task.html:132
+#: app/templates/task.html:148
 msgid ""
 "You can zoom in/out the page view by pressing ctrl+/ctrl- (Windows) or "
 "⌘+/⌘- (Mac)"