From bb68f12eebfc2ac3984036b00c9e64b0d65d55d5 Mon Sep 17 00:00:00 2001 From: Matias Date: Wed, 10 Jun 2020 18:41:24 -0400 Subject: [PATCH 01/13] Create stored procedure migration --- .../migrations/0006_auto_20200610_2137.py | 44 +++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 pootle/apps/pootle_store/migrations/0006_auto_20200610_2137.py diff --git a/pootle/apps/pootle_store/migrations/0006_auto_20200610_2137.py b/pootle/apps/pootle_store/migrations/0006_auto_20200610_2137.py new file mode 100644 index 0000000000..18f0888863 --- /dev/null +++ b/pootle/apps/pootle_store/migrations/0006_auto_20200610_2137.py @@ -0,0 +1,44 @@ +# Generated by Django 3.0.5 on 2020-06-10 21:37 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ("pootle_store", "0005_auto_20200124_0617"), + ] + + operations = [ + migrations.RunSQL( + sql=[ + ( + """ + CREATE PROCEDURE `insert_unique_submission` ( IN + creation_time DATETIME, + field_arg INT(11), + submitter_id INT(11), + type_arg INT(11), + unit_id INT(11), + store_id INT(11), + translation_project_id INT(11), + old_value longtext, + new_value longtext, + similarity double, + mt_similarity double) + + BEGIN + DECLARE total_rows INT DEFAULT 0; + + SELECT COUNT(unit_id) INTO total_rows FROM `pootle_app_submission` WHERE `pootle_app_submission`.`creation_time` = creation_time AND `pootle_app_submission`.`field` = field_arg AND `pootle_app_submission`.`submitter_id` = submitter_id AND `pootle_app_submission`.`type` = type_arg AND `pootle_app_submission`.`unit_id` = unit_id FOR UPDATE; + + IF total_rows = 0 THEN + INSERT INTO `pootle_app_submission` ( `pootle_app_submission`.`creation_time`, `pootle_app_submission`.`field`, `pootle_app_submission`.`submitter_id`, `pootle_app_submission`.`type`, `pootle_app_submission`.`unit_id`, `pootle_app_submission`.`store_id`, `pootle_app_submission`.`translation_project_id`, `pootle_app_submission`.`old_value`, `pootle_app_submission`.`new_value`, `pootle_app_submission`.`similarity`, `pootle_app_submission`.`mt_similarity` ) VALUES (creation_time, field_arg, submitter_id, type_arg,unit_id, store_id, translation_project_id, old_value, new_value, similarity, mt_similarity); + END IF; + END + """ + ) + ], + reverse_sql=[("DROP PROCEDURE IF EXISTS `insert_unique_submission`;")], + ), + ] From d294e51fe3258e5f64231a4d0d9476682592b9e1 Mon Sep 17 00:00:00 2001 From: Matias Date: Tue, 16 Jun 2020 15:26:38 -0400 Subject: [PATCH 02/13] Set tests to always use migrations --- tests/conftest.py | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/tests/conftest.py b/tests/conftest.py index 3ee762ea20..b65c42b310 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -65,14 +65,7 @@ def tests_use_db(request): @pytest.fixture(scope="session") def tests_use_migration(request, tests_use_db): - return bool( - tests_use_db - and [ - item - for item in request.node.items - if item.get_closest_marker("django_migration") - ] - ) + return True @pytest.fixture(autouse=True, scope="session") From 0201365779433fd8eb1502c45fddd7eedccc2015 Mon Sep 17 00:00:00 2001 From: Matias Date: Tue, 16 Jun 2020 15:27:45 -0400 Subject: [PATCH 03/13] Set charset and collation of db template configuration --- pootle/settings/90-local.conf.template | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pootle/settings/90-local.conf.template b/pootle/settings/90-local.conf.template index 84cf86502e..c6a4754a17 100644 --- a/pootle/settings/90-local.conf.template +++ b/pootle/settings/90-local.conf.template @@ -57,9 +57,13 @@ DATABASES = { 'PORT': %(db_port)s, # See https://docs.djangoproject.com/en/1.6/topics/db/transactions/ # required for Django 1.6 + sqlite + 'CHARSET':'utf8mb4', + 'COLLATION':'utf8mb4_unicode_ci', 'ATOMIC_REQUESTS': True, 'TEST': { 'NAME': 'test_zing', + 'CHARSET':'utf8mb4', + 'COLLATION':'utf8mb4_unicode_ci' } } } From 0d7069b3ca6a72c94f47e357bcf5b22afd5ff5e3 Mon Sep 17 00:00:00 2001 From: mandrade2 Date: Tue, 16 Jun 2020 16:44:56 -0400 Subject: [PATCH 04/13] Setup MySQL for the lint and migrate travis jobs --- .travis.yml | 9 ++++++--- pootle/settings/91-travis.conf | 3 ++- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index e9ff222a20..d9df953721 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,10 +4,13 @@ jobs: python: 3.7 name: Project linting & migrations services: + - mysql - redis-server - env: DB=sqlite + env: DB=mysql cache: pip: true + before_install: + - mysql -e 'CREATE DATABASE IF NOT EXISTS zing CHARACTER SET utf8mb4 DEFAULT COLLATE utf8mb4_unicode_ci;' install: - pip install -r requirements/travis.txt script: @@ -38,11 +41,11 @@ jobs: - echo -e '-XX:+DisableExplicitGC\n-Djdk.io.permissionsUseCanonicalPath=true\n-Dlog4j.skipJansi=true\n-server\n' | sudo tee -a /etc/elasticsearch/jvm.options - sudo chown -R elasticsearch:elasticsearch /etc/default/elasticsearch - sudo systemctl start elasticsearch + - mysql -e 'CREATE DATABASE IF NOT EXISTS zing CHARACTER SET utf8mb4 DEFAULT COLLATE utf8mb4_unicode_ci;' install: - pip install -r requirements/travis.txt script: - # Use SQLite to avoid requiring the DB to be setup - - bash -c "DB=sqlite python manage.py build_assets" + - bash -c "python manage.py build_assets" - py.test --cov-report=term --cov=. -v --durations=25 after_success: - codecov diff --git a/pootle/settings/91-travis.conf b/pootle/settings/91-travis.conf index 12669e2ce6..baa5afc1ca 100644 --- a/pootle/settings/91-travis.conf +++ b/pootle/settings/91-travis.conf @@ -34,7 +34,8 @@ if os.environ.get("TRAVIS"): DATABASES['default']['ENGINE'] = 'django.db.backends.mysql' DATABASES['default']['NAME'] = 'zing' DATABASES['default']['USER'] = 'travis' - DATABASES['default']['TEST']['COLLATION'] = 'utf8_general_ci' + DATABASES['default']['TEST']['COLLATION'] = 'utf8mb4_unicode_ci' + DATABASES['default']['TEST']['CHARSET'] = 'utf8mb4' DATABASES['default']['OPTIONS'] = { 'init_command': "SET sql_mode='STRICT_ALL_TABLES'", } From 7f4633e5c5064c58eded80d0c45661034dcdb3ce Mon Sep 17 00:00:00 2001 From: mandrade2 Date: Tue, 16 Jun 2020 17:03:42 -0400 Subject: [PATCH 05/13] Set MySQL as default db on travis configuration file --- pootle/settings/91-travis.conf | 28 +++++++++++++++------------- 1 file changed, 15 insertions(+), 13 deletions(-) diff --git a/pootle/settings/91-travis.conf b/pootle/settings/91-travis.conf index baa5afc1ca..29464ac21f 100644 --- a/pootle/settings/91-travis.conf +++ b/pootle/settings/91-travis.conf @@ -16,29 +16,31 @@ if os.environ.get("TRAVIS"): DATABASE_BACKEND = os.environ.get("DB") DATABASES = { 'default': { - 'ENGINE': 'django.db.backends.sqlite3', - 'NAME': working_path('dbs/zing_travis.db'), - 'USER': '', + 'ENGINE': 'django.db.backends.mysql', + 'NAME': "zing", + 'USER': 'travis', 'PASSWORD': '', 'HOST': '', 'PORT': '', 'ATOMIC_REQUESTS': True, + 'CHARSET':'utf8mb4', + 'COLLATION':'utf8mb4_unicode_ci', 'TEST': { - 'NAME': '', - 'CHARSET': 'utf8', + 'NAME': 'test_zing', + 'CHARSET':'utf8mb4', + 'COLLATION':'utf8mb4_unicode_ci' + }, + "OPTIONS":{ + 'init_command': "SET sql_mode='STRICT_ALL_TABLES'", } } } - if DATABASE_BACKEND.startswith("mysql"): - DATABASES['default']['ENGINE'] = 'django.db.backends.mysql' - DATABASES['default']['NAME'] = 'zing' + if DATABASE_BACKEND.startswith("sqlite"): + DATABASES['default']['ENGINE'] = 'django.db.backends.sqlite' + DATABASES['default']['NAME'] = working_path('dbs/zing_travis.db') DATABASES['default']['USER'] = 'travis' - DATABASES['default']['TEST']['COLLATION'] = 'utf8mb4_unicode_ci' - DATABASES['default']['TEST']['CHARSET'] = 'utf8mb4' - DATABASES['default']['OPTIONS'] = { - 'init_command': "SET sql_mode='STRICT_ALL_TABLES'", - } + SILENCED_SYSTEM_CHECKS = [ 'pootle.W004', # Pootle requires a working mail server From d8321354b6c36f9f982298c3939af46add15d9e3 Mon Sep 17 00:00:00 2001 From: mandrade2 Date: Fri, 26 Jun 2020 12:35:12 -0400 Subject: [PATCH 06/13] Formatting fixes --- .../migrations/0006_auto_20200610_2137.py | 56 +++++++++++++------ pootle/apps/pootle_store/views.py | 2 + 2 files changed, 40 insertions(+), 18 deletions(-) diff --git a/pootle/apps/pootle_store/migrations/0006_auto_20200610_2137.py b/pootle/apps/pootle_store/migrations/0006_auto_20200610_2137.py index 18f0888863..94754c39ba 100644 --- a/pootle/apps/pootle_store/migrations/0006_auto_20200610_2137.py +++ b/pootle/apps/pootle_store/migrations/0006_auto_20200610_2137.py @@ -14,31 +14,51 @@ class Migration(migrations.Migration): sql=[ ( """ - CREATE PROCEDURE `insert_unique_submission` ( IN - creation_time DATETIME, - field_arg INT(11), - submitter_id INT(11), - type_arg INT(11), - unit_id INT(11), - store_id INT(11), - translation_project_id INT(11), - old_value longtext, - new_value longtext, - similarity double, + CREATE PROCEDURE `insert_submission` ( IN + creation_time DATETIME, + field_arg INT(11), + submitter_id INT(11), + type_arg INT(11), + unit_id INT(11), + store_id INT(11), + translation_project_id INT(11), + old_value longtext, + new_value longtext, + similarity double, mt_similarity double) - BEGIN - DECLARE total_rows INT DEFAULT 0; + BEGIN + DECLARE total_rows INT DEFAULT 0; - SELECT COUNT(unit_id) INTO total_rows FROM `pootle_app_submission` WHERE `pootle_app_submission`.`creation_time` = creation_time AND `pootle_app_submission`.`field` = field_arg AND `pootle_app_submission`.`submitter_id` = submitter_id AND `pootle_app_submission`.`type` = type_arg AND `pootle_app_submission`.`unit_id` = unit_id FOR UPDATE; + SELECT COUNT(unit_id) INTO total_rows + FROM `pootle_app_submission` + WHERE `pootle_app_submission`.`creation_time` = creation_time AND + `pootle_app_submission`.`field` = field_arg AND + `pootle_app_submission`.`submitter_id` = submitter_id AND + `pootle_app_submission`.`type` = type_arg AND + `pootle_app_submission`.`unit_id` = unit_id FOR UPDATE; - IF total_rows = 0 THEN - INSERT INTO `pootle_app_submission` ( `pootle_app_submission`.`creation_time`, `pootle_app_submission`.`field`, `pootle_app_submission`.`submitter_id`, `pootle_app_submission`.`type`, `pootle_app_submission`.`unit_id`, `pootle_app_submission`.`store_id`, `pootle_app_submission`.`translation_project_id`, `pootle_app_submission`.`old_value`, `pootle_app_submission`.`new_value`, `pootle_app_submission`.`similarity`, `pootle_app_submission`.`mt_similarity` ) VALUES (creation_time, field_arg, submitter_id, type_arg,unit_id, store_id, translation_project_id, old_value, new_value, similarity, mt_similarity); - END IF; + IF total_rows = 0 THEN + INSERT INTO `pootle_app_submission` ( + `pootle_app_submission`.`creation_time`, + `pootle_app_submission`.`field`, + `pootle_app_submission`.`submitter_id`, + `pootle_app_submission`.`type`, + `pootle_app_submission`.`unit_id`, + `pootle_app_submission`.`store_id`, + `pootle_app_submission`.`translation_project_id`, + `pootle_app_submission`.`old_value`, + `pootle_app_submission`.`new_value`, + `pootle_app_submission`.`similarity`, + `pootle_app_submission`.`mt_similarity` ) + VALUES (creation_time, field_arg, submitter_id, + type_arg,unit_id, store_id, translation_project_id, + old_value, new_value, similarity, mt_similarity); + END IF; END """ ) ], - reverse_sql=[("DROP PROCEDURE IF EXISTS `insert_unique_submission`;")], + reverse_sql=[("DROP PROCEDURE IF EXISTS `insert_submission`;")], ), ] diff --git a/pootle/apps/pootle_store/views.py b/pootle/apps/pootle_store/views.py index 207b4e6307..1b2b4b4767 100644 --- a/pootle/apps/pootle_store/views.py +++ b/pootle/apps/pootle_store/views.py @@ -8,12 +8,14 @@ # AUTHORS file for copyright and authorship information. import copy +import datetime from functools import lru_cache from translate.lang import data from django import forms from django.core.exceptions import ObjectDoesNotExist, PermissionDenied +from django.db import connection from django.http import Http404, QueryDict from django.shortcuts import redirect from django.template import loader From b53379db021a4cf3773c7c7b452f01b6f019e916 Mon Sep 17 00:00:00 2001 From: mandrade2 Date: Tue, 30 Jun 2020 15:44:09 -0400 Subject: [PATCH 07/13] Call stored procedure from submission save method --- pootle/apps/pootle_statistics/models.py | 28 ++++++++++++++++++++++++- pootle/apps/pootle_store/views.py | 4 ++-- 2 files changed, 29 insertions(+), 3 deletions(-) diff --git a/pootle/apps/pootle_statistics/models.py b/pootle/apps/pootle_statistics/models.py index 05a218aa23..b4aa539c1e 100644 --- a/pootle/apps/pootle_statistics/models.py +++ b/pootle/apps/pootle_statistics/models.py @@ -11,6 +11,7 @@ from django.contrib.auth import get_user_model from django.db import models from django.db.models import F +from django.db import connection from django.template.defaultfilters import truncatechars from django.utils.functional import cached_property from django.utils.translation import gettext_lazy as _ @@ -338,7 +339,32 @@ def get_submission_info(self): return result def save(self, *args, **kwargs): - super().save(*args, **kwargs) + cursor = connection.cursor() + try: + resulting_id = 0 + cursor.callproc( + "insert_submission", + [ + self.creation_time.strftime("%Y-%m-%d %H:%M:%S"), + self.field, + self.submitter.id, + self.type, + self.unit.id, + self.store.id, + self.translation_project.id, + self.old_value, + self.new_value, + self.similarity, + self.mt_similarity, + resulting_id, + ], + ) + cursor.execute("SELECT @_insert_submission_11") + id_query = cursor.fetchall() + self.pk = id_query[0][0] + + finally: + cursor.close() if not self.needs_scorelog(): return diff --git a/pootle/apps/pootle_store/views.py b/pootle/apps/pootle_store/views.py index 1b2b4b4767..50429e4e21 100644 --- a/pootle/apps/pootle_store/views.py +++ b/pootle/apps/pootle_store/views.py @@ -8,14 +8,12 @@ # AUTHORS file for copyright and authorship information. import copy -import datetime from functools import lru_cache from translate.lang import data from django import forms from django.core.exceptions import ObjectDoesNotExist, PermissionDenied -from django.db import connection from django.http import Http404, QueryDict from django.shortcuts import redirect from django.template import loader @@ -600,6 +598,7 @@ def submit(request, unit): for field, old_value, new_value in form.updated_fields: if field == SubmissionFields.TARGET and suggestion: old_value = str(suggestion.target_f) + sub = Submission( creation_time=current_time, translation_project=translation_project, @@ -613,6 +612,7 @@ def submit(request, unit): similarity=form.cleaned_data["similarity"], mt_similarity=form.cleaned_data["mt_similarity"], ) + sub.save() # Update current unit instance's attributes From 0262f3a121764f588811e7e1aec1374c40cb5494 Mon Sep 17 00:00:00 2001 From: mandrade2 Date: Tue, 30 Jun 2020 15:44:47 -0400 Subject: [PATCH 08/13] Move submission procedure migration to pootle_statistics and add missing parameters --- .../migrations/0006_auto_20200610_2137.py | 20 +++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) rename pootle/apps/{pootle_store => pootle_statistics}/migrations/0006_auto_20200610_2137.py (77%) diff --git a/pootle/apps/pootle_store/migrations/0006_auto_20200610_2137.py b/pootle/apps/pootle_statistics/migrations/0006_auto_20200610_2137.py similarity index 77% rename from pootle/apps/pootle_store/migrations/0006_auto_20200610_2137.py rename to pootle/apps/pootle_statistics/migrations/0006_auto_20200610_2137.py index 94754c39ba..45946f5cf9 100644 --- a/pootle/apps/pootle_store/migrations/0006_auto_20200610_2137.py +++ b/pootle/apps/pootle_statistics/migrations/0006_auto_20200610_2137.py @@ -6,7 +6,7 @@ class Migration(migrations.Migration): dependencies = [ - ("pootle_store", "0005_auto_20200124_0617"), + ("pootle_statistics", "0005_auto_20200124_0617"), ] operations = [ @@ -25,7 +25,10 @@ class Migration(migrations.Migration): old_value longtext, new_value longtext, similarity double, - mt_similarity double) + mt_similarity double, + suggestion_id INT(11), + quality_check_id INT(11), + OUT new_submission_id INT(11)) BEGIN DECLARE total_rows INT DEFAULT 0; @@ -36,7 +39,8 @@ class Migration(migrations.Migration): `pootle_app_submission`.`field` = field_arg AND `pootle_app_submission`.`submitter_id` = submitter_id AND `pootle_app_submission`.`type` = type_arg AND - `pootle_app_submission`.`unit_id` = unit_id FOR UPDATE; + `pootle_app_submission`.`unit_id` = unit_id AND + `pootle_app_submission`.`new_value` = new_value FOR UPDATE; IF total_rows = 0 THEN INSERT INTO `pootle_app_submission` ( @@ -50,10 +54,14 @@ class Migration(migrations.Migration): `pootle_app_submission`.`old_value`, `pootle_app_submission`.`new_value`, `pootle_app_submission`.`similarity`, - `pootle_app_submission`.`mt_similarity` ) + `pootle_app_submission`.`mt_similarity`, + `pootle_app_submission`.`suggestion_id`, + `pootle_app_submission`.`quality_check_id` ) VALUES (creation_time, field_arg, submitter_id, - type_arg,unit_id, store_id, translation_project_id, - old_value, new_value, similarity, mt_similarity); + type_arg, unit_id, store_id, translation_project_id, + old_value, new_value, similarity, mt_similarity, + suggestion_id, quality_check_id ); + SET new_submission_id = LAST_INSERT_ID(); END IF; END """ From 22a1abde57e86f476d871fe3e98c14a3fe2919e0 Mon Sep 17 00:00:00 2001 From: mandrade2 Date: Wed, 29 Jul 2020 16:27:31 -0400 Subject: [PATCH 09/13] Refresh submission from database after being succesfully persisted --- pootle/apps/pootle_statistics/models.py | 25 +++++++++++++++---------- 1 file changed, 15 insertions(+), 10 deletions(-) diff --git a/pootle/apps/pootle_statistics/models.py b/pootle/apps/pootle_statistics/models.py index b4aa539c1e..acad6905ec 100644 --- a/pootle/apps/pootle_statistics/models.py +++ b/pootle/apps/pootle_statistics/models.py @@ -6,12 +6,10 @@ # This file is a part of the Zing project. It is distributed under the GPL3 # or later license. See the LICENSE file for a copy of the license and the # AUTHORS file for copyright and authorship information. - from django.conf import settings from django.contrib.auth import get_user_model -from django.db import models +from django.db import DatabaseError, connection, models from django.db.models import F -from django.db import connection from django.template.defaultfilters import truncatechars from django.utils.functional import cached_property from django.utils.translation import gettext_lazy as _ @@ -339,8 +337,9 @@ def get_submission_info(self): return result def save(self, *args, **kwargs): - cursor = connection.cursor() - try: + suggestion_id = self.suggestion.id if self.suggestion else None + quality_check_id = self.quality_check.id if self.quality_check else None + with connection.cursor() as cursor: resulting_id = 0 cursor.callproc( "insert_submission", @@ -356,15 +355,21 @@ def save(self, *args, **kwargs): self.new_value, self.similarity, self.mt_similarity, + suggestion_id, + quality_check_id, resulting_id, ], ) - cursor.execute("SELECT @_insert_submission_11") - id_query = cursor.fetchall() - self.pk = id_query[0][0] + # get the value from the OUT variable on position 13 for the newly generated id + cursor.execute("SELECT @_insert_submission_13") + id_query = cursor.fetchone()[0] + if id_query is None: + raise DatabaseError( + "Couldn't insert new submission row, might be a duplicate" + ) + self.pk = id_query - finally: - cursor.close() + self.refresh_from_db() if not self.needs_scorelog(): return From 72354aa058c7c2c75c1e6d98f4caa181edef724e Mon Sep 17 00:00:00 2001 From: mandrade2 Date: Wed, 29 Jul 2020 16:28:35 -0400 Subject: [PATCH 10/13] Fix user purging test to ignore microseconds --- tests/models/user.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/models/user.py b/tests/models/user.py index 70260d83e6..52041cad4a 100644 --- a/tests/models/user.py +++ b/tests/models/user.py @@ -150,8 +150,8 @@ def _test_user_purging(store, member, evil_member, purge): unit = store.units[0] # Times are back to previous times - by any precision - assert unit.submitted_on == initial_submission_time - assert unit.commented_on == initial_comment_time + assert unit.submitted_on == initial_submission_time.replace(microsecond=0) + assert unit.commented_on == initial_comment_time.replace(microsecond=0) assert unit.reviewed_on == initial_review_time # State is be back to how it was before evil user updated. From 4d281a98a9f82f76e9237236f4c6bdc11f3c280d Mon Sep 17 00:00:00 2001 From: mandrade2 Date: Wed, 29 Jul 2020 16:29:23 -0400 Subject: [PATCH 11/13] Fix timeline test to avoid persisitng multiple times the same submission --- tests/views/timeline.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/views/timeline.py b/tests/views/timeline.py index 27ab389541..1f807dc670 100644 --- a/tests/views/timeline.py +++ b/tests/views/timeline.py @@ -332,8 +332,5 @@ def test_timeline_view_unit_with_creation(client, request_users, system, admin, unit = Unit.objects.create( state=TRANSLATED, source_f="Foo", target_f="Bar", store=store0, index=index ) - # save and get the unit to deal with mysql's microsecond issues - unit.save() unit = Unit.objects.get(pk=unit.pk) - unit.add_initial_submission(system) _timeline_test(client, request_users, unit) From 5da2c7015fc5ab51633ce6c168ef5560c32b03a7 Mon Sep 17 00:00:00 2001 From: mandrade2 Date: Mon, 24 Aug 2020 15:19:21 -0400 Subject: [PATCH 12/13] New data dump --- tests/data/data_dump.json | 7420 ++++++++++++++++++++----------------- 1 file changed, 4016 insertions(+), 3404 deletions(-) diff --git a/tests/data/data_dump.json b/tests/data/data_dump.json index d379254bcb..e97d2e8316 100644 --- a/tests/data/data_dump.json +++ b/tests/data/data_dump.json @@ -84,7 +84,7 @@ "pk": 11, "fields": { "app_label": "pootle_store", - "model": "qualitycheck" + "model": "store" } }, { @@ -92,7 +92,7 @@ "pk": 12, "fields": { "app_label": "pootle_store", - "model": "suggestion" + "model": "unit" } }, { @@ -100,7 +100,7 @@ "pk": 13, "fields": { "app_label": "pootle_store", - "model": "unit" + "model": "suggestion" } }, { @@ -108,7 +108,7 @@ "pk": 14, "fields": { "app_label": "pootle_store", - "model": "store" + "model": "qualitycheck" } }, { @@ -204,7 +204,7 @@ "pk": 26, "fields": { "app_label": "socialaccount", - "model": "socialapp" + "model": "socialaccount" } }, { @@ -212,7 +212,7 @@ "pk": 27, "fields": { "app_label": "socialaccount", - "model": "socialaccount" + "model": "socialapp" } }, { @@ -223,14 +223,6 @@ "model": "socialtoken" } }, -{ - "model": "contenttypes.contenttype", - "pk": 29, - "fields": { - "app_label": "evernote_auth", - "model": "evernoteaccount" - } -}, { "model": "sites.site", "pk": 1, @@ -243,18 +235,18 @@ "model": "accounts.user", "pk": 1, "fields": { - "password": "md5$EPKPOWVKX24Q$d52432ff744397367a763708d6fb578f", + "password": "md5$wfzxEDKA3h8x$73a6752d5a2c4f8d26cb9820f94770a0", "last_login": null, "username": "admin", "email": "admin@poot.le", "full_name": "Admin", "is_active": true, "is_superuser": true, - "date_joined": "2020-01-24T13:10:22.521Z", + "date_joined": "2020-08-21T16:25:33.072Z", "rate": 0.0, "review_rate": 0.0, "hourly_rate": 0.0, - "score": 1235.4857142857147, + "score": 1734.0571428571454, "currency": null, "is_employee": false, "twitter": null, @@ -268,14 +260,14 @@ "model": "accounts.user", "pk": 2, "fields": { - "password": "md5$o6kicA4L7Mcc$60832f300ace56b6c7140d733cb5521f", + "password": "md5$mNmoFEMlWjGN$6531afc436979b8bd467da4009dc8baf", "last_login": null, "username": "default", "email": "default@example.com", "full_name": "Default", "is_active": true, "is_superuser": false, - "date_joined": "2020-01-24T13:10:22.529Z", + "date_joined": "2020-08-21T16:25:33.078Z", "rate": 0.0, "review_rate": 0.0, "hourly_rate": 0.0, @@ -293,14 +285,14 @@ "model": "accounts.user", "pk": 3, "fields": { - "password": "md5$tHeSRvh3BAAG$9d8d881100fb056bdf9d3a36fb8f7f99", + "password": "md5$jEUWR3GvNGyg$d0de4fe22bdfe397d1a92ae34f80d4ed", "last_login": null, "username": "member", "email": "member@example.com", "full_name": "Member", "is_active": true, "is_superuser": false, - "date_joined": "2020-01-24T13:10:22.536Z", + "date_joined": "2020-08-21T16:25:33.083Z", "rate": 0.0, "review_rate": 0.0, "hourly_rate": 0.0, @@ -320,14 +312,14 @@ "model": "accounts.user", "pk": 4, "fields": { - "password": "md5$xzGC4R88W7wB$6894e59b97e10e686fc7966948e6b357", + "password": "md5$KvF59btkkYkN$c1dbb026fffe73db47c489fbe38fb2dd", "last_login": null, "username": "member2", "email": "member2@example.com", "full_name": "Member2", "is_active": true, "is_superuser": false, - "date_joined": "2020-01-24T13:10:22.546Z", + "date_joined": "2020-08-21T16:25:33.089Z", "rate": 0.0, "review_rate": 0.0, "hourly_rate": 0.0, @@ -345,14 +337,14 @@ "model": "accounts.user", "pk": 5, "fields": { - "password": "md5$lswzrArERfIi$643401fe2765b5b84d5298b568218275", + "password": "md5$QwARQDLiHZhN$70f315ab58eb831705f2c443f98604d9", "last_login": null, "username": "nobody", "email": "nobody@example.com", "full_name": "Nobody", "is_active": true, "is_superuser": false, - "date_joined": "2020-01-24T13:10:22.553Z", + "date_joined": "2020-08-21T16:25:33.095Z", "rate": 0.0, "review_rate": 0.0, "hourly_rate": 0.0, @@ -370,14 +362,14 @@ "model": "accounts.user", "pk": 6, "fields": { - "password": "md5$moPBH89GmDYj$70e2f7f57d96f759dd64398d9468bcf4", + "password": "md5$KqU8VGa3nRuz$ef4569326d9644dcc18405ec3b7655ea", "last_login": null, "username": "system", "email": "system@example.com", "full_name": "System", "is_active": true, "is_superuser": false, - "date_joined": "2020-01-24T13:10:22.560Z", + "date_joined": "2020-08-21T16:25:33.099Z", "rate": 0.0, "review_rate": 0.0, "hourly_rate": 0.0, @@ -2060,8 +2052,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "rejected", - "creation_time": "2020-01-24T13:10:23.781Z", - "review_time": "2020-01-24T13:10:23.787Z" + "creation_time": "2020-08-21T16:25:34.103Z", + "review_time": "2020-08-21T16:25:34.110Z" } }, { @@ -2075,7 +2067,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:23.800Z", + "creation_time": "2020-08-21T16:25:34.121Z", "review_time": null } }, @@ -2090,8 +2082,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:23.810Z", - "review_time": "2020-01-24T13:10:23.815Z" + "creation_time": "2020-08-21T16:25:34.131Z", + "review_time": "2020-08-21T16:25:34.137Z" } }, { @@ -2105,7 +2097,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:24.025Z", + "creation_time": "2020-08-21T16:25:34.151Z", "review_time": null } }, @@ -2120,8 +2112,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:24.077Z", - "review_time": "2020-01-24T13:10:24.127Z" + "creation_time": "2020-08-21T16:25:34.170Z", + "review_time": "2020-08-21T16:25:34.177Z" } }, { @@ -2135,7 +2127,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:24.215Z", + "creation_time": "2020-08-21T16:25:34.190Z", "review_time": null } }, @@ -2150,8 +2142,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:24.228Z", - "review_time": "2020-01-24T13:10:24.233Z" + "creation_time": "2020-08-21T16:25:34.200Z", + "review_time": "2020-08-21T16:25:34.207Z" } }, { @@ -2165,7 +2157,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:24.315Z", + "creation_time": "2020-08-21T16:25:34.224Z", "review_time": null } }, @@ -2180,8 +2172,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:24.330Z", - "review_time": "2020-01-24T13:10:24.335Z" + "creation_time": "2020-08-21T16:25:34.235Z", + "review_time": "2020-08-21T16:25:34.242Z" } }, { @@ -2195,7 +2187,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:24.422Z", + "creation_time": "2020-08-21T16:25:34.260Z", "review_time": null } }, @@ -2210,8 +2202,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "rejected", - "creation_time": "2020-01-24T13:10:24.435Z", - "review_time": "2020-01-24T13:10:24.441Z" + "creation_time": "2020-08-21T16:25:34.271Z", + "review_time": "2020-08-21T16:25:34.277Z" } }, { @@ -2225,7 +2217,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:24.451Z", + "creation_time": "2020-08-21T16:25:34.288Z", "review_time": null } }, @@ -2240,8 +2232,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:24.461Z", - "review_time": "2020-01-24T13:10:24.466Z" + "creation_time": "2020-08-21T16:25:34.298Z", + "review_time": "2020-08-21T16:25:34.305Z" } }, { @@ -2255,7 +2247,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:24.546Z", + "creation_time": "2020-08-21T16:25:34.318Z", "review_time": null } }, @@ -2270,8 +2262,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:24.590Z", - "review_time": "2020-01-24T13:10:24.648Z" + "creation_time": "2020-08-21T16:25:34.336Z", + "review_time": "2020-08-21T16:25:34.343Z" } }, { @@ -2285,7 +2277,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:24.728Z", + "creation_time": "2020-08-21T16:25:34.358Z", "review_time": null } }, @@ -2300,8 +2292,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:24.743Z", - "review_time": "2020-01-24T13:10:24.750Z" + "creation_time": "2020-08-21T16:25:34.369Z", + "review_time": "2020-08-21T16:25:34.376Z" } }, { @@ -2315,7 +2307,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:24.830Z", + "creation_time": "2020-08-21T16:25:34.389Z", "review_time": null } }, @@ -2330,8 +2322,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "rejected", - "creation_time": "2020-01-24T13:10:24.898Z", - "review_time": "2020-01-24T13:10:24.946Z" + "creation_time": "2020-08-21T16:25:34.399Z", + "review_time": "2020-08-21T16:25:34.406Z" } }, { @@ -2345,7 +2337,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:25.081Z", + "creation_time": "2020-08-21T16:25:34.417Z", "review_time": null } }, @@ -2360,8 +2352,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:25.093Z", - "review_time": "2020-01-24T13:10:25.098Z" + "creation_time": "2020-08-21T16:25:34.428Z", + "review_time": "2020-08-21T16:25:34.435Z" } }, { @@ -2375,7 +2367,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:25.178Z", + "creation_time": "2020-08-21T16:25:34.454Z", "review_time": null } }, @@ -2390,8 +2382,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:25.191Z", - "review_time": "2020-01-24T13:10:25.198Z" + "creation_time": "2020-08-21T16:25:34.464Z", + "review_time": "2020-08-21T16:25:34.471Z" } }, { @@ -2405,7 +2397,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:25.279Z", + "creation_time": "2020-08-21T16:25:34.484Z", "review_time": null } }, @@ -2420,8 +2412,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:25.321Z", - "review_time": "2020-01-24T13:10:25.368Z" + "creation_time": "2020-08-21T16:25:34.505Z", + "review_time": "2020-08-21T16:25:34.512Z" } }, { @@ -2435,7 +2427,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:25.435Z", + "creation_time": "2020-08-21T16:25:34.524Z", "review_time": null } }, @@ -2450,8 +2442,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "rejected", - "creation_time": "2020-01-24T13:10:25.475Z", - "review_time": "2020-01-24T13:10:25.522Z" + "creation_time": "2020-08-21T16:25:34.543Z", + "review_time": "2020-08-21T16:25:34.550Z" } }, { @@ -2465,7 +2457,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:25.533Z", + "creation_time": "2020-08-21T16:25:34.560Z", "review_time": null } }, @@ -2480,8 +2472,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:25.544Z", - "review_time": "2020-01-24T13:10:25.550Z" + "creation_time": "2020-08-21T16:25:34.570Z", + "review_time": "2020-08-21T16:25:34.577Z" } }, { @@ -2495,7 +2487,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:25.629Z", + "creation_time": "2020-08-21T16:25:34.591Z", "review_time": null } }, @@ -2510,8 +2502,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:25.641Z", - "review_time": "2020-01-24T13:10:25.646Z" + "creation_time": "2020-08-21T16:25:34.601Z", + "review_time": "2020-08-21T16:25:34.608Z" } }, { @@ -2525,7 +2517,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:25.728Z", + "creation_time": "2020-08-21T16:25:34.625Z", "review_time": null } }, @@ -2540,8 +2532,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:25.742Z", - "review_time": "2020-01-24T13:10:25.749Z" + "creation_time": "2020-08-21T16:25:34.636Z", + "review_time": "2020-08-21T16:25:34.643Z" } }, { @@ -2555,7 +2547,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:25.821Z", + "creation_time": "2020-08-21T16:25:34.655Z", "review_time": null } }, @@ -2570,8 +2562,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "rejected", - "creation_time": "2020-01-24T13:10:25.834Z", - "review_time": "2020-01-24T13:10:25.840Z" + "creation_time": "2020-08-21T16:25:34.666Z", + "review_time": "2020-08-21T16:25:34.672Z" } }, { @@ -2585,7 +2577,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:25.851Z", + "creation_time": "2020-08-21T16:25:34.682Z", "review_time": null } }, @@ -2600,8 +2592,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:25.903Z", - "review_time": "2020-01-24T13:10:25.952Z" + "creation_time": "2020-08-21T16:25:34.693Z", + "review_time": "2020-08-21T16:25:34.701Z" } }, { @@ -2615,7 +2607,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:26.035Z", + "creation_time": "2020-08-21T16:25:34.718Z", "review_time": null } }, @@ -2630,8 +2622,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:26.050Z", - "review_time": "2020-01-24T13:10:26.056Z" + "creation_time": "2020-08-21T16:25:34.728Z", + "review_time": "2020-08-21T16:25:34.735Z" } }, { @@ -2645,7 +2637,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:26.137Z", + "creation_time": "2020-08-21T16:25:34.750Z", "review_time": null } }, @@ -2660,8 +2652,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:26.191Z", - "review_time": "2020-01-24T13:10:26.240Z" + "creation_time": "2020-08-21T16:25:34.772Z", + "review_time": "2020-08-21T16:25:34.778Z" } }, { @@ -2675,7 +2667,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:26.321Z", + "creation_time": "2020-08-21T16:25:34.791Z", "review_time": null } }, @@ -2690,8 +2682,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:26.334Z", - "review_time": "2020-01-24T13:10:26.340Z" + "creation_time": "2020-08-21T16:25:34.801Z", + "review_time": "2020-08-21T16:25:34.808Z" } }, { @@ -2705,7 +2697,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:26.426Z", + "creation_time": "2020-08-21T16:25:34.824Z", "review_time": null } }, @@ -2720,8 +2712,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "rejected", - "creation_time": "2020-01-24T13:10:26.482Z", - "review_time": "2020-01-24T13:10:26.488Z" + "creation_time": "2020-08-21T16:25:34.834Z", + "review_time": "2020-08-21T16:25:34.841Z" } }, { @@ -2735,7 +2727,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:26.499Z", + "creation_time": "2020-08-21T16:25:34.851Z", "review_time": null } }, @@ -2750,8 +2742,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:26.510Z", - "review_time": "2020-01-24T13:10:26.515Z" + "creation_time": "2020-08-21T16:25:34.862Z", + "review_time": "2020-08-21T16:25:34.870Z" } }, { @@ -2765,7 +2757,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:26.599Z", + "creation_time": "2020-08-21T16:25:34.884Z", "review_time": null } }, @@ -2780,8 +2772,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:26.649Z", - "review_time": "2020-01-24T13:10:26.702Z" + "creation_time": "2020-08-21T16:25:34.903Z", + "review_time": "2020-08-21T16:25:34.910Z" } }, { @@ -2795,7 +2787,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:26.826Z", + "creation_time": "2020-08-21T16:25:34.929Z", "review_time": null } }, @@ -2810,8 +2802,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:26.843Z", - "review_time": "2020-01-24T13:10:26.848Z" + "creation_time": "2020-08-21T16:25:34.939Z", + "review_time": "2020-08-21T16:25:34.946Z" } }, { @@ -2825,7 +2817,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:26.932Z", + "creation_time": "2020-08-21T16:25:34.959Z", "review_time": null } }, @@ -2840,8 +2832,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:26.979Z", - "review_time": "2020-01-24T13:10:27.030Z" + "creation_time": "2020-08-21T16:25:34.978Z", + "review_time": "2020-08-21T16:25:34.985Z" } }, { @@ -2855,7 +2847,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:27.114Z", + "creation_time": "2020-08-21T16:25:34.999Z", "review_time": null } }, @@ -2870,8 +2862,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "rejected", - "creation_time": "2020-01-24T13:10:27.127Z", - "review_time": "2020-01-24T13:10:27.133Z" + "creation_time": "2020-08-21T16:25:35.009Z", + "review_time": "2020-08-21T16:25:35.015Z" } }, { @@ -2885,7 +2877,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:27.144Z", + "creation_time": "2020-08-21T16:25:35.025Z", "review_time": null } }, @@ -2900,8 +2892,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:27.156Z", - "review_time": "2020-01-24T13:10:27.161Z" + "creation_time": "2020-08-21T16:25:35.036Z", + "review_time": "2020-08-21T16:25:35.043Z" } }, { @@ -2915,7 +2907,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:27.246Z", + "creation_time": "2020-08-21T16:25:35.061Z", "review_time": null } }, @@ -2930,8 +2922,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:27.259Z", - "review_time": "2020-01-24T13:10:27.264Z" + "creation_time": "2020-08-21T16:25:35.071Z", + "review_time": "2020-08-21T16:25:35.079Z" } }, { @@ -2945,7 +2937,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:27.345Z", + "creation_time": "2020-08-21T16:25:35.095Z", "review_time": null } }, @@ -2960,8 +2952,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "rejected", - "creation_time": "2020-01-24T13:10:27.360Z", - "review_time": "2020-01-24T13:10:27.366Z" + "creation_time": "2020-08-21T16:25:35.106Z", + "review_time": "2020-08-21T16:25:35.114Z" } }, { @@ -2975,7 +2967,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:27.376Z", + "creation_time": "2020-08-21T16:25:35.125Z", "review_time": null } }, @@ -2990,8 +2982,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:27.387Z", - "review_time": "2020-01-24T13:10:27.392Z" + "creation_time": "2020-08-21T16:25:35.136Z", + "review_time": "2020-08-21T16:25:35.142Z" } }, { @@ -3005,7 +2997,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:27.474Z", + "creation_time": "2020-08-21T16:25:35.155Z", "review_time": null } }, @@ -3020,8 +3012,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:27.518Z", - "review_time": "2020-01-24T13:10:27.566Z" + "creation_time": "2020-08-21T16:25:35.173Z", + "review_time": "2020-08-21T16:25:35.180Z" } }, { @@ -3035,7 +3027,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:27.649Z", + "creation_time": "2020-08-21T16:25:35.194Z", "review_time": null } }, @@ -3050,8 +3042,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:27.694Z", - "review_time": "2020-01-24T13:10:27.743Z" + "creation_time": "2020-08-21T16:25:35.213Z", + "review_time": "2020-08-21T16:25:35.220Z" } }, { @@ -3065,7 +3057,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:27.826Z", + "creation_time": "2020-08-21T16:25:35.232Z", "review_time": null } }, @@ -3080,8 +3072,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "rejected", - "creation_time": "2020-01-24T13:10:27.838Z", - "review_time": "2020-01-24T13:10:27.844Z" + "creation_time": "2020-08-21T16:25:35.242Z", + "review_time": "2020-08-21T16:25:35.249Z" } }, { @@ -3095,7 +3087,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:27.855Z", + "creation_time": "2020-08-21T16:25:35.259Z", "review_time": null } }, @@ -3110,8 +3102,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:27.866Z", - "review_time": "2020-01-24T13:10:27.872Z" + "creation_time": "2020-08-21T16:25:35.270Z", + "review_time": "2020-08-21T16:25:35.276Z" } }, { @@ -3125,7 +3117,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:27.957Z", + "creation_time": "2020-08-21T16:25:35.292Z", "review_time": null } }, @@ -3140,8 +3132,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "rejected", - "creation_time": "2020-01-24T13:10:27.974Z", - "review_time": "2020-01-24T13:10:27.980Z" + "creation_time": "2020-08-21T16:25:35.304Z", + "review_time": "2020-08-21T16:25:35.312Z" } }, { @@ -3155,7 +3147,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:27.990Z", + "creation_time": "2020-08-21T16:25:35.324Z", "review_time": null } }, @@ -3170,8 +3162,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:28.001Z", - "review_time": "2020-01-24T13:10:28.007Z" + "creation_time": "2020-08-21T16:25:35.335Z", + "review_time": "2020-08-21T16:25:35.341Z" } }, { @@ -3185,7 +3177,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:28.091Z", + "creation_time": "2020-08-21T16:25:35.359Z", "review_time": null } }, @@ -3200,8 +3192,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:28.104Z", - "review_time": "2020-01-24T13:10:28.110Z" + "creation_time": "2020-08-21T16:25:35.370Z", + "review_time": "2020-08-21T16:25:35.376Z" } }, { @@ -3215,7 +3207,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:28.193Z", + "creation_time": "2020-08-21T16:25:35.391Z", "review_time": null } }, @@ -3230,8 +3222,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:28.207Z", - "review_time": "2020-01-24T13:10:28.213Z" + "creation_time": "2020-08-21T16:25:35.403Z", + "review_time": "2020-08-21T16:25:35.409Z" } }, { @@ -3245,7 +3237,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:28.293Z", + "creation_time": "2020-08-21T16:25:35.426Z", "review_time": null } }, @@ -3260,8 +3252,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "rejected", - "creation_time": "2020-01-24T13:10:28.306Z", - "review_time": "2020-01-24T13:10:28.312Z" + "creation_time": "2020-08-21T16:25:35.437Z", + "review_time": "2020-08-21T16:25:35.444Z" } }, { @@ -3275,7 +3267,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:28.323Z", + "creation_time": "2020-08-21T16:25:35.455Z", "review_time": null } }, @@ -3290,8 +3282,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:28.333Z", - "review_time": "2020-01-24T13:10:28.339Z" + "creation_time": "2020-08-21T16:25:35.466Z", + "review_time": "2020-08-21T16:25:35.473Z" } }, { @@ -3305,7 +3297,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:28.423Z", + "creation_time": "2020-08-21T16:25:35.488Z", "review_time": null } }, @@ -3320,8 +3312,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:28.436Z", - "review_time": "2020-01-24T13:10:28.442Z" + "creation_time": "2020-08-21T16:25:35.500Z", + "review_time": "2020-08-21T16:25:35.508Z" } }, { @@ -3335,7 +3327,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:28.525Z", + "creation_time": "2020-08-21T16:25:35.521Z", "review_time": null } }, @@ -3350,8 +3342,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:28.571Z", - "review_time": "2020-01-24T13:10:28.619Z" + "creation_time": "2020-08-21T16:25:35.540Z", + "review_time": "2020-08-21T16:25:35.548Z" } }, { @@ -3365,7 +3357,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:28.701Z", + "creation_time": "2020-08-21T16:25:35.562Z", "review_time": null } }, @@ -3380,8 +3372,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:28.751Z", - "review_time": "2020-01-24T13:10:28.802Z" + "creation_time": "2020-08-21T16:25:35.582Z", + "review_time": "2020-08-21T16:25:35.589Z" } }, { @@ -3395,7 +3387,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:28.880Z", + "creation_time": "2020-08-21T16:25:35.603Z", "review_time": null } }, @@ -3410,8 +3402,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:28.923Z", - "review_time": "2020-01-24T13:10:28.972Z" + "creation_time": "2020-08-21T16:25:35.623Z", + "review_time": "2020-08-21T16:25:35.630Z" } }, { @@ -3425,7 +3417,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:29.061Z", + "creation_time": "2020-08-21T16:25:35.645Z", "review_time": null } }, @@ -3440,8 +3432,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "rejected", - "creation_time": "2020-01-24T13:10:29.075Z", - "review_time": "2020-01-24T13:10:29.083Z" + "creation_time": "2020-08-21T16:25:35.655Z", + "review_time": "2020-08-21T16:25:35.662Z" } }, { @@ -3455,7 +3447,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:29.093Z", + "creation_time": "2020-08-21T16:25:35.672Z", "review_time": null } }, @@ -3470,8 +3462,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:29.105Z", - "review_time": "2020-01-24T13:10:29.110Z" + "creation_time": "2020-08-21T16:25:35.682Z", + "review_time": "2020-08-21T16:25:35.689Z" } }, { @@ -3485,7 +3477,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:29.192Z", + "creation_time": "2020-08-21T16:25:35.707Z", "review_time": null } }, @@ -3500,8 +3492,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:29.207Z", - "review_time": "2020-01-24T13:10:29.212Z" + "creation_time": "2020-08-21T16:25:35.720Z", + "review_time": "2020-08-21T16:25:35.727Z" } }, { @@ -3515,7 +3507,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:29.295Z", + "creation_time": "2020-08-21T16:25:35.740Z", "review_time": null } }, @@ -3530,8 +3522,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:29.339Z", - "review_time": "2020-01-24T13:10:29.392Z" + "creation_time": "2020-08-21T16:25:35.759Z", + "review_time": "2020-08-21T16:25:35.766Z" } }, { @@ -3545,7 +3537,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:29.473Z", + "creation_time": "2020-08-21T16:25:35.783Z", "review_time": null } }, @@ -3560,8 +3552,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:29.486Z", - "review_time": "2020-01-24T13:10:29.492Z" + "creation_time": "2020-08-21T16:25:35.795Z", + "review_time": "2020-08-21T16:25:35.802Z" } }, { @@ -3575,7 +3567,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:29.570Z", + "creation_time": "2020-08-21T16:25:35.815Z", "review_time": null } }, @@ -3590,8 +3582,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "rejected", - "creation_time": "2020-01-24T13:10:29.583Z", - "review_time": "2020-01-24T13:10:29.588Z" + "creation_time": "2020-08-21T16:25:35.825Z", + "review_time": "2020-08-21T16:25:35.831Z" } }, { @@ -3605,7 +3597,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:29.600Z", + "creation_time": "2020-08-21T16:25:35.842Z", "review_time": null } }, @@ -3620,8 +3612,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:29.612Z", - "review_time": "2020-01-24T13:10:29.618Z" + "creation_time": "2020-08-21T16:25:35.853Z", + "review_time": "2020-08-21T16:25:35.859Z" } }, { @@ -3635,7 +3627,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:29.698Z", + "creation_time": "2020-08-21T16:25:35.872Z", "review_time": null } }, @@ -3650,8 +3642,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:29.740Z", - "review_time": "2020-01-24T13:10:29.792Z" + "creation_time": "2020-08-21T16:25:35.891Z", + "review_time": "2020-08-21T16:25:35.897Z" } }, { @@ -3665,7 +3657,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:29.875Z", + "creation_time": "2020-08-21T16:25:35.915Z", "review_time": null } }, @@ -3680,8 +3672,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "rejected", - "creation_time": "2020-01-24T13:10:29.888Z", - "review_time": "2020-01-24T13:10:29.893Z" + "creation_time": "2020-08-21T16:25:35.925Z", + "review_time": "2020-08-21T16:25:35.932Z" } }, { @@ -3695,7 +3687,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:29.903Z", + "creation_time": "2020-08-21T16:25:35.942Z", "review_time": null } }, @@ -3710,8 +3702,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:29.913Z", - "review_time": "2020-01-24T13:10:29.918Z" + "creation_time": "2020-08-21T16:25:35.952Z", + "review_time": "2020-08-21T16:25:35.958Z" } }, { @@ -3725,7 +3717,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:30.001Z", + "creation_time": "2020-08-21T16:25:35.971Z", "review_time": null } }, @@ -3740,8 +3732,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:30.017Z", - "review_time": "2020-01-24T13:10:30.023Z" + "creation_time": "2020-08-21T16:25:35.984Z", + "review_time": "2020-08-21T16:25:35.990Z" } }, { @@ -3755,7 +3747,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:30.104Z", + "creation_time": "2020-08-21T16:25:36.005Z", "review_time": null } }, @@ -3770,8 +3762,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "rejected", - "creation_time": "2020-01-24T13:10:30.117Z", - "review_time": "2020-01-24T13:10:30.122Z" + "creation_time": "2020-08-21T16:25:36.016Z", + "review_time": "2020-08-21T16:25:36.022Z" } }, { @@ -3785,7 +3777,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:30.133Z", + "creation_time": "2020-08-21T16:25:36.033Z", "review_time": null } }, @@ -3800,8 +3792,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "rejected", - "creation_time": "2020-01-24T13:10:30.143Z", - "review_time": "2020-01-24T13:10:30.148Z" + "creation_time": "2020-08-21T16:25:36.044Z", + "review_time": "2020-08-21T16:25:36.052Z" } }, { @@ -3815,7 +3807,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:30.158Z", + "creation_time": "2020-08-21T16:25:36.064Z", "review_time": null } }, @@ -3830,8 +3822,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:30.167Z", - "review_time": "2020-01-24T13:10:30.172Z" + "creation_time": "2020-08-21T16:25:36.074Z", + "review_time": "2020-08-21T16:25:36.081Z" } }, { @@ -3845,7 +3837,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:30.251Z", + "creation_time": "2020-08-21T16:25:36.102Z", "review_time": null } }, @@ -3860,8 +3852,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:30.265Z", - "review_time": "2020-01-24T13:10:30.270Z" + "creation_time": "2020-08-21T16:25:36.112Z", + "review_time": "2020-08-21T16:25:36.119Z" } }, { @@ -3875,7 +3867,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:30.348Z", + "creation_time": "2020-08-21T16:25:36.133Z", "review_time": null } }, @@ -3890,8 +3882,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:30.391Z", - "review_time": "2020-01-24T13:10:30.440Z" + "creation_time": "2020-08-21T16:25:36.155Z", + "review_time": "2020-08-21T16:25:36.163Z" } }, { @@ -3905,7 +3897,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:30.522Z", + "creation_time": "2020-08-21T16:25:36.180Z", "review_time": null } }, @@ -3920,8 +3912,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:30.536Z", - "review_time": "2020-01-24T13:10:30.541Z" + "creation_time": "2020-08-21T16:25:36.192Z", + "review_time": "2020-08-21T16:25:36.201Z" } }, { @@ -3935,7 +3927,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:30.621Z", + "creation_time": "2020-08-21T16:25:36.215Z", "review_time": null } }, @@ -3950,8 +3942,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:30.634Z", - "review_time": "2020-01-24T13:10:30.640Z" + "creation_time": "2020-08-21T16:25:36.226Z", + "review_time": "2020-08-21T16:25:36.233Z" } }, { @@ -3965,7 +3957,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:30.724Z", + "creation_time": "2020-08-21T16:25:36.248Z", "review_time": null } }, @@ -3980,8 +3972,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:30.775Z", - "review_time": "2020-01-24T13:10:30.814Z" + "creation_time": "2020-08-21T16:25:36.269Z", + "review_time": "2020-08-21T16:25:36.276Z" } }, { @@ -3995,7 +3987,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:30.900Z", + "creation_time": "2020-08-21T16:25:36.291Z", "review_time": null } }, @@ -4010,8 +4002,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:30.913Z", - "review_time": "2020-01-24T13:10:30.918Z" + "creation_time": "2020-08-21T16:25:36.301Z", + "review_time": "2020-08-21T16:25:36.309Z" } }, { @@ -4025,7 +4017,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:31.003Z", + "creation_time": "2020-08-21T16:25:36.322Z", "review_time": null } }, @@ -4040,8 +4032,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "rejected", - "creation_time": "2020-01-24T13:10:31.015Z", - "review_time": "2020-01-24T13:10:31.021Z" + "creation_time": "2020-08-21T16:25:36.333Z", + "review_time": "2020-08-21T16:25:36.341Z" } }, { @@ -4055,7 +4047,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:31.032Z", + "creation_time": "2020-08-21T16:25:36.353Z", "review_time": null } }, @@ -4070,8 +4062,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "rejected", - "creation_time": "2020-01-24T13:10:31.042Z", - "review_time": "2020-01-24T13:10:31.047Z" + "creation_time": "2020-08-21T16:25:36.364Z", + "review_time": "2020-08-21T16:25:36.371Z" } }, { @@ -4085,7 +4077,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:31.058Z", + "creation_time": "2020-08-21T16:25:36.382Z", "review_time": null } }, @@ -4100,8 +4092,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:31.069Z", - "review_time": "2020-01-24T13:10:31.074Z" + "creation_time": "2020-08-21T16:25:36.393Z", + "review_time": "2020-08-21T16:25:36.401Z" } }, { @@ -4115,7 +4107,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:31.164Z", + "creation_time": "2020-08-21T16:25:36.418Z", "review_time": null } }, @@ -4130,8 +4122,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:31.178Z", - "review_time": "2020-01-24T13:10:31.183Z" + "creation_time": "2020-08-21T16:25:36.430Z", + "review_time": "2020-08-21T16:25:36.437Z" } }, { @@ -4145,7 +4137,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:31.264Z", + "creation_time": "2020-08-21T16:25:36.452Z", "review_time": null } }, @@ -4160,8 +4152,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:31.317Z", - "review_time": "2020-01-24T13:10:31.365Z" + "creation_time": "2020-08-21T16:25:36.473Z", + "review_time": "2020-08-21T16:25:36.480Z" } }, { @@ -4175,7 +4167,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:31.450Z", + "creation_time": "2020-08-21T16:25:36.496Z", "review_time": null } }, @@ -4190,8 +4182,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:31.497Z", - "review_time": "2020-01-24T13:10:31.550Z" + "creation_time": "2020-08-21T16:25:36.518Z", + "review_time": "2020-08-21T16:25:36.525Z" } }, { @@ -4205,7 +4197,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:31.638Z", + "creation_time": "2020-08-21T16:25:36.543Z", "review_time": null } }, @@ -4220,8 +4212,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:31.654Z", - "review_time": "2020-01-24T13:10:31.659Z" + "creation_time": "2020-08-21T16:25:36.556Z", + "review_time": "2020-08-21T16:25:36.562Z" } }, { @@ -4235,7 +4227,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:31.781Z", + "creation_time": "2020-08-21T16:25:36.581Z", "review_time": null } }, @@ -4250,8 +4242,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:31.794Z", - "review_time": "2020-01-24T13:10:31.800Z" + "creation_time": "2020-08-21T16:25:36.592Z", + "review_time": "2020-08-21T16:25:36.599Z" } }, { @@ -4265,7 +4257,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:31.884Z", + "creation_time": "2020-08-21T16:25:36.616Z", "review_time": null } }, @@ -4280,8 +4272,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "rejected", - "creation_time": "2020-01-24T13:10:31.897Z", - "review_time": "2020-01-24T13:10:31.903Z" + "creation_time": "2020-08-21T16:25:36.628Z", + "review_time": "2020-08-21T16:25:36.635Z" } }, { @@ -4295,7 +4287,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:31.913Z", + "creation_time": "2020-08-21T16:25:36.646Z", "review_time": null } }, @@ -4310,8 +4302,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:31.923Z", - "review_time": "2020-01-24T13:10:31.928Z" + "creation_time": "2020-08-21T16:25:36.658Z", + "review_time": "2020-08-21T16:25:36.665Z" } }, { @@ -4325,7 +4317,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:32.011Z", + "creation_time": "2020-08-21T16:25:36.678Z", "review_time": null } }, @@ -4340,8 +4332,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:32.055Z", - "review_time": "2020-01-24T13:10:32.104Z" + "creation_time": "2020-08-21T16:25:36.698Z", + "review_time": "2020-08-21T16:25:36.705Z" } }, { @@ -4355,7 +4347,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:32.190Z", + "creation_time": "2020-08-21T16:25:36.719Z", "review_time": null } }, @@ -4370,8 +4362,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:32.203Z", - "review_time": "2020-01-24T13:10:32.209Z" + "creation_time": "2020-08-21T16:25:36.730Z", + "review_time": "2020-08-21T16:25:36.737Z" } }, { @@ -4385,7 +4377,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:32.287Z", + "creation_time": "2020-08-21T16:25:36.751Z", "review_time": null } }, @@ -4400,8 +4392,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "rejected", - "creation_time": "2020-01-24T13:10:32.300Z", - "review_time": "2020-01-24T13:10:32.305Z" + "creation_time": "2020-08-21T16:25:36.763Z", + "review_time": "2020-08-21T16:25:36.769Z" } }, { @@ -4415,7 +4407,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:32.316Z", + "creation_time": "2020-08-21T16:25:36.781Z", "review_time": null } }, @@ -4430,8 +4422,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:32.326Z", - "review_time": "2020-01-24T13:10:32.332Z" + "creation_time": "2020-08-21T16:25:36.791Z", + "review_time": "2020-08-21T16:25:36.799Z" } }, { @@ -4445,7 +4437,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:32.413Z", + "creation_time": "2020-08-21T16:25:36.813Z", "review_time": null } }, @@ -4460,8 +4452,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:32.460Z", - "review_time": "2020-01-24T13:10:32.512Z" + "creation_time": "2020-08-21T16:25:36.834Z", + "review_time": "2020-08-21T16:25:36.842Z" } }, { @@ -4475,7 +4467,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:32.596Z", + "creation_time": "2020-08-21T16:25:36.857Z", "review_time": null } }, @@ -4490,8 +4482,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "rejected", - "creation_time": "2020-01-24T13:10:32.609Z", - "review_time": "2020-01-24T13:10:32.614Z" + "creation_time": "2020-08-21T16:25:36.868Z", + "review_time": "2020-08-21T16:25:36.876Z" } }, { @@ -4505,7 +4497,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:32.625Z", + "creation_time": "2020-08-21T16:25:36.887Z", "review_time": null } }, @@ -4520,8 +4512,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:32.635Z", - "review_time": "2020-01-24T13:10:32.640Z" + "creation_time": "2020-08-21T16:25:36.899Z", + "review_time": "2020-08-21T16:25:36.906Z" } }, { @@ -4535,7 +4527,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:32.717Z", + "creation_time": "2020-08-21T16:25:36.921Z", "review_time": null } }, @@ -4550,8 +4542,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:32.764Z", - "review_time": "2020-01-24T13:10:32.816Z" + "creation_time": "2020-08-21T16:25:36.941Z", + "review_time": "2020-08-21T16:25:36.949Z" } }, { @@ -4565,7 +4557,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:32.899Z", + "creation_time": "2020-08-21T16:25:36.967Z", "review_time": null } }, @@ -4580,8 +4572,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:32.915Z", - "review_time": "2020-01-24T13:10:32.920Z" + "creation_time": "2020-08-21T16:25:36.979Z", + "review_time": "2020-08-21T16:25:36.986Z" } }, { @@ -4595,7 +4587,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:33.001Z", + "creation_time": "2020-08-21T16:25:37.000Z", "review_time": null } }, @@ -4610,8 +4602,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:33.044Z", - "review_time": "2020-01-24T13:10:33.096Z" + "creation_time": "2020-08-21T16:25:37.020Z", + "review_time": "2020-08-21T16:25:37.028Z" } }, { @@ -4625,7 +4617,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:33.181Z", + "creation_time": "2020-08-21T16:25:37.046Z", "review_time": null } }, @@ -4640,8 +4632,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "rejected", - "creation_time": "2020-01-24T13:10:33.195Z", - "review_time": "2020-01-24T13:10:33.200Z" + "creation_time": "2020-08-21T16:25:37.056Z", + "review_time": "2020-08-21T16:25:37.063Z" } }, { @@ -4655,7 +4647,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:33.211Z", + "creation_time": "2020-08-21T16:25:37.073Z", "review_time": null } }, @@ -4670,8 +4662,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:33.222Z", - "review_time": "2020-01-24T13:10:33.226Z" + "creation_time": "2020-08-21T16:25:37.083Z", + "review_time": "2020-08-21T16:25:37.090Z" } }, { @@ -4685,7 +4677,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:33.308Z", + "creation_time": "2020-08-21T16:25:37.103Z", "review_time": null } }, @@ -4700,8 +4692,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:33.323Z", - "review_time": "2020-01-24T13:10:33.328Z" + "creation_time": "2020-08-21T16:25:37.116Z", + "review_time": "2020-08-21T16:25:37.123Z" } }, { @@ -4715,7 +4707,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:33.409Z", + "creation_time": "2020-08-21T16:25:37.137Z", "review_time": null } }, @@ -4730,8 +4722,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:33.451Z", - "review_time": "2020-01-24T13:10:33.502Z" + "creation_time": "2020-08-21T16:25:37.157Z", + "review_time": "2020-08-21T16:25:37.165Z" } }, { @@ -4745,7 +4737,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:33.585Z", + "creation_time": "2020-08-21T16:25:37.184Z", "review_time": null } }, @@ -4760,8 +4752,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "rejected", - "creation_time": "2020-01-24T13:10:33.598Z", - "review_time": "2020-01-24T13:10:33.603Z" + "creation_time": "2020-08-21T16:25:37.195Z", + "review_time": "2020-08-21T16:25:37.202Z" } }, { @@ -4775,7 +4767,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:33.614Z", + "creation_time": "2020-08-21T16:25:37.213Z", "review_time": null } }, @@ -4790,8 +4782,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:33.624Z", - "review_time": "2020-01-24T13:10:33.629Z" + "creation_time": "2020-08-21T16:25:37.224Z", + "review_time": "2020-08-21T16:25:37.231Z" } }, { @@ -4805,7 +4797,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:33.706Z", + "creation_time": "2020-08-21T16:25:37.245Z", "review_time": null } }, @@ -4820,8 +4812,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "rejected", - "creation_time": "2020-01-24T13:10:33.721Z", - "review_time": "2020-01-24T13:10:33.726Z" + "creation_time": "2020-08-21T16:25:37.257Z", + "review_time": "2020-08-21T16:25:37.265Z" } }, { @@ -4835,7 +4827,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:33.737Z", + "creation_time": "2020-08-21T16:25:37.275Z", "review_time": null } }, @@ -4850,8 +4842,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:33.748Z", - "review_time": "2020-01-24T13:10:33.752Z" + "creation_time": "2020-08-21T16:25:37.285Z", + "review_time": "2020-08-21T16:25:37.292Z" } }, { @@ -4865,7 +4857,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:33.873Z", + "creation_time": "2020-08-21T16:25:37.308Z", "review_time": null } }, @@ -4880,8 +4872,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:33.886Z", - "review_time": "2020-01-24T13:10:33.892Z" + "creation_time": "2020-08-21T16:25:37.319Z", + "review_time": "2020-08-21T16:25:37.326Z" } }, { @@ -4895,7 +4887,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:33.957Z", + "creation_time": "2020-08-21T16:25:37.346Z", "review_time": null } }, @@ -4910,8 +4902,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:33.971Z", - "review_time": "2020-01-24T13:10:33.976Z" + "creation_time": "2020-08-21T16:25:37.357Z", + "review_time": "2020-08-21T16:25:37.364Z" } }, { @@ -4925,7 +4917,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:34.058Z", + "creation_time": "2020-08-21T16:25:37.378Z", "review_time": null } }, @@ -4940,8 +4932,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:34.105Z", - "review_time": "2020-01-24T13:10:34.156Z" + "creation_time": "2020-08-21T16:25:37.400Z", + "review_time": "2020-08-21T16:25:37.408Z" } }, { @@ -4955,7 +4947,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:34.241Z", + "creation_time": "2020-08-21T16:25:37.423Z", "review_time": null } }, @@ -4970,8 +4962,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "rejected", - "creation_time": "2020-01-24T13:10:34.285Z", - "review_time": "2020-01-24T13:10:34.333Z" + "creation_time": "2020-08-21T16:25:37.445Z", + "review_time": "2020-08-21T16:25:37.452Z" } }, { @@ -4985,7 +4977,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:34.343Z", + "creation_time": "2020-08-21T16:25:37.463Z", "review_time": null } }, @@ -5000,8 +4992,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:34.356Z", - "review_time": "2020-01-24T13:10:34.361Z" + "creation_time": "2020-08-21T16:25:37.474Z", + "review_time": "2020-08-21T16:25:37.481Z" } }, { @@ -5015,7 +5007,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:34.462Z", + "creation_time": "2020-08-21T16:25:37.497Z", "review_time": null } }, @@ -5030,8 +5022,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:34.476Z", - "review_time": "2020-01-24T13:10:34.482Z" + "creation_time": "2020-08-21T16:25:37.508Z", + "review_time": "2020-08-21T16:25:37.516Z" } }, { @@ -5045,7 +5037,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:34.569Z", + "creation_time": "2020-08-21T16:25:37.529Z", "review_time": null } }, @@ -5060,8 +5052,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "rejected", - "creation_time": "2020-01-24T13:10:34.584Z", - "review_time": "2020-01-24T13:10:34.589Z" + "creation_time": "2020-08-21T16:25:37.541Z", + "review_time": "2020-08-21T16:25:37.549Z" } }, { @@ -5075,7 +5067,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:34.600Z", + "creation_time": "2020-08-21T16:25:37.560Z", "review_time": null } }, @@ -5090,8 +5082,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:34.610Z", - "review_time": "2020-01-24T13:10:34.616Z" + "creation_time": "2020-08-21T16:25:37.570Z", + "review_time": "2020-08-21T16:25:37.577Z" } }, { @@ -5105,7 +5097,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:34.704Z", + "creation_time": "2020-08-21T16:25:37.590Z", "review_time": null } }, @@ -5120,8 +5112,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:34.751Z", - "review_time": "2020-01-24T13:10:34.804Z" + "creation_time": "2020-08-21T16:25:37.616Z", + "review_time": "2020-08-21T16:25:37.629Z" } }, { @@ -5135,7 +5127,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:34.884Z", + "creation_time": "2020-08-21T16:25:37.649Z", "review_time": null } }, @@ -5150,8 +5142,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:34.897Z", - "review_time": "2020-01-24T13:10:34.902Z" + "creation_time": "2020-08-21T16:25:37.660Z", + "review_time": "2020-08-21T16:25:37.668Z" } }, { @@ -5165,7 +5157,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:34.984Z", + "creation_time": "2020-08-21T16:25:37.681Z", "review_time": null } }, @@ -5180,8 +5172,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:34.997Z", - "review_time": "2020-01-24T13:10:35.002Z" + "creation_time": "2020-08-21T16:25:37.692Z", + "review_time": "2020-08-21T16:25:37.699Z" } }, { @@ -5195,7 +5187,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:35.069Z", + "creation_time": "2020-08-21T16:25:37.713Z", "review_time": null } }, @@ -5210,8 +5202,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:35.114Z", - "review_time": "2020-01-24T13:10:35.163Z" + "creation_time": "2020-08-21T16:25:37.739Z", + "review_time": "2020-08-21T16:25:37.749Z" } }, { @@ -5225,7 +5217,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:35.244Z", + "creation_time": "2020-08-21T16:25:37.765Z", "review_time": null } }, @@ -5240,8 +5232,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "rejected", - "creation_time": "2020-01-24T13:10:35.257Z", - "review_time": "2020-01-24T13:10:35.262Z" + "creation_time": "2020-08-21T16:25:37.778Z", + "review_time": "2020-08-21T16:25:37.785Z" } }, { @@ -5255,7 +5247,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:35.273Z", + "creation_time": "2020-08-21T16:25:37.798Z", "review_time": null } }, @@ -5270,8 +5262,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:35.283Z", - "review_time": "2020-01-24T13:10:35.288Z" + "creation_time": "2020-08-21T16:25:37.811Z", + "review_time": "2020-08-21T16:25:37.819Z" } }, { @@ -5285,7 +5277,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:35.368Z", + "creation_time": "2020-08-21T16:25:37.840Z", "review_time": null } }, @@ -5300,8 +5292,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:35.384Z", - "review_time": "2020-01-24T13:10:35.389Z" + "creation_time": "2020-08-21T16:25:37.854Z", + "review_time": "2020-08-21T16:25:37.862Z" } }, { @@ -5315,7 +5307,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:35.471Z", + "creation_time": "2020-08-21T16:25:37.880Z", "review_time": null } }, @@ -5330,8 +5322,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:35.484Z", - "review_time": "2020-01-24T13:10:35.489Z" + "creation_time": "2020-08-21T16:25:37.891Z", + "review_time": "2020-08-21T16:25:37.899Z" } }, { @@ -5345,7 +5337,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:35.572Z", + "creation_time": "2020-08-21T16:25:37.913Z", "review_time": null } }, @@ -5360,8 +5352,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "rejected", - "creation_time": "2020-01-24T13:10:35.586Z", - "review_time": "2020-01-24T13:10:35.591Z" + "creation_time": "2020-08-21T16:25:37.924Z", + "review_time": "2020-08-21T16:25:37.931Z" } }, { @@ -5375,7 +5367,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:35.603Z", + "creation_time": "2020-08-21T16:25:37.942Z", "review_time": null } }, @@ -5390,8 +5382,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "rejected", - "creation_time": "2020-01-24T13:10:35.615Z", - "review_time": "2020-01-24T13:10:35.620Z" + "creation_time": "2020-08-21T16:25:37.953Z", + "review_time": "2020-08-21T16:25:37.960Z" } }, { @@ -5405,7 +5397,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:35.630Z", + "creation_time": "2020-08-21T16:25:37.970Z", "review_time": null } }, @@ -5420,8 +5412,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:35.641Z", - "review_time": "2020-01-24T13:10:35.646Z" + "creation_time": "2020-08-21T16:25:37.981Z", + "review_time": "2020-08-21T16:25:37.989Z" } }, { @@ -5435,7 +5427,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:35.710Z", + "creation_time": "2020-08-21T16:25:38.003Z", "review_time": null } }, @@ -5450,8 +5442,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:35.755Z", - "review_time": "2020-01-24T13:10:35.807Z" + "creation_time": "2020-08-21T16:25:38.024Z", + "review_time": "2020-08-21T16:25:38.030Z" } }, { @@ -5465,7 +5457,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:35.893Z", + "creation_time": "2020-08-21T16:25:38.044Z", "review_time": null } }, @@ -5480,8 +5472,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:35.944Z", - "review_time": "2020-01-24T13:10:35.993Z" + "creation_time": "2020-08-21T16:25:38.064Z", + "review_time": "2020-08-21T16:25:38.071Z" } }, { @@ -5495,7 +5487,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:36.076Z", + "creation_time": "2020-08-21T16:25:38.084Z", "review_time": null } }, @@ -5510,8 +5502,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:36.089Z", - "review_time": "2020-01-24T13:10:36.094Z" + "creation_time": "2020-08-21T16:25:38.096Z", + "review_time": "2020-08-21T16:25:38.103Z" } }, { @@ -5525,7 +5517,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:36.175Z", + "creation_time": "2020-08-21T16:25:38.120Z", "review_time": null } }, @@ -5540,8 +5532,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:36.190Z", - "review_time": "2020-01-24T13:10:36.196Z" + "creation_time": "2020-08-21T16:25:38.132Z", + "review_time": "2020-08-21T16:25:38.139Z" } }, { @@ -5555,7 +5547,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:36.277Z", + "creation_time": "2020-08-21T16:25:38.154Z", "review_time": null } }, @@ -5570,8 +5562,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:36.290Z", - "review_time": "2020-01-24T13:10:36.296Z" + "creation_time": "2020-08-21T16:25:38.167Z", + "review_time": "2020-08-21T16:25:38.175Z" } }, { @@ -5585,7 +5577,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:36.379Z", + "creation_time": "2020-08-21T16:25:38.188Z", "review_time": null } }, @@ -5600,8 +5592,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:36.428Z", - "review_time": "2020-01-24T13:10:36.477Z" + "creation_time": "2020-08-21T16:25:38.209Z", + "review_time": "2020-08-21T16:25:38.218Z" } }, { @@ -5615,7 +5607,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:36.560Z", + "creation_time": "2020-08-21T16:25:38.236Z", "review_time": null } }, @@ -5630,8 +5622,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "rejected", - "creation_time": "2020-01-24T13:10:36.574Z", - "review_time": "2020-01-24T13:10:36.580Z" + "creation_time": "2020-08-21T16:25:38.247Z", + "review_time": "2020-08-21T16:25:38.255Z" } }, { @@ -5645,7 +5637,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:36.591Z", + "creation_time": "2020-08-21T16:25:38.267Z", "review_time": null } }, @@ -5660,8 +5652,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "rejected", - "creation_time": "2020-01-24T13:10:36.603Z", - "review_time": "2020-01-24T13:10:36.608Z" + "creation_time": "2020-08-21T16:25:38.278Z", + "review_time": "2020-08-21T16:25:38.285Z" } }, { @@ -5675,7 +5667,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:36.618Z", + "creation_time": "2020-08-21T16:25:38.296Z", "review_time": null } }, @@ -5690,8 +5682,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:36.628Z", - "review_time": "2020-01-24T13:10:36.633Z" + "creation_time": "2020-08-21T16:25:38.307Z", + "review_time": "2020-08-21T16:25:38.314Z" } }, { @@ -5705,7 +5697,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:36.714Z", + "creation_time": "2020-08-21T16:25:38.331Z", "review_time": null } }, @@ -5720,8 +5712,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:36.727Z", - "review_time": "2020-01-24T13:10:36.733Z" + "creation_time": "2020-08-21T16:25:38.342Z", + "review_time": "2020-08-21T16:25:38.350Z" } }, { @@ -5735,7 +5727,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:36.810Z", + "creation_time": "2020-08-21T16:25:38.364Z", "review_time": null } }, @@ -5750,8 +5742,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:36.853Z", - "review_time": "2020-01-24T13:10:36.904Z" + "creation_time": "2020-08-21T16:25:38.383Z", + "review_time": "2020-08-21T16:25:38.391Z" } }, { @@ -5765,7 +5757,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:36.992Z", + "creation_time": "2020-08-21T16:25:38.404Z", "review_time": null } }, @@ -5780,8 +5772,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:37.008Z", - "review_time": "2020-01-24T13:10:37.013Z" + "creation_time": "2020-08-21T16:25:38.415Z", + "review_time": "2020-08-21T16:25:38.425Z" } }, { @@ -5795,7 +5787,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:37.092Z", + "creation_time": "2020-08-21T16:25:38.440Z", "review_time": null } }, @@ -5810,8 +5802,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:37.105Z", - "review_time": "2020-01-24T13:10:37.111Z" + "creation_time": "2020-08-21T16:25:38.452Z", + "review_time": "2020-08-21T16:25:38.459Z" } }, { @@ -5825,7 +5817,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:37.193Z", + "creation_time": "2020-08-21T16:25:38.479Z", "review_time": null } }, @@ -5840,8 +5832,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:37.207Z", - "review_time": "2020-01-24T13:10:37.212Z" + "creation_time": "2020-08-21T16:25:38.491Z", + "review_time": "2020-08-21T16:25:38.499Z" } }, { @@ -5855,7 +5847,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:37.287Z", + "creation_time": "2020-08-21T16:25:38.513Z", "review_time": null } }, @@ -5870,8 +5862,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "rejected", - "creation_time": "2020-01-24T13:10:37.328Z", - "review_time": "2020-01-24T13:10:37.379Z" + "creation_time": "2020-08-21T16:25:38.533Z", + "review_time": "2020-08-21T16:25:38.542Z" } }, { @@ -5885,7 +5877,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:37.391Z", + "creation_time": "2020-08-21T16:25:38.555Z", "review_time": null } }, @@ -5900,8 +5892,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "rejected", - "creation_time": "2020-01-24T13:10:37.407Z", - "review_time": "2020-01-24T13:10:37.412Z" + "creation_time": "2020-08-21T16:25:38.568Z", + "review_time": "2020-08-21T16:25:38.575Z" } }, { @@ -5915,7 +5907,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:37.424Z", + "creation_time": "2020-08-21T16:25:38.586Z", "review_time": null } }, @@ -5930,8 +5922,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:37.434Z", - "review_time": "2020-01-24T13:10:37.439Z" + "creation_time": "2020-08-21T16:25:38.597Z", + "review_time": "2020-08-21T16:25:38.604Z" } }, { @@ -5945,7 +5937,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:37.519Z", + "creation_time": "2020-08-21T16:25:38.616Z", "review_time": null } }, @@ -5960,8 +5952,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:37.565Z", - "review_time": "2020-01-24T13:10:37.616Z" + "creation_time": "2020-08-21T16:25:38.636Z", + "review_time": "2020-08-21T16:25:38.643Z" } }, { @@ -5975,7 +5967,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:37.698Z", + "creation_time": "2020-08-21T16:25:38.657Z", "review_time": null } }, @@ -5990,8 +5982,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "rejected", - "creation_time": "2020-01-24T13:10:37.711Z", - "review_time": "2020-01-24T13:10:37.717Z" + "creation_time": "2020-08-21T16:25:38.668Z", + "review_time": "2020-08-21T16:25:38.675Z" } }, { @@ -6005,7 +5997,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:37.728Z", + "creation_time": "2020-08-21T16:25:38.686Z", "review_time": null } }, @@ -6020,8 +6012,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:37.738Z", - "review_time": "2020-01-24T13:10:37.743Z" + "creation_time": "2020-08-21T16:25:38.696Z", + "review_time": "2020-08-21T16:25:38.703Z" } }, { @@ -6035,7 +6027,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:37.822Z", + "creation_time": "2020-08-21T16:25:38.716Z", "review_time": null } }, @@ -6050,8 +6042,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:37.835Z", - "review_time": "2020-01-24T13:10:37.841Z" + "creation_time": "2020-08-21T16:25:38.727Z", + "review_time": "2020-08-21T16:25:38.734Z" } }, { @@ -6065,7 +6057,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:37.924Z", + "creation_time": "2020-08-21T16:25:38.751Z", "review_time": null } }, @@ -6080,8 +6072,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:37.937Z", - "review_time": "2020-01-24T13:10:37.943Z" + "creation_time": "2020-08-21T16:25:38.762Z", + "review_time": "2020-08-21T16:25:38.769Z" } }, { @@ -6095,7 +6087,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:38.021Z", + "creation_time": "2020-08-21T16:25:38.782Z", "review_time": null } }, @@ -6110,8 +6102,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:38.065Z", - "review_time": "2020-01-24T13:10:38.114Z" + "creation_time": "2020-08-21T16:25:38.801Z", + "review_time": "2020-08-21T16:25:38.808Z" } }, { @@ -6125,7 +6117,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:38.202Z", + "creation_time": "2020-08-21T16:25:38.825Z", "review_time": null } }, @@ -6140,8 +6132,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:38.217Z", - "review_time": "2020-01-24T13:10:38.223Z" + "creation_time": "2020-08-21T16:25:38.836Z", + "review_time": "2020-08-21T16:25:38.844Z" } }, { @@ -6155,7 +6147,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:38.303Z", + "creation_time": "2020-08-21T16:25:38.858Z", "review_time": null } }, @@ -6170,8 +6162,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:38.348Z", - "review_time": "2020-01-24T13:10:38.397Z" + "creation_time": "2020-08-21T16:25:38.877Z", + "review_time": "2020-08-21T16:25:38.883Z" } }, { @@ -6185,7 +6177,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:38.480Z", + "creation_time": "2020-08-21T16:25:38.898Z", "review_time": null } }, @@ -6200,8 +6192,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "rejected", - "creation_time": "2020-01-24T13:10:38.522Z", - "review_time": "2020-01-24T13:10:38.571Z" + "creation_time": "2020-08-21T16:25:38.920Z", + "review_time": "2020-08-21T16:25:38.927Z" } }, { @@ -6215,7 +6207,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:38.583Z", + "creation_time": "2020-08-21T16:25:38.938Z", "review_time": null } }, @@ -6230,8 +6222,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:38.593Z", - "review_time": "2020-01-24T13:10:38.599Z" + "creation_time": "2020-08-21T16:25:38.949Z", + "review_time": "2020-08-21T16:25:38.955Z" } }, { @@ -6245,7 +6237,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:38.681Z", + "creation_time": "2020-08-21T16:25:38.969Z", "review_time": null } }, @@ -6260,8 +6252,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:38.694Z", - "review_time": "2020-01-24T13:10:38.699Z" + "creation_time": "2020-08-21T16:25:38.979Z", + "review_time": "2020-08-21T16:25:38.987Z" } }, { @@ -6275,7 +6267,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:38.783Z", + "creation_time": "2020-08-21T16:25:39.002Z", "review_time": null } }, @@ -6290,8 +6282,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:38.797Z", - "review_time": "2020-01-24T13:10:38.802Z" + "creation_time": "2020-08-21T16:25:39.013Z", + "review_time": "2020-08-21T16:25:39.020Z" } }, { @@ -6305,7 +6297,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:38.884Z", + "creation_time": "2020-08-21T16:25:39.039Z", "review_time": null } }, @@ -6320,8 +6312,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:38.897Z", - "review_time": "2020-01-24T13:10:38.903Z" + "creation_time": "2020-08-21T16:25:39.049Z", + "review_time": "2020-08-21T16:25:39.056Z" } }, { @@ -6335,7 +6327,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:38.984Z", + "creation_time": "2020-08-21T16:25:39.069Z", "review_time": null } }, @@ -6350,8 +6342,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "rejected", - "creation_time": "2020-01-24T13:10:38.997Z", - "review_time": "2020-01-24T13:10:39.003Z" + "creation_time": "2020-08-21T16:25:39.079Z", + "review_time": "2020-08-21T16:25:39.087Z" } }, { @@ -6365,7 +6357,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:39.013Z", + "creation_time": "2020-08-21T16:25:39.099Z", "review_time": null } }, @@ -6380,8 +6372,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:39.025Z", - "review_time": "2020-01-24T13:10:39.030Z" + "creation_time": "2020-08-21T16:25:39.110Z", + "review_time": "2020-08-21T16:25:39.117Z" } }, { @@ -6395,7 +6387,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:39.108Z", + "creation_time": "2020-08-21T16:25:39.134Z", "review_time": null } }, @@ -6410,8 +6402,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:39.122Z", - "review_time": "2020-01-24T13:10:39.127Z" + "creation_time": "2020-08-21T16:25:39.145Z", + "review_time": "2020-08-21T16:25:39.151Z" } }, { @@ -6425,7 +6417,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:39.208Z", + "creation_time": "2020-08-21T16:25:39.169Z", "review_time": null } }, @@ -6440,8 +6432,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:39.222Z", - "review_time": "2020-01-24T13:10:39.228Z" + "creation_time": "2020-08-21T16:25:39.181Z", + "review_time": "2020-08-21T16:25:39.190Z" } }, { @@ -6455,7 +6447,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:39.312Z", + "creation_time": "2020-08-21T16:25:39.204Z", "review_time": null } }, @@ -6470,8 +6462,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:39.356Z", - "review_time": "2020-01-24T13:10:39.431Z" + "creation_time": "2020-08-21T16:25:39.223Z", + "review_time": "2020-08-21T16:25:39.230Z" } }, { @@ -6485,7 +6477,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:39.516Z", + "creation_time": "2020-08-21T16:25:39.244Z", "review_time": null } }, @@ -6500,8 +6492,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "rejected", - "creation_time": "2020-01-24T13:10:39.529Z", - "review_time": "2020-01-24T13:10:39.534Z" + "creation_time": "2020-08-21T16:25:39.255Z", + "review_time": "2020-08-21T16:25:39.263Z" } }, { @@ -6515,7 +6507,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:39.544Z", + "creation_time": "2020-08-21T16:25:39.275Z", "review_time": null } }, @@ -6530,8 +6522,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "rejected", - "creation_time": "2020-01-24T13:10:39.554Z", - "review_time": "2020-01-24T13:10:39.559Z" + "creation_time": "2020-08-21T16:25:39.285Z", + "review_time": "2020-08-21T16:25:39.293Z" } }, { @@ -6545,7 +6537,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:39.569Z", + "creation_time": "2020-08-21T16:25:39.304Z", "review_time": null } }, @@ -6560,8 +6552,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:39.579Z", - "review_time": "2020-01-24T13:10:39.584Z" + "creation_time": "2020-08-21T16:25:39.314Z", + "review_time": "2020-08-21T16:25:39.321Z" } }, { @@ -6575,7 +6567,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:39.666Z", + "creation_time": "2020-08-21T16:25:39.333Z", "review_time": null } }, @@ -6590,8 +6582,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:39.678Z", - "review_time": "2020-01-24T13:10:39.683Z" + "creation_time": "2020-08-21T16:25:39.345Z", + "review_time": "2020-08-21T16:25:39.352Z" } }, { @@ -6605,7 +6597,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:39.766Z", + "creation_time": "2020-08-21T16:25:39.365Z", "review_time": null } }, @@ -6620,8 +6612,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "rejected", - "creation_time": "2020-01-24T13:10:39.812Z", - "review_time": "2020-01-24T13:10:39.864Z" + "creation_time": "2020-08-21T16:25:39.385Z", + "review_time": "2020-08-21T16:25:39.391Z" } }, { @@ -6635,7 +6627,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:39.876Z", + "creation_time": "2020-08-21T16:25:39.402Z", "review_time": null } }, @@ -6650,8 +6642,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:39.887Z", - "review_time": "2020-01-24T13:10:39.892Z" + "creation_time": "2020-08-21T16:25:39.412Z", + "review_time": "2020-08-21T16:25:39.418Z" } }, { @@ -6665,7 +6657,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:39.977Z", + "creation_time": "2020-08-21T16:25:39.436Z", "review_time": null } }, @@ -6680,8 +6672,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:39.990Z", - "review_time": "2020-01-24T13:10:39.996Z" + "creation_time": "2020-08-21T16:25:39.447Z", + "review_time": "2020-08-21T16:25:39.454Z" } }, { @@ -6695,7 +6687,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:40.081Z", + "creation_time": "2020-08-21T16:25:39.466Z", "review_time": null } }, @@ -6710,8 +6702,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:40.129Z", - "review_time": "2020-01-24T13:10:40.181Z" + "creation_time": "2020-08-21T16:25:39.485Z", + "review_time": "2020-08-21T16:25:39.492Z" } }, { @@ -6725,7 +6717,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:40.263Z", + "creation_time": "2020-08-21T16:25:39.505Z", "review_time": null } }, @@ -6740,8 +6732,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:40.278Z", - "review_time": "2020-01-24T13:10:40.283Z" + "creation_time": "2020-08-21T16:25:39.519Z", + "review_time": "2020-08-21T16:25:39.527Z" } }, { @@ -6755,7 +6747,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:40.366Z", + "creation_time": "2020-08-21T16:25:39.553Z", "review_time": null } }, @@ -6770,8 +6762,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "rejected", - "creation_time": "2020-01-24T13:10:40.380Z", - "review_time": "2020-01-24T13:10:40.385Z" + "creation_time": "2020-08-21T16:25:39.565Z", + "review_time": "2020-08-21T16:25:39.573Z" } }, { @@ -6785,7 +6777,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:40.396Z", + "creation_time": "2020-08-21T16:25:39.585Z", "review_time": null } }, @@ -6800,8 +6792,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:40.406Z", - "review_time": "2020-01-24T13:10:40.411Z" + "creation_time": "2020-08-21T16:25:39.598Z", + "review_time": "2020-08-21T16:25:39.607Z" } }, { @@ -6815,7 +6807,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:40.492Z", + "creation_time": "2020-08-21T16:25:39.621Z", "review_time": null } }, @@ -6830,8 +6822,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:40.505Z", - "review_time": "2020-01-24T13:10:40.510Z" + "creation_time": "2020-08-21T16:25:39.632Z", + "review_time": "2020-08-21T16:25:39.640Z" } }, { @@ -6845,7 +6837,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:40.589Z", + "creation_time": "2020-08-21T16:25:39.654Z", "review_time": null } }, @@ -6860,8 +6852,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:40.632Z", - "review_time": "2020-01-24T13:10:40.684Z" + "creation_time": "2020-08-21T16:25:39.676Z", + "review_time": "2020-08-21T16:25:39.683Z" } }, { @@ -6875,7 +6867,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:40.763Z", + "creation_time": "2020-08-21T16:25:39.696Z", "review_time": null } }, @@ -6890,8 +6882,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:40.775Z", - "review_time": "2020-01-24T13:10:40.781Z" + "creation_time": "2020-08-21T16:25:39.707Z", + "review_time": "2020-08-21T16:25:39.715Z" } }, { @@ -6905,7 +6897,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:40.863Z", + "creation_time": "2020-08-21T16:25:39.729Z", "review_time": null } }, @@ -6920,8 +6912,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "accepted", - "creation_time": "2020-01-24T13:10:40.905Z", - "review_time": "2020-01-24T13:10:40.953Z" + "creation_time": "2020-08-21T16:25:39.749Z", + "review_time": "2020-08-21T16:25:39.755Z" } }, { @@ -6935,7 +6927,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:41.044Z", + "creation_time": "2020-08-21T16:25:39.774Z", "review_time": null } }, @@ -6950,8 +6942,8 @@ "reviewer": 1, "translator_comment_f": null, "state": "rejected", - "creation_time": "2020-01-24T13:10:41.057Z", - "review_time": "2020-01-24T13:10:41.063Z" + "creation_time": "2020-08-21T16:25:39.787Z", + "review_time": "2020-08-21T16:25:39.794Z" } }, { @@ -6965,7 +6957,7 @@ "reviewer": null, "translator_comment_f": null, "state": "pending", - "creation_time": "2020-01-24T13:10:41.074Z", + "creation_time": "2020-08-21T16:25:39.804Z", "review_time": null } }, @@ -6990,8 +6982,8 @@ "context": null, "state": 0, "revision": 0, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:26.504Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:34.858Z", "submitted_by": null, "submitted_on": null, "commented_by": null, @@ -7021,8 +7013,8 @@ "context": null, "state": 0, "revision": 0, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:27.149Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:35.032Z", "submitted_by": null, "submitted_on": null, "commented_by": null, @@ -7052,14 +7044,14 @@ "context": null, "state": 200, "revision": 34, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:26.943Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:34.973Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:26.848Z", + "submitted_on": "2020-08-21T16:25:34.946Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:26.848Z" + "reviewed_on": "2020-08-21T16:25:34.946Z" } }, { @@ -7083,14 +7075,14 @@ "context": null, "state": 200, "revision": 30, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:26.612Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:34.898Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:26.515Z", + "submitted_on": "2020-08-21T16:25:34.870Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:26.515Z" + "reviewed_on": "2020-08-21T16:25:34.870Z" } }, { @@ -7114,10 +7106,10 @@ "context": null, "state": 50, "revision": 32, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:26.836Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:34.936Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:26.702Z", + "submitted_on": "2020-08-21T16:25:34.910Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -7145,10 +7137,10 @@ "context": null, "state": 50, "revision": 28, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:26.475Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:34.831Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:26.340Z", + "submitted_on": "2020-08-21T16:25:34.808Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -7176,14 +7168,14 @@ "context": null, "state": -100, "revision": 35, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:27.121Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:35.005Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:27.030Z", + "submitted_on": "2020-08-21T16:25:34.985Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:27.030Z" + "reviewed_on": "2020-08-21T16:25:34.985Z" } }, { @@ -7207,14 +7199,14 @@ "context": null, "state": -100, "revision": 26, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:26.328Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:34.798Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:26.240Z", + "submitted_on": "2020-08-21T16:25:34.778Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:26.240Z" + "reviewed_on": "2020-08-21T16:25:34.778Z" } }, { @@ -7238,8 +7230,8 @@ "context": null, "state": 0, "revision": 0, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:27.861Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:35.266Z", "submitted_by": null, "submitted_on": null, "commented_by": null, @@ -7269,8 +7261,8 @@ "context": null, "state": 0, "revision": 0, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:27.381Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:35.132Z", "submitted_by": null, "submitted_on": null, "commented_by": null, @@ -7300,14 +7292,14 @@ "context": null, "state": 200, "revision": 42, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:27.661Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:35.208Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:27.566Z", + "submitted_on": "2020-08-21T16:25:35.180Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:27.566Z" + "reviewed_on": "2020-08-21T16:25:35.180Z" } }, { @@ -7331,14 +7323,14 @@ "context": null, "state": 200, "revision": 40, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:27.486Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:35.168Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:27.392Z", + "submitted_on": "2020-08-21T16:25:35.142Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:27.392Z" + "reviewed_on": "2020-08-21T16:25:35.142Z" } }, { @@ -7362,10 +7354,10 @@ "context": null, "state": 50, "revision": 37, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:27.253Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:35.068Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:27.161Z", + "submitted_on": "2020-08-21T16:25:35.043Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -7393,10 +7385,10 @@ "context": null, "state": 50, "revision": 45, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:27.965Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:35.300Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:27.872Z", + "submitted_on": "2020-08-21T16:25:35.276Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -7424,14 +7416,14 @@ "context": null, "state": -100, "revision": 38, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:27.352Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:35.103Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:27.264Z", + "submitted_on": "2020-08-21T16:25:35.079Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:27.264Z" + "reviewed_on": "2020-08-21T16:25:35.079Z" } }, { @@ -7455,14 +7447,14 @@ "context": null, "state": -100, "revision": 43, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:27.833Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:35.239Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:27.743Z", + "submitted_on": "2020-08-21T16:25:35.220Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:27.743Z" + "reviewed_on": "2020-08-21T16:25:35.220Z" } }, { @@ -7486,8 +7478,8 @@ "context": null, "state": 0, "revision": 0, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:27.996Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:35.331Z", "submitted_by": null, "submitted_on": null, "commented_by": null, @@ -7517,8 +7509,8 @@ "context": null, "state": 0, "revision": 0, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:28.328Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:35.462Z", "submitted_by": null, "submitted_on": null, "commented_by": null, @@ -7548,14 +7540,14 @@ "context": null, "state": 200, "revision": 55, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:28.713Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:35.576Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:28.619Z", + "submitted_on": "2020-08-21T16:25:35.548Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:28.619Z" + "reviewed_on": "2020-08-21T16:25:35.548Z" } }, { @@ -7579,14 +7571,14 @@ "context": null, "state": 200, "revision": 53, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:28.537Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:35.535Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:28.442Z", + "submitted_on": "2020-08-21T16:25:35.508Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:28.442Z" + "reviewed_on": "2020-08-21T16:25:35.508Z" } }, { @@ -7610,10 +7602,10 @@ "context": null, "state": 50, "revision": 47, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:28.099Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:35.366Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:28.007Z", + "submitted_on": "2020-08-21T16:25:35.341Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -7641,10 +7633,10 @@ "context": null, "state": 50, "revision": 50, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:28.301Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:35.433Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:28.213Z", + "submitted_on": "2020-08-21T16:25:35.409Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -7672,14 +7664,14 @@ "context": null, "state": -100, "revision": 48, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:28.201Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:35.399Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:28.110Z", + "submitted_on": "2020-08-21T16:25:35.376Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:28.110Z" + "reviewed_on": "2020-08-21T16:25:35.376Z" } }, { @@ -7703,14 +7695,14 @@ "context": null, "state": -100, "revision": 51, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:28.430Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:35.496Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:28.339Z", + "submitted_on": "2020-08-21T16:25:35.473Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:28.339Z" + "reviewed_on": "2020-08-21T16:25:35.473Z" } }, { @@ -7734,8 +7726,8 @@ "context": null, "state": 0, "revision": 0, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:34.349Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:37.470Z", "submitted_by": null, "submitted_on": null, "commented_by": null, @@ -7765,8 +7757,8 @@ "context": null, "state": 0, "revision": 0, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:33.743Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:37.282Z", "submitted_by": null, "submitted_on": null, "commented_by": null, @@ -7796,14 +7788,14 @@ "context": null, "state": 200, "revision": 122, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:34.253Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:37.439Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:34.156Z", + "submitted_on": "2020-08-21T16:25:37.408Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:34.156Z" + "reviewed_on": "2020-08-21T16:25:37.408Z" } }, { @@ -7827,14 +7819,14 @@ "context": null, "state": 200, "revision": 120, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:34.070Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:37.393Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:33.976Z", + "submitted_on": "2020-08-21T16:25:37.364Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:33.976Z" + "reviewed_on": "2020-08-21T16:25:37.364Z" } }, { @@ -7858,10 +7850,10 @@ "context": null, "state": 50, "revision": 118, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:33.965Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:37.354Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:33.892Z", + "submitted_on": "2020-08-21T16:25:37.326Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -7889,10 +7881,10 @@ "context": null, "state": 50, "revision": 124, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:34.471Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:37.505Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:34.361Z", + "submitted_on": "2020-08-21T16:25:37.481Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -7920,14 +7912,14 @@ "context": null, "state": -100, "revision": 116, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:33.880Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:37.316Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:33.752Z", + "submitted_on": "2020-08-21T16:25:37.292Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:33.752Z" + "reviewed_on": "2020-08-21T16:25:37.292Z" } }, { @@ -7951,14 +7943,14 @@ "context": null, "state": -100, "revision": 125, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:34.576Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:37.536Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:34.482Z", + "submitted_on": "2020-08-21T16:25:37.516Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:34.482Z" + "reviewed_on": "2020-08-21T16:25:37.516Z" } }, { @@ -7982,8 +7974,8 @@ "context": null, "state": 0, "revision": 0, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:35.278Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:37.807Z", "submitted_by": null, "submitted_on": null, "commented_by": null, @@ -8013,8 +8005,8 @@ "context": null, "state": 0, "revision": 0, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:34.605Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:37.567Z", "submitted_by": null, "submitted_on": null, "commented_by": null, @@ -8044,14 +8036,14 @@ "context": null, "state": 200, "revision": 127, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:34.716Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:37.605Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:34.616Z", + "submitted_on": "2020-08-21T16:25:37.577Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:34.616Z" + "reviewed_on": "2020-08-21T16:25:37.577Z" } }, { @@ -8075,14 +8067,14 @@ "context": null, "state": 200, "revision": 132, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:35.081Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:37.732Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:35.002Z", + "submitted_on": "2020-08-21T16:25:37.699Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:35.002Z" + "reviewed_on": "2020-08-21T16:25:37.699Z" } }, { @@ -8106,10 +8098,10 @@ "context": null, "state": 50, "revision": 135, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:35.376Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:37.849Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:35.288Z", + "submitted_on": "2020-08-21T16:25:37.819Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -8137,10 +8129,10 @@ "context": null, "state": 50, "revision": 129, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:34.891Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:37.656Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:34.804Z", + "submitted_on": "2020-08-21T16:25:37.629Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -8168,14 +8160,14 @@ "context": null, "state": -100, "revision": 133, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:35.251Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:37.774Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:35.163Z", + "submitted_on": "2020-08-21T16:25:37.749Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:35.163Z" + "reviewed_on": "2020-08-21T16:25:37.749Z" } }, { @@ -8199,14 +8191,14 @@ "context": null, "state": -100, "revision": 130, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:34.991Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:37.688Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:34.902Z", + "submitted_on": "2020-08-21T16:25:37.668Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:34.902Z" + "reviewed_on": "2020-08-21T16:25:37.668Z" } }, { @@ -8230,8 +8222,8 @@ "context": null, "state": 0, "revision": 0, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:35.609Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:37.949Z", "submitted_by": null, "submitted_on": null, "commented_by": null, @@ -8261,8 +8253,8 @@ "context": null, "state": 0, "revision": 0, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:35.635Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:37.977Z", "submitted_by": null, "submitted_on": null, "commented_by": null, @@ -8292,14 +8284,14 @@ "context": null, "state": 200, "revision": 142, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:35.905Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:38.059Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:35.807Z", + "submitted_on": "2020-08-21T16:25:38.030Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:35.807Z" + "reviewed_on": "2020-08-21T16:25:38.030Z" } }, { @@ -8323,14 +8315,14 @@ "context": null, "state": 200, "revision": 140, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:35.721Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:38.019Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:35.646Z", + "submitted_on": "2020-08-21T16:25:37.989Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:35.646Z" + "reviewed_on": "2020-08-21T16:25:37.989Z" } }, { @@ -8354,10 +8346,10 @@ "context": null, "state": 50, "revision": 137, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:35.478Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:37.887Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:35.389Z", + "submitted_on": "2020-08-21T16:25:37.862Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -8385,10 +8377,10 @@ "context": null, "state": 50, "revision": 145, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:36.183Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:38.127Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:36.094Z", + "submitted_on": "2020-08-21T16:25:38.103Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -8416,14 +8408,14 @@ "context": null, "state": -100, "revision": 138, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:35.580Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:37.920Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:35.489Z", + "submitted_on": "2020-08-21T16:25:37.899Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:35.489Z" + "reviewed_on": "2020-08-21T16:25:37.899Z" } }, { @@ -8447,14 +8439,14 @@ "context": null, "state": -100, "revision": 143, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:36.083Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:38.092Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:35.993Z", + "submitted_on": "2020-08-21T16:25:38.071Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:35.993Z" + "reviewed_on": "2020-08-21T16:25:38.071Z" } }, { @@ -8478,8 +8470,8 @@ "context": null, "state": 0, "revision": 0, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:30.162Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:36.071Z", "submitted_by": null, "submitted_on": null, "commented_by": null, @@ -8509,8 +8501,8 @@ "context": null, "state": 0, "revision": 0, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:30.138Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:36.040Z", "submitted_by": null, "submitted_on": null, "commented_by": null, @@ -8540,14 +8532,14 @@ "context": null, "state": 200, "revision": 80, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:30.736Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:36.263Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:30.640Z", + "submitted_on": "2020-08-21T16:25:36.233Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:30.640Z" + "reviewed_on": "2020-08-21T16:25:36.233Z" } }, { @@ -8571,14 +8563,14 @@ "context": null, "state": 200, "revision": 75, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:30.359Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:36.149Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:30.270Z", + "submitted_on": "2020-08-21T16:25:36.119Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:30.270Z" + "reviewed_on": "2020-08-21T16:25:36.119Z" } }, { @@ -8602,10 +8594,10 @@ "context": null, "state": 50, "revision": 73, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:30.259Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:36.109Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:30.172Z", + "submitted_on": "2020-08-21T16:25:36.081Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -8633,10 +8625,10 @@ "context": null, "state": 50, "revision": 77, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:30.530Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:36.188Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:30.440Z", + "submitted_on": "2020-08-21T16:25:36.163Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -8664,14 +8656,14 @@ "context": null, "state": -100, "revision": 78, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:30.628Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:36.223Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:30.541Z", + "submitted_on": "2020-08-21T16:25:36.201Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:30.541Z" + "reviewed_on": "2020-08-21T16:25:36.201Z" } }, { @@ -8695,14 +8687,14 @@ "context": null, "state": -100, "revision": 71, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:30.111Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:36.012Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:30.023Z", + "submitted_on": "2020-08-21T16:25:35.990Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:30.023Z" + "reviewed_on": "2020-08-21T16:25:35.990Z" } }, { @@ -8726,8 +8718,8 @@ "context": null, "state": 0, "revision": 0, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:31.037Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:36.361Z", "submitted_by": null, "submitted_on": null, "commented_by": null, @@ -8757,8 +8749,8 @@ "context": null, "state": 0, "revision": 0, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:31.063Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:36.390Z", "submitted_by": null, "submitted_on": null, "commented_by": null, @@ -8788,14 +8780,14 @@ "context": null, "state": 200, "revision": 88, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:31.461Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:36.512Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:31.365Z", + "submitted_on": "2020-08-21T16:25:36.480Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:31.365Z" + "reviewed_on": "2020-08-21T16:25:36.480Z" } }, { @@ -8819,14 +8811,14 @@ "context": null, "state": 200, "revision": 86, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:31.276Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:36.468Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:31.183Z", + "submitted_on": "2020-08-21T16:25:36.437Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:31.183Z" + "reviewed_on": "2020-08-21T16:25:36.437Z" } }, { @@ -8850,10 +8842,10 @@ "context": null, "state": 50, "revision": 84, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:31.172Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:36.426Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:31.074Z", + "submitted_on": "2020-08-21T16:25:36.401Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -8881,10 +8873,10 @@ "context": null, "state": 50, "revision": 90, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:31.646Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:36.551Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:31.550Z", + "submitted_on": "2020-08-21T16:25:36.525Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -8912,14 +8904,14 @@ "context": null, "state": -100, "revision": 81, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:30.907Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:36.298Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:30.814Z", + "submitted_on": "2020-08-21T16:25:36.276Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:30.814Z" + "reviewed_on": "2020-08-21T16:25:36.276Z" } }, { @@ -8943,14 +8935,14 @@ "context": null, "state": -100, "revision": 82, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:31.010Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:36.329Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:30.918Z", + "submitted_on": "2020-08-21T16:25:36.309Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:30.918Z" + "reviewed_on": "2020-08-21T16:25:36.309Z" } }, { @@ -8974,8 +8966,8 @@ "context": null, "state": 0, "revision": 0, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:31.918Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:36.654Z", "submitted_by": null, "submitted_on": null, "commented_by": null, @@ -9005,8 +8997,8 @@ "context": null, "state": 0, "revision": 0, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:32.321Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:36.787Z", "submitted_by": null, "submitted_on": null, "commented_by": null, @@ -9036,14 +9028,14 @@ "context": null, "state": 200, "revision": 100, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:32.424Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:36.829Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:32.332Z", + "submitted_on": "2020-08-21T16:25:36.799Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:32.332Z" + "reviewed_on": "2020-08-21T16:25:36.799Z" } }, { @@ -9067,14 +9059,14 @@ "context": null, "state": 200, "revision": 96, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:32.022Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:36.693Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:31.928Z", + "submitted_on": "2020-08-21T16:25:36.665Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:31.928Z" + "reviewed_on": "2020-08-21T16:25:36.665Z" } }, { @@ -9098,10 +9090,10 @@ "context": null, "state": 50, "revision": 92, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:31.789Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:36.589Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:31.659Z", + "submitted_on": "2020-08-21T16:25:36.562Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -9129,10 +9121,10 @@ "context": null, "state": 50, "revision": 94, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:31.892Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:36.624Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:31.800Z", + "submitted_on": "2020-08-21T16:25:36.599Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -9160,14 +9152,14 @@ "context": null, "state": -100, "revision": 97, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:32.197Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:36.726Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:32.104Z", + "submitted_on": "2020-08-21T16:25:36.705Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:32.104Z" + "reviewed_on": "2020-08-21T16:25:36.705Z" } }, { @@ -9191,14 +9183,14 @@ "context": null, "state": -100, "revision": 98, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:32.294Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:36.759Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:32.209Z", + "submitted_on": "2020-08-21T16:25:36.737Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:32.209Z" + "reviewed_on": "2020-08-21T16:25:36.737Z" } }, { @@ -9222,8 +9214,8 @@ "context": null, "state": 0, "revision": 0, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:37.733Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:38.693Z", "submitted_by": null, "submitted_on": null, "commented_by": null, @@ -9253,8 +9245,8 @@ "context": null, "state": 0, "revision": 0, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:37.429Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:38.594Z", "submitted_by": null, "submitted_on": null, "commented_by": null, @@ -9284,14 +9276,14 @@ "context": null, "state": 200, "revision": 168, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:38.033Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:38.796Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:37.943Z", + "submitted_on": "2020-08-21T16:25:38.769Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:37.943Z" + "reviewed_on": "2020-08-21T16:25:38.769Z" } }, { @@ -9315,14 +9307,14 @@ "context": null, "state": 200, "revision": 162, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:37.530Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:38.631Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:37.439Z", + "submitted_on": "2020-08-21T16:25:38.604Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:37.439Z" + "reviewed_on": "2020-08-21T16:25:38.604Z" } }, { @@ -9346,10 +9338,10 @@ "context": null, "state": 50, "revision": 170, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:38.210Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:38.832Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:38.114Z", + "submitted_on": "2020-08-21T16:25:38.808Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -9377,10 +9369,10 @@ "context": null, "state": 50, "revision": 166, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:37.931Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:38.759Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:37.841Z", + "submitted_on": "2020-08-21T16:25:38.734Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -9408,14 +9400,14 @@ "context": null, "state": -100, "revision": 164, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:37.829Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:38.724Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:37.743Z", + "submitted_on": "2020-08-21T16:25:38.703Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:37.743Z" + "reviewed_on": "2020-08-21T16:25:38.703Z" } }, { @@ -9439,14 +9431,14 @@ "context": null, "state": -100, "revision": 163, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:37.706Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:38.665Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:37.616Z", + "submitted_on": "2020-08-21T16:25:38.643Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:37.616Z" + "reviewed_on": "2020-08-21T16:25:38.643Z" } }, { @@ -9470,8 +9462,8 @@ "context": null, "state": 0, "revision": 0, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:38.588Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:38.945Z", "submitted_by": null, "submitted_on": null, "commented_by": null, @@ -9501,8 +9493,8 @@ "context": null, "state": 0, "revision": 0, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:39.017Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:39.106Z", "submitted_by": null, "submitted_on": null, "commented_by": null, @@ -9532,14 +9524,14 @@ "context": null, "state": 200, "revision": 172, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:38.314Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:38.872Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:38.223Z", + "submitted_on": "2020-08-21T16:25:38.844Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:38.223Z" + "reviewed_on": "2020-08-21T16:25:38.844Z" } }, { @@ -9563,14 +9555,14 @@ "context": null, "state": 200, "revision": 174, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:38.491Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:38.914Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:38.397Z", + "submitted_on": "2020-08-21T16:25:38.883Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:38.397Z" + "reviewed_on": "2020-08-21T16:25:38.883Z" } }, { @@ -9594,10 +9586,10 @@ "context": null, "state": 50, "revision": 179, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:38.891Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:39.046Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:38.802Z", + "submitted_on": "2020-08-21T16:25:39.020Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -9625,10 +9617,10 @@ "context": null, "state": 50, "revision": 177, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:38.791Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:39.010Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:38.699Z", + "submitted_on": "2020-08-21T16:25:38.987Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -9656,14 +9648,14 @@ "context": null, "state": -100, "revision": 175, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:38.688Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:38.976Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:38.599Z", + "submitted_on": "2020-08-21T16:25:38.955Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:38.599Z" + "reviewed_on": "2020-08-21T16:25:38.955Z" } }, { @@ -9687,14 +9679,14 @@ "context": null, "state": -100, "revision": 180, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:38.991Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:39.076Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:38.903Z", + "submitted_on": "2020-08-21T16:25:39.056Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:38.903Z" + "reviewed_on": "2020-08-21T16:25:39.056Z" } }, { @@ -9718,8 +9710,8 @@ "context": null, "state": 0, "revision": 0, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:39.549Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:39.282Z", "submitted_by": null, "submitted_on": null, "commented_by": null, @@ -9749,8 +9741,8 @@ "context": null, "state": 0, "revision": 0, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:39.574Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:39.311Z", "submitted_by": null, "submitted_on": null, "commented_by": null, @@ -9780,14 +9772,14 @@ "context": null, "state": 200, "revision": 186, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:39.324Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:39.219Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:39.228Z", + "submitted_on": "2020-08-21T16:25:39.190Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:39.228Z" + "reviewed_on": "2020-08-21T16:25:39.190Z" } }, { @@ -9811,14 +9803,14 @@ "context": null, "state": 200, "revision": 190, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:39.777Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:39.379Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:39.683Z", + "submitted_on": "2020-08-21T16:25:39.352Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:39.683Z" + "reviewed_on": "2020-08-21T16:25:39.352Z" } }, { @@ -9842,10 +9834,10 @@ "context": null, "state": 50, "revision": 184, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:39.216Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:39.177Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:39.127Z", + "submitted_on": "2020-08-21T16:25:39.151Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -9873,10 +9865,10 @@ "context": null, "state": 50, "revision": 182, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:39.116Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:39.141Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:39.030Z", + "submitted_on": "2020-08-21T16:25:39.117Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -9904,14 +9896,14 @@ "context": null, "state": -100, "revision": 187, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:39.523Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:39.251Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:39.431Z", + "submitted_on": "2020-08-21T16:25:39.230Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:39.431Z" + "reviewed_on": "2020-08-21T16:25:39.230Z" } }, { @@ -9935,14 +9927,14 @@ "context": null, "state": -100, "revision": 188, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:39.673Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:39.341Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:39.584Z", + "submitted_on": "2020-08-21T16:25:39.321Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:39.584Z" + "reviewed_on": "2020-08-21T16:25:39.321Z" } }, { @@ -9966,8 +9958,8 @@ "context": null, "state": 0, "revision": 0, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:23.805Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:34.127Z", "submitted_by": null, "submitted_on": null, "commented_by": null, @@ -9997,14 +9989,14 @@ "context": null, "state": 200, "revision": 2, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:24.037Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:34.166Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:23.815Z", + "submitted_on": "2020-08-21T16:25:34.137Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:23.815Z" + "reviewed_on": "2020-08-21T16:25:34.137Z" } }, { @@ -10028,10 +10020,10 @@ "context": null, "state": 50, "revision": 5, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:24.322Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:34.231Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:24.233Z", + "submitted_on": "2020-08-21T16:25:34.207Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -10059,14 +10051,14 @@ "context": null, "state": -100, "revision": 3, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:24.222Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:34.197Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:24.127Z", + "submitted_on": "2020-08-21T16:25:34.177Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:24.127Z" + "reviewed_on": "2020-08-21T16:25:34.177Z" } }, { @@ -10090,8 +10082,8 @@ "context": null, "state": 0, "revision": 0, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:24.456Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:34.294Z", "submitted_by": null, "submitted_on": null, "commented_by": null, @@ -10121,14 +10113,14 @@ "context": null, "state": 200, "revision": 9, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:24.556Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:34.332Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:24.466Z", + "submitted_on": "2020-08-21T16:25:34.305Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:24.466Z" + "reviewed_on": "2020-08-21T16:25:34.305Z" } }, { @@ -10152,10 +10144,10 @@ "context": null, "state": 50, "revision": 7, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:24.429Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:34.267Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:24.335Z", + "submitted_on": "2020-08-21T16:25:34.242Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -10183,14 +10175,14 @@ "context": null, "state": -100, "revision": 10, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:24.735Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:34.365Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:24.648Z", + "submitted_on": "2020-08-21T16:25:34.343Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:24.648Z" + "reviewed_on": "2020-08-21T16:25:34.343Z" } }, { @@ -10214,8 +10206,8 @@ "context": null, "state": 0, "revision": 0, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:29.099Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:35.679Z", "submitted_by": null, "submitted_on": null, "commented_by": null, @@ -10245,14 +10237,14 @@ "context": null, "state": 200, "revision": 57, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:28.891Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:35.617Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:28.802Z", + "submitted_on": "2020-08-21T16:25:35.589Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:28.802Z" + "reviewed_on": "2020-08-21T16:25:35.589Z" } }, { @@ -10276,10 +10268,10 @@ "context": null, "state": 50, "revision": 60, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:29.199Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:35.715Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:29.110Z", + "submitted_on": "2020-08-21T16:25:35.689Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -10307,14 +10299,14 @@ "context": null, "state": -100, "revision": 58, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:29.069Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:35.652Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:28.972Z", + "submitted_on": "2020-08-21T16:25:35.630Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:28.972Z" + "reviewed_on": "2020-08-21T16:25:35.630Z" } }, { @@ -10338,8 +10330,8 @@ "context": null, "state": 0, "revision": 0, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:29.605Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:35.848Z", "submitted_by": null, "submitted_on": null, "commented_by": null, @@ -10369,14 +10361,14 @@ "context": null, "state": 200, "revision": 62, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:29.306Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:35.754Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:29.212Z", + "submitted_on": "2020-08-21T16:25:35.727Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:29.212Z" + "reviewed_on": "2020-08-21T16:25:35.727Z" } }, { @@ -10400,10 +10392,10 @@ "context": null, "state": 50, "revision": 64, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:29.480Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:35.792Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:29.392Z", + "submitted_on": "2020-08-21T16:25:35.766Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -10431,14 +10423,14 @@ "context": null, "state": -100, "revision": 65, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:29.577Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:35.821Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:29.492Z", + "submitted_on": "2020-08-21T16:25:35.802Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:29.492Z" + "reviewed_on": "2020-08-21T16:25:35.802Z" } }, { @@ -10462,8 +10454,8 @@ "context": null, "state": 0, "revision": 0, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:29.908Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:35.948Z", "submitted_by": null, "submitted_on": null, "commented_by": null, @@ -10493,14 +10485,14 @@ "context": null, "state": 200, "revision": 67, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:29.709Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:35.886Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:29.618Z", + "submitted_on": "2020-08-21T16:25:35.859Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:29.618Z" + "reviewed_on": "2020-08-21T16:25:35.859Z" } }, { @@ -10524,10 +10516,10 @@ "context": null, "state": 50, "revision": 69, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:29.882Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:35.922Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:29.792Z", + "submitted_on": "2020-08-21T16:25:35.897Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -10555,14 +10547,14 @@ "context": null, "state": -100, "revision": 70, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:30.009Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:35.978Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:29.918Z", + "submitted_on": "2020-08-21T16:25:35.958Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:29.918Z" + "reviewed_on": "2020-08-21T16:25:35.958Z" } }, { @@ -10586,8 +10578,8 @@ "context": null, "state": 0, "revision": 0, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:36.596Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:38.274Z", "submitted_by": null, "submitted_on": null, "commented_by": null, @@ -10617,14 +10609,14 @@ "context": null, "state": 200, "revision": 148, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:36.390Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:38.204Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:36.296Z", + "submitted_on": "2020-08-21T16:25:38.175Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:36.296Z" + "reviewed_on": "2020-08-21T16:25:38.175Z" } }, { @@ -10648,10 +10640,10 @@ "context": null, "state": 50, "revision": 150, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:36.568Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:38.244Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:36.477Z", + "submitted_on": "2020-08-21T16:25:38.218Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -10679,14 +10671,14 @@ "context": null, "state": -100, "revision": 146, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:36.283Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:38.163Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:36.196Z", + "submitted_on": "2020-08-21T16:25:38.139Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:36.196Z" + "reviewed_on": "2020-08-21T16:25:38.139Z" } }, { @@ -10710,8 +10702,8 @@ "context": null, "state": 0, "revision": 0, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:36.623Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:38.303Z", "submitted_by": null, "submitted_on": null, "commented_by": null, @@ -10741,14 +10733,14 @@ "context": null, "state": 200, "revision": 154, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:36.821Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:38.378Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:36.733Z", + "submitted_on": "2020-08-21T16:25:38.350Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:36.733Z" + "reviewed_on": "2020-08-21T16:25:38.350Z" } }, { @@ -10772,10 +10764,10 @@ "context": null, "state": 50, "revision": 152, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:36.722Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:38.338Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:36.633Z", + "submitted_on": "2020-08-21T16:25:38.314Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -10803,14 +10795,14 @@ "context": null, "state": -100, "revision": 155, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:37.000Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:38.411Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:36.904Z", + "submitted_on": "2020-08-21T16:25:38.391Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:36.904Z" + "reviewed_on": "2020-08-21T16:25:38.391Z" } }, { @@ -10834,8 +10826,8 @@ "context": null, "state": 0, "revision": 0, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:37.396Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:38.563Z", "submitted_by": null, "submitted_on": null, "commented_by": null, @@ -10865,14 +10857,14 @@ "context": null, "state": 200, "revision": 160, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:37.298Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:38.528Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:37.212Z", + "submitted_on": "2020-08-21T16:25:38.499Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:37.212Z" + "reviewed_on": "2020-08-21T16:25:38.499Z" } }, { @@ -10896,10 +10888,10 @@ "context": null, "state": 50, "revision": 158, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:37.201Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:38.487Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:37.111Z", + "submitted_on": "2020-08-21T16:25:38.459Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -10927,14 +10919,14 @@ "context": null, "state": -100, "revision": 156, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:37.100Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:38.448Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:37.013Z", + "submitted_on": "2020-08-21T16:25:38.425Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:37.013Z" + "reviewed_on": "2020-08-21T16:25:38.425Z" } }, { @@ -10958,8 +10950,8 @@ "context": null, "state": 0, "revision": 0, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:32.630Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:36.895Z", "submitted_by": null, "submitted_on": null, "commented_by": null, @@ -10989,14 +10981,14 @@ "context": null, "state": 200, "revision": 103, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:32.730Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:36.936Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:32.640Z", + "submitted_on": "2020-08-21T16:25:36.906Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:32.640Z" + "reviewed_on": "2020-08-21T16:25:36.906Z" } }, { @@ -11020,10 +11012,10 @@ "context": null, "state": 50, "revision": 105, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:32.907Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:36.974Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:32.816Z", + "submitted_on": "2020-08-21T16:25:36.949Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -11051,14 +11043,14 @@ "context": null, "state": -100, "revision": 101, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:32.603Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:36.864Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:32.512Z", + "submitted_on": "2020-08-21T16:25:36.842Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:32.512Z" + "reviewed_on": "2020-08-21T16:25:36.842Z" } }, { @@ -11082,8 +11074,8 @@ "context": null, "state": 0, "revision": 0, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:33.216Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:37.080Z", "submitted_by": null, "submitted_on": null, "commented_by": null, @@ -11113,14 +11105,14 @@ "context": null, "state": 200, "revision": 107, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:33.012Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:37.015Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:32.920Z", + "submitted_on": "2020-08-21T16:25:36.986Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:32.920Z" + "reviewed_on": "2020-08-21T16:25:36.986Z" } }, { @@ -11144,10 +11136,10 @@ "context": null, "state": 50, "revision": 109, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:33.189Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:37.053Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:33.096Z", + "submitted_on": "2020-08-21T16:25:37.028Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -11175,14 +11167,14 @@ "context": null, "state": -100, "revision": 110, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:33.315Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:37.111Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:33.226Z", + "submitted_on": "2020-08-21T16:25:37.090Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:33.226Z" + "reviewed_on": "2020-08-21T16:25:37.090Z" } }, { @@ -11206,8 +11198,8 @@ "context": null, "state": 0, "revision": 0, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:33.619Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:37.220Z", "submitted_by": null, "submitted_on": null, "commented_by": null, @@ -11237,14 +11229,14 @@ "context": null, "state": 200, "revision": 112, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:33.420Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:37.152Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:33.328Z", + "submitted_on": "2020-08-21T16:25:37.123Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:33.328Z" + "reviewed_on": "2020-08-21T16:25:37.123Z" } }, { @@ -11268,10 +11260,10 @@ "context": null, "state": 50, "revision": 114, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:33.593Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:37.191Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:33.502Z", + "submitted_on": "2020-08-21T16:25:37.165Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -11299,14 +11291,14 @@ "context": null, "state": -100, "revision": 115, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:33.712Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:37.252Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:33.629Z", + "submitted_on": "2020-08-21T16:25:37.231Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:33.629Z" + "reviewed_on": "2020-08-21T16:25:37.231Z" } }, { @@ -11330,8 +11322,8 @@ "context": null, "state": 0, "revision": 0, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:39.882Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:39.408Z", "submitted_by": null, "submitted_on": null, "commented_by": null, @@ -11361,14 +11353,14 @@ "context": null, "state": 200, "revision": 194, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:40.093Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:39.481Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:39.996Z", + "submitted_on": "2020-08-21T16:25:39.454Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:39.996Z" + "reviewed_on": "2020-08-21T16:25:39.454Z" } }, { @@ -11392,10 +11384,10 @@ "context": null, "state": 50, "revision": 192, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:39.985Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:39.444Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:39.892Z", + "submitted_on": "2020-08-21T16:25:39.418Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -11423,14 +11415,14 @@ "context": null, "state": -100, "revision": 195, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:40.270Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:39.512Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:40.181Z", + "submitted_on": "2020-08-21T16:25:39.492Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:40.181Z" + "reviewed_on": "2020-08-21T16:25:39.492Z" } }, { @@ -11454,8 +11446,8 @@ "context": null, "state": 0, "revision": 0, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:40.401Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:39.594Z", "submitted_by": null, "submitted_on": null, "commented_by": null, @@ -11485,14 +11477,14 @@ "context": null, "state": 200, "revision": 200, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:40.601Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:39.670Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:40.510Z", + "submitted_on": "2020-08-21T16:25:39.640Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:40.510Z" + "reviewed_on": "2020-08-21T16:25:39.640Z" } }, { @@ -11516,10 +11508,10 @@ "context": null, "state": 50, "revision": 197, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:40.374Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:39.561Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:40.283Z", + "submitted_on": "2020-08-21T16:25:39.527Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -11547,14 +11539,14 @@ "context": null, "state": -100, "revision": 198, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:40.499Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:39.628Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:40.411Z", + "submitted_on": "2020-08-21T16:25:39.607Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:40.411Z" + "reviewed_on": "2020-08-21T16:25:39.607Z" } }, { @@ -11578,8 +11570,8 @@ "context": null, "state": 0, "revision": 0, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:41.079Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:39.811Z", "submitted_by": null, "submitted_on": null, "commented_by": null, @@ -11609,14 +11601,14 @@ "context": null, "state": 200, "revision": 203, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:40.875Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:39.744Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:40.781Z", + "submitted_on": "2020-08-21T16:25:39.715Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:40.781Z" + "reviewed_on": "2020-08-21T16:25:39.715Z" } }, { @@ -11640,10 +11632,10 @@ "context": null, "state": 50, "revision": 205, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:41.051Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:39.782Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:40.953Z", + "submitted_on": "2020-08-21T16:25:39.755Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -11671,14 +11663,14 @@ "context": null, "state": -100, "revision": 201, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:40.770Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:39.703Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:40.684Z", + "submitted_on": "2020-08-21T16:25:39.683Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:40.684Z" + "reviewed_on": "2020-08-21T16:25:39.683Z" } }, { @@ -11702,8 +11694,8 @@ "context": null, "state": 0, "revision": 0, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:25.086Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:34.424Z", "submitted_by": null, "submitted_on": null, "commented_by": null, @@ -11733,14 +11725,14 @@ "context": null, "state": 200, "revision": 15, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:25.289Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:34.500Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:25.198Z", + "submitted_on": "2020-08-21T16:25:34.471Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:25.198Z" + "reviewed_on": "2020-08-21T16:25:34.471Z" } }, { @@ -11764,10 +11756,10 @@ "context": null, "state": 50, "revision": 13, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:25.185Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:34.461Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:25.098Z", + "submitted_on": "2020-08-21T16:25:34.435Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -11795,14 +11787,14 @@ "context": null, "state": -100, "revision": 11, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:24.850Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:34.396Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:24.750Z", + "submitted_on": "2020-08-21T16:25:34.376Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:24.750Z" + "reviewed_on": "2020-08-21T16:25:34.376Z" } }, { @@ -11826,8 +11818,8 @@ "context": null, "state": 0, "revision": 0, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:25.538Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:34.567Z", "submitted_by": null, "submitted_on": null, "commented_by": null, @@ -11857,14 +11849,14 @@ "context": null, "state": 200, "revision": 17, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:25.446Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:34.538Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:25.368Z", + "submitted_on": "2020-08-21T16:25:34.512Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:25.368Z" + "reviewed_on": "2020-08-21T16:25:34.512Z" } }, { @@ -11888,10 +11880,10 @@ "context": null, "state": 50, "revision": 20, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:25.734Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:34.632Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:25.646Z", + "submitted_on": "2020-08-21T16:25:34.608Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -11919,14 +11911,14 @@ "context": null, "state": -100, "revision": 18, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:25.635Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:34.598Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:25.550Z", + "submitted_on": "2020-08-21T16:25:34.577Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:25.550Z" + "reviewed_on": "2020-08-21T16:25:34.577Z" } }, { @@ -11950,8 +11942,8 @@ "context": null, "state": 0, "revision": 0, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:25.857Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:34.689Z", "submitted_by": null, "submitted_on": null, "commented_by": null, @@ -11981,14 +11973,14 @@ "context": null, "state": 200, "revision": 25, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:26.150Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:34.765Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:26.056Z", + "submitted_on": "2020-08-21T16:25:34.735Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:26.056Z" + "reviewed_on": "2020-08-21T16:25:34.735Z" } }, { @@ -12012,10 +12004,10 @@ "context": null, "state": 50, "revision": 23, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:26.044Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:34.725Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:25.952Z", + "submitted_on": "2020-08-21T16:25:34.701Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -12043,14 +12035,14 @@ "context": null, "state": -100, "revision": 21, - "creation_time": "2019-01-24T13:10:23.766Z", - "mtime": "2020-01-24T13:10:25.828Z", + "creation_time": "2019-08-21T16:25:34.093Z", + "mtime": "2020-08-21T16:25:34.662Z", "submitted_by": 3, - "submitted_on": "2020-01-24T13:10:25.749Z", + "submitted_on": "2020-08-21T16:25:34.643Z", "commented_by": null, "commented_on": null, "reviewed_by": 1, - "reviewed_on": "2020-01-24T13:10:25.749Z" + "reviewed_on": "2020-08-21T16:25:34.643Z" } }, { @@ -12074,8 +12066,8 @@ "context": null, "state": 0, "revision": 0, - "creation_time": "2020-01-24T13:10:41.105Z", - "mtime": "2020-01-24T13:10:41.105Z", + "creation_time": "2020-08-21T16:25:39.830Z", + "mtime": "2020-08-21T16:25:39.830Z", "submitted_by": null, "submitted_on": null, "commented_by": null, @@ -12105,8 +12097,8 @@ "context": null, "state": 0, "revision": 0, - "creation_time": "2020-01-24T13:10:41.124Z", - "mtime": "2020-01-24T13:10:41.124Z", + "creation_time": "2020-08-21T16:25:39.844Z", + "mtime": "2020-08-21T16:25:39.844Z", "submitted_by": null, "submitted_on": null, "commented_by": null, @@ -12136,10 +12128,10 @@ "context": null, "state": 200, "revision": 206, - "creation_time": "2020-01-24T13:10:41.141Z", - "mtime": "2020-01-24T13:10:41.141Z", + "creation_time": "2020-08-21T16:25:39.853Z", + "mtime": "2020-08-21T16:25:39.854Z", "submitted_by": 6, - "submitted_on": "2020-01-24T13:10:41.140Z", + "submitted_on": "2020-08-21T16:25:39.853Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -12167,10 +12159,10 @@ "context": null, "state": 200, "revision": 206, - "creation_time": "2020-01-24T13:10:41.169Z", - "mtime": "2020-01-24T13:10:41.169Z", + "creation_time": "2020-08-21T16:25:39.860Z", + "mtime": "2020-08-21T16:25:39.860Z", "submitted_by": 6, - "submitted_on": "2020-01-24T13:10:41.168Z", + "submitted_on": "2020-08-21T16:25:39.859Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -12198,10 +12190,10 @@ "context": null, "state": 200, "revision": 206, - "creation_time": "2020-01-24T13:10:41.244Z", - "mtime": "2020-01-24T13:10:41.244Z", + "creation_time": "2020-08-21T16:25:39.864Z", + "mtime": "2020-08-21T16:25:39.864Z", "submitted_by": 6, - "submitted_on": "2020-01-24T13:10:41.244Z", + "submitted_on": "2020-08-21T16:25:39.864Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -12229,10 +12221,10 @@ "context": null, "state": 200, "revision": 206, - "creation_time": "2020-01-24T13:10:41.324Z", - "mtime": "2020-01-24T13:10:41.324Z", + "creation_time": "2020-08-21T16:25:39.869Z", + "mtime": "2020-08-21T16:25:39.869Z", "submitted_by": 6, - "submitted_on": "2020-01-24T13:10:41.323Z", + "submitted_on": "2020-08-21T16:25:39.869Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -12260,10 +12252,10 @@ "context": null, "state": 200, "revision": 206, - "creation_time": "2020-01-24T13:10:41.398Z", - "mtime": "2020-01-24T13:10:41.398Z", + "creation_time": "2020-08-21T16:25:39.874Z", + "mtime": "2020-08-21T16:25:39.874Z", "submitted_by": 6, - "submitted_on": "2020-01-24T13:10:41.397Z", + "submitted_on": "2020-08-21T16:25:39.874Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -12291,10 +12283,10 @@ "context": null, "state": 200, "revision": 206, - "creation_time": "2020-01-24T13:10:41.469Z", - "mtime": "2020-01-24T13:10:41.469Z", + "creation_time": "2020-08-21T16:25:39.879Z", + "mtime": "2020-08-21T16:25:39.879Z", "submitted_by": 6, - "submitted_on": "2020-01-24T13:10:41.468Z", + "submitted_on": "2020-08-21T16:25:39.878Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -12322,10 +12314,10 @@ "context": null, "state": 200, "revision": 206, - "creation_time": "2020-01-24T13:10:41.551Z", - "mtime": "2020-01-24T13:10:41.551Z", + "creation_time": "2020-08-21T16:25:39.883Z", + "mtime": "2020-08-21T16:25:39.883Z", "submitted_by": 6, - "submitted_on": "2020-01-24T13:10:41.550Z", + "submitted_on": "2020-08-21T16:25:39.883Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -12353,10 +12345,10 @@ "context": null, "state": 200, "revision": 206, - "creation_time": "2020-01-24T13:10:41.622Z", - "mtime": "2020-01-24T13:10:41.622Z", + "creation_time": "2020-08-21T16:25:39.888Z", + "mtime": "2020-08-21T16:25:39.888Z", "submitted_by": 6, - "submitted_on": "2020-01-24T13:10:41.621Z", + "submitted_on": "2020-08-21T16:25:39.888Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -12384,10 +12376,10 @@ "context": null, "state": 200, "revision": 206, - "creation_time": "2020-01-24T13:10:41.694Z", - "mtime": "2020-01-24T13:10:41.694Z", + "creation_time": "2020-08-21T16:25:39.893Z", + "mtime": "2020-08-21T16:25:39.893Z", "submitted_by": 6, - "submitted_on": "2020-01-24T13:10:41.693Z", + "submitted_on": "2020-08-21T16:25:39.893Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -12415,10 +12407,10 @@ "context": null, "state": 200, "revision": 206, - "creation_time": "2020-01-24T13:10:41.766Z", - "mtime": "2020-01-24T13:10:41.766Z", + "creation_time": "2020-08-21T16:25:39.898Z", + "mtime": "2020-08-21T16:25:39.898Z", "submitted_by": 6, - "submitted_on": "2020-01-24T13:10:41.765Z", + "submitted_on": "2020-08-21T16:25:39.897Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -12446,10 +12438,10 @@ "context": null, "state": 200, "revision": 206, - "creation_time": "2020-01-24T13:10:41.837Z", - "mtime": "2020-01-24T13:10:41.837Z", + "creation_time": "2020-08-21T16:25:39.902Z", + "mtime": "2020-08-21T16:25:39.902Z", "submitted_by": 6, - "submitted_on": "2020-01-24T13:10:41.836Z", + "submitted_on": "2020-08-21T16:25:39.902Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -12477,10 +12469,10 @@ "context": null, "state": 200, "revision": 206, - "creation_time": "2020-01-24T13:10:41.911Z", - "mtime": "2020-01-24T13:10:41.911Z", + "creation_time": "2020-08-21T16:25:39.907Z", + "mtime": "2020-08-21T16:25:39.907Z", "submitted_by": 6, - "submitted_on": "2020-01-24T13:10:41.910Z", + "submitted_on": "2020-08-21T16:25:39.907Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -12508,10 +12500,10 @@ "context": null, "state": 200, "revision": 206, - "creation_time": "2020-01-24T13:10:41.983Z", - "mtime": "2020-01-24T13:10:41.983Z", + "creation_time": "2020-08-21T16:25:39.912Z", + "mtime": "2020-08-21T16:25:39.912Z", "submitted_by": 6, - "submitted_on": "2020-01-24T13:10:41.982Z", + "submitted_on": "2020-08-21T16:25:39.911Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -12539,10 +12531,10 @@ "context": null, "state": 200, "revision": 206, - "creation_time": "2020-01-24T13:10:42.058Z", - "mtime": "2020-01-24T13:10:42.058Z", + "creation_time": "2020-08-21T16:25:39.916Z", + "mtime": "2020-08-21T16:25:39.916Z", "submitted_by": 6, - "submitted_on": "2020-01-24T13:10:42.057Z", + "submitted_on": "2020-08-21T16:25:39.916Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -12570,10 +12562,10 @@ "context": null, "state": 200, "revision": 206, - "creation_time": "2020-01-24T13:10:42.133Z", - "mtime": "2020-01-24T13:10:42.133Z", + "creation_time": "2020-08-21T16:25:39.921Z", + "mtime": "2020-08-21T16:25:39.921Z", "submitted_by": 6, - "submitted_on": "2020-01-24T13:10:42.132Z", + "submitted_on": "2020-08-21T16:25:39.921Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -12601,10 +12593,10 @@ "context": null, "state": 200, "revision": 206, - "creation_time": "2020-01-24T13:10:42.208Z", - "mtime": "2020-01-24T13:10:42.208Z", + "creation_time": "2020-08-21T16:25:39.925Z", + "mtime": "2020-08-21T16:25:39.925Z", "submitted_by": 6, - "submitted_on": "2020-01-24T13:10:42.207Z", + "submitted_on": "2020-08-21T16:25:39.925Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -12632,10 +12624,10 @@ "context": null, "state": 200, "revision": 206, - "creation_time": "2020-01-24T13:10:42.282Z", - "mtime": "2020-01-24T13:10:42.282Z", + "creation_time": "2020-08-21T16:25:39.930Z", + "mtime": "2020-08-21T16:25:39.930Z", "submitted_by": 6, - "submitted_on": "2020-01-24T13:10:42.281Z", + "submitted_on": "2020-08-21T16:25:39.930Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -12663,10 +12655,10 @@ "context": null, "state": 200, "revision": 206, - "creation_time": "2020-01-24T13:10:42.350Z", - "mtime": "2020-01-24T13:10:42.350Z", + "creation_time": "2020-08-21T16:25:39.936Z", + "mtime": "2020-08-21T16:25:39.936Z", "submitted_by": 6, - "submitted_on": "2020-01-24T13:10:42.349Z", + "submitted_on": "2020-08-21T16:25:39.935Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -12694,10 +12686,10 @@ "context": null, "state": 200, "revision": 206, - "creation_time": "2020-01-24T13:10:42.424Z", - "mtime": "2020-01-24T13:10:42.425Z", + "creation_time": "2020-08-21T16:25:39.943Z", + "mtime": "2020-08-21T16:25:39.943Z", "submitted_by": 6, - "submitted_on": "2020-01-24T13:10:42.424Z", + "submitted_on": "2020-08-21T16:25:39.942Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -12725,8 +12717,8 @@ "context": null, "state": 0, "revision": 206, - "creation_time": "2020-01-24T13:10:42.497Z", - "mtime": "2020-01-24T13:10:42.497Z", + "creation_time": "2020-08-21T16:25:39.947Z", + "mtime": "2020-08-21T16:25:39.947Z", "submitted_by": null, "submitted_on": null, "commented_by": null, @@ -12756,10 +12748,10 @@ "context": null, "state": 200, "revision": 206, - "creation_time": "2020-01-24T13:10:42.541Z", - "mtime": "2020-01-24T13:10:42.541Z", + "creation_time": "2020-08-21T16:25:39.948Z", + "mtime": "2020-08-21T16:25:39.948Z", "submitted_by": 6, - "submitted_on": "2020-01-24T13:10:42.540Z", + "submitted_on": "2020-08-21T16:25:39.948Z", "commented_by": null, "commented_on": null, "reviewed_by": null, @@ -12787,8 +12779,8 @@ "context": null, "state": 0, "revision": 206, - "creation_time": "2020-01-24T13:10:42.572Z", - "mtime": "2020-01-24T13:10:42.572Z", + "creation_time": "2020-08-21T16:25:39.953Z", + "mtime": "2020-08-21T16:25:39.953Z", "submitted_by": null, "submitted_on": null, "commented_by": null, @@ -12818,8 +12810,8 @@ "context": null, "state": 0, "revision": 206, - "creation_time": "2020-01-24T13:10:42.602Z", - "mtime": "2020-01-24T13:10:42.602Z", + "creation_time": "2020-08-21T16:25:39.954Z", + "mtime": "2020-08-21T16:25:39.954Z", "submitted_by": null, "submitted_on": null, "commented_by": null, @@ -12849,8 +12841,8 @@ "context": null, "state": 0, "revision": 206, - "creation_time": "2020-01-24T13:10:42.604Z", - "mtime": "2020-01-24T13:10:42.604Z", + "creation_time": "2020-08-21T16:25:39.955Z", + "mtime": "2020-08-21T16:25:39.955Z", "submitted_by": null, "submitted_on": null, "commented_by": null, @@ -12880,8 +12872,8 @@ "context": null, "state": 0, "revision": 206, - "creation_time": "2020-01-24T13:10:42.606Z", - "mtime": "2020-01-24T13:10:42.606Z", + "creation_time": "2020-08-21T16:25:39.956Z", + "mtime": "2020-08-21T16:25:39.956Z", "submitted_by": null, "submitted_on": null, "commented_by": null, @@ -12901,7 +12893,7 @@ "name": "store0.po", "file_mtime": 0, "state": 0, - "creation_time": "2020-01-24T13:10:22.613Z", + "creation_time": "2020-08-21T16:25:33.138Z", "last_sync_revision": null, "obsolete": false } @@ -12917,7 +12909,7 @@ "name": "store1.po", "file_mtime": 0, "state": 0, - "creation_time": "2020-01-24T13:10:22.650Z", + "creation_time": "2020-08-21T16:25:33.171Z", "last_sync_revision": null, "obsolete": false } @@ -12933,7 +12925,7 @@ "name": "store2.po", "file_mtime": 0, "state": 0, - "creation_time": "2020-01-24T13:10:22.686Z", + "creation_time": "2020-08-21T16:25:33.204Z", "last_sync_revision": null, "obsolete": false } @@ -12949,7 +12941,7 @@ "name": "store0.po", "file_mtime": 0, "state": 0, - "creation_time": "2020-01-24T13:10:22.731Z", + "creation_time": "2020-08-21T16:25:33.242Z", "last_sync_revision": null, "obsolete": false } @@ -12965,7 +12957,7 @@ "name": "store1.po", "file_mtime": 0, "state": 0, - "creation_time": "2020-01-24T13:10:22.767Z", + "creation_time": "2020-08-21T16:25:33.273Z", "last_sync_revision": null, "obsolete": false } @@ -12981,7 +12973,7 @@ "name": "store2.po", "file_mtime": 0, "state": 0, - "creation_time": "2020-01-24T13:10:22.803Z", + "creation_time": "2020-08-21T16:25:33.305Z", "last_sync_revision": null, "obsolete": false } @@ -12997,7 +12989,7 @@ "name": "store0.po", "file_mtime": 0, "state": 0, - "creation_time": "2020-01-24T13:10:22.849Z", + "creation_time": "2020-08-21T16:25:33.352Z", "last_sync_revision": null, "obsolete": false } @@ -13013,7 +13005,7 @@ "name": "store1.po", "file_mtime": 0, "state": 0, - "creation_time": "2020-01-24T13:10:22.886Z", + "creation_time": "2020-08-21T16:25:33.385Z", "last_sync_revision": null, "obsolete": false } @@ -13029,7 +13021,7 @@ "name": "store2.po", "file_mtime": 0, "state": 0, - "creation_time": "2020-01-24T13:10:22.925Z", + "creation_time": "2020-08-21T16:25:33.417Z", "last_sync_revision": null, "obsolete": false } @@ -13045,7 +13037,7 @@ "name": "store0.po", "file_mtime": 0, "state": 0, - "creation_time": "2020-01-24T13:10:22.972Z", + "creation_time": "2020-08-21T16:25:33.456Z", "last_sync_revision": null, "obsolete": false } @@ -13061,7 +13053,7 @@ "name": "store1.po", "file_mtime": 0, "state": 0, - "creation_time": "2020-01-24T13:10:23.009Z", + "creation_time": "2020-08-21T16:25:33.493Z", "last_sync_revision": null, "obsolete": false } @@ -13077,7 +13069,7 @@ "name": "store2.po", "file_mtime": 0, "state": 0, - "creation_time": "2020-01-24T13:10:23.045Z", + "creation_time": "2020-08-21T16:25:33.527Z", "last_sync_revision": null, "obsolete": false } @@ -13093,7 +13085,7 @@ "name": "store0.po", "file_mtime": 0, "state": 0, - "creation_time": "2020-01-24T13:10:23.104Z", + "creation_time": "2020-08-21T16:25:33.583Z", "last_sync_revision": null, "obsolete": false } @@ -13109,7 +13101,7 @@ "name": "store1.po", "file_mtime": 0, "state": 0, - "creation_time": "2020-01-24T13:10:23.131Z", + "creation_time": "2020-08-21T16:25:33.611Z", "last_sync_revision": null, "obsolete": false } @@ -13125,7 +13117,7 @@ "name": "store3.po", "file_mtime": 0, "state": 0, - "creation_time": "2020-01-24T13:10:23.208Z", + "creation_time": "2020-08-21T16:25:33.642Z", "last_sync_revision": null, "obsolete": false } @@ -13141,7 +13133,7 @@ "name": "store4.po", "file_mtime": 0, "state": 0, - "creation_time": "2020-01-24T13:10:23.238Z", + "creation_time": "2020-08-21T16:25:33.668Z", "last_sync_revision": null, "obsolete": false } @@ -13157,7 +13149,7 @@ "name": "store5.po", "file_mtime": 0, "state": 0, - "creation_time": "2020-01-24T13:10:23.264Z", + "creation_time": "2020-08-21T16:25:33.691Z", "last_sync_revision": null, "obsolete": false } @@ -13173,7 +13165,7 @@ "name": "store6.po", "file_mtime": 0, "state": 0, - "creation_time": "2020-01-24T13:10:23.306Z", + "creation_time": "2020-08-21T16:25:33.723Z", "last_sync_revision": null, "obsolete": false } @@ -13189,7 +13181,7 @@ "name": "store3.po", "file_mtime": 0, "state": 0, - "creation_time": "2020-01-24T13:10:23.325Z", + "creation_time": "2020-08-21T16:25:33.737Z", "last_sync_revision": null, "obsolete": false } @@ -13205,7 +13197,7 @@ "name": "store4.po", "file_mtime": 0, "state": 0, - "creation_time": "2020-01-24T13:10:23.355Z", + "creation_time": "2020-08-21T16:25:33.758Z", "last_sync_revision": null, "obsolete": false } @@ -13221,7 +13213,7 @@ "name": "store5.po", "file_mtime": 0, "state": 0, - "creation_time": "2020-01-24T13:10:23.381Z", + "creation_time": "2020-08-21T16:25:33.780Z", "last_sync_revision": null, "obsolete": false } @@ -13237,7 +13229,7 @@ "name": "store6.po", "file_mtime": 0, "state": 0, - "creation_time": "2020-01-24T13:10:23.424Z", + "creation_time": "2020-08-21T16:25:33.811Z", "last_sync_revision": null, "obsolete": false } @@ -13253,7 +13245,7 @@ "name": "store3.po", "file_mtime": 0, "state": 0, - "creation_time": "2020-01-24T13:10:23.445Z", + "creation_time": "2020-08-21T16:25:33.824Z", "last_sync_revision": null, "obsolete": false } @@ -13269,7 +13261,7 @@ "name": "store4.po", "file_mtime": 0, "state": 0, - "creation_time": "2020-01-24T13:10:23.475Z", + "creation_time": "2020-08-21T16:25:33.846Z", "last_sync_revision": null, "obsolete": false } @@ -13285,7 +13277,7 @@ "name": "store5.po", "file_mtime": 0, "state": 0, - "creation_time": "2020-01-24T13:10:23.504Z", + "creation_time": "2020-08-21T16:25:33.869Z", "last_sync_revision": null, "obsolete": false } @@ -13301,7 +13293,7 @@ "name": "store6.po", "file_mtime": 0, "state": 0, - "creation_time": "2020-01-24T13:10:23.547Z", + "creation_time": "2020-08-21T16:25:33.903Z", "last_sync_revision": null, "obsolete": false } @@ -13317,7 +13309,7 @@ "name": "store3.po", "file_mtime": 0, "state": 0, - "creation_time": "2020-01-24T13:10:23.565Z", + "creation_time": "2020-08-21T16:25:33.916Z", "last_sync_revision": null, "obsolete": false } @@ -13333,7 +13325,7 @@ "name": "store4.po", "file_mtime": 0, "state": 0, - "creation_time": "2020-01-24T13:10:23.591Z", + "creation_time": "2020-08-21T16:25:33.938Z", "last_sync_revision": null, "obsolete": false } @@ -13349,7 +13341,7 @@ "name": "store5.po", "file_mtime": 0, "state": 0, - "creation_time": "2020-01-24T13:10:23.615Z", + "creation_time": "2020-08-21T16:25:33.961Z", "last_sync_revision": null, "obsolete": false } @@ -13365,7 +13357,7 @@ "name": "store6.po", "file_mtime": 0, "state": 0, - "creation_time": "2020-01-24T13:10:23.654Z", + "creation_time": "2020-08-21T16:25:33.998Z", "last_sync_revision": null, "obsolete": false } @@ -13381,7 +13373,7 @@ "name": "store2.po", "file_mtime": 0, "state": 0, - "creation_time": "2020-01-24T13:10:23.669Z", + "creation_time": "2020-08-21T16:25:34.011Z", "last_sync_revision": null, "obsolete": false } @@ -13397,7 +13389,7 @@ "name": "store3.po", "file_mtime": 0, "state": 0, - "creation_time": "2020-01-24T13:10:23.695Z", + "creation_time": "2020-08-21T16:25:34.032Z", "last_sync_revision": null, "obsolete": false } @@ -13413,7 +13405,7 @@ "name": "store4.po", "file_mtime": 0, "state": 0, - "creation_time": "2020-01-24T13:10:23.721Z", + "creation_time": "2020-08-21T16:25:34.054Z", "last_sync_revision": null, "obsolete": false } @@ -13429,7 +13421,7 @@ "name": "store5.po", "file_mtime": 0, "state": 0, - "creation_time": "2020-01-24T13:10:23.759Z", + "creation_time": "2020-08-21T16:25:34.088Z", "last_sync_revision": null, "obsolete": false } @@ -13445,7 +13437,7 @@ "name": "terminology.po", "file_mtime": 0, "state": 0, - "creation_time": "2020-01-24T13:10:41.097Z", + "creation_time": "2020-08-21T16:25:39.824Z", "last_sync_revision": null, "obsolete": false } @@ -13461,7 +13453,7 @@ "name": "terminology.po", "file_mtime": 0, "state": 0, - "creation_time": "2020-01-24T13:10:41.115Z", + "creation_time": "2020-08-21T16:25:39.838Z", "last_sync_revision": null, "obsolete": false } @@ -13477,7 +13469,7 @@ "name": "complex.po", "file_mtime": 0, "state": 1, - "creation_time": "2020-01-24T13:10:41.135Z", + "creation_time": "2020-08-21T16:25:39.850Z", "last_sync_revision": null, "obsolete": false } @@ -13529,7 +13521,7 @@ "directory": 6, "report_email": "", "screenshot_search_prefix": null, - "creation_time": "2020-01-24T13:10:22.510Z", + "creation_time": "2020-08-21T16:25:33.064Z", "disabled": false } }, @@ -13544,7 +13536,7 @@ "directory": 7, "report_email": "", "screenshot_search_prefix": null, - "creation_time": "2020-01-24T13:10:22.517Z", + "creation_time": "2020-08-21T16:25:33.070Z", "disabled": false } }, @@ -13559,7 +13551,7 @@ "directory": 12, "report_email": "", "screenshot_search_prefix": null, - "creation_time": "2020-01-24T13:10:23.084Z", + "creation_time": "2020-08-21T16:25:33.567Z", "disabled": true } }, @@ -13574,7 +13566,7 @@ "directory": 34, "report_email": "", "screenshot_search_prefix": null, - "creation_time": "2020-01-24T13:10:41.086Z", + "creation_time": "2020-08-21T16:25:39.816Z", "disabled": false } }, @@ -13587,7 +13579,7 @@ "real_path": "project0/language0", "directory": 8, "pootle_path": "/language0/project0/", - "creation_time": "2020-01-24T13:10:22.601Z" + "creation_time": "2020-08-21T16:25:33.130Z" } }, { @@ -13599,7 +13591,7 @@ "real_path": "project0/language1", "directory": 9, "pootle_path": "/language1/project0/", - "creation_time": "2020-01-24T13:10:22.722Z" + "creation_time": "2020-08-21T16:25:33.236Z" } }, { @@ -13611,7 +13603,7 @@ "real_path": "project1/language0", "directory": 10, "pootle_path": "/language0/project1/", - "creation_time": "2020-01-24T13:10:22.840Z" + "creation_time": "2020-08-21T16:25:33.343Z" } }, { @@ -13623,7 +13615,7 @@ "real_path": "project1/language1", "directory": 11, "pootle_path": "/language1/project1/", - "creation_time": "2020-01-24T13:10:22.963Z" + "creation_time": "2020-08-21T16:25:33.449Z" } }, { @@ -13635,7 +13627,7 @@ "real_path": "disabled_project0/language0", "directory": 13, "pootle_path": "/language0/disabled_project0/", - "creation_time": "2020-01-24T13:10:23.095Z" + "creation_time": "2020-08-21T16:25:33.576Z" } }, { @@ -13647,7 +13639,7 @@ "real_path": "terminology/language0", "directory": 35, "pootle_path": "/language0/terminology/", - "creation_time": "2020-01-24T13:10:41.092Z" + "creation_time": "2020-08-21T16:25:39.821Z" } }, { @@ -13659,14 +13651,14 @@ "real_path": "terminology/language1", "directory": 36, "pootle_path": "/language1/terminology/", - "creation_time": "2020-01-24T13:10:41.111Z" + "creation_time": "2020-08-21T16:25:39.835Z" } }, { "model": "pootle_statistics.submission", "pk": 1, "fields": { - "creation_time": "2019-04-03T13:10:23.766Z", + "creation_time": "2019-10-31T16:25:34.093Z", "translation_project": 1, "submitter": 6, "suggestion": null, @@ -13685,7 +13677,7 @@ "model": "pootle_statistics.submission", "pk": 2, "fields": { - "creation_time": "2019-05-04T13:10:23.766Z", + "creation_time": "2019-12-01T16:25:34.093Z", "translation_project": 1, "submitter": 6, "suggestion": null, @@ -13704,7 +13696,7 @@ "model": "pootle_statistics.submission", "pk": 3, "fields": { - "creation_time": "2019-06-03T13:10:23.766Z", + "creation_time": "2019-12-31T16:25:34.093Z", "translation_project": 1, "submitter": 6, "suggestion": null, @@ -13723,7 +13715,7 @@ "model": "pootle_statistics.submission", "pk": 4, "fields": { - "creation_time": "2019-07-04T13:10:23.766Z", + "creation_time": "2020-01-31T16:25:34.093Z", "translation_project": 1, "submitter": 6, "suggestion": null, @@ -13742,7 +13734,7 @@ "model": "pootle_statistics.submission", "pk": 5, "fields": { - "creation_time": "2019-04-03T13:10:23.766Z", + "creation_time": "2019-10-31T16:25:34.093Z", "translation_project": 1, "submitter": 6, "suggestion": null, @@ -13761,7 +13753,7 @@ "model": "pootle_statistics.submission", "pk": 6, "fields": { - "creation_time": "2019-05-04T13:10:23.766Z", + "creation_time": "2019-12-01T16:25:34.093Z", "translation_project": 1, "submitter": 6, "suggestion": null, @@ -13780,7 +13772,7 @@ "model": "pootle_statistics.submission", "pk": 7, "fields": { - "creation_time": "2019-06-03T13:10:23.766Z", + "creation_time": "2019-12-31T16:25:34.093Z", "translation_project": 1, "submitter": 6, "suggestion": null, @@ -13799,7 +13791,7 @@ "model": "pootle_statistics.submission", "pk": 8, "fields": { - "creation_time": "2019-07-04T13:10:23.766Z", + "creation_time": "2020-01-31T16:25:34.093Z", "translation_project": 1, "submitter": 6, "suggestion": null, @@ -13818,7 +13810,7 @@ "model": "pootle_statistics.submission", "pk": 9, "fields": { - "creation_time": "2019-04-03T13:10:23.766Z", + "creation_time": "2019-10-31T16:25:34.093Z", "translation_project": 1, "submitter": 6, "suggestion": null, @@ -13837,7 +13829,7 @@ "model": "pootle_statistics.submission", "pk": 10, "fields": { - "creation_time": "2019-05-04T13:10:23.766Z", + "creation_time": "2019-12-01T16:25:34.093Z", "translation_project": 1, "submitter": 6, "suggestion": null, @@ -13856,7 +13848,7 @@ "model": "pootle_statistics.submission", "pk": 11, "fields": { - "creation_time": "2019-06-03T13:10:23.766Z", + "creation_time": "2019-12-31T16:25:34.093Z", "translation_project": 1, "submitter": 6, "suggestion": null, @@ -13875,7 +13867,7 @@ "model": "pootle_statistics.submission", "pk": 12, "fields": { - "creation_time": "2019-07-04T13:10:23.766Z", + "creation_time": "2020-01-31T16:25:34.093Z", "translation_project": 1, "submitter": 6, "suggestion": null, @@ -13894,7 +13886,7 @@ "model": "pootle_statistics.submission", "pk": 13, "fields": { - "creation_time": "2019-04-03T13:10:23.766Z", + "creation_time": "2019-10-31T16:25:34.093Z", "translation_project": 2, "submitter": 6, "suggestion": null, @@ -13913,7 +13905,7 @@ "model": "pootle_statistics.submission", "pk": 14, "fields": { - "creation_time": "2019-05-04T13:10:23.766Z", + "creation_time": "2019-12-01T16:25:34.093Z", "translation_project": 2, "submitter": 6, "suggestion": null, @@ -13932,7 +13924,7 @@ "model": "pootle_statistics.submission", "pk": 15, "fields": { - "creation_time": "2019-06-03T13:10:23.766Z", + "creation_time": "2019-12-31T16:25:34.093Z", "translation_project": 2, "submitter": 6, "suggestion": null, @@ -13951,7 +13943,7 @@ "model": "pootle_statistics.submission", "pk": 16, "fields": { - "creation_time": "2019-07-04T13:10:23.766Z", + "creation_time": "2020-01-31T16:25:34.093Z", "translation_project": 2, "submitter": 6, "suggestion": null, @@ -13970,7 +13962,7 @@ "model": "pootle_statistics.submission", "pk": 17, "fields": { - "creation_time": "2019-04-03T13:10:23.766Z", + "creation_time": "2019-10-31T16:25:34.093Z", "translation_project": 2, "submitter": 6, "suggestion": null, @@ -13989,7 +13981,7 @@ "model": "pootle_statistics.submission", "pk": 18, "fields": { - "creation_time": "2019-05-04T13:10:23.766Z", + "creation_time": "2019-12-01T16:25:34.093Z", "translation_project": 2, "submitter": 6, "suggestion": null, @@ -14008,7 +14000,7 @@ "model": "pootle_statistics.submission", "pk": 19, "fields": { - "creation_time": "2019-06-03T13:10:23.766Z", + "creation_time": "2019-12-31T16:25:34.093Z", "translation_project": 2, "submitter": 6, "suggestion": null, @@ -14027,7 +14019,7 @@ "model": "pootle_statistics.submission", "pk": 20, "fields": { - "creation_time": "2019-07-04T13:10:23.766Z", + "creation_time": "2020-01-31T16:25:34.093Z", "translation_project": 2, "submitter": 6, "suggestion": null, @@ -14046,7 +14038,7 @@ "model": "pootle_statistics.submission", "pk": 21, "fields": { - "creation_time": "2019-04-03T13:10:23.766Z", + "creation_time": "2019-10-31T16:25:34.093Z", "translation_project": 2, "submitter": 6, "suggestion": null, @@ -14065,7 +14057,7 @@ "model": "pootle_statistics.submission", "pk": 22, "fields": { - "creation_time": "2019-05-04T13:10:23.766Z", + "creation_time": "2019-12-01T16:25:34.093Z", "translation_project": 2, "submitter": 6, "suggestion": null, @@ -14084,7 +14076,7 @@ "model": "pootle_statistics.submission", "pk": 23, "fields": { - "creation_time": "2019-06-03T13:10:23.766Z", + "creation_time": "2019-12-31T16:25:34.093Z", "translation_project": 2, "submitter": 6, "suggestion": null, @@ -14103,7 +14095,7 @@ "model": "pootle_statistics.submission", "pk": 24, "fields": { - "creation_time": "2019-07-04T13:10:23.766Z", + "creation_time": "2020-01-31T16:25:34.093Z", "translation_project": 2, "submitter": 6, "suggestion": null, @@ -14122,7 +14114,7 @@ "model": "pootle_statistics.submission", "pk": 25, "fields": { - "creation_time": "2019-04-03T13:10:23.766Z", + "creation_time": "2019-10-31T16:25:34.093Z", "translation_project": 3, "submitter": 6, "suggestion": null, @@ -14141,7 +14133,7 @@ "model": "pootle_statistics.submission", "pk": 26, "fields": { - "creation_time": "2019-05-04T13:10:23.766Z", + "creation_time": "2019-12-01T16:25:34.093Z", "translation_project": 3, "submitter": 6, "suggestion": null, @@ -14160,7 +14152,7 @@ "model": "pootle_statistics.submission", "pk": 27, "fields": { - "creation_time": "2019-06-03T13:10:23.766Z", + "creation_time": "2019-12-31T16:25:34.093Z", "translation_project": 3, "submitter": 6, "suggestion": null, @@ -14179,7 +14171,7 @@ "model": "pootle_statistics.submission", "pk": 28, "fields": { - "creation_time": "2019-07-04T13:10:23.766Z", + "creation_time": "2020-01-31T16:25:34.093Z", "translation_project": 3, "submitter": 6, "suggestion": null, @@ -14198,7 +14190,7 @@ "model": "pootle_statistics.submission", "pk": 29, "fields": { - "creation_time": "2019-04-03T13:10:23.766Z", + "creation_time": "2019-10-31T16:25:34.093Z", "translation_project": 3, "submitter": 6, "suggestion": null, @@ -14217,7 +14209,7 @@ "model": "pootle_statistics.submission", "pk": 30, "fields": { - "creation_time": "2019-05-04T13:10:23.766Z", + "creation_time": "2019-12-01T16:25:34.093Z", "translation_project": 3, "submitter": 6, "suggestion": null, @@ -14236,7 +14228,7 @@ "model": "pootle_statistics.submission", "pk": 31, "fields": { - "creation_time": "2019-06-03T13:10:23.766Z", + "creation_time": "2019-12-31T16:25:34.093Z", "translation_project": 3, "submitter": 6, "suggestion": null, @@ -14255,7 +14247,7 @@ "model": "pootle_statistics.submission", "pk": 32, "fields": { - "creation_time": "2019-07-04T13:10:23.766Z", + "creation_time": "2020-01-31T16:25:34.093Z", "translation_project": 3, "submitter": 6, "suggestion": null, @@ -14274,7 +14266,7 @@ "model": "pootle_statistics.submission", "pk": 33, "fields": { - "creation_time": "2019-04-03T13:10:23.766Z", + "creation_time": "2019-10-31T16:25:34.093Z", "translation_project": 3, "submitter": 6, "suggestion": null, @@ -14293,7 +14285,7 @@ "model": "pootle_statistics.submission", "pk": 34, "fields": { - "creation_time": "2019-05-04T13:10:23.766Z", + "creation_time": "2019-12-01T16:25:34.093Z", "translation_project": 3, "submitter": 6, "suggestion": null, @@ -14312,7 +14304,7 @@ "model": "pootle_statistics.submission", "pk": 35, "fields": { - "creation_time": "2019-06-03T13:10:23.766Z", + "creation_time": "2019-12-31T16:25:34.093Z", "translation_project": 3, "submitter": 6, "suggestion": null, @@ -14331,7 +14323,7 @@ "model": "pootle_statistics.submission", "pk": 36, "fields": { - "creation_time": "2019-07-04T13:10:23.766Z", + "creation_time": "2020-01-31T16:25:34.093Z", "translation_project": 3, "submitter": 6, "suggestion": null, @@ -14350,7 +14342,7 @@ "model": "pootle_statistics.submission", "pk": 37, "fields": { - "creation_time": "2019-04-03T13:10:23.766Z", + "creation_time": "2019-10-31T16:25:34.093Z", "translation_project": 4, "submitter": 6, "suggestion": null, @@ -14369,7 +14361,7 @@ "model": "pootle_statistics.submission", "pk": 38, "fields": { - "creation_time": "2019-05-04T13:10:23.766Z", + "creation_time": "2019-12-01T16:25:34.093Z", "translation_project": 4, "submitter": 6, "suggestion": null, @@ -14388,7 +14380,7 @@ "model": "pootle_statistics.submission", "pk": 39, "fields": { - "creation_time": "2019-06-03T13:10:23.766Z", + "creation_time": "2019-12-31T16:25:34.093Z", "translation_project": 4, "submitter": 6, "suggestion": null, @@ -14407,7 +14399,7 @@ "model": "pootle_statistics.submission", "pk": 40, "fields": { - "creation_time": "2019-07-04T13:10:23.766Z", + "creation_time": "2020-01-31T16:25:34.093Z", "translation_project": 4, "submitter": 6, "suggestion": null, @@ -14426,7 +14418,7 @@ "model": "pootle_statistics.submission", "pk": 41, "fields": { - "creation_time": "2019-04-03T13:10:23.766Z", + "creation_time": "2019-10-31T16:25:34.093Z", "translation_project": 4, "submitter": 6, "suggestion": null, @@ -14445,7 +14437,7 @@ "model": "pootle_statistics.submission", "pk": 42, "fields": { - "creation_time": "2019-05-04T13:10:23.766Z", + "creation_time": "2019-12-01T16:25:34.093Z", "translation_project": 4, "submitter": 6, "suggestion": null, @@ -14464,7 +14456,7 @@ "model": "pootle_statistics.submission", "pk": 43, "fields": { - "creation_time": "2019-06-03T13:10:23.766Z", + "creation_time": "2019-12-31T16:25:34.093Z", "translation_project": 4, "submitter": 6, "suggestion": null, @@ -14483,7 +14475,7 @@ "model": "pootle_statistics.submission", "pk": 44, "fields": { - "creation_time": "2019-07-04T13:10:23.766Z", + "creation_time": "2020-01-31T16:25:34.093Z", "translation_project": 4, "submitter": 6, "suggestion": null, @@ -14502,7 +14494,7 @@ "model": "pootle_statistics.submission", "pk": 45, "fields": { - "creation_time": "2019-04-03T13:10:23.766Z", + "creation_time": "2019-10-31T16:25:34.093Z", "translation_project": 4, "submitter": 6, "suggestion": null, @@ -14521,7 +14513,7 @@ "model": "pootle_statistics.submission", "pk": 46, "fields": { - "creation_time": "2019-05-04T13:10:23.766Z", + "creation_time": "2019-12-01T16:25:34.093Z", "translation_project": 4, "submitter": 6, "suggestion": null, @@ -14540,7 +14532,7 @@ "model": "pootle_statistics.submission", "pk": 47, "fields": { - "creation_time": "2019-06-03T13:10:23.766Z", + "creation_time": "2019-12-31T16:25:34.093Z", "translation_project": 4, "submitter": 6, "suggestion": null, @@ -14559,7 +14551,7 @@ "model": "pootle_statistics.submission", "pk": 48, "fields": { - "creation_time": "2019-07-04T13:10:23.766Z", + "creation_time": "2020-01-31T16:25:34.093Z", "translation_project": 4, "submitter": 6, "suggestion": null, @@ -14578,7 +14570,7 @@ "model": "pootle_statistics.submission", "pk": 49, "fields": { - "creation_time": "2019-03-06T13:10:23.766Z", + "creation_time": "2019-10-01T16:25:34.093Z", "translation_project": 5, "submitter": 6, "suggestion": null, @@ -14597,7 +14589,7 @@ "model": "pootle_statistics.submission", "pk": 50, "fields": { - "creation_time": "2019-04-03T13:10:23.766Z", + "creation_time": "2019-10-31T16:25:34.093Z", "translation_project": 5, "submitter": 6, "suggestion": null, @@ -14616,7 +14608,7 @@ "model": "pootle_statistics.submission", "pk": 51, "fields": { - "creation_time": "2019-03-06T13:10:23.766Z", + "creation_time": "2019-10-01T16:25:34.093Z", "translation_project": 5, "submitter": 6, "suggestion": null, @@ -14635,7 +14627,7 @@ "model": "pootle_statistics.submission", "pk": 52, "fields": { - "creation_time": "2019-04-03T13:10:23.766Z", + "creation_time": "2019-10-31T16:25:34.093Z", "translation_project": 5, "submitter": 6, "suggestion": null, @@ -14654,7 +14646,7 @@ "model": "pootle_statistics.submission", "pk": 53, "fields": { - "creation_time": "2019-03-06T13:10:23.766Z", + "creation_time": "2019-10-01T16:25:34.093Z", "translation_project": 1, "submitter": 6, "suggestion": null, @@ -14673,7 +14665,7 @@ "model": "pootle_statistics.submission", "pk": 54, "fields": { - "creation_time": "2019-04-03T13:10:23.766Z", + "creation_time": "2019-10-31T16:25:34.093Z", "translation_project": 1, "submitter": 6, "suggestion": null, @@ -14692,7 +14684,7 @@ "model": "pootle_statistics.submission", "pk": 55, "fields": { - "creation_time": "2019-03-06T13:10:23.766Z", + "creation_time": "2019-10-01T16:25:34.093Z", "translation_project": 1, "submitter": 6, "suggestion": null, @@ -14711,7 +14703,7 @@ "model": "pootle_statistics.submission", "pk": 56, "fields": { - "creation_time": "2019-04-03T13:10:23.766Z", + "creation_time": "2019-10-31T16:25:34.093Z", "translation_project": 1, "submitter": 6, "suggestion": null, @@ -14730,7 +14722,7 @@ "model": "pootle_statistics.submission", "pk": 57, "fields": { - "creation_time": "2019-03-06T13:10:23.766Z", + "creation_time": "2019-10-01T16:25:34.093Z", "translation_project": 1, "submitter": 6, "suggestion": null, @@ -14749,7 +14741,7 @@ "model": "pootle_statistics.submission", "pk": 58, "fields": { - "creation_time": "2019-04-03T13:10:23.766Z", + "creation_time": "2019-10-31T16:25:34.093Z", "translation_project": 1, "submitter": 6, "suggestion": null, @@ -14768,7 +14760,7 @@ "model": "pootle_statistics.submission", "pk": 59, "fields": { - "creation_time": "2019-03-06T13:10:23.766Z", + "creation_time": "2019-10-01T16:25:34.093Z", "translation_project": 2, "submitter": 6, "suggestion": null, @@ -14787,7 +14779,7 @@ "model": "pootle_statistics.submission", "pk": 60, "fields": { - "creation_time": "2019-04-03T13:10:23.766Z", + "creation_time": "2019-10-31T16:25:34.093Z", "translation_project": 2, "submitter": 6, "suggestion": null, @@ -14806,7 +14798,7 @@ "model": "pootle_statistics.submission", "pk": 61, "fields": { - "creation_time": "2019-03-06T13:10:23.766Z", + "creation_time": "2019-10-01T16:25:34.093Z", "translation_project": 2, "submitter": 6, "suggestion": null, @@ -14825,7 +14817,7 @@ "model": "pootle_statistics.submission", "pk": 62, "fields": { - "creation_time": "2019-04-03T13:10:23.766Z", + "creation_time": "2019-10-31T16:25:34.093Z", "translation_project": 2, "submitter": 6, "suggestion": null, @@ -14844,7 +14836,7 @@ "model": "pootle_statistics.submission", "pk": 63, "fields": { - "creation_time": "2019-03-06T13:10:23.766Z", + "creation_time": "2019-10-01T16:25:34.093Z", "translation_project": 2, "submitter": 6, "suggestion": null, @@ -14863,7 +14855,7 @@ "model": "pootle_statistics.submission", "pk": 64, "fields": { - "creation_time": "2019-04-03T13:10:23.766Z", + "creation_time": "2019-10-31T16:25:34.093Z", "translation_project": 2, "submitter": 6, "suggestion": null, @@ -14882,7 +14874,7 @@ "model": "pootle_statistics.submission", "pk": 65, "fields": { - "creation_time": "2019-03-06T13:10:23.766Z", + "creation_time": "2019-10-01T16:25:34.093Z", "translation_project": 3, "submitter": 6, "suggestion": null, @@ -14901,7 +14893,7 @@ "model": "pootle_statistics.submission", "pk": 66, "fields": { - "creation_time": "2019-04-03T13:10:23.766Z", + "creation_time": "2019-10-31T16:25:34.093Z", "translation_project": 3, "submitter": 6, "suggestion": null, @@ -14920,7 +14912,7 @@ "model": "pootle_statistics.submission", "pk": 67, "fields": { - "creation_time": "2019-03-06T13:10:23.766Z", + "creation_time": "2019-10-01T16:25:34.093Z", "translation_project": 3, "submitter": 6, "suggestion": null, @@ -14939,7 +14931,7 @@ "model": "pootle_statistics.submission", "pk": 68, "fields": { - "creation_time": "2019-04-03T13:10:23.766Z", + "creation_time": "2019-10-31T16:25:34.093Z", "translation_project": 3, "submitter": 6, "suggestion": null, @@ -14958,7 +14950,7 @@ "model": "pootle_statistics.submission", "pk": 69, "fields": { - "creation_time": "2019-03-06T13:10:23.766Z", + "creation_time": "2019-10-01T16:25:34.093Z", "translation_project": 3, "submitter": 6, "suggestion": null, @@ -14977,7 +14969,7 @@ "model": "pootle_statistics.submission", "pk": 70, "fields": { - "creation_time": "2019-04-03T13:10:23.766Z", + "creation_time": "2019-10-31T16:25:34.093Z", "translation_project": 3, "submitter": 6, "suggestion": null, @@ -14996,7 +14988,7 @@ "model": "pootle_statistics.submission", "pk": 71, "fields": { - "creation_time": "2019-03-06T13:10:23.766Z", + "creation_time": "2019-10-01T16:25:34.093Z", "translation_project": 4, "submitter": 6, "suggestion": null, @@ -15015,7 +15007,7 @@ "model": "pootle_statistics.submission", "pk": 72, "fields": { - "creation_time": "2019-04-03T13:10:23.766Z", + "creation_time": "2019-10-31T16:25:34.093Z", "translation_project": 4, "submitter": 6, "suggestion": null, @@ -15034,7 +15026,7 @@ "model": "pootle_statistics.submission", "pk": 73, "fields": { - "creation_time": "2019-03-06T13:10:23.766Z", + "creation_time": "2019-10-01T16:25:34.093Z", "translation_project": 4, "submitter": 6, "suggestion": null, @@ -15053,7 +15045,7 @@ "model": "pootle_statistics.submission", "pk": 74, "fields": { - "creation_time": "2019-04-03T13:10:23.766Z", + "creation_time": "2019-10-31T16:25:34.093Z", "translation_project": 4, "submitter": 6, "suggestion": null, @@ -15072,7 +15064,7 @@ "model": "pootle_statistics.submission", "pk": 75, "fields": { - "creation_time": "2019-03-06T13:10:23.766Z", + "creation_time": "2019-10-01T16:25:34.093Z", "translation_project": 4, "submitter": 6, "suggestion": null, @@ -15091,7 +15083,7 @@ "model": "pootle_statistics.submission", "pk": 76, "fields": { - "creation_time": "2019-04-03T13:10:23.766Z", + "creation_time": "2019-10-31T16:25:34.093Z", "translation_project": 4, "submitter": 6, "suggestion": null, @@ -15110,7 +15102,7 @@ "model": "pootle_statistics.submission", "pk": 77, "fields": { - "creation_time": "2019-03-06T13:10:23.766Z", + "creation_time": "2019-10-01T16:25:34.093Z", "translation_project": 5, "submitter": 6, "suggestion": null, @@ -15129,7 +15121,7 @@ "model": "pootle_statistics.submission", "pk": 78, "fields": { - "creation_time": "2019-04-03T13:10:23.766Z", + "creation_time": "2019-10-31T16:25:34.093Z", "translation_project": 5, "submitter": 6, "suggestion": null, @@ -15148,7 +15140,7 @@ "model": "pootle_statistics.submission", "pk": 79, "fields": { - "creation_time": "2019-03-06T13:10:23.766Z", + "creation_time": "2019-10-01T16:25:34.093Z", "translation_project": 5, "submitter": 6, "suggestion": null, @@ -15167,7 +15159,7 @@ "model": "pootle_statistics.submission", "pk": 80, "fields": { - "creation_time": "2019-04-03T13:10:23.766Z", + "creation_time": "2019-10-31T16:25:34.093Z", "translation_project": 5, "submitter": 6, "suggestion": null, @@ -15186,7 +15178,7 @@ "model": "pootle_statistics.submission", "pk": 81, "fields": { - "creation_time": "2019-03-06T13:10:23.766Z", + "creation_time": "2019-10-01T16:25:34.093Z", "translation_project": 5, "submitter": 6, "suggestion": null, @@ -15205,7 +15197,7 @@ "model": "pootle_statistics.submission", "pk": 82, "fields": { - "creation_time": "2019-04-03T13:10:23.766Z", + "creation_time": "2019-10-31T16:25:34.093Z", "translation_project": 5, "submitter": 6, "suggestion": null, @@ -15224,7 +15216,7 @@ "model": "pootle_statistics.submission", "pk": 83, "fields": { - "creation_time": "2019-02-03T13:10:23.766Z", + "creation_time": "2019-08-31T16:25:34.093Z", "translation_project": 5, "submitter": 3, "suggestion": 1, @@ -15243,7 +15235,7 @@ "model": "pootle_statistics.submission", "pk": 84, "fields": { - "creation_time": "2019-02-10T13:10:23.766Z", + "creation_time": "2019-09-07T16:25:34.093Z", "translation_project": 5, "submitter": 1, "suggestion": 1, @@ -15262,7 +15254,7 @@ "model": "pootle_statistics.submission", "pk": 85, "fields": { - "creation_time": "2019-02-17T13:10:23.766Z", + "creation_time": "2019-09-14T16:25:34.093Z", "translation_project": 5, "submitter": 4, "suggestion": 2, @@ -15281,7 +15273,7 @@ "model": "pootle_statistics.submission", "pk": 86, "fields": { - "creation_time": "2019-03-06T13:10:23.766Z", + "creation_time": "2019-10-01T16:25:34.093Z", "translation_project": 5, "submitter": 3, "suggestion": 3, @@ -15300,7 +15292,7 @@ "model": "pootle_statistics.submission", "pk": 87, "fields": { - "creation_time": "2019-03-13T13:10:23.766Z", + "creation_time": "2019-10-08T16:25:34.093Z", "translation_project": 5, "submitter": 1, "suggestion": 3, @@ -15319,7 +15311,7 @@ "model": "pootle_statistics.submission", "pk": 88, "fields": { - "creation_time": "2019-03-20T13:10:23.766Z", + "creation_time": "2019-10-15T16:25:34.093Z", "translation_project": 5, "submitter": 4, "suggestion": 4, @@ -15338,7 +15330,7 @@ "model": "pootle_statistics.submission", "pk": 89, "fields": { - "creation_time": "2020-01-10T13:10:24.032Z", + "creation_time": "2020-08-07T16:25:34Z", "translation_project": 5, "submitter": 3, "suggestion": null, @@ -15357,7 +15349,7 @@ "model": "pootle_statistics.submission", "pk": 90, "fields": { - "creation_time": "2019-05-04T13:10:23.766Z", + "creation_time": "2019-12-01T16:25:34.093Z", "translation_project": 5, "submitter": 3, "suggestion": 5, @@ -15376,7 +15368,7 @@ "model": "pootle_statistics.submission", "pk": 91, "fields": { - "creation_time": "2019-05-11T13:10:23.766Z", + "creation_time": "2019-12-08T16:25:34.093Z", "translation_project": 5, "submitter": 1, "suggestion": 5, @@ -15395,7 +15387,7 @@ "model": "pootle_statistics.submission", "pk": 92, "fields": { - "creation_time": "2019-05-18T13:10:23.766Z", + "creation_time": "2019-12-15T16:25:34.093Z", "translation_project": 5, "submitter": 4, "suggestion": 6, @@ -15414,7 +15406,7 @@ "model": "pootle_statistics.submission", "pk": 93, "fields": { - "creation_time": "2019-04-03T13:10:23.766Z", + "creation_time": "2019-10-31T16:25:34.093Z", "translation_project": 5, "submitter": 3, "suggestion": 7, @@ -15433,7 +15425,7 @@ "model": "pootle_statistics.submission", "pk": 94, "fields": { - "creation_time": "2019-04-10T13:10:23.766Z", + "creation_time": "2019-11-07T16:25:34.093Z", "translation_project": 5, "submitter": 1, "suggestion": null, @@ -15452,7 +15444,7 @@ "model": "pootle_statistics.submission", "pk": 95, "fields": { - "creation_time": "2019-04-10T13:10:23.766Z", + "creation_time": "2019-11-07T16:25:34.093Z", "translation_project": 5, "submitter": 1, "suggestion": 7, @@ -15471,7 +15463,7 @@ "model": "pootle_statistics.submission", "pk": 96, "fields": { - "creation_time": "2019-04-17T13:10:23.766Z", + "creation_time": "2019-11-14T16:25:34.093Z", "translation_project": 5, "submitter": 4, "suggestion": 8, @@ -15490,7 +15482,7 @@ "model": "pootle_statistics.submission", "pk": 97, "fields": { - "creation_time": "2019-04-03T13:10:23.766Z", + "creation_time": "2019-10-31T16:25:34.093Z", "translation_project": 5, "submitter": 3, "suggestion": 9, @@ -15509,7 +15501,7 @@ "model": "pootle_statistics.submission", "pk": 98, "fields": { - "creation_time": "2019-04-10T13:10:23.766Z", + "creation_time": "2019-11-07T16:25:34.093Z", "translation_project": 5, "submitter": 1, "suggestion": null, @@ -15528,7 +15520,7 @@ "model": "pootle_statistics.submission", "pk": 99, "fields": { - "creation_time": "2019-04-10T13:10:23.766Z", + "creation_time": "2019-11-07T16:25:34.093Z", "translation_project": 5, "submitter": 1, "suggestion": 9, @@ -15547,7 +15539,7 @@ "model": "pootle_statistics.submission", "pk": 100, "fields": { - "creation_time": "2019-04-17T13:10:23.766Z", + "creation_time": "2019-11-14T16:25:34.093Z", "translation_project": 5, "submitter": 4, "suggestion": 10, @@ -15566,7 +15558,7 @@ "model": "pootle_statistics.submission", "pk": 101, "fields": { - "creation_time": "2019-02-03T13:10:23.766Z", + "creation_time": "2019-08-31T16:25:34.093Z", "translation_project": 5, "submitter": 3, "suggestion": 11, @@ -15585,7 +15577,7 @@ "model": "pootle_statistics.submission", "pk": 102, "fields": { - "creation_time": "2019-02-10T13:10:23.766Z", + "creation_time": "2019-09-07T16:25:34.093Z", "translation_project": 5, "submitter": 1, "suggestion": 11, @@ -15604,7 +15596,7 @@ "model": "pootle_statistics.submission", "pk": 103, "fields": { - "creation_time": "2019-02-17T13:10:23.766Z", + "creation_time": "2019-09-14T16:25:34.093Z", "translation_project": 5, "submitter": 4, "suggestion": 12, @@ -15623,7 +15615,7 @@ "model": "pootle_statistics.submission", "pk": 104, "fields": { - "creation_time": "2019-03-06T13:10:23.766Z", + "creation_time": "2019-10-01T16:25:34.093Z", "translation_project": 5, "submitter": 3, "suggestion": 13, @@ -15642,7 +15634,7 @@ "model": "pootle_statistics.submission", "pk": 105, "fields": { - "creation_time": "2019-03-13T13:10:23.766Z", + "creation_time": "2019-10-08T16:25:34.093Z", "translation_project": 5, "submitter": 1, "suggestion": 13, @@ -15661,7 +15653,7 @@ "model": "pootle_statistics.submission", "pk": 106, "fields": { - "creation_time": "2019-03-20T13:10:23.766Z", + "creation_time": "2019-10-15T16:25:34.093Z", "translation_project": 5, "submitter": 4, "suggestion": 14, @@ -15680,7 +15672,7 @@ "model": "pootle_statistics.submission", "pk": 107, "fields": { - "creation_time": "2020-01-10T13:10:24.552Z", + "creation_time": "2020-08-07T16:25:34Z", "translation_project": 5, "submitter": 3, "suggestion": null, @@ -15699,7 +15691,7 @@ "model": "pootle_statistics.submission", "pk": 108, "fields": { - "creation_time": "2019-05-04T13:10:23.766Z", + "creation_time": "2019-12-01T16:25:34.093Z", "translation_project": 5, "submitter": 3, "suggestion": 15, @@ -15718,7 +15710,7 @@ "model": "pootle_statistics.submission", "pk": 109, "fields": { - "creation_time": "2019-05-11T13:10:23.766Z", + "creation_time": "2019-12-08T16:25:34.093Z", "translation_project": 5, "submitter": 1, "suggestion": 15, @@ -15737,7 +15729,7 @@ "model": "pootle_statistics.submission", "pk": 110, "fields": { - "creation_time": "2019-05-18T13:10:23.766Z", + "creation_time": "2019-12-15T16:25:34.093Z", "translation_project": 5, "submitter": 4, "suggestion": 16, @@ -15756,7 +15748,7 @@ "model": "pootle_statistics.submission", "pk": 111, "fields": { - "creation_time": "2019-05-04T13:10:23.766Z", + "creation_time": "2019-12-01T16:25:34.093Z", "translation_project": 5, "submitter": 3, "suggestion": 17, @@ -15775,7 +15767,7 @@ "model": "pootle_statistics.submission", "pk": 112, "fields": { - "creation_time": "2019-05-11T13:10:23.766Z", + "creation_time": "2019-12-08T16:25:34.093Z", "translation_project": 5, "submitter": 1, "suggestion": 17, @@ -15794,7 +15786,7 @@ "model": "pootle_statistics.submission", "pk": 113, "fields": { - "creation_time": "2019-05-18T13:10:23.766Z", + "creation_time": "2019-12-15T16:25:34.093Z", "translation_project": 5, "submitter": 4, "suggestion": 18, @@ -15813,7 +15805,7 @@ "model": "pootle_statistics.submission", "pk": 114, "fields": { - "creation_time": "2019-02-03T13:10:23.766Z", + "creation_time": "2019-08-31T16:25:34.093Z", "translation_project": 5, "submitter": 3, "suggestion": 19, @@ -15832,7 +15824,7 @@ "model": "pootle_statistics.submission", "pk": 115, "fields": { - "creation_time": "2019-02-10T13:10:23.766Z", + "creation_time": "2019-09-07T16:25:34.093Z", "translation_project": 5, "submitter": 1, "suggestion": 19, @@ -15851,7 +15843,7 @@ "model": "pootle_statistics.submission", "pk": 116, "fields": { - "creation_time": "2019-02-17T13:10:23.766Z", + "creation_time": "2019-09-14T16:25:34.093Z", "translation_project": 5, "submitter": 4, "suggestion": 20, @@ -15870,7 +15862,7 @@ "model": "pootle_statistics.submission", "pk": 117, "fields": { - "creation_time": "2019-04-03T13:10:23.766Z", + "creation_time": "2019-10-31T16:25:34.093Z", "translation_project": 5, "submitter": 3, "suggestion": 21, @@ -15889,7 +15881,7 @@ "model": "pootle_statistics.submission", "pk": 118, "fields": { - "creation_time": "2019-04-10T13:10:23.766Z", + "creation_time": "2019-11-07T16:25:34.093Z", "translation_project": 5, "submitter": 1, "suggestion": null, @@ -15908,7 +15900,7 @@ "model": "pootle_statistics.submission", "pk": 119, "fields": { - "creation_time": "2019-04-10T13:10:23.766Z", + "creation_time": "2019-11-07T16:25:34.093Z", "translation_project": 5, "submitter": 1, "suggestion": 21, @@ -15927,7 +15919,7 @@ "model": "pootle_statistics.submission", "pk": 120, "fields": { - "creation_time": "2019-04-17T13:10:23.766Z", + "creation_time": "2019-11-14T16:25:34.093Z", "translation_project": 5, "submitter": 4, "suggestion": 22, @@ -15946,7 +15938,7 @@ "model": "pootle_statistics.submission", "pk": 121, "fields": { - "creation_time": "2019-03-06T13:10:23.766Z", + "creation_time": "2019-10-01T16:25:34.093Z", "translation_project": 5, "submitter": 3, "suggestion": 23, @@ -15965,7 +15957,7 @@ "model": "pootle_statistics.submission", "pk": 122, "fields": { - "creation_time": "2019-03-13T13:10:23.766Z", + "creation_time": "2019-10-08T16:25:34.093Z", "translation_project": 5, "submitter": 1, "suggestion": 23, @@ -15984,7 +15976,7 @@ "model": "pootle_statistics.submission", "pk": 123, "fields": { - "creation_time": "2019-03-20T13:10:23.766Z", + "creation_time": "2019-10-15T16:25:34.093Z", "translation_project": 5, "submitter": 4, "suggestion": 24, @@ -16003,7 +15995,7 @@ "model": "pootle_statistics.submission", "pk": 124, "fields": { - "creation_time": "2020-01-10T13:10:25.285Z", + "creation_time": "2020-08-07T16:25:34Z", "translation_project": 5, "submitter": 3, "suggestion": null, @@ -16022,7 +16014,7 @@ "model": "pootle_statistics.submission", "pk": 125, "fields": { - "creation_time": "2019-03-06T13:10:23.766Z", + "creation_time": "2019-10-01T16:25:34.093Z", "translation_project": 5, "submitter": 3, "suggestion": 25, @@ -16041,7 +16033,7 @@ "model": "pootle_statistics.submission", "pk": 126, "fields": { - "creation_time": "2019-03-13T13:10:23.766Z", + "creation_time": "2019-10-08T16:25:34.093Z", "translation_project": 5, "submitter": 1, "suggestion": 25, @@ -16060,7 +16052,7 @@ "model": "pootle_statistics.submission", "pk": 127, "fields": { - "creation_time": "2019-03-20T13:10:23.766Z", + "creation_time": "2019-10-15T16:25:34.093Z", "translation_project": 5, "submitter": 4, "suggestion": 26, @@ -16079,7 +16071,7 @@ "model": "pootle_statistics.submission", "pk": 128, "fields": { - "creation_time": "2020-01-10T13:10:25.440Z", + "creation_time": "2020-08-07T16:25:34Z", "translation_project": 5, "submitter": 3, "suggestion": null, @@ -16098,7 +16090,7 @@ "model": "pootle_statistics.submission", "pk": 129, "fields": { - "creation_time": "2019-02-03T13:10:23.766Z", + "creation_time": "2019-08-31T16:25:34.093Z", "translation_project": 5, "submitter": 3, "suggestion": 27, @@ -16117,7 +16109,7 @@ "model": "pootle_statistics.submission", "pk": 130, "fields": { - "creation_time": "2019-02-10T13:10:23.766Z", + "creation_time": "2019-09-07T16:25:34.093Z", "translation_project": 5, "submitter": 1, "suggestion": 27, @@ -16136,7 +16128,7 @@ "model": "pootle_statistics.submission", "pk": 131, "fields": { - "creation_time": "2019-02-17T13:10:23.766Z", + "creation_time": "2019-09-14T16:25:34.093Z", "translation_project": 5, "submitter": 4, "suggestion": 28, @@ -16155,7 +16147,7 @@ "model": "pootle_statistics.submission", "pk": 132, "fields": { - "creation_time": "2019-05-04T13:10:23.766Z", + "creation_time": "2019-12-01T16:25:34.093Z", "translation_project": 5, "submitter": 3, "suggestion": 29, @@ -16174,7 +16166,7 @@ "model": "pootle_statistics.submission", "pk": 133, "fields": { - "creation_time": "2019-05-11T13:10:23.766Z", + "creation_time": "2019-12-08T16:25:34.093Z", "translation_project": 5, "submitter": 1, "suggestion": 29, @@ -16193,7 +16185,7 @@ "model": "pootle_statistics.submission", "pk": 134, "fields": { - "creation_time": "2019-05-18T13:10:23.766Z", + "creation_time": "2019-12-15T16:25:34.093Z", "translation_project": 5, "submitter": 4, "suggestion": 30, @@ -16212,7 +16204,7 @@ "model": "pootle_statistics.submission", "pk": 135, "fields": { - "creation_time": "2019-04-03T13:10:23.766Z", + "creation_time": "2019-10-31T16:25:34.093Z", "translation_project": 5, "submitter": 3, "suggestion": 31, @@ -16231,7 +16223,7 @@ "model": "pootle_statistics.submission", "pk": 136, "fields": { - "creation_time": "2019-04-10T13:10:23.766Z", + "creation_time": "2019-11-07T16:25:34.093Z", "translation_project": 5, "submitter": 1, "suggestion": null, @@ -16250,7 +16242,7 @@ "model": "pootle_statistics.submission", "pk": 137, "fields": { - "creation_time": "2019-04-10T13:10:23.766Z", + "creation_time": "2019-11-07T16:25:34.093Z", "translation_project": 5, "submitter": 1, "suggestion": 31, @@ -16269,7 +16261,7 @@ "model": "pootle_statistics.submission", "pk": 138, "fields": { - "creation_time": "2019-04-17T13:10:23.766Z", + "creation_time": "2019-11-14T16:25:34.093Z", "translation_project": 5, "submitter": 4, "suggestion": 32, @@ -16288,7 +16280,7 @@ "model": "pootle_statistics.submission", "pk": 139, "fields": { - "creation_time": "2019-05-04T13:10:23.766Z", + "creation_time": "2019-12-01T16:25:34.093Z", "translation_project": 5, "submitter": 3, "suggestion": 33, @@ -16307,7 +16299,7 @@ "model": "pootle_statistics.submission", "pk": 140, "fields": { - "creation_time": "2019-05-11T13:10:23.766Z", + "creation_time": "2019-12-08T16:25:34.093Z", "translation_project": 5, "submitter": 1, "suggestion": 33, @@ -16326,7 +16318,7 @@ "model": "pootle_statistics.submission", "pk": 141, "fields": { - "creation_time": "2019-05-18T13:10:23.766Z", + "creation_time": "2019-12-15T16:25:34.093Z", "translation_project": 5, "submitter": 4, "suggestion": 34, @@ -16345,7 +16337,7 @@ "model": "pootle_statistics.submission", "pk": 142, "fields": { - "creation_time": "2019-02-03T13:10:23.766Z", + "creation_time": "2019-08-31T16:25:34.093Z", "translation_project": 5, "submitter": 3, "suggestion": 35, @@ -16364,7 +16356,7 @@ "model": "pootle_statistics.submission", "pk": 143, "fields": { - "creation_time": "2019-02-10T13:10:23.766Z", + "creation_time": "2019-09-07T16:25:34.093Z", "translation_project": 5, "submitter": 1, "suggestion": 35, @@ -16383,7 +16375,7 @@ "model": "pootle_statistics.submission", "pk": 144, "fields": { - "creation_time": "2019-02-17T13:10:23.766Z", + "creation_time": "2019-09-14T16:25:34.093Z", "translation_project": 5, "submitter": 4, "suggestion": 36, @@ -16402,7 +16394,7 @@ "model": "pootle_statistics.submission", "pk": 145, "fields": { - "creation_time": "2019-04-03T13:10:23.766Z", + "creation_time": "2019-10-31T16:25:34.093Z", "translation_project": 5, "submitter": 3, "suggestion": 37, @@ -16421,7 +16413,7 @@ "model": "pootle_statistics.submission", "pk": 146, "fields": { - "creation_time": "2019-04-10T13:10:23.766Z", + "creation_time": "2019-11-07T16:25:34.093Z", "translation_project": 5, "submitter": 1, "suggestion": null, @@ -16440,7 +16432,7 @@ "model": "pootle_statistics.submission", "pk": 147, "fields": { - "creation_time": "2019-04-10T13:10:23.766Z", + "creation_time": "2019-11-07T16:25:34.093Z", "translation_project": 5, "submitter": 1, "suggestion": 37, @@ -16459,7 +16451,7 @@ "model": "pootle_statistics.submission", "pk": 148, "fields": { - "creation_time": "2019-04-17T13:10:23.766Z", + "creation_time": "2019-11-14T16:25:34.093Z", "translation_project": 5, "submitter": 4, "suggestion": 38, @@ -16478,7 +16470,7 @@ "model": "pootle_statistics.submission", "pk": 149, "fields": { - "creation_time": "2019-03-06T13:10:23.766Z", + "creation_time": "2019-10-01T16:25:34.093Z", "translation_project": 5, "submitter": 3, "suggestion": 39, @@ -16497,7 +16489,7 @@ "model": "pootle_statistics.submission", "pk": 150, "fields": { - "creation_time": "2019-03-13T13:10:23.766Z", + "creation_time": "2019-10-08T16:25:34.093Z", "translation_project": 5, "submitter": 1, "suggestion": 39, @@ -16516,7 +16508,7 @@ "model": "pootle_statistics.submission", "pk": 151, "fields": { - "creation_time": "2019-03-20T13:10:23.766Z", + "creation_time": "2019-10-15T16:25:34.093Z", "translation_project": 5, "submitter": 4, "suggestion": 40, @@ -16535,7 +16527,7 @@ "model": "pootle_statistics.submission", "pk": 152, "fields": { - "creation_time": "2020-01-10T13:10:26.144Z", + "creation_time": "2020-08-07T16:25:34Z", "translation_project": 5, "submitter": 3, "suggestion": null, @@ -16554,7 +16546,7 @@ "model": "pootle_statistics.submission", "pk": 153, "fields": { - "creation_time": "2019-09-03T13:10:23.766Z", + "creation_time": "2020-03-31T16:25:34.093Z", "translation_project": 1, "submitter": 3, "suggestion": 41, @@ -16573,7 +16565,7 @@ "model": "pootle_statistics.submission", "pk": 154, "fields": { - "creation_time": "2019-09-10T13:10:23.766Z", + "creation_time": "2020-04-07T16:25:34.093Z", "translation_project": 1, "submitter": 1, "suggestion": 41, @@ -16592,7 +16584,7 @@ "model": "pootle_statistics.submission", "pk": 155, "fields": { - "creation_time": "2019-09-17T13:10:23.766Z", + "creation_time": "2020-04-14T16:25:34.093Z", "translation_project": 1, "submitter": 4, "suggestion": 42, @@ -16611,7 +16603,7 @@ "model": "pootle_statistics.submission", "pk": 156, "fields": { - "creation_time": "2019-07-04T13:10:23.766Z", + "creation_time": "2020-01-31T16:25:34.093Z", "translation_project": 1, "submitter": 3, "suggestion": 43, @@ -16630,7 +16622,7 @@ "model": "pootle_statistics.submission", "pk": 157, "fields": { - "creation_time": "2019-07-11T13:10:23.766Z", + "creation_time": "2020-02-07T16:25:34.093Z", "translation_project": 1, "submitter": 1, "suggestion": null, @@ -16649,7 +16641,7 @@ "model": "pootle_statistics.submission", "pk": 158, "fields": { - "creation_time": "2019-07-11T13:10:23.766Z", + "creation_time": "2020-02-07T16:25:34.093Z", "translation_project": 1, "submitter": 1, "suggestion": 43, @@ -16668,7 +16660,7 @@ "model": "pootle_statistics.submission", "pk": 159, "fields": { - "creation_time": "2019-07-18T13:10:23.766Z", + "creation_time": "2020-02-14T16:25:34.093Z", "translation_project": 1, "submitter": 4, "suggestion": 44, @@ -16687,7 +16679,7 @@ "model": "pootle_statistics.submission", "pk": 160, "fields": { - "creation_time": "2019-02-03T13:10:23.766Z", + "creation_time": "2019-08-31T16:25:34.093Z", "translation_project": 1, "submitter": 3, "suggestion": 45, @@ -16706,7 +16698,7 @@ "model": "pootle_statistics.submission", "pk": 161, "fields": { - "creation_time": "2019-02-10T13:10:23.766Z", + "creation_time": "2019-09-07T16:25:34.093Z", "translation_project": 1, "submitter": 1, "suggestion": 45, @@ -16725,7 +16717,7 @@ "model": "pootle_statistics.submission", "pk": 162, "fields": { - "creation_time": "2019-02-17T13:10:23.766Z", + "creation_time": "2019-09-14T16:25:34.093Z", "translation_project": 1, "submitter": 4, "suggestion": 46, @@ -16744,7 +16736,7 @@ "model": "pootle_statistics.submission", "pk": 163, "fields": { - "creation_time": "2019-05-04T13:10:23.766Z", + "creation_time": "2019-12-01T16:25:34.093Z", "translation_project": 1, "submitter": 3, "suggestion": 47, @@ -16763,7 +16755,7 @@ "model": "pootle_statistics.submission", "pk": 164, "fields": { - "creation_time": "2019-05-11T13:10:23.766Z", + "creation_time": "2019-12-08T16:25:34.093Z", "translation_project": 1, "submitter": 1, "suggestion": 47, @@ -16782,7 +16774,7 @@ "model": "pootle_statistics.submission", "pk": 165, "fields": { - "creation_time": "2019-05-18T13:10:23.766Z", + "creation_time": "2019-12-15T16:25:34.093Z", "translation_project": 1, "submitter": 4, "suggestion": 48, @@ -16801,7 +16793,7 @@ "model": "pootle_statistics.submission", "pk": 166, "fields": { - "creation_time": "2020-01-10T13:10:26.606Z", + "creation_time": "2020-08-07T16:25:34Z", "translation_project": 1, "submitter": 3, "suggestion": null, @@ -16820,7 +16812,7 @@ "model": "pootle_statistics.submission", "pk": 167, "fields": { - "creation_time": "2019-06-03T13:10:23.766Z", + "creation_time": "2019-12-31T16:25:34.093Z", "translation_project": 1, "submitter": 3, "suggestion": 49, @@ -16839,7 +16831,7 @@ "model": "pootle_statistics.submission", "pk": 168, "fields": { - "creation_time": "2019-06-10T13:10:23.766Z", + "creation_time": "2020-01-07T16:25:34.093Z", "translation_project": 1, "submitter": 1, "suggestion": null, @@ -16858,7 +16850,7 @@ "model": "pootle_statistics.submission", "pk": 169, "fields": { - "creation_time": "2019-06-10T13:10:23.766Z", + "creation_time": "2020-01-07T16:25:34.093Z", "translation_project": 1, "submitter": 1, "suggestion": 49, @@ -16877,7 +16869,7 @@ "model": "pootle_statistics.submission", "pk": 170, "fields": { - "creation_time": "2019-06-17T13:10:23.766Z", + "creation_time": "2020-01-14T16:25:34.093Z", "translation_project": 1, "submitter": 4, "suggestion": 50, @@ -16896,7 +16888,7 @@ "model": "pootle_statistics.submission", "pk": 171, "fields": { - "creation_time": "2019-04-03T13:10:23.766Z", + "creation_time": "2019-10-31T16:25:34.093Z", "translation_project": 1, "submitter": 3, "suggestion": 51, @@ -16915,7 +16907,7 @@ "model": "pootle_statistics.submission", "pk": 172, "fields": { - "creation_time": "2019-04-10T13:10:23.766Z", + "creation_time": "2019-11-07T16:25:34.093Z", "translation_project": 1, "submitter": 1, "suggestion": 51, @@ -16934,7 +16926,7 @@ "model": "pootle_statistics.submission", "pk": 173, "fields": { - "creation_time": "2019-04-17T13:10:23.766Z", + "creation_time": "2019-11-14T16:25:34.093Z", "translation_project": 1, "submitter": 4, "suggestion": 52, @@ -16953,7 +16945,7 @@ "model": "pootle_statistics.submission", "pk": 174, "fields": { - "creation_time": "2020-01-10T13:10:26.939Z", + "creation_time": "2020-08-07T16:25:34Z", "translation_project": 1, "submitter": 3, "suggestion": null, @@ -16972,7 +16964,7 @@ "model": "pootle_statistics.submission", "pk": 175, "fields": { - "creation_time": "2019-08-03T13:10:23.766Z", + "creation_time": "2020-03-02T16:25:34.093Z", "translation_project": 1, "submitter": 3, "suggestion": 53, @@ -16991,7 +16983,7 @@ "model": "pootle_statistics.submission", "pk": 176, "fields": { - "creation_time": "2019-08-10T13:10:23.766Z", + "creation_time": "2020-03-09T16:25:34.093Z", "translation_project": 1, "submitter": 1, "suggestion": 53, @@ -17010,7 +17002,7 @@ "model": "pootle_statistics.submission", "pk": 177, "fields": { - "creation_time": "2019-08-17T13:10:23.766Z", + "creation_time": "2020-03-16T16:25:34.093Z", "translation_project": 1, "submitter": 4, "suggestion": 54, @@ -17029,7 +17021,7 @@ "model": "pootle_statistics.submission", "pk": 178, "fields": { - "creation_time": "2019-03-06T13:10:23.766Z", + "creation_time": "2019-10-01T16:25:34.093Z", "translation_project": 1, "submitter": 3, "suggestion": 55, @@ -17048,7 +17040,7 @@ "model": "pootle_statistics.submission", "pk": 179, "fields": { - "creation_time": "2019-03-13T13:10:23.766Z", + "creation_time": "2019-10-08T16:25:34.093Z", "translation_project": 1, "submitter": 1, "suggestion": 55, @@ -17067,7 +17059,7 @@ "model": "pootle_statistics.submission", "pk": 180, "fields": { - "creation_time": "2019-03-20T13:10:23.766Z", + "creation_time": "2019-10-15T16:25:34.093Z", "translation_project": 1, "submitter": 4, "suggestion": 56, @@ -17086,7 +17078,7 @@ "model": "pootle_statistics.submission", "pk": 181, "fields": { - "creation_time": "2019-06-03T13:10:23.766Z", + "creation_time": "2019-12-31T16:25:34.093Z", "translation_project": 1, "submitter": 3, "suggestion": 57, @@ -17105,7 +17097,7 @@ "model": "pootle_statistics.submission", "pk": 182, "fields": { - "creation_time": "2019-06-10T13:10:23.766Z", + "creation_time": "2020-01-07T16:25:34.093Z", "translation_project": 1, "submitter": 1, "suggestion": null, @@ -17124,7 +17116,7 @@ "model": "pootle_statistics.submission", "pk": 183, "fields": { - "creation_time": "2019-06-10T13:10:23.766Z", + "creation_time": "2020-01-07T16:25:34.093Z", "translation_project": 1, "submitter": 1, "suggestion": 57, @@ -17143,7 +17135,7 @@ "model": "pootle_statistics.submission", "pk": 184, "fields": { - "creation_time": "2019-06-17T13:10:23.766Z", + "creation_time": "2020-01-14T16:25:34.093Z", "translation_project": 1, "submitter": 4, "suggestion": 58, @@ -17162,7 +17154,7 @@ "model": "pootle_statistics.submission", "pk": 185, "fields": { - "creation_time": "2019-08-03T13:10:23.766Z", + "creation_time": "2020-03-02T16:25:34.093Z", "translation_project": 1, "submitter": 3, "suggestion": 59, @@ -17181,7 +17173,7 @@ "model": "pootle_statistics.submission", "pk": 186, "fields": { - "creation_time": "2019-08-10T13:10:23.766Z", + "creation_time": "2020-03-09T16:25:34.093Z", "translation_project": 1, "submitter": 1, "suggestion": 59, @@ -17200,7 +17192,7 @@ "model": "pootle_statistics.submission", "pk": 187, "fields": { - "creation_time": "2019-08-17T13:10:23.766Z", + "creation_time": "2020-03-16T16:25:34.093Z", "translation_project": 1, "submitter": 4, "suggestion": 60, @@ -17219,7 +17211,7 @@ "model": "pootle_statistics.submission", "pk": 188, "fields": { - "creation_time": "2019-03-06T13:10:23.766Z", + "creation_time": "2019-10-01T16:25:34.093Z", "translation_project": 1, "submitter": 3, "suggestion": 61, @@ -17238,7 +17230,7 @@ "model": "pootle_statistics.submission", "pk": 189, "fields": { - "creation_time": "2019-03-13T13:10:23.766Z", + "creation_time": "2019-10-08T16:25:34.093Z", "translation_project": 1, "submitter": 1, "suggestion": 61, @@ -17257,7 +17249,7 @@ "model": "pootle_statistics.submission", "pk": 190, "fields": { - "creation_time": "2019-03-20T13:10:23.766Z", + "creation_time": "2019-10-15T16:25:34.093Z", "translation_project": 1, "submitter": 4, "suggestion": 62, @@ -17276,7 +17268,7 @@ "model": "pootle_statistics.submission", "pk": 191, "fields": { - "creation_time": "2019-05-04T13:10:23.766Z", + "creation_time": "2019-12-01T16:25:34.093Z", "translation_project": 1, "submitter": 3, "suggestion": 63, @@ -17295,7 +17287,7 @@ "model": "pootle_statistics.submission", "pk": 192, "fields": { - "creation_time": "2019-05-11T13:10:23.766Z", + "creation_time": "2019-12-08T16:25:34.093Z", "translation_project": 1, "submitter": 1, "suggestion": 63, @@ -17314,7 +17306,7 @@ "model": "pootle_statistics.submission", "pk": 193, "fields": { - "creation_time": "2019-05-18T13:10:23.766Z", + "creation_time": "2019-12-15T16:25:34.093Z", "translation_project": 1, "submitter": 4, "suggestion": 64, @@ -17333,7 +17325,7 @@ "model": "pootle_statistics.submission", "pk": 194, "fields": { - "creation_time": "2020-01-10T13:10:27.481Z", + "creation_time": "2020-08-07T16:25:35Z", "translation_project": 1, "submitter": 3, "suggestion": null, @@ -17352,7 +17344,7 @@ "model": "pootle_statistics.submission", "pk": 195, "fields": { - "creation_time": "2019-04-03T13:10:23.766Z", + "creation_time": "2019-10-31T16:25:34.093Z", "translation_project": 1, "submitter": 3, "suggestion": 65, @@ -17371,7 +17363,7 @@ "model": "pootle_statistics.submission", "pk": 196, "fields": { - "creation_time": "2019-04-10T13:10:23.766Z", + "creation_time": "2019-11-07T16:25:34.093Z", "translation_project": 1, "submitter": 1, "suggestion": 65, @@ -17390,7 +17382,7 @@ "model": "pootle_statistics.submission", "pk": 197, "fields": { - "creation_time": "2019-04-17T13:10:23.766Z", + "creation_time": "2019-11-14T16:25:34.093Z", "translation_project": 1, "submitter": 4, "suggestion": 66, @@ -17409,7 +17401,7 @@ "model": "pootle_statistics.submission", "pk": 198, "fields": { - "creation_time": "2020-01-10T13:10:27.656Z", + "creation_time": "2020-08-07T16:25:35Z", "translation_project": 1, "submitter": 3, "suggestion": null, @@ -17428,7 +17420,7 @@ "model": "pootle_statistics.submission", "pk": 199, "fields": { - "creation_time": "2019-09-03T13:10:23.766Z", + "creation_time": "2020-03-31T16:25:34.093Z", "translation_project": 1, "submitter": 3, "suggestion": 67, @@ -17447,7 +17439,7 @@ "model": "pootle_statistics.submission", "pk": 200, "fields": { - "creation_time": "2019-09-10T13:10:23.766Z", + "creation_time": "2020-04-07T16:25:34.093Z", "translation_project": 1, "submitter": 1, "suggestion": 67, @@ -17466,7 +17458,7 @@ "model": "pootle_statistics.submission", "pk": 201, "fields": { - "creation_time": "2019-09-17T13:10:23.766Z", + "creation_time": "2020-04-14T16:25:34.093Z", "translation_project": 1, "submitter": 4, "suggestion": 68, @@ -17485,7 +17477,7 @@ "model": "pootle_statistics.submission", "pk": 202, "fields": { - "creation_time": "2019-02-03T13:10:23.766Z", + "creation_time": "2019-08-31T16:25:34.093Z", "translation_project": 1, "submitter": 3, "suggestion": 69, @@ -17504,7 +17496,7 @@ "model": "pootle_statistics.submission", "pk": 203, "fields": { - "creation_time": "2019-02-10T13:10:23.766Z", + "creation_time": "2019-09-07T16:25:34.093Z", "translation_project": 1, "submitter": 1, "suggestion": 69, @@ -17523,7 +17515,7 @@ "model": "pootle_statistics.submission", "pk": 204, "fields": { - "creation_time": "2019-02-17T13:10:23.766Z", + "creation_time": "2019-09-14T16:25:34.093Z", "translation_project": 1, "submitter": 4, "suggestion": 70, @@ -17542,7 +17534,7 @@ "model": "pootle_statistics.submission", "pk": 205, "fields": { - "creation_time": "2019-07-04T13:10:23.766Z", + "creation_time": "2020-01-31T16:25:34.093Z", "translation_project": 1, "submitter": 3, "suggestion": 71, @@ -17561,7 +17553,7 @@ "model": "pootle_statistics.submission", "pk": 206, "fields": { - "creation_time": "2019-07-11T13:10:23.766Z", + "creation_time": "2020-02-07T16:25:34.093Z", "translation_project": 1, "submitter": 1, "suggestion": null, @@ -17580,7 +17572,7 @@ "model": "pootle_statistics.submission", "pk": 207, "fields": { - "creation_time": "2019-07-11T13:10:23.766Z", + "creation_time": "2020-02-07T16:25:34.093Z", "translation_project": 1, "submitter": 1, "suggestion": 71, @@ -17599,7 +17591,7 @@ "model": "pootle_statistics.submission", "pk": 208, "fields": { - "creation_time": "2019-07-18T13:10:23.766Z", + "creation_time": "2020-02-14T16:25:34.093Z", "translation_project": 1, "submitter": 4, "suggestion": 72, @@ -17618,7 +17610,7 @@ "model": "pootle_statistics.submission", "pk": 209, "fields": { - "creation_time": "2019-02-03T13:10:23.766Z", + "creation_time": "2019-08-31T16:25:34.093Z", "translation_project": 1, "submitter": 3, "suggestion": 73, @@ -17637,7 +17629,7 @@ "model": "pootle_statistics.submission", "pk": 210, "fields": { - "creation_time": "2019-02-10T13:10:23.766Z", + "creation_time": "2019-09-07T16:25:34.093Z", "translation_project": 1, "submitter": 1, "suggestion": 73, @@ -17656,7 +17648,7 @@ "model": "pootle_statistics.submission", "pk": 211, "fields": { - "creation_time": "2019-02-17T13:10:23.766Z", + "creation_time": "2019-09-14T16:25:34.093Z", "translation_project": 1, "submitter": 4, "suggestion": 74, @@ -17675,7 +17667,7 @@ "model": "pootle_statistics.submission", "pk": 212, "fields": { - "creation_time": "2019-06-03T13:10:23.766Z", + "creation_time": "2019-12-31T16:25:34.093Z", "translation_project": 1, "submitter": 3, "suggestion": 75, @@ -17694,7 +17686,7 @@ "model": "pootle_statistics.submission", "pk": 213, "fields": { - "creation_time": "2019-06-10T13:10:23.766Z", + "creation_time": "2020-01-07T16:25:34.093Z", "translation_project": 1, "submitter": 1, "suggestion": null, @@ -17713,7 +17705,7 @@ "model": "pootle_statistics.submission", "pk": 214, "fields": { - "creation_time": "2019-06-10T13:10:23.766Z", + "creation_time": "2020-01-07T16:25:34.093Z", "translation_project": 1, "submitter": 1, "suggestion": 75, @@ -17732,7 +17724,7 @@ "model": "pootle_statistics.submission", "pk": 215, "fields": { - "creation_time": "2019-06-17T13:10:23.766Z", + "creation_time": "2020-01-14T16:25:34.093Z", "translation_project": 1, "submitter": 4, "suggestion": 76, @@ -17751,7 +17743,7 @@ "model": "pootle_statistics.submission", "pk": 216, "fields": { - "creation_time": "2019-08-03T13:10:23.766Z", + "creation_time": "2020-03-02T16:25:34.093Z", "translation_project": 1, "submitter": 3, "suggestion": 77, @@ -17770,7 +17762,7 @@ "model": "pootle_statistics.submission", "pk": 217, "fields": { - "creation_time": "2019-08-10T13:10:23.766Z", + "creation_time": "2020-03-09T16:25:34.093Z", "translation_project": 1, "submitter": 1, "suggestion": 77, @@ -17789,7 +17781,7 @@ "model": "pootle_statistics.submission", "pk": 218, "fields": { - "creation_time": "2019-08-17T13:10:23.766Z", + "creation_time": "2020-03-16T16:25:34.093Z", "translation_project": 1, "submitter": 4, "suggestion": 78, @@ -17808,7 +17800,7 @@ "model": "pootle_statistics.submission", "pk": 219, "fields": { - "creation_time": "2019-07-04T13:10:23.766Z", + "creation_time": "2020-01-31T16:25:34.093Z", "translation_project": 1, "submitter": 3, "suggestion": 79, @@ -17827,7 +17819,7 @@ "model": "pootle_statistics.submission", "pk": 220, "fields": { - "creation_time": "2019-07-11T13:10:23.766Z", + "creation_time": "2020-02-07T16:25:34.093Z", "translation_project": 1, "submitter": 1, "suggestion": null, @@ -17846,7 +17838,7 @@ "model": "pootle_statistics.submission", "pk": 221, "fields": { - "creation_time": "2019-07-11T13:10:23.766Z", + "creation_time": "2020-02-07T16:25:34.093Z", "translation_project": 1, "submitter": 1, "suggestion": 79, @@ -17865,7 +17857,7 @@ "model": "pootle_statistics.submission", "pk": 222, "fields": { - "creation_time": "2019-07-18T13:10:23.766Z", + "creation_time": "2020-02-14T16:25:34.093Z", "translation_project": 1, "submitter": 4, "suggestion": 80, @@ -17884,7 +17876,7 @@ "model": "pootle_statistics.submission", "pk": 223, "fields": { - "creation_time": "2019-03-06T13:10:23.766Z", + "creation_time": "2019-10-01T16:25:34.093Z", "translation_project": 1, "submitter": 3, "suggestion": 81, @@ -17903,7 +17895,7 @@ "model": "pootle_statistics.submission", "pk": 224, "fields": { - "creation_time": "2019-03-13T13:10:23.766Z", + "creation_time": "2019-10-08T16:25:34.093Z", "translation_project": 1, "submitter": 1, "suggestion": 81, @@ -17922,7 +17914,7 @@ "model": "pootle_statistics.submission", "pk": 225, "fields": { - "creation_time": "2019-03-20T13:10:23.766Z", + "creation_time": "2019-10-15T16:25:34.093Z", "translation_project": 1, "submitter": 4, "suggestion": 82, @@ -17941,7 +17933,7 @@ "model": "pootle_statistics.submission", "pk": 226, "fields": { - "creation_time": "2019-09-03T13:10:23.766Z", + "creation_time": "2020-03-31T16:25:34.093Z", "translation_project": 1, "submitter": 3, "suggestion": 83, @@ -17960,7 +17952,7 @@ "model": "pootle_statistics.submission", "pk": 227, "fields": { - "creation_time": "2019-09-10T13:10:23.766Z", + "creation_time": "2020-04-07T16:25:34.093Z", "translation_project": 1, "submitter": 1, "suggestion": 83, @@ -17979,7 +17971,7 @@ "model": "pootle_statistics.submission", "pk": 228, "fields": { - "creation_time": "2019-09-17T13:10:23.766Z", + "creation_time": "2020-04-14T16:25:34.093Z", "translation_project": 1, "submitter": 4, "suggestion": 84, @@ -17998,7 +17990,7 @@ "model": "pootle_statistics.submission", "pk": 229, "fields": { - "creation_time": "2019-05-04T13:10:23.766Z", + "creation_time": "2019-12-01T16:25:34.093Z", "translation_project": 1, "submitter": 3, "suggestion": 85, @@ -18017,7 +18009,7 @@ "model": "pootle_statistics.submission", "pk": 230, "fields": { - "creation_time": "2019-05-11T13:10:23.766Z", + "creation_time": "2019-12-08T16:25:34.093Z", "translation_project": 1, "submitter": 1, "suggestion": 85, @@ -18036,7 +18028,7 @@ "model": "pootle_statistics.submission", "pk": 231, "fields": { - "creation_time": "2019-05-18T13:10:23.766Z", + "creation_time": "2019-12-15T16:25:34.093Z", "translation_project": 1, "submitter": 4, "suggestion": 86, @@ -18055,7 +18047,7 @@ "model": "pootle_statistics.submission", "pk": 232, "fields": { - "creation_time": "2020-01-10T13:10:28.532Z", + "creation_time": "2020-08-07T16:25:35Z", "translation_project": 1, "submitter": 3, "suggestion": null, @@ -18074,7 +18066,7 @@ "model": "pootle_statistics.submission", "pk": 233, "fields": { - "creation_time": "2019-04-03T13:10:23.766Z", + "creation_time": "2019-10-31T16:25:34.093Z", "translation_project": 1, "submitter": 3, "suggestion": 87, @@ -18093,7 +18085,7 @@ "model": "pootle_statistics.submission", "pk": 234, "fields": { - "creation_time": "2019-04-10T13:10:23.766Z", + "creation_time": "2019-11-07T16:25:34.093Z", "translation_project": 1, "submitter": 1, "suggestion": 87, @@ -18112,7 +18104,7 @@ "model": "pootle_statistics.submission", "pk": 235, "fields": { - "creation_time": "2019-04-17T13:10:23.766Z", + "creation_time": "2019-11-14T16:25:34.093Z", "translation_project": 1, "submitter": 4, "suggestion": 88, @@ -18131,7 +18123,7 @@ "model": "pootle_statistics.submission", "pk": 236, "fields": { - "creation_time": "2020-01-10T13:10:28.708Z", + "creation_time": "2020-08-07T16:25:35Z", "translation_project": 1, "submitter": 3, "suggestion": null, @@ -18150,7 +18142,7 @@ "model": "pootle_statistics.submission", "pk": 237, "fields": { - "creation_time": "2019-03-06T13:10:23.766Z", + "creation_time": "2019-10-01T16:25:34.093Z", "translation_project": 1, "submitter": 3, "suggestion": 89, @@ -18169,7 +18161,7 @@ "model": "pootle_statistics.submission", "pk": 238, "fields": { - "creation_time": "2019-03-13T13:10:23.766Z", + "creation_time": "2019-10-08T16:25:34.093Z", "translation_project": 1, "submitter": 1, "suggestion": 89, @@ -18188,7 +18180,7 @@ "model": "pootle_statistics.submission", "pk": 239, "fields": { - "creation_time": "2019-03-20T13:10:23.766Z", + "creation_time": "2019-10-15T16:25:34.093Z", "translation_project": 1, "submitter": 4, "suggestion": 90, @@ -18207,7 +18199,7 @@ "model": "pootle_statistics.submission", "pk": 240, "fields": { - "creation_time": "2020-01-10T13:10:28.886Z", + "creation_time": "2020-08-07T16:25:35Z", "translation_project": 1, "submitter": 3, "suggestion": null, @@ -18226,7 +18218,7 @@ "model": "pootle_statistics.submission", "pk": 241, "fields": { - "creation_time": "2019-05-04T13:10:23.766Z", + "creation_time": "2019-12-01T16:25:34.093Z", "translation_project": 1, "submitter": 3, "suggestion": 91, @@ -18245,7 +18237,7 @@ "model": "pootle_statistics.submission", "pk": 242, "fields": { - "creation_time": "2019-05-11T13:10:23.766Z", + "creation_time": "2019-12-08T16:25:34.093Z", "translation_project": 1, "submitter": 1, "suggestion": 91, @@ -18264,7 +18256,7 @@ "model": "pootle_statistics.submission", "pk": 243, "fields": { - "creation_time": "2019-05-18T13:10:23.766Z", + "creation_time": "2019-12-15T16:25:34.093Z", "translation_project": 1, "submitter": 4, "suggestion": 92, @@ -18283,7 +18275,7 @@ "model": "pootle_statistics.submission", "pk": 244, "fields": { - "creation_time": "2019-02-03T13:10:23.766Z", + "creation_time": "2019-08-31T16:25:34.093Z", "translation_project": 1, "submitter": 3, "suggestion": 93, @@ -18302,7 +18294,7 @@ "model": "pootle_statistics.submission", "pk": 245, "fields": { - "creation_time": "2019-02-10T13:10:23.766Z", + "creation_time": "2019-09-07T16:25:34.093Z", "translation_project": 1, "submitter": 1, "suggestion": 93, @@ -18321,7 +18313,7 @@ "model": "pootle_statistics.submission", "pk": 246, "fields": { - "creation_time": "2019-02-17T13:10:23.766Z", + "creation_time": "2019-09-14T16:25:34.093Z", "translation_project": 1, "submitter": 4, "suggestion": 94, @@ -18340,7 +18332,7 @@ "model": "pootle_statistics.submission", "pk": 247, "fields": { - "creation_time": "2019-04-03T13:10:23.766Z", + "creation_time": "2019-10-31T16:25:34.093Z", "translation_project": 1, "submitter": 3, "suggestion": 95, @@ -18359,7 +18351,7 @@ "model": "pootle_statistics.submission", "pk": 248, "fields": { - "creation_time": "2019-04-10T13:10:23.766Z", + "creation_time": "2019-11-07T16:25:34.093Z", "translation_project": 1, "submitter": 1, "suggestion": null, @@ -18378,7 +18370,7 @@ "model": "pootle_statistics.submission", "pk": 249, "fields": { - "creation_time": "2019-04-10T13:10:23.766Z", + "creation_time": "2019-11-07T16:25:34.093Z", "translation_project": 1, "submitter": 1, "suggestion": 95, @@ -18397,7 +18389,7 @@ "model": "pootle_statistics.submission", "pk": 250, "fields": { - "creation_time": "2019-04-17T13:10:23.766Z", + "creation_time": "2019-11-14T16:25:34.093Z", "translation_project": 1, "submitter": 4, "suggestion": 96, @@ -18416,7 +18408,7 @@ "model": "pootle_statistics.submission", "pk": 251, "fields": { - "creation_time": "2019-03-06T13:10:23.766Z", + "creation_time": "2019-10-01T16:25:34.093Z", "translation_project": 1, "submitter": 3, "suggestion": 97, @@ -18435,7 +18427,7 @@ "model": "pootle_statistics.submission", "pk": 252, "fields": { - "creation_time": "2019-03-13T13:10:23.766Z", + "creation_time": "2019-10-08T16:25:34.093Z", "translation_project": 1, "submitter": 1, "suggestion": 97, @@ -18454,7 +18446,7 @@ "model": "pootle_statistics.submission", "pk": 253, "fields": { - "creation_time": "2019-03-20T13:10:23.766Z", + "creation_time": "2019-10-15T16:25:34.093Z", "translation_project": 1, "submitter": 4, "suggestion": 98, @@ -18473,7 +18465,7 @@ "model": "pootle_statistics.submission", "pk": 254, "fields": { - "creation_time": "2020-01-10T13:10:29.301Z", + "creation_time": "2020-08-07T16:25:35Z", "translation_project": 1, "submitter": 3, "suggestion": null, @@ -18492,7 +18484,7 @@ "model": "pootle_statistics.submission", "pk": 255, "fields": { - "creation_time": "2019-04-03T13:10:23.766Z", + "creation_time": "2019-10-31T16:25:34.093Z", "translation_project": 1, "submitter": 3, "suggestion": 99, @@ -18511,7 +18503,7 @@ "model": "pootle_statistics.submission", "pk": 256, "fields": { - "creation_time": "2019-04-10T13:10:23.766Z", + "creation_time": "2019-11-07T16:25:34.093Z", "translation_project": 1, "submitter": 1, "suggestion": null, @@ -18530,7 +18522,7 @@ "model": "pootle_statistics.submission", "pk": 257, "fields": { - "creation_time": "2019-04-10T13:10:23.766Z", + "creation_time": "2019-11-07T16:25:34.093Z", "translation_project": 1, "submitter": 1, "suggestion": 99, @@ -18549,7 +18541,7 @@ "model": "pootle_statistics.submission", "pk": 258, "fields": { - "creation_time": "2019-04-17T13:10:23.766Z", + "creation_time": "2019-11-14T16:25:34.093Z", "translation_project": 1, "submitter": 4, "suggestion": 100, @@ -18568,7 +18560,7 @@ "model": "pootle_statistics.submission", "pk": 259, "fields": { - "creation_time": "2019-05-04T13:10:23.766Z", + "creation_time": "2019-12-01T16:25:34.093Z", "translation_project": 1, "submitter": 3, "suggestion": 101, @@ -18587,7 +18579,7 @@ "model": "pootle_statistics.submission", "pk": 260, "fields": { - "creation_time": "2019-05-11T13:10:23.766Z", + "creation_time": "2019-12-08T16:25:34.093Z", "translation_project": 1, "submitter": 1, "suggestion": 101, @@ -18606,7 +18598,7 @@ "model": "pootle_statistics.submission", "pk": 261, "fields": { - "creation_time": "2019-05-18T13:10:23.766Z", + "creation_time": "2019-12-15T16:25:34.093Z", "translation_project": 1, "submitter": 4, "suggestion": 102, @@ -18625,7 +18617,7 @@ "model": "pootle_statistics.submission", "pk": 262, "fields": { - "creation_time": "2019-02-03T13:10:23.766Z", + "creation_time": "2019-08-31T16:25:34.093Z", "translation_project": 1, "submitter": 3, "suggestion": 103, @@ -18644,7 +18636,7 @@ "model": "pootle_statistics.submission", "pk": 263, "fields": { - "creation_time": "2019-02-10T13:10:23.766Z", + "creation_time": "2019-09-07T16:25:34.093Z", "translation_project": 1, "submitter": 1, "suggestion": 103, @@ -18663,7 +18655,7 @@ "model": "pootle_statistics.submission", "pk": 264, "fields": { - "creation_time": "2019-02-17T13:10:23.766Z", + "creation_time": "2019-09-14T16:25:34.093Z", "translation_project": 1, "submitter": 4, "suggestion": 104, @@ -18682,7 +18674,7 @@ "model": "pootle_statistics.submission", "pk": 265, "fields": { - "creation_time": "2019-03-06T13:10:23.766Z", + "creation_time": "2019-10-01T16:25:34.093Z", "translation_project": 1, "submitter": 3, "suggestion": 105, @@ -18701,7 +18693,7 @@ "model": "pootle_statistics.submission", "pk": 266, "fields": { - "creation_time": "2019-03-13T13:10:23.766Z", + "creation_time": "2019-10-08T16:25:34.093Z", "translation_project": 1, "submitter": 1, "suggestion": 105, @@ -18720,7 +18712,7 @@ "model": "pootle_statistics.submission", "pk": 267, "fields": { - "creation_time": "2019-03-20T13:10:23.766Z", + "creation_time": "2019-10-15T16:25:34.093Z", "translation_project": 1, "submitter": 4, "suggestion": 106, @@ -18739,7 +18731,7 @@ "model": "pootle_statistics.submission", "pk": 268, "fields": { - "creation_time": "2020-01-10T13:10:29.704Z", + "creation_time": "2020-08-07T16:25:35Z", "translation_project": 1, "submitter": 3, "suggestion": null, @@ -18758,7 +18750,7 @@ "model": "pootle_statistics.submission", "pk": 269, "fields": { - "creation_time": "2019-04-03T13:10:23.766Z", + "creation_time": "2019-10-31T16:25:34.093Z", "translation_project": 1, "submitter": 3, "suggestion": 107, @@ -18777,7 +18769,7 @@ "model": "pootle_statistics.submission", "pk": 270, "fields": { - "creation_time": "2019-04-10T13:10:23.766Z", + "creation_time": "2019-11-07T16:25:34.093Z", "translation_project": 1, "submitter": 1, "suggestion": null, @@ -18796,7 +18788,7 @@ "model": "pootle_statistics.submission", "pk": 271, "fields": { - "creation_time": "2019-04-10T13:10:23.766Z", + "creation_time": "2019-11-07T16:25:34.093Z", "translation_project": 1, "submitter": 1, "suggestion": 107, @@ -18815,7 +18807,7 @@ "model": "pootle_statistics.submission", "pk": 272, "fields": { - "creation_time": "2019-04-17T13:10:23.766Z", + "creation_time": "2019-11-14T16:25:34.093Z", "translation_project": 1, "submitter": 4, "suggestion": 108, @@ -18834,7 +18826,7 @@ "model": "pootle_statistics.submission", "pk": 273, "fields": { - "creation_time": "2019-02-03T13:10:23.766Z", + "creation_time": "2019-08-31T16:25:34.093Z", "translation_project": 1, "submitter": 3, "suggestion": 109, @@ -18853,7 +18845,7 @@ "model": "pootle_statistics.submission", "pk": 274, "fields": { - "creation_time": "2019-02-10T13:10:23.766Z", + "creation_time": "2019-09-07T16:25:34.093Z", "translation_project": 1, "submitter": 1, "suggestion": 109, @@ -18872,7 +18864,7 @@ "model": "pootle_statistics.submission", "pk": 275, "fields": { - "creation_time": "2019-02-17T13:10:23.766Z", + "creation_time": "2019-09-14T16:25:34.093Z", "translation_project": 1, "submitter": 4, "suggestion": 110, @@ -18891,7 +18883,7 @@ "model": "pootle_statistics.submission", "pk": 276, "fields": { - "creation_time": "2019-05-04T13:10:23.766Z", + "creation_time": "2019-12-01T16:25:34.093Z", "translation_project": 1, "submitter": 3, "suggestion": 111, @@ -18910,7 +18902,7 @@ "model": "pootle_statistics.submission", "pk": 277, "fields": { - "creation_time": "2019-05-11T13:10:23.766Z", + "creation_time": "2019-12-08T16:25:34.093Z", "translation_project": 1, "submitter": 1, "suggestion": 111, @@ -18929,7 +18921,7 @@ "model": "pootle_statistics.submission", "pk": 278, "fields": { - "creation_time": "2019-05-18T13:10:23.766Z", + "creation_time": "2019-12-15T16:25:34.093Z", "translation_project": 1, "submitter": 4, "suggestion": 112, @@ -18948,7 +18940,7 @@ "model": "pootle_statistics.submission", "pk": 279, "fields": { - "creation_time": "2019-09-03T13:10:23.766Z", + "creation_time": "2020-03-31T16:25:34.093Z", "translation_project": 3, "submitter": 3, "suggestion": 113, @@ -18967,7 +18959,7 @@ "model": "pootle_statistics.submission", "pk": 280, "fields": { - "creation_time": "2019-09-10T13:10:23.766Z", + "creation_time": "2020-04-07T16:25:34.093Z", "translation_project": 3, "submitter": 1, "suggestion": 113, @@ -18986,7 +18978,7 @@ "model": "pootle_statistics.submission", "pk": 281, "fields": { - "creation_time": "2019-09-17T13:10:23.766Z", + "creation_time": "2020-04-14T16:25:34.093Z", "translation_project": 3, "submitter": 4, "suggestion": 114, @@ -19005,7 +18997,7 @@ "model": "pootle_statistics.submission", "pk": 282, "fields": { - "creation_time": "2019-03-06T13:10:23.766Z", + "creation_time": "2019-10-01T16:25:34.093Z", "translation_project": 3, "submitter": 3, "suggestion": 115, @@ -19024,7 +19016,7 @@ "model": "pootle_statistics.submission", "pk": 283, "fields": { - "creation_time": "2019-03-13T13:10:23.766Z", + "creation_time": "2019-10-08T16:25:34.093Z", "translation_project": 3, "submitter": 1, "suggestion": 115, @@ -19043,7 +19035,7 @@ "model": "pootle_statistics.submission", "pk": 284, "fields": { - "creation_time": "2019-03-20T13:10:23.766Z", + "creation_time": "2019-10-15T16:25:34.093Z", "translation_project": 3, "submitter": 4, "suggestion": 116, @@ -19062,7 +19054,7 @@ "model": "pootle_statistics.submission", "pk": 285, "fields": { - "creation_time": "2019-02-03T13:10:23.766Z", + "creation_time": "2019-08-31T16:25:34.093Z", "translation_project": 3, "submitter": 3, "suggestion": 117, @@ -19081,7 +19073,7 @@ "model": "pootle_statistics.submission", "pk": 286, "fields": { - "creation_time": "2019-02-10T13:10:23.766Z", + "creation_time": "2019-09-07T16:25:34.093Z", "translation_project": 3, "submitter": 1, "suggestion": 117, @@ -19100,7 +19092,7 @@ "model": "pootle_statistics.submission", "pk": 287, "fields": { - "creation_time": "2019-02-17T13:10:23.766Z", + "creation_time": "2019-09-14T16:25:34.093Z", "translation_project": 3, "submitter": 4, "suggestion": 118, @@ -19119,7 +19111,7 @@ "model": "pootle_statistics.submission", "pk": 288, "fields": { - "creation_time": "2019-06-03T13:10:23.766Z", + "creation_time": "2019-12-31T16:25:34.093Z", "translation_project": 3, "submitter": 3, "suggestion": 119, @@ -19138,7 +19130,7 @@ "model": "pootle_statistics.submission", "pk": 289, "fields": { - "creation_time": "2019-06-10T13:10:23.766Z", + "creation_time": "2020-01-07T16:25:34.093Z", "translation_project": 3, "submitter": 1, "suggestion": null, @@ -19157,7 +19149,7 @@ "model": "pootle_statistics.submission", "pk": 290, "fields": { - "creation_time": "2019-06-10T13:10:23.766Z", + "creation_time": "2020-01-07T16:25:34.093Z", "translation_project": 3, "submitter": 1, "suggestion": 119, @@ -19176,7 +19168,7 @@ "model": "pootle_statistics.submission", "pk": 291, "fields": { - "creation_time": "2019-06-17T13:10:23.766Z", + "creation_time": "2020-01-14T16:25:34.093Z", "translation_project": 3, "submitter": 4, "suggestion": 120, @@ -19195,7 +19187,7 @@ "model": "pootle_statistics.submission", "pk": 292, "fields": { - "creation_time": "2019-05-04T13:10:23.766Z", + "creation_time": "2019-12-01T16:25:34.093Z", "translation_project": 3, "submitter": 3, "suggestion": 121, @@ -19214,7 +19206,7 @@ "model": "pootle_statistics.submission", "pk": 293, "fields": { - "creation_time": "2019-05-11T13:10:23.766Z", + "creation_time": "2019-12-08T16:25:34.093Z", "translation_project": 3, "submitter": 1, "suggestion": 121, @@ -19233,7 +19225,7 @@ "model": "pootle_statistics.submission", "pk": 294, "fields": { - "creation_time": "2019-05-18T13:10:23.766Z", + "creation_time": "2019-12-15T16:25:34.093Z", "translation_project": 3, "submitter": 4, "suggestion": 122, @@ -19252,7 +19244,7 @@ "model": "pootle_statistics.submission", "pk": 295, "fields": { - "creation_time": "2020-01-10T13:10:30.355Z", + "creation_time": "2020-08-07T16:25:36Z", "translation_project": 3, "submitter": 3, "suggestion": null, @@ -19271,7 +19263,7 @@ "model": "pootle_statistics.submission", "pk": 296, "fields": { - "creation_time": "2019-07-04T13:10:23.766Z", + "creation_time": "2020-01-31T16:25:34.093Z", "translation_project": 3, "submitter": 3, "suggestion": 123, @@ -19290,7 +19282,7 @@ "model": "pootle_statistics.submission", "pk": 297, "fields": { - "creation_time": "2019-07-11T13:10:23.766Z", + "creation_time": "2020-02-07T16:25:34.093Z", "translation_project": 3, "submitter": 1, "suggestion": null, @@ -19309,7 +19301,7 @@ "model": "pootle_statistics.submission", "pk": 298, "fields": { - "creation_time": "2019-07-11T13:10:23.766Z", + "creation_time": "2020-02-07T16:25:34.093Z", "translation_project": 3, "submitter": 1, "suggestion": 123, @@ -19328,7 +19320,7 @@ "model": "pootle_statistics.submission", "pk": 299, "fields": { - "creation_time": "2019-07-18T13:10:23.766Z", + "creation_time": "2020-02-14T16:25:34.093Z", "translation_project": 3, "submitter": 4, "suggestion": 124, @@ -19347,7 +19339,7 @@ "model": "pootle_statistics.submission", "pk": 300, "fields": { - "creation_time": "2019-08-03T13:10:23.766Z", + "creation_time": "2020-03-02T16:25:34.093Z", "translation_project": 3, "submitter": 3, "suggestion": 125, @@ -19366,7 +19358,7 @@ "model": "pootle_statistics.submission", "pk": 301, "fields": { - "creation_time": "2019-08-10T13:10:23.766Z", + "creation_time": "2020-03-09T16:25:34.093Z", "translation_project": 3, "submitter": 1, "suggestion": 125, @@ -19385,7 +19377,7 @@ "model": "pootle_statistics.submission", "pk": 302, "fields": { - "creation_time": "2019-08-17T13:10:23.766Z", + "creation_time": "2020-03-16T16:25:34.093Z", "translation_project": 3, "submitter": 4, "suggestion": 126, @@ -19404,7 +19396,7 @@ "model": "pootle_statistics.submission", "pk": 303, "fields": { - "creation_time": "2019-04-03T13:10:23.766Z", + "creation_time": "2019-10-31T16:25:34.093Z", "translation_project": 3, "submitter": 3, "suggestion": 127, @@ -19423,7 +19415,7 @@ "model": "pootle_statistics.submission", "pk": 304, "fields": { - "creation_time": "2019-04-10T13:10:23.766Z", + "creation_time": "2019-11-07T16:25:34.093Z", "translation_project": 3, "submitter": 1, "suggestion": 127, @@ -19442,7 +19434,7 @@ "model": "pootle_statistics.submission", "pk": 305, "fields": { - "creation_time": "2019-04-17T13:10:23.766Z", + "creation_time": "2019-11-14T16:25:34.093Z", "translation_project": 3, "submitter": 4, "suggestion": 128, @@ -19461,7 +19453,7 @@ "model": "pootle_statistics.submission", "pk": 306, "fields": { - "creation_time": "2020-01-10T13:10:30.731Z", + "creation_time": "2020-08-07T16:25:36Z", "translation_project": 3, "submitter": 3, "suggestion": null, @@ -19480,7 +19472,7 @@ "model": "pootle_statistics.submission", "pk": 307, "fields": { - "creation_time": "2019-08-03T13:10:23.766Z", + "creation_time": "2020-03-02T16:25:34.093Z", "translation_project": 3, "submitter": 3, "suggestion": 129, @@ -19499,7 +19491,7 @@ "model": "pootle_statistics.submission", "pk": 308, "fields": { - "creation_time": "2019-08-10T13:10:23.766Z", + "creation_time": "2020-03-09T16:25:34.093Z", "translation_project": 3, "submitter": 1, "suggestion": 129, @@ -19518,7 +19510,7 @@ "model": "pootle_statistics.submission", "pk": 309, "fields": { - "creation_time": "2019-08-17T13:10:23.766Z", + "creation_time": "2020-03-16T16:25:34.093Z", "translation_project": 3, "submitter": 4, "suggestion": 130, @@ -19537,7 +19529,7 @@ "model": "pootle_statistics.submission", "pk": 310, "fields": { - "creation_time": "2019-09-03T13:10:23.766Z", + "creation_time": "2020-03-31T16:25:34.093Z", "translation_project": 3, "submitter": 3, "suggestion": 131, @@ -19556,7 +19548,7 @@ "model": "pootle_statistics.submission", "pk": 311, "fields": { - "creation_time": "2019-09-10T13:10:23.766Z", + "creation_time": "2020-04-07T16:25:34.093Z", "translation_project": 3, "submitter": 1, "suggestion": 131, @@ -19575,7 +19567,7 @@ "model": "pootle_statistics.submission", "pk": 312, "fields": { - "creation_time": "2019-09-17T13:10:23.766Z", + "creation_time": "2020-04-14T16:25:34.093Z", "translation_project": 3, "submitter": 4, "suggestion": 132, @@ -19594,7 +19586,7 @@ "model": "pootle_statistics.submission", "pk": 313, "fields": { - "creation_time": "2019-02-03T13:10:23.766Z", + "creation_time": "2019-08-31T16:25:34.093Z", "translation_project": 3, "submitter": 3, "suggestion": 133, @@ -19613,7 +19605,7 @@ "model": "pootle_statistics.submission", "pk": 314, "fields": { - "creation_time": "2019-02-10T13:10:23.766Z", + "creation_time": "2019-09-07T16:25:34.093Z", "translation_project": 3, "submitter": 1, "suggestion": 133, @@ -19632,7 +19624,7 @@ "model": "pootle_statistics.submission", "pk": 315, "fields": { - "creation_time": "2019-02-17T13:10:23.766Z", + "creation_time": "2019-09-14T16:25:34.093Z", "translation_project": 3, "submitter": 4, "suggestion": 134, @@ -19651,7 +19643,7 @@ "model": "pootle_statistics.submission", "pk": 316, "fields": { - "creation_time": "2019-03-06T13:10:23.766Z", + "creation_time": "2019-10-01T16:25:34.093Z", "translation_project": 3, "submitter": 3, "suggestion": 135, @@ -19670,7 +19662,7 @@ "model": "pootle_statistics.submission", "pk": 317, "fields": { - "creation_time": "2019-03-13T13:10:23.766Z", + "creation_time": "2019-10-08T16:25:34.093Z", "translation_project": 3, "submitter": 1, "suggestion": 135, @@ -19689,7 +19681,7 @@ "model": "pootle_statistics.submission", "pk": 318, "fields": { - "creation_time": "2019-03-20T13:10:23.766Z", + "creation_time": "2019-10-15T16:25:34.093Z", "translation_project": 3, "submitter": 4, "suggestion": 136, @@ -19708,7 +19700,7 @@ "model": "pootle_statistics.submission", "pk": 319, "fields": { - "creation_time": "2019-06-03T13:10:23.766Z", + "creation_time": "2019-12-31T16:25:34.093Z", "translation_project": 3, "submitter": 3, "suggestion": 137, @@ -19727,7 +19719,7 @@ "model": "pootle_statistics.submission", "pk": 320, "fields": { - "creation_time": "2019-06-10T13:10:23.766Z", + "creation_time": "2020-01-07T16:25:34.093Z", "translation_project": 3, "submitter": 1, "suggestion": null, @@ -19746,7 +19738,7 @@ "model": "pootle_statistics.submission", "pk": 321, "fields": { - "creation_time": "2019-06-10T13:10:23.766Z", + "creation_time": "2020-01-07T16:25:34.093Z", "translation_project": 3, "submitter": 1, "suggestion": 137, @@ -19765,7 +19757,7 @@ "model": "pootle_statistics.submission", "pk": 322, "fields": { - "creation_time": "2019-06-17T13:10:23.766Z", + "creation_time": "2020-01-14T16:25:34.093Z", "translation_project": 3, "submitter": 4, "suggestion": 138, @@ -19784,7 +19776,7 @@ "model": "pootle_statistics.submission", "pk": 323, "fields": { - "creation_time": "2019-05-04T13:10:23.766Z", + "creation_time": "2019-12-01T16:25:34.093Z", "translation_project": 3, "submitter": 3, "suggestion": 139, @@ -19803,7 +19795,7 @@ "model": "pootle_statistics.submission", "pk": 324, "fields": { - "creation_time": "2019-05-11T13:10:23.766Z", + "creation_time": "2019-12-08T16:25:34.093Z", "translation_project": 3, "submitter": 1, "suggestion": 139, @@ -19822,7 +19814,7 @@ "model": "pootle_statistics.submission", "pk": 325, "fields": { - "creation_time": "2019-05-18T13:10:23.766Z", + "creation_time": "2019-12-15T16:25:34.093Z", "translation_project": 3, "submitter": 4, "suggestion": 140, @@ -19841,7 +19833,7 @@ "model": "pootle_statistics.submission", "pk": 326, "fields": { - "creation_time": "2020-01-10T13:10:31.271Z", + "creation_time": "2020-08-07T16:25:36Z", "translation_project": 3, "submitter": 3, "suggestion": null, @@ -19860,7 +19852,7 @@ "model": "pootle_statistics.submission", "pk": 327, "fields": { - "creation_time": "2019-04-03T13:10:23.766Z", + "creation_time": "2019-10-31T16:25:34.093Z", "translation_project": 3, "submitter": 3, "suggestion": 141, @@ -19879,7 +19871,7 @@ "model": "pootle_statistics.submission", "pk": 328, "fields": { - "creation_time": "2019-04-10T13:10:23.766Z", + "creation_time": "2019-11-07T16:25:34.093Z", "translation_project": 3, "submitter": 1, "suggestion": 141, @@ -19898,7 +19890,7 @@ "model": "pootle_statistics.submission", "pk": 329, "fields": { - "creation_time": "2019-04-17T13:10:23.766Z", + "creation_time": "2019-11-14T16:25:34.093Z", "translation_project": 3, "submitter": 4, "suggestion": 142, @@ -19917,7 +19909,7 @@ "model": "pootle_statistics.submission", "pk": 330, "fields": { - "creation_time": "2020-01-10T13:10:31.456Z", + "creation_time": "2020-08-07T16:25:36Z", "translation_project": 3, "submitter": 3, "suggestion": null, @@ -19936,7 +19928,7 @@ "model": "pootle_statistics.submission", "pk": 331, "fields": { - "creation_time": "2019-07-04T13:10:23.766Z", + "creation_time": "2020-01-31T16:25:34.093Z", "translation_project": 3, "submitter": 3, "suggestion": 143, @@ -19955,7 +19947,7 @@ "model": "pootle_statistics.submission", "pk": 332, "fields": { - "creation_time": "2019-07-11T13:10:23.766Z", + "creation_time": "2020-02-07T16:25:34.093Z", "translation_project": 3, "submitter": 1, "suggestion": null, @@ -19974,7 +19966,7 @@ "model": "pootle_statistics.submission", "pk": 333, "fields": { - "creation_time": "2019-07-11T13:10:23.766Z", + "creation_time": "2020-02-07T16:25:34.093Z", "translation_project": 3, "submitter": 1, "suggestion": 143, @@ -19993,7 +19985,7 @@ "model": "pootle_statistics.submission", "pk": 334, "fields": { - "creation_time": "2019-07-18T13:10:23.766Z", + "creation_time": "2020-02-14T16:25:34.093Z", "translation_project": 3, "submitter": 4, "suggestion": 144, @@ -20012,7 +20004,7 @@ "model": "pootle_statistics.submission", "pk": 335, "fields": { - "creation_time": "2019-06-03T13:10:23.766Z", + "creation_time": "2019-12-31T16:25:34.093Z", "translation_project": 3, "submitter": 3, "suggestion": 145, @@ -20031,7 +20023,7 @@ "model": "pootle_statistics.submission", "pk": 336, "fields": { - "creation_time": "2019-06-10T13:10:23.766Z", + "creation_time": "2020-01-07T16:25:34.093Z", "translation_project": 3, "submitter": 1, "suggestion": null, @@ -20050,7 +20042,7 @@ "model": "pootle_statistics.submission", "pk": 337, "fields": { - "creation_time": "2019-06-10T13:10:23.766Z", + "creation_time": "2020-01-07T16:25:34.093Z", "translation_project": 3, "submitter": 1, "suggestion": 145, @@ -20069,7 +20061,7 @@ "model": "pootle_statistics.submission", "pk": 338, "fields": { - "creation_time": "2019-06-17T13:10:23.766Z", + "creation_time": "2020-01-14T16:25:34.093Z", "translation_project": 3, "submitter": 4, "suggestion": 146, @@ -20088,7 +20080,7 @@ "model": "pootle_statistics.submission", "pk": 339, "fields": { - "creation_time": "2019-07-04T13:10:23.766Z", + "creation_time": "2020-01-31T16:25:34.093Z", "translation_project": 3, "submitter": 3, "suggestion": 147, @@ -20107,7 +20099,7 @@ "model": "pootle_statistics.submission", "pk": 340, "fields": { - "creation_time": "2019-07-11T13:10:23.766Z", + "creation_time": "2020-02-07T16:25:34.093Z", "translation_project": 3, "submitter": 1, "suggestion": null, @@ -20126,7 +20118,7 @@ "model": "pootle_statistics.submission", "pk": 341, "fields": { - "creation_time": "2019-07-11T13:10:23.766Z", + "creation_time": "2020-02-07T16:25:34.093Z", "translation_project": 3, "submitter": 1, "suggestion": 147, @@ -20145,7 +20137,7 @@ "model": "pootle_statistics.submission", "pk": 342, "fields": { - "creation_time": "2019-07-18T13:10:23.766Z", + "creation_time": "2020-02-14T16:25:34.093Z", "translation_project": 3, "submitter": 4, "suggestion": 148, @@ -20164,7 +20156,7 @@ "model": "pootle_statistics.submission", "pk": 343, "fields": { - "creation_time": "2019-02-03T13:10:23.766Z", + "creation_time": "2019-08-31T16:25:34.093Z", "translation_project": 3, "submitter": 3, "suggestion": 149, @@ -20183,7 +20175,7 @@ "model": "pootle_statistics.submission", "pk": 344, "fields": { - "creation_time": "2019-02-10T13:10:23.766Z", + "creation_time": "2019-09-07T16:25:34.093Z", "translation_project": 3, "submitter": 1, "suggestion": 149, @@ -20202,7 +20194,7 @@ "model": "pootle_statistics.submission", "pk": 345, "fields": { - "creation_time": "2019-02-17T13:10:23.766Z", + "creation_time": "2019-09-14T16:25:34.093Z", "translation_project": 3, "submitter": 4, "suggestion": 150, @@ -20221,7 +20213,7 @@ "model": "pootle_statistics.submission", "pk": 346, "fields": { - "creation_time": "2019-05-04T13:10:23.766Z", + "creation_time": "2019-12-01T16:25:34.093Z", "translation_project": 3, "submitter": 3, "suggestion": 151, @@ -20240,7 +20232,7 @@ "model": "pootle_statistics.submission", "pk": 347, "fields": { - "creation_time": "2019-05-11T13:10:23.766Z", + "creation_time": "2019-12-08T16:25:34.093Z", "translation_project": 3, "submitter": 1, "suggestion": 151, @@ -20259,7 +20251,7 @@ "model": "pootle_statistics.submission", "pk": 348, "fields": { - "creation_time": "2019-05-18T13:10:23.766Z", + "creation_time": "2019-12-15T16:25:34.093Z", "translation_project": 3, "submitter": 4, "suggestion": 152, @@ -20278,7 +20270,7 @@ "model": "pootle_statistics.submission", "pk": 349, "fields": { - "creation_time": "2020-01-10T13:10:32.017Z", + "creation_time": "2020-08-07T16:25:36Z", "translation_project": 3, "submitter": 3, "suggestion": null, @@ -20297,7 +20289,7 @@ "model": "pootle_statistics.submission", "pk": 350, "fields": { - "creation_time": "2019-08-03T13:10:23.766Z", + "creation_time": "2020-03-02T16:25:34.093Z", "translation_project": 3, "submitter": 3, "suggestion": 153, @@ -20316,7 +20308,7 @@ "model": "pootle_statistics.submission", "pk": 351, "fields": { - "creation_time": "2019-08-10T13:10:23.766Z", + "creation_time": "2020-03-09T16:25:34.093Z", "translation_project": 3, "submitter": 1, "suggestion": 153, @@ -20335,7 +20327,7 @@ "model": "pootle_statistics.submission", "pk": 352, "fields": { - "creation_time": "2019-08-17T13:10:23.766Z", + "creation_time": "2020-03-16T16:25:34.093Z", "translation_project": 3, "submitter": 4, "suggestion": 154, @@ -20354,7 +20346,7 @@ "model": "pootle_statistics.submission", "pk": 353, "fields": { - "creation_time": "2019-09-03T13:10:23.766Z", + "creation_time": "2020-03-31T16:25:34.093Z", "translation_project": 3, "submitter": 3, "suggestion": 155, @@ -20373,7 +20365,7 @@ "model": "pootle_statistics.submission", "pk": 354, "fields": { - "creation_time": "2019-09-10T13:10:23.766Z", + "creation_time": "2020-04-07T16:25:34.093Z", "translation_project": 3, "submitter": 1, "suggestion": 155, @@ -20392,7 +20384,7 @@ "model": "pootle_statistics.submission", "pk": 355, "fields": { - "creation_time": "2019-09-17T13:10:23.766Z", + "creation_time": "2020-04-14T16:25:34.093Z", "translation_project": 3, "submitter": 4, "suggestion": 156, @@ -20411,7 +20403,7 @@ "model": "pootle_statistics.submission", "pk": 356, "fields": { - "creation_time": "2019-03-06T13:10:23.766Z", + "creation_time": "2019-10-01T16:25:34.093Z", "translation_project": 3, "submitter": 3, "suggestion": 157, @@ -20430,7 +20422,7 @@ "model": "pootle_statistics.submission", "pk": 357, "fields": { - "creation_time": "2019-03-13T13:10:23.766Z", + "creation_time": "2019-10-08T16:25:34.093Z", "translation_project": 3, "submitter": 1, "suggestion": 157, @@ -20449,7 +20441,7 @@ "model": "pootle_statistics.submission", "pk": 358, "fields": { - "creation_time": "2019-03-20T13:10:23.766Z", + "creation_time": "2019-10-15T16:25:34.093Z", "translation_project": 3, "submitter": 4, "suggestion": 158, @@ -20468,7 +20460,7 @@ "model": "pootle_statistics.submission", "pk": 359, "fields": { - "creation_time": "2019-04-03T13:10:23.766Z", + "creation_time": "2019-10-31T16:25:34.093Z", "translation_project": 3, "submitter": 3, "suggestion": 159, @@ -20487,7 +20479,7 @@ "model": "pootle_statistics.submission", "pk": 360, "fields": { - "creation_time": "2019-04-10T13:10:23.766Z", + "creation_time": "2019-11-07T16:25:34.093Z", "translation_project": 3, "submitter": 1, "suggestion": 159, @@ -20506,7 +20498,7 @@ "model": "pootle_statistics.submission", "pk": 361, "fields": { - "creation_time": "2019-04-17T13:10:23.766Z", + "creation_time": "2019-11-14T16:25:34.093Z", "translation_project": 3, "submitter": 4, "suggestion": 160, @@ -20525,7 +20517,7 @@ "model": "pootle_statistics.submission", "pk": 362, "fields": { - "creation_time": "2020-01-10T13:10:32.419Z", + "creation_time": "2020-08-07T16:25:36Z", "translation_project": 3, "submitter": 3, "suggestion": null, @@ -20544,7 +20536,7 @@ "model": "pootle_statistics.submission", "pk": 363, "fields": { - "creation_time": "2019-05-04T13:10:23.766Z", + "creation_time": "2019-12-01T16:25:34.093Z", "translation_project": 3, "submitter": 3, "suggestion": 161, @@ -20563,7 +20555,7 @@ "model": "pootle_statistics.submission", "pk": 364, "fields": { - "creation_time": "2019-05-11T13:10:23.766Z", + "creation_time": "2019-12-08T16:25:34.093Z", "translation_project": 3, "submitter": 1, "suggestion": 161, @@ -20582,7 +20574,7 @@ "model": "pootle_statistics.submission", "pk": 365, "fields": { - "creation_time": "2019-05-18T13:10:23.766Z", + "creation_time": "2019-12-15T16:25:34.093Z", "translation_project": 3, "submitter": 4, "suggestion": 162, @@ -20601,7 +20593,7 @@ "model": "pootle_statistics.submission", "pk": 366, "fields": { - "creation_time": "2019-02-03T13:10:23.766Z", + "creation_time": "2019-08-31T16:25:34.093Z", "translation_project": 3, "submitter": 3, "suggestion": 163, @@ -20620,7 +20612,7 @@ "model": "pootle_statistics.submission", "pk": 367, "fields": { - "creation_time": "2019-02-10T13:10:23.766Z", + "creation_time": "2019-09-07T16:25:34.093Z", "translation_project": 3, "submitter": 1, "suggestion": 163, @@ -20639,7 +20631,7 @@ "model": "pootle_statistics.submission", "pk": 368, "fields": { - "creation_time": "2019-02-17T13:10:23.766Z", + "creation_time": "2019-09-14T16:25:34.093Z", "translation_project": 3, "submitter": 4, "suggestion": 164, @@ -20658,7 +20650,7 @@ "model": "pootle_statistics.submission", "pk": 369, "fields": { - "creation_time": "2019-03-06T13:10:23.766Z", + "creation_time": "2019-10-01T16:25:34.093Z", "translation_project": 3, "submitter": 3, "suggestion": 165, @@ -20677,7 +20669,7 @@ "model": "pootle_statistics.submission", "pk": 370, "fields": { - "creation_time": "2019-03-13T13:10:23.766Z", + "creation_time": "2019-10-08T16:25:34.093Z", "translation_project": 3, "submitter": 1, "suggestion": 165, @@ -20696,7 +20688,7 @@ "model": "pootle_statistics.submission", "pk": 371, "fields": { - "creation_time": "2019-03-20T13:10:23.766Z", + "creation_time": "2019-10-15T16:25:34.093Z", "translation_project": 3, "submitter": 4, "suggestion": 166, @@ -20715,7 +20707,7 @@ "model": "pootle_statistics.submission", "pk": 372, "fields": { - "creation_time": "2020-01-10T13:10:32.724Z", + "creation_time": "2020-08-07T16:25:36Z", "translation_project": 3, "submitter": 3, "suggestion": null, @@ -20734,7 +20726,7 @@ "model": "pootle_statistics.submission", "pk": 373, "fields": { - "creation_time": "2019-04-03T13:10:23.766Z", + "creation_time": "2019-10-31T16:25:34.093Z", "translation_project": 3, "submitter": 3, "suggestion": 167, @@ -20753,7 +20745,7 @@ "model": "pootle_statistics.submission", "pk": 374, "fields": { - "creation_time": "2019-04-10T13:10:23.766Z", + "creation_time": "2019-11-07T16:25:34.093Z", "translation_project": 3, "submitter": 1, "suggestion": null, @@ -20772,7 +20764,7 @@ "model": "pootle_statistics.submission", "pk": 375, "fields": { - "creation_time": "2019-04-10T13:10:23.766Z", + "creation_time": "2019-11-07T16:25:34.093Z", "translation_project": 3, "submitter": 1, "suggestion": 167, @@ -20791,7 +20783,7 @@ "model": "pootle_statistics.submission", "pk": 376, "fields": { - "creation_time": "2019-04-17T13:10:23.766Z", + "creation_time": "2019-11-14T16:25:34.093Z", "translation_project": 3, "submitter": 4, "suggestion": 168, @@ -20810,7 +20802,7 @@ "model": "pootle_statistics.submission", "pk": 377, "fields": { - "creation_time": "2019-03-06T13:10:23.766Z", + "creation_time": "2019-10-01T16:25:34.093Z", "translation_project": 3, "submitter": 3, "suggestion": 169, @@ -20829,7 +20821,7 @@ "model": "pootle_statistics.submission", "pk": 378, "fields": { - "creation_time": "2019-03-13T13:10:23.766Z", + "creation_time": "2019-10-08T16:25:34.093Z", "translation_project": 3, "submitter": 1, "suggestion": 169, @@ -20848,7 +20840,7 @@ "model": "pootle_statistics.submission", "pk": 379, "fields": { - "creation_time": "2019-03-20T13:10:23.766Z", + "creation_time": "2019-10-15T16:25:34.093Z", "translation_project": 3, "submitter": 4, "suggestion": 170, @@ -20867,7 +20859,7 @@ "model": "pootle_statistics.submission", "pk": 380, "fields": { - "creation_time": "2020-01-10T13:10:33.008Z", + "creation_time": "2020-08-07T16:25:37Z", "translation_project": 3, "submitter": 3, "suggestion": null, @@ -20886,7 +20878,7 @@ "model": "pootle_statistics.submission", "pk": 381, "fields": { - "creation_time": "2019-04-03T13:10:23.766Z", + "creation_time": "2019-10-31T16:25:34.093Z", "translation_project": 3, "submitter": 3, "suggestion": 171, @@ -20905,7 +20897,7 @@ "model": "pootle_statistics.submission", "pk": 382, "fields": { - "creation_time": "2019-04-10T13:10:23.766Z", + "creation_time": "2019-11-07T16:25:34.093Z", "translation_project": 3, "submitter": 1, "suggestion": null, @@ -20924,7 +20916,7 @@ "model": "pootle_statistics.submission", "pk": 383, "fields": { - "creation_time": "2019-04-10T13:10:23.766Z", + "creation_time": "2019-11-07T16:25:34.093Z", "translation_project": 3, "submitter": 1, "suggestion": 171, @@ -20943,7 +20935,7 @@ "model": "pootle_statistics.submission", "pk": 384, "fields": { - "creation_time": "2019-04-17T13:10:23.766Z", + "creation_time": "2019-11-14T16:25:34.093Z", "translation_project": 3, "submitter": 4, "suggestion": 172, @@ -20962,7 +20954,7 @@ "model": "pootle_statistics.submission", "pk": 385, "fields": { - "creation_time": "2019-02-03T13:10:23.766Z", + "creation_time": "2019-08-31T16:25:34.093Z", "translation_project": 3, "submitter": 3, "suggestion": 173, @@ -20981,7 +20973,7 @@ "model": "pootle_statistics.submission", "pk": 386, "fields": { - "creation_time": "2019-02-10T13:10:23.766Z", + "creation_time": "2019-09-07T16:25:34.093Z", "translation_project": 3, "submitter": 1, "suggestion": 173, @@ -21000,7 +20992,7 @@ "model": "pootle_statistics.submission", "pk": 387, "fields": { - "creation_time": "2019-02-17T13:10:23.766Z", + "creation_time": "2019-09-14T16:25:34.093Z", "translation_project": 3, "submitter": 4, "suggestion": 174, @@ -21019,7 +21011,7 @@ "model": "pootle_statistics.submission", "pk": 388, "fields": { - "creation_time": "2019-05-04T13:10:23.766Z", + "creation_time": "2019-12-01T16:25:34.093Z", "translation_project": 3, "submitter": 3, "suggestion": 175, @@ -21038,7 +21030,7 @@ "model": "pootle_statistics.submission", "pk": 389, "fields": { - "creation_time": "2019-05-11T13:10:23.766Z", + "creation_time": "2019-12-08T16:25:34.093Z", "translation_project": 3, "submitter": 1, "suggestion": 175, @@ -21057,7 +21049,7 @@ "model": "pootle_statistics.submission", "pk": 390, "fields": { - "creation_time": "2019-05-18T13:10:23.766Z", + "creation_time": "2019-12-15T16:25:34.093Z", "translation_project": 3, "submitter": 4, "suggestion": 176, @@ -21076,7 +21068,7 @@ "model": "pootle_statistics.submission", "pk": 391, "fields": { - "creation_time": "2019-03-06T13:10:23.766Z", + "creation_time": "2019-10-01T16:25:34.093Z", "translation_project": 3, "submitter": 3, "suggestion": 177, @@ -21095,7 +21087,7 @@ "model": "pootle_statistics.submission", "pk": 392, "fields": { - "creation_time": "2019-03-13T13:10:23.766Z", + "creation_time": "2019-10-08T16:25:34.093Z", "translation_project": 3, "submitter": 1, "suggestion": 177, @@ -21114,7 +21106,7 @@ "model": "pootle_statistics.submission", "pk": 393, "fields": { - "creation_time": "2019-03-20T13:10:23.766Z", + "creation_time": "2019-10-15T16:25:34.093Z", "translation_project": 3, "submitter": 4, "suggestion": 178, @@ -21133,7 +21125,7 @@ "model": "pootle_statistics.submission", "pk": 394, "fields": { - "creation_time": "2020-01-10T13:10:33.416Z", + "creation_time": "2020-08-07T16:25:37Z", "translation_project": 3, "submitter": 3, "suggestion": null, @@ -21152,7 +21144,7 @@ "model": "pootle_statistics.submission", "pk": 395, "fields": { - "creation_time": "2019-04-03T13:10:23.766Z", + "creation_time": "2019-10-31T16:25:34.093Z", "translation_project": 3, "submitter": 3, "suggestion": 179, @@ -21171,7 +21163,7 @@ "model": "pootle_statistics.submission", "pk": 396, "fields": { - "creation_time": "2019-04-10T13:10:23.766Z", + "creation_time": "2019-11-07T16:25:34.093Z", "translation_project": 3, "submitter": 1, "suggestion": null, @@ -21190,7 +21182,7 @@ "model": "pootle_statistics.submission", "pk": 397, "fields": { - "creation_time": "2019-04-10T13:10:23.766Z", + "creation_time": "2019-11-07T16:25:34.093Z", "translation_project": 3, "submitter": 1, "suggestion": 179, @@ -21209,7 +21201,7 @@ "model": "pootle_statistics.submission", "pk": 398, "fields": { - "creation_time": "2019-04-17T13:10:23.766Z", + "creation_time": "2019-11-14T16:25:34.093Z", "translation_project": 3, "submitter": 4, "suggestion": 180, @@ -21228,7 +21220,7 @@ "model": "pootle_statistics.submission", "pk": 399, "fields": { - "creation_time": "2019-02-03T13:10:23.766Z", + "creation_time": "2019-08-31T16:25:34.093Z", "translation_project": 3, "submitter": 3, "suggestion": 181, @@ -21247,7 +21239,7 @@ "model": "pootle_statistics.submission", "pk": 400, "fields": { - "creation_time": "2019-02-10T13:10:23.766Z", + "creation_time": "2019-09-07T16:25:34.093Z", "translation_project": 3, "submitter": 1, "suggestion": 181, @@ -21266,7 +21258,7 @@ "model": "pootle_statistics.submission", "pk": 401, "fields": { - "creation_time": "2019-02-17T13:10:23.766Z", + "creation_time": "2019-09-14T16:25:34.093Z", "translation_project": 3, "submitter": 4, "suggestion": 182, @@ -21285,7 +21277,7 @@ "model": "pootle_statistics.submission", "pk": 402, "fields": { - "creation_time": "2019-05-04T13:10:23.766Z", + "creation_time": "2019-12-01T16:25:34.093Z", "translation_project": 3, "submitter": 3, "suggestion": 183, @@ -21304,7 +21296,7 @@ "model": "pootle_statistics.submission", "pk": 403, "fields": { - "creation_time": "2019-05-11T13:10:23.766Z", + "creation_time": "2019-12-08T16:25:34.093Z", "translation_project": 3, "submitter": 1, "suggestion": 183, @@ -21323,7 +21315,7 @@ "model": "pootle_statistics.submission", "pk": 404, "fields": { - "creation_time": "2019-05-18T13:10:23.766Z", + "creation_time": "2019-12-15T16:25:34.093Z", "translation_project": 3, "submitter": 4, "suggestion": 184, @@ -21342,7 +21334,7 @@ "model": "pootle_statistics.submission", "pk": 405, "fields": { - "creation_time": "2019-03-06T13:10:23.766Z", + "creation_time": "2019-10-01T16:25:34.093Z", "translation_project": 2, "submitter": 3, "suggestion": 185, @@ -21361,7 +21353,7 @@ "model": "pootle_statistics.submission", "pk": 406, "fields": { - "creation_time": "2019-03-13T13:10:23.766Z", + "creation_time": "2019-10-08T16:25:34.093Z", "translation_project": 2, "submitter": 1, "suggestion": 185, @@ -21380,7 +21372,7 @@ "model": "pootle_statistics.submission", "pk": 407, "fields": { - "creation_time": "2019-03-20T13:10:23.766Z", + "creation_time": "2019-10-15T16:25:34.093Z", "translation_project": 2, "submitter": 4, "suggestion": 186, @@ -21399,7 +21391,7 @@ "model": "pootle_statistics.submission", "pk": 408, "fields": { - "creation_time": "2019-08-03T13:10:23.766Z", + "creation_time": "2020-03-02T16:25:34.093Z", "translation_project": 2, "submitter": 3, "suggestion": 187, @@ -21418,7 +21410,7 @@ "model": "pootle_statistics.submission", "pk": 409, "fields": { - "creation_time": "2019-08-10T13:10:23.766Z", + "creation_time": "2020-03-09T16:25:34.093Z", "translation_project": 2, "submitter": 1, "suggestion": 187, @@ -21437,7 +21429,7 @@ "model": "pootle_statistics.submission", "pk": 410, "fields": { - "creation_time": "2019-08-17T13:10:23.766Z", + "creation_time": "2020-03-16T16:25:34.093Z", "translation_project": 2, "submitter": 4, "suggestion": 188, @@ -21456,7 +21448,7 @@ "model": "pootle_statistics.submission", "pk": 411, "fields": { - "creation_time": "2019-06-03T13:10:23.766Z", + "creation_time": "2019-12-31T16:25:34.093Z", "translation_project": 2, "submitter": 3, "suggestion": 189, @@ -21475,7 +21467,7 @@ "model": "pootle_statistics.submission", "pk": 412, "fields": { - "creation_time": "2019-06-10T13:10:23.766Z", + "creation_time": "2020-01-07T16:25:34.093Z", "translation_project": 2, "submitter": 1, "suggestion": null, @@ -21494,7 +21486,7 @@ "model": "pootle_statistics.submission", "pk": 413, "fields": { - "creation_time": "2019-06-10T13:10:23.766Z", + "creation_time": "2020-01-07T16:25:34.093Z", "translation_project": 2, "submitter": 1, "suggestion": 189, @@ -21513,7 +21505,7 @@ "model": "pootle_statistics.submission", "pk": 414, "fields": { - "creation_time": "2019-06-17T13:10:23.766Z", + "creation_time": "2020-01-14T16:25:34.093Z", "translation_project": 2, "submitter": 4, "suggestion": 190, @@ -21532,7 +21524,7 @@ "model": "pootle_statistics.submission", "pk": 415, "fields": { - "creation_time": "2019-05-04T13:10:23.766Z", + "creation_time": "2019-12-01T16:25:34.093Z", "translation_project": 2, "submitter": 3, "suggestion": 191, @@ -21551,7 +21543,7 @@ "model": "pootle_statistics.submission", "pk": 416, "fields": { - "creation_time": "2019-05-11T13:10:23.766Z", + "creation_time": "2019-12-08T16:25:34.093Z", "translation_project": 2, "submitter": 1, "suggestion": 191, @@ -21570,7 +21562,7 @@ "model": "pootle_statistics.submission", "pk": 417, "fields": { - "creation_time": "2019-05-18T13:10:23.766Z", + "creation_time": "2019-12-15T16:25:34.093Z", "translation_project": 2, "submitter": 4, "suggestion": 192, @@ -21589,7 +21581,7 @@ "model": "pootle_statistics.submission", "pk": 418, "fields": { - "creation_time": "2020-01-10T13:10:34.065Z", + "creation_time": "2020-08-07T16:25:37Z", "translation_project": 2, "submitter": 3, "suggestion": null, @@ -21608,7 +21600,7 @@ "model": "pootle_statistics.submission", "pk": 419, "fields": { - "creation_time": "2019-04-03T13:10:23.766Z", + "creation_time": "2019-10-31T16:25:34.093Z", "translation_project": 2, "submitter": 3, "suggestion": 193, @@ -21627,7 +21619,7 @@ "model": "pootle_statistics.submission", "pk": 420, "fields": { - "creation_time": "2019-04-10T13:10:23.766Z", + "creation_time": "2019-11-07T16:25:34.093Z", "translation_project": 2, "submitter": 1, "suggestion": 193, @@ -21646,7 +21638,7 @@ "model": "pootle_statistics.submission", "pk": 421, "fields": { - "creation_time": "2019-04-17T13:10:23.766Z", + "creation_time": "2019-11-14T16:25:34.093Z", "translation_project": 2, "submitter": 4, "suggestion": 194, @@ -21665,7 +21657,7 @@ "model": "pootle_statistics.submission", "pk": 422, "fields": { - "creation_time": "2020-01-10T13:10:34.248Z", + "creation_time": "2020-08-07T16:25:37Z", "translation_project": 2, "submitter": 3, "suggestion": null, @@ -21684,7 +21676,7 @@ "model": "pootle_statistics.submission", "pk": 423, "fields": { - "creation_time": "2019-02-03T13:10:23.766Z", + "creation_time": "2019-08-31T16:25:34.093Z", "translation_project": 2, "submitter": 3, "suggestion": 195, @@ -21703,7 +21695,7 @@ "model": "pootle_statistics.submission", "pk": 424, "fields": { - "creation_time": "2019-02-10T13:10:23.766Z", + "creation_time": "2019-09-07T16:25:34.093Z", "translation_project": 2, "submitter": 1, "suggestion": 195, @@ -21722,7 +21714,7 @@ "model": "pootle_statistics.submission", "pk": 425, "fields": { - "creation_time": "2019-02-17T13:10:23.766Z", + "creation_time": "2019-09-14T16:25:34.093Z", "translation_project": 2, "submitter": 4, "suggestion": 196, @@ -21741,7 +21733,7 @@ "model": "pootle_statistics.submission", "pk": 426, "fields": { - "creation_time": "2019-07-04T13:10:23.766Z", + "creation_time": "2020-01-31T16:25:34.093Z", "translation_project": 2, "submitter": 3, "suggestion": 197, @@ -21760,7 +21752,7 @@ "model": "pootle_statistics.submission", "pk": 427, "fields": { - "creation_time": "2019-07-11T13:10:23.766Z", + "creation_time": "2020-02-07T16:25:34.093Z", "translation_project": 2, "submitter": 1, "suggestion": null, @@ -21779,7 +21771,7 @@ "model": "pootle_statistics.submission", "pk": 428, "fields": { - "creation_time": "2019-07-11T13:10:23.766Z", + "creation_time": "2020-02-07T16:25:34.093Z", "translation_project": 2, "submitter": 1, "suggestion": 197, @@ -21798,7 +21790,7 @@ "model": "pootle_statistics.submission", "pk": 429, "fields": { - "creation_time": "2019-07-18T13:10:23.766Z", + "creation_time": "2020-02-14T16:25:34.093Z", "translation_project": 2, "submitter": 4, "suggestion": 198, @@ -21817,7 +21809,7 @@ "model": "pootle_statistics.submission", "pk": 430, "fields": { - "creation_time": "2019-09-03T13:10:23.766Z", + "creation_time": "2020-03-31T16:25:34.093Z", "translation_project": 2, "submitter": 3, "suggestion": 199, @@ -21836,7 +21828,7 @@ "model": "pootle_statistics.submission", "pk": 431, "fields": { - "creation_time": "2019-09-10T13:10:23.766Z", + "creation_time": "2020-04-07T16:25:34.093Z", "translation_project": 2, "submitter": 1, "suggestion": 199, @@ -21855,7 +21847,7 @@ "model": "pootle_statistics.submission", "pk": 432, "fields": { - "creation_time": "2019-09-17T13:10:23.766Z", + "creation_time": "2020-04-14T16:25:34.093Z", "translation_project": 2, "submitter": 4, "suggestion": 200, @@ -21874,7 +21866,7 @@ "model": "pootle_statistics.submission", "pk": 433, "fields": { - "creation_time": "2019-03-06T13:10:23.766Z", + "creation_time": "2019-10-01T16:25:34.093Z", "translation_project": 2, "submitter": 3, "suggestion": 201, @@ -21893,7 +21885,7 @@ "model": "pootle_statistics.submission", "pk": 434, "fields": { - "creation_time": "2019-03-13T13:10:23.766Z", + "creation_time": "2019-10-08T16:25:34.093Z", "translation_project": 2, "submitter": 1, "suggestion": 201, @@ -21912,7 +21904,7 @@ "model": "pootle_statistics.submission", "pk": 435, "fields": { - "creation_time": "2019-03-20T13:10:23.766Z", + "creation_time": "2019-10-15T16:25:34.093Z", "translation_project": 2, "submitter": 4, "suggestion": 202, @@ -21931,7 +21923,7 @@ "model": "pootle_statistics.submission", "pk": 436, "fields": { - "creation_time": "2019-04-03T13:10:23.766Z", + "creation_time": "2019-10-31T16:25:34.093Z", "translation_project": 2, "submitter": 3, "suggestion": 203, @@ -21950,7 +21942,7 @@ "model": "pootle_statistics.submission", "pk": 437, "fields": { - "creation_time": "2019-04-10T13:10:23.766Z", + "creation_time": "2019-11-07T16:25:34.093Z", "translation_project": 2, "submitter": 1, "suggestion": 203, @@ -21969,7 +21961,7 @@ "model": "pootle_statistics.submission", "pk": 438, "fields": { - "creation_time": "2019-04-17T13:10:23.766Z", + "creation_time": "2019-11-14T16:25:34.093Z", "translation_project": 2, "submitter": 4, "suggestion": 204, @@ -21988,7 +21980,7 @@ "model": "pootle_statistics.submission", "pk": 439, "fields": { - "creation_time": "2020-01-10T13:10:34.711Z", + "creation_time": "2020-08-07T16:25:37Z", "translation_project": 2, "submitter": 3, "suggestion": null, @@ -22007,7 +21999,7 @@ "model": "pootle_statistics.submission", "pk": 440, "fields": { - "creation_time": "2019-07-04T13:10:23.766Z", + "creation_time": "2020-01-31T16:25:34.093Z", "translation_project": 2, "submitter": 3, "suggestion": 205, @@ -22026,7 +22018,7 @@ "model": "pootle_statistics.submission", "pk": 441, "fields": { - "creation_time": "2019-07-11T13:10:23.766Z", + "creation_time": "2020-02-07T16:25:34.093Z", "translation_project": 2, "submitter": 1, "suggestion": null, @@ -22045,7 +22037,7 @@ "model": "pootle_statistics.submission", "pk": 442, "fields": { - "creation_time": "2019-07-11T13:10:23.766Z", + "creation_time": "2020-02-07T16:25:34.093Z", "translation_project": 2, "submitter": 1, "suggestion": 205, @@ -22064,7 +22056,7 @@ "model": "pootle_statistics.submission", "pk": 443, "fields": { - "creation_time": "2019-07-18T13:10:23.766Z", + "creation_time": "2020-02-14T16:25:34.093Z", "translation_project": 2, "submitter": 4, "suggestion": 206, @@ -22083,7 +22075,7 @@ "model": "pootle_statistics.submission", "pk": 444, "fields": { - "creation_time": "2019-09-03T13:10:23.766Z", + "creation_time": "2020-03-31T16:25:34.093Z", "translation_project": 2, "submitter": 3, "suggestion": 207, @@ -22102,7 +22094,7 @@ "model": "pootle_statistics.submission", "pk": 445, "fields": { - "creation_time": "2019-09-10T13:10:23.766Z", + "creation_time": "2020-04-07T16:25:34.093Z", "translation_project": 2, "submitter": 1, "suggestion": 207, @@ -22121,7 +22113,7 @@ "model": "pootle_statistics.submission", "pk": 446, "fields": { - "creation_time": "2019-09-17T13:10:23.766Z", + "creation_time": "2020-04-14T16:25:34.093Z", "translation_project": 2, "submitter": 4, "suggestion": 208, @@ -22140,7 +22132,7 @@ "model": "pootle_statistics.submission", "pk": 447, "fields": { - "creation_time": "2019-05-04T13:10:23.766Z", + "creation_time": "2019-12-01T16:25:34.093Z", "translation_project": 2, "submitter": 3, "suggestion": 209, @@ -22159,7 +22151,7 @@ "model": "pootle_statistics.submission", "pk": 448, "fields": { - "creation_time": "2019-05-11T13:10:23.766Z", + "creation_time": "2019-12-08T16:25:34.093Z", "translation_project": 2, "submitter": 1, "suggestion": 209, @@ -22178,7 +22170,7 @@ "model": "pootle_statistics.submission", "pk": 449, "fields": { - "creation_time": "2019-05-18T13:10:23.766Z", + "creation_time": "2019-12-15T16:25:34.093Z", "translation_project": 2, "submitter": 4, "suggestion": 210, @@ -22197,7 +22189,7 @@ "model": "pootle_statistics.submission", "pk": 450, "fields": { - "creation_time": "2020-01-10T13:10:35.076Z", + "creation_time": "2020-08-07T16:25:37Z", "translation_project": 2, "submitter": 3, "suggestion": null, @@ -22216,7 +22208,7 @@ "model": "pootle_statistics.submission", "pk": 451, "fields": { - "creation_time": "2019-08-03T13:10:23.766Z", + "creation_time": "2020-03-02T16:25:34.093Z", "translation_project": 2, "submitter": 3, "suggestion": 211, @@ -22235,7 +22227,7 @@ "model": "pootle_statistics.submission", "pk": 452, "fields": { - "creation_time": "2019-08-10T13:10:23.766Z", + "creation_time": "2020-03-09T16:25:34.093Z", "translation_project": 2, "submitter": 1, "suggestion": 211, @@ -22254,7 +22246,7 @@ "model": "pootle_statistics.submission", "pk": 453, "fields": { - "creation_time": "2019-08-17T13:10:23.766Z", + "creation_time": "2020-03-16T16:25:34.093Z", "translation_project": 2, "submitter": 4, "suggestion": 212, @@ -22273,7 +22265,7 @@ "model": "pootle_statistics.submission", "pk": 454, "fields": { - "creation_time": "2019-02-03T13:10:23.766Z", + "creation_time": "2019-08-31T16:25:34.093Z", "translation_project": 2, "submitter": 3, "suggestion": 213, @@ -22292,7 +22284,7 @@ "model": "pootle_statistics.submission", "pk": 455, "fields": { - "creation_time": "2019-02-10T13:10:23.766Z", + "creation_time": "2019-09-07T16:25:34.093Z", "translation_project": 2, "submitter": 1, "suggestion": 213, @@ -22311,7 +22303,7 @@ "model": "pootle_statistics.submission", "pk": 456, "fields": { - "creation_time": "2019-02-17T13:10:23.766Z", + "creation_time": "2019-09-14T16:25:34.093Z", "translation_project": 2, "submitter": 4, "suggestion": 214, @@ -22330,7 +22322,7 @@ "model": "pootle_statistics.submission", "pk": 457, "fields": { - "creation_time": "2019-06-03T13:10:23.766Z", + "creation_time": "2019-12-31T16:25:34.093Z", "translation_project": 2, "submitter": 3, "suggestion": 215, @@ -22349,7 +22341,7 @@ "model": "pootle_statistics.submission", "pk": 458, "fields": { - "creation_time": "2019-06-10T13:10:23.766Z", + "creation_time": "2020-01-07T16:25:34.093Z", "translation_project": 2, "submitter": 1, "suggestion": null, @@ -22368,7 +22360,7 @@ "model": "pootle_statistics.submission", "pk": 459, "fields": { - "creation_time": "2019-06-10T13:10:23.766Z", + "creation_time": "2020-01-07T16:25:34.093Z", "translation_project": 2, "submitter": 1, "suggestion": 215, @@ -22387,7 +22379,7 @@ "model": "pootle_statistics.submission", "pk": 460, "fields": { - "creation_time": "2019-06-17T13:10:23.766Z", + "creation_time": "2020-01-14T16:25:34.093Z", "translation_project": 2, "submitter": 4, "suggestion": 216, @@ -22406,7 +22398,7 @@ "model": "pootle_statistics.submission", "pk": 461, "fields": { - "creation_time": "2019-06-03T13:10:23.766Z", + "creation_time": "2019-12-31T16:25:34.093Z", "translation_project": 2, "submitter": 3, "suggestion": 217, @@ -22425,7 +22417,7 @@ "model": "pootle_statistics.submission", "pk": 462, "fields": { - "creation_time": "2019-06-10T13:10:23.766Z", + "creation_time": "2020-01-07T16:25:34.093Z", "translation_project": 2, "submitter": 1, "suggestion": null, @@ -22444,7 +22436,7 @@ "model": "pootle_statistics.submission", "pk": 463, "fields": { - "creation_time": "2019-06-10T13:10:23.766Z", + "creation_time": "2020-01-07T16:25:34.093Z", "translation_project": 2, "submitter": 1, "suggestion": 217, @@ -22463,7 +22455,7 @@ "model": "pootle_statistics.submission", "pk": 464, "fields": { - "creation_time": "2019-06-17T13:10:23.766Z", + "creation_time": "2020-01-14T16:25:34.093Z", "translation_project": 2, "submitter": 4, "suggestion": 218, @@ -22482,7 +22474,7 @@ "model": "pootle_statistics.submission", "pk": 465, "fields": { - "creation_time": "2019-08-03T13:10:23.766Z", + "creation_time": "2020-03-02T16:25:34.093Z", "translation_project": 2, "submitter": 3, "suggestion": 219, @@ -22501,7 +22493,7 @@ "model": "pootle_statistics.submission", "pk": 466, "fields": { - "creation_time": "2019-08-10T13:10:23.766Z", + "creation_time": "2020-03-09T16:25:34.093Z", "translation_project": 2, "submitter": 1, "suggestion": 219, @@ -22520,7 +22512,7 @@ "model": "pootle_statistics.submission", "pk": 467, "fields": { - "creation_time": "2019-08-17T13:10:23.766Z", + "creation_time": "2020-03-16T16:25:34.093Z", "translation_project": 2, "submitter": 4, "suggestion": 220, @@ -22539,7 +22531,7 @@ "model": "pootle_statistics.submission", "pk": 468, "fields": { - "creation_time": "2019-02-03T13:10:23.766Z", + "creation_time": "2019-08-31T16:25:34.093Z", "translation_project": 2, "submitter": 3, "suggestion": 221, @@ -22558,7 +22550,7 @@ "model": "pootle_statistics.submission", "pk": 469, "fields": { - "creation_time": "2019-02-10T13:10:23.766Z", + "creation_time": "2019-09-07T16:25:34.093Z", "translation_project": 2, "submitter": 1, "suggestion": 221, @@ -22577,7 +22569,7 @@ "model": "pootle_statistics.submission", "pk": 470, "fields": { - "creation_time": "2019-02-17T13:10:23.766Z", + "creation_time": "2019-09-14T16:25:34.093Z", "translation_project": 2, "submitter": 4, "suggestion": 222, @@ -22596,7 +22588,7 @@ "model": "pootle_statistics.submission", "pk": 471, "fields": { - "creation_time": "2019-03-06T13:10:23.766Z", + "creation_time": "2019-10-01T16:25:34.093Z", "translation_project": 2, "submitter": 3, "suggestion": 223, @@ -22615,7 +22607,7 @@ "model": "pootle_statistics.submission", "pk": 472, "fields": { - "creation_time": "2019-03-13T13:10:23.766Z", + "creation_time": "2019-10-08T16:25:34.093Z", "translation_project": 2, "submitter": 1, "suggestion": 223, @@ -22634,7 +22626,7 @@ "model": "pootle_statistics.submission", "pk": 473, "fields": { - "creation_time": "2019-03-20T13:10:23.766Z", + "creation_time": "2019-10-15T16:25:34.093Z", "translation_project": 2, "submitter": 4, "suggestion": 224, @@ -22653,7 +22645,7 @@ "model": "pootle_statistics.submission", "pk": 474, "fields": { - "creation_time": "2019-05-04T13:10:23.766Z", + "creation_time": "2019-12-01T16:25:34.093Z", "translation_project": 2, "submitter": 3, "suggestion": 225, @@ -22672,7 +22664,7 @@ "model": "pootle_statistics.submission", "pk": 475, "fields": { - "creation_time": "2019-05-11T13:10:23.766Z", + "creation_time": "2019-12-08T16:25:34.093Z", "translation_project": 2, "submitter": 1, "suggestion": 225, @@ -22691,7 +22683,7 @@ "model": "pootle_statistics.submission", "pk": 476, "fields": { - "creation_time": "2019-05-18T13:10:23.766Z", + "creation_time": "2019-12-15T16:25:34.093Z", "translation_project": 2, "submitter": 4, "suggestion": 226, @@ -22710,7 +22702,7 @@ "model": "pootle_statistics.submission", "pk": 477, "fields": { - "creation_time": "2020-01-10T13:10:35.716Z", + "creation_time": "2020-08-07T16:25:38Z", "translation_project": 2, "submitter": 3, "suggestion": null, @@ -22729,7 +22721,7 @@ "model": "pootle_statistics.submission", "pk": 478, "fields": { - "creation_time": "2019-04-03T13:10:23.766Z", + "creation_time": "2019-10-31T16:25:34.093Z", "translation_project": 2, "submitter": 3, "suggestion": 227, @@ -22748,7 +22740,7 @@ "model": "pootle_statistics.submission", "pk": 479, "fields": { - "creation_time": "2019-04-10T13:10:23.766Z", + "creation_time": "2019-11-07T16:25:34.093Z", "translation_project": 2, "submitter": 1, "suggestion": 227, @@ -22767,7 +22759,7 @@ "model": "pootle_statistics.submission", "pk": 480, "fields": { - "creation_time": "2019-04-17T13:10:23.766Z", + "creation_time": "2019-11-14T16:25:34.093Z", "translation_project": 2, "submitter": 4, "suggestion": 228, @@ -22786,7 +22778,7 @@ "model": "pootle_statistics.submission", "pk": 481, "fields": { - "creation_time": "2020-01-10T13:10:35.900Z", + "creation_time": "2020-08-07T16:25:38Z", "translation_project": 2, "submitter": 3, "suggestion": null, @@ -22805,7 +22797,7 @@ "model": "pootle_statistics.submission", "pk": 482, "fields": { - "creation_time": "2019-09-03T13:10:23.766Z", + "creation_time": "2020-03-31T16:25:34.093Z", "translation_project": 2, "submitter": 3, "suggestion": 229, @@ -22824,7 +22816,7 @@ "model": "pootle_statistics.submission", "pk": 483, "fields": { - "creation_time": "2019-09-10T13:10:23.766Z", + "creation_time": "2020-04-07T16:25:34.093Z", "translation_project": 2, "submitter": 1, "suggestion": 229, @@ -22843,7 +22835,7 @@ "model": "pootle_statistics.submission", "pk": 484, "fields": { - "creation_time": "2019-09-17T13:10:23.766Z", + "creation_time": "2020-04-14T16:25:34.093Z", "translation_project": 2, "submitter": 4, "suggestion": 230, @@ -22862,7 +22854,7 @@ "model": "pootle_statistics.submission", "pk": 485, "fields": { - "creation_time": "2019-07-04T13:10:23.766Z", + "creation_time": "2020-01-31T16:25:34.093Z", "translation_project": 2, "submitter": 3, "suggestion": 231, @@ -22881,7 +22873,7 @@ "model": "pootle_statistics.submission", "pk": 486, "fields": { - "creation_time": "2019-07-11T13:10:23.766Z", + "creation_time": "2020-02-07T16:25:34.093Z", "translation_project": 2, "submitter": 1, "suggestion": null, @@ -22900,7 +22892,7 @@ "model": "pootle_statistics.submission", "pk": 487, "fields": { - "creation_time": "2019-07-11T13:10:23.766Z", + "creation_time": "2020-02-07T16:25:34.093Z", "translation_project": 2, "submitter": 1, "suggestion": 231, @@ -22919,7 +22911,7 @@ "model": "pootle_statistics.submission", "pk": 488, "fields": { - "creation_time": "2019-07-18T13:10:23.766Z", + "creation_time": "2020-02-14T16:25:34.093Z", "translation_project": 2, "submitter": 4, "suggestion": 232, @@ -22938,7 +22930,7 @@ "model": "pootle_statistics.submission", "pk": 489, "fields": { - "creation_time": "2019-05-04T13:10:23.766Z", + "creation_time": "2019-12-01T16:25:34.093Z", "translation_project": 2, "submitter": 3, "suggestion": 233, @@ -22957,7 +22949,7 @@ "model": "pootle_statistics.submission", "pk": 490, "fields": { - "creation_time": "2019-05-11T13:10:23.766Z", + "creation_time": "2019-12-08T16:25:34.093Z", "translation_project": 2, "submitter": 1, "suggestion": 233, @@ -22976,7 +22968,7 @@ "model": "pootle_statistics.submission", "pk": 491, "fields": { - "creation_time": "2019-05-18T13:10:23.766Z", + "creation_time": "2019-12-15T16:25:34.093Z", "translation_project": 2, "submitter": 4, "suggestion": 234, @@ -22995,7 +22987,7 @@ "model": "pootle_statistics.submission", "pk": 492, "fields": { - "creation_time": "2019-03-06T13:10:23.766Z", + "creation_time": "2019-10-01T16:25:34.093Z", "translation_project": 2, "submitter": 3, "suggestion": 235, @@ -23014,7 +23006,7 @@ "model": "pootle_statistics.submission", "pk": 493, "fields": { - "creation_time": "2019-03-13T13:10:23.766Z", + "creation_time": "2019-10-08T16:25:34.093Z", "translation_project": 2, "submitter": 1, "suggestion": 235, @@ -23033,7 +23025,7 @@ "model": "pootle_statistics.submission", "pk": 494, "fields": { - "creation_time": "2019-03-20T13:10:23.766Z", + "creation_time": "2019-10-15T16:25:34.093Z", "translation_project": 2, "submitter": 4, "suggestion": 236, @@ -23052,7 +23044,7 @@ "model": "pootle_statistics.submission", "pk": 495, "fields": { - "creation_time": "2020-01-10T13:10:36.386Z", + "creation_time": "2020-08-07T16:25:38Z", "translation_project": 2, "submitter": 3, "suggestion": null, @@ -23071,7 +23063,7 @@ "model": "pootle_statistics.submission", "pk": 496, "fields": { - "creation_time": "2019-04-03T13:10:23.766Z", + "creation_time": "2019-10-31T16:25:34.093Z", "translation_project": 2, "submitter": 3, "suggestion": 237, @@ -23090,7 +23082,7 @@ "model": "pootle_statistics.submission", "pk": 497, "fields": { - "creation_time": "2019-04-10T13:10:23.766Z", + "creation_time": "2019-11-07T16:25:34.093Z", "translation_project": 2, "submitter": 1, "suggestion": null, @@ -23109,7 +23101,7 @@ "model": "pootle_statistics.submission", "pk": 498, "fields": { - "creation_time": "2019-04-10T13:10:23.766Z", + "creation_time": "2019-11-07T16:25:34.093Z", "translation_project": 2, "submitter": 1, "suggestion": 237, @@ -23128,7 +23120,7 @@ "model": "pootle_statistics.submission", "pk": 499, "fields": { - "creation_time": "2019-04-17T13:10:23.766Z", + "creation_time": "2019-11-14T16:25:34.093Z", "translation_project": 2, "submitter": 4, "suggestion": 238, @@ -23147,7 +23139,7 @@ "model": "pootle_statistics.submission", "pk": 500, "fields": { - "creation_time": "2019-02-03T13:10:23.766Z", + "creation_time": "2019-08-31T16:25:34.093Z", "translation_project": 2, "submitter": 3, "suggestion": 239, @@ -23166,7 +23158,7 @@ "model": "pootle_statistics.submission", "pk": 501, "fields": { - "creation_time": "2019-02-10T13:10:23.766Z", + "creation_time": "2019-09-07T16:25:34.093Z", "translation_project": 2, "submitter": 1, "suggestion": 239, @@ -23185,7 +23177,7 @@ "model": "pootle_statistics.submission", "pk": 502, "fields": { - "creation_time": "2019-02-17T13:10:23.766Z", + "creation_time": "2019-09-14T16:25:34.093Z", "translation_project": 2, "submitter": 4, "suggestion": 240, @@ -23204,7 +23196,7 @@ "model": "pootle_statistics.submission", "pk": 503, "fields": { - "creation_time": "2019-02-03T13:10:23.766Z", + "creation_time": "2019-08-31T16:25:34.093Z", "translation_project": 2, "submitter": 3, "suggestion": 241, @@ -23223,7 +23215,7 @@ "model": "pootle_statistics.submission", "pk": 504, "fields": { - "creation_time": "2019-02-10T13:10:23.766Z", + "creation_time": "2019-09-07T16:25:34.093Z", "translation_project": 2, "submitter": 1, "suggestion": 241, @@ -23242,7 +23234,7 @@ "model": "pootle_statistics.submission", "pk": 505, "fields": { - "creation_time": "2019-02-17T13:10:23.766Z", + "creation_time": "2019-09-14T16:25:34.093Z", "translation_project": 2, "submitter": 4, "suggestion": 242, @@ -23261,7 +23253,7 @@ "model": "pootle_statistics.submission", "pk": 506, "fields": { - "creation_time": "2019-04-03T13:10:23.766Z", + "creation_time": "2019-10-31T16:25:34.093Z", "translation_project": 2, "submitter": 3, "suggestion": 243, @@ -23280,7 +23272,7 @@ "model": "pootle_statistics.submission", "pk": 507, "fields": { - "creation_time": "2019-04-10T13:10:23.766Z", + "creation_time": "2019-11-07T16:25:34.093Z", "translation_project": 2, "submitter": 1, "suggestion": null, @@ -23299,7 +23291,7 @@ "model": "pootle_statistics.submission", "pk": 508, "fields": { - "creation_time": "2019-04-10T13:10:23.766Z", + "creation_time": "2019-11-07T16:25:34.093Z", "translation_project": 2, "submitter": 1, "suggestion": 243, @@ -23318,7 +23310,7 @@ "model": "pootle_statistics.submission", "pk": 509, "fields": { - "creation_time": "2019-04-17T13:10:23.766Z", + "creation_time": "2019-11-14T16:25:34.093Z", "translation_project": 2, "submitter": 4, "suggestion": 244, @@ -23337,7 +23329,7 @@ "model": "pootle_statistics.submission", "pk": 510, "fields": { - "creation_time": "2019-03-06T13:10:23.766Z", + "creation_time": "2019-10-01T16:25:34.093Z", "translation_project": 2, "submitter": 3, "suggestion": 245, @@ -23356,7 +23348,7 @@ "model": "pootle_statistics.submission", "pk": 511, "fields": { - "creation_time": "2019-03-13T13:10:23.766Z", + "creation_time": "2019-10-08T16:25:34.093Z", "translation_project": 2, "submitter": 1, "suggestion": 245, @@ -23375,7 +23367,7 @@ "model": "pootle_statistics.submission", "pk": 512, "fields": { - "creation_time": "2019-03-20T13:10:23.766Z", + "creation_time": "2019-10-15T16:25:34.093Z", "translation_project": 2, "submitter": 4, "suggestion": 246, @@ -23394,7 +23386,7 @@ "model": "pootle_statistics.submission", "pk": 513, "fields": { - "creation_time": "2020-01-10T13:10:36.816Z", + "creation_time": "2020-08-07T16:25:38Z", "translation_project": 2, "submitter": 3, "suggestion": null, @@ -23413,7 +23405,7 @@ "model": "pootle_statistics.submission", "pk": 514, "fields": { - "creation_time": "2019-05-04T13:10:23.766Z", + "creation_time": "2019-12-01T16:25:34.093Z", "translation_project": 2, "submitter": 3, "suggestion": 247, @@ -23432,7 +23424,7 @@ "model": "pootle_statistics.submission", "pk": 515, "fields": { - "creation_time": "2019-05-11T13:10:23.766Z", + "creation_time": "2019-12-08T16:25:34.093Z", "translation_project": 2, "submitter": 1, "suggestion": 247, @@ -23451,7 +23443,7 @@ "model": "pootle_statistics.submission", "pk": 516, "fields": { - "creation_time": "2019-05-18T13:10:23.766Z", + "creation_time": "2019-12-15T16:25:34.093Z", "translation_project": 2, "submitter": 4, "suggestion": 248, @@ -23470,7 +23462,7 @@ "model": "pootle_statistics.submission", "pk": 517, "fields": { - "creation_time": "2019-05-04T13:10:23.766Z", + "creation_time": "2019-12-01T16:25:34.093Z", "translation_project": 2, "submitter": 3, "suggestion": 249, @@ -23489,7 +23481,7 @@ "model": "pootle_statistics.submission", "pk": 518, "fields": { - "creation_time": "2019-05-11T13:10:23.766Z", + "creation_time": "2019-12-08T16:25:34.093Z", "translation_project": 2, "submitter": 1, "suggestion": 249, @@ -23508,7 +23500,7 @@ "model": "pootle_statistics.submission", "pk": 519, "fields": { - "creation_time": "2019-05-18T13:10:23.766Z", + "creation_time": "2019-12-15T16:25:34.093Z", "translation_project": 2, "submitter": 4, "suggestion": 250, @@ -23527,7 +23519,7 @@ "model": "pootle_statistics.submission", "pk": 520, "fields": { - "creation_time": "2019-04-03T13:10:23.766Z", + "creation_time": "2019-10-31T16:25:34.093Z", "translation_project": 2, "submitter": 3, "suggestion": 251, @@ -23546,7 +23538,7 @@ "model": "pootle_statistics.submission", "pk": 521, "fields": { - "creation_time": "2019-04-10T13:10:23.766Z", + "creation_time": "2019-11-07T16:25:34.093Z", "translation_project": 2, "submitter": 1, "suggestion": null, @@ -23565,7 +23557,7 @@ "model": "pootle_statistics.submission", "pk": 522, "fields": { - "creation_time": "2019-04-10T13:10:23.766Z", + "creation_time": "2019-11-07T16:25:34.093Z", "translation_project": 2, "submitter": 1, "suggestion": 251, @@ -23584,7 +23576,7 @@ "model": "pootle_statistics.submission", "pk": 523, "fields": { - "creation_time": "2019-04-17T13:10:23.766Z", + "creation_time": "2019-11-14T16:25:34.093Z", "translation_project": 2, "submitter": 4, "suggestion": 252, @@ -23603,7 +23595,7 @@ "model": "pootle_statistics.submission", "pk": 524, "fields": { - "creation_time": "2019-03-06T13:10:23.766Z", + "creation_time": "2019-10-01T16:25:34.093Z", "translation_project": 2, "submitter": 3, "suggestion": 253, @@ -23622,7 +23614,7 @@ "model": "pootle_statistics.submission", "pk": 525, "fields": { - "creation_time": "2019-03-13T13:10:23.766Z", + "creation_time": "2019-10-08T16:25:34.093Z", "translation_project": 2, "submitter": 1, "suggestion": 253, @@ -23641,7 +23633,7 @@ "model": "pootle_statistics.submission", "pk": 526, "fields": { - "creation_time": "2019-03-20T13:10:23.766Z", + "creation_time": "2019-10-15T16:25:34.093Z", "translation_project": 2, "submitter": 4, "suggestion": 254, @@ -23660,7 +23652,7 @@ "model": "pootle_statistics.submission", "pk": 527, "fields": { - "creation_time": "2020-01-10T13:10:37.294Z", + "creation_time": "2020-08-07T16:25:38Z", "translation_project": 2, "submitter": 3, "suggestion": null, @@ -23679,7 +23671,7 @@ "model": "pootle_statistics.submission", "pk": 528, "fields": { - "creation_time": "2019-02-03T13:10:23.766Z", + "creation_time": "2019-08-31T16:25:34.093Z", "translation_project": 2, "submitter": 3, "suggestion": 255, @@ -23698,7 +23690,7 @@ "model": "pootle_statistics.submission", "pk": 529, "fields": { - "creation_time": "2019-02-10T13:10:23.766Z", + "creation_time": "2019-09-07T16:25:34.093Z", "translation_project": 2, "submitter": 1, "suggestion": 255, @@ -23717,7 +23709,7 @@ "model": "pootle_statistics.submission", "pk": 530, "fields": { - "creation_time": "2019-02-17T13:10:23.766Z", + "creation_time": "2019-09-14T16:25:34.093Z", "translation_project": 2, "submitter": 4, "suggestion": 256, @@ -23736,7 +23728,7 @@ "model": "pootle_statistics.submission", "pk": 531, "fields": { - "creation_time": "2019-03-06T13:10:23.766Z", + "creation_time": "2019-10-01T16:25:34.093Z", "translation_project": 4, "submitter": 3, "suggestion": 257, @@ -23755,7 +23747,7 @@ "model": "pootle_statistics.submission", "pk": 532, "fields": { - "creation_time": "2019-03-13T13:10:23.766Z", + "creation_time": "2019-10-08T16:25:34.093Z", "translation_project": 4, "submitter": 1, "suggestion": 257, @@ -23774,7 +23766,7 @@ "model": "pootle_statistics.submission", "pk": 533, "fields": { - "creation_time": "2019-03-20T13:10:23.766Z", + "creation_time": "2019-10-15T16:25:34.093Z", "translation_project": 4, "submitter": 4, "suggestion": 258, @@ -23793,7 +23785,7 @@ "model": "pootle_statistics.submission", "pk": 534, "fields": { - "creation_time": "2019-05-04T13:10:23.766Z", + "creation_time": "2019-12-01T16:25:34.093Z", "translation_project": 4, "submitter": 3, "suggestion": 259, @@ -23812,7 +23804,7 @@ "model": "pootle_statistics.submission", "pk": 535, "fields": { - "creation_time": "2019-05-11T13:10:23.766Z", + "creation_time": "2019-12-08T16:25:34.093Z", "translation_project": 4, "submitter": 1, "suggestion": 259, @@ -23831,7 +23823,7 @@ "model": "pootle_statistics.submission", "pk": 536, "fields": { - "creation_time": "2019-05-18T13:10:23.766Z", + "creation_time": "2019-12-15T16:25:34.093Z", "translation_project": 4, "submitter": 4, "suggestion": 260, @@ -23850,7 +23842,7 @@ "model": "pootle_statistics.submission", "pk": 537, "fields": { - "creation_time": "2020-01-10T13:10:37.526Z", + "creation_time": "2020-08-07T16:25:38Z", "translation_project": 4, "submitter": 3, "suggestion": null, @@ -23869,7 +23861,7 @@ "model": "pootle_statistics.submission", "pk": 538, "fields": { - "creation_time": "2019-09-03T13:10:23.766Z", + "creation_time": "2020-03-31T16:25:34.093Z", "translation_project": 4, "submitter": 3, "suggestion": 261, @@ -23888,7 +23880,7 @@ "model": "pootle_statistics.submission", "pk": 539, "fields": { - "creation_time": "2019-09-10T13:10:23.766Z", + "creation_time": "2020-04-07T16:25:34.093Z", "translation_project": 4, "submitter": 1, "suggestion": 261, @@ -23907,7 +23899,7 @@ "model": "pootle_statistics.submission", "pk": 540, "fields": { - "creation_time": "2019-09-17T13:10:23.766Z", + "creation_time": "2020-04-14T16:25:34.093Z", "translation_project": 4, "submitter": 4, "suggestion": 262, @@ -23926,7 +23918,7 @@ "model": "pootle_statistics.submission", "pk": 541, "fields": { - "creation_time": "2019-02-03T13:10:23.766Z", + "creation_time": "2019-08-31T16:25:34.093Z", "translation_project": 4, "submitter": 3, "suggestion": 263, @@ -23945,7 +23937,7 @@ "model": "pootle_statistics.submission", "pk": 542, "fields": { - "creation_time": "2019-02-10T13:10:23.766Z", + "creation_time": "2019-09-07T16:25:34.093Z", "translation_project": 4, "submitter": 1, "suggestion": 263, @@ -23964,7 +23956,7 @@ "model": "pootle_statistics.submission", "pk": 543, "fields": { - "creation_time": "2019-02-17T13:10:23.766Z", + "creation_time": "2019-09-14T16:25:34.093Z", "translation_project": 4, "submitter": 4, "suggestion": 264, @@ -23983,7 +23975,7 @@ "model": "pootle_statistics.submission", "pk": 544, "fields": { - "creation_time": "2019-08-03T13:10:23.766Z", + "creation_time": "2020-03-02T16:25:34.093Z", "translation_project": 4, "submitter": 3, "suggestion": 265, @@ -24002,7 +23994,7 @@ "model": "pootle_statistics.submission", "pk": 545, "fields": { - "creation_time": "2019-08-10T13:10:23.766Z", + "creation_time": "2020-03-09T16:25:34.093Z", "translation_project": 4, "submitter": 1, "suggestion": 265, @@ -24021,7 +24013,7 @@ "model": "pootle_statistics.submission", "pk": 546, "fields": { - "creation_time": "2019-08-17T13:10:23.766Z", + "creation_time": "2020-03-16T16:25:34.093Z", "translation_project": 4, "submitter": 4, "suggestion": 266, @@ -24040,7 +24032,7 @@ "model": "pootle_statistics.submission", "pk": 547, "fields": { - "creation_time": "2019-07-04T13:10:23.766Z", + "creation_time": "2020-01-31T16:25:34.093Z", "translation_project": 4, "submitter": 3, "suggestion": 267, @@ -24059,7 +24051,7 @@ "model": "pootle_statistics.submission", "pk": 548, "fields": { - "creation_time": "2019-07-11T13:10:23.766Z", + "creation_time": "2020-02-07T16:25:34.093Z", "translation_project": 4, "submitter": 1, "suggestion": null, @@ -24078,7 +24070,7 @@ "model": "pootle_statistics.submission", "pk": 549, "fields": { - "creation_time": "2019-07-11T13:10:23.766Z", + "creation_time": "2020-02-07T16:25:34.093Z", "translation_project": 4, "submitter": 1, "suggestion": 267, @@ -24097,7 +24089,7 @@ "model": "pootle_statistics.submission", "pk": 550, "fields": { - "creation_time": "2019-07-18T13:10:23.766Z", + "creation_time": "2020-02-14T16:25:34.093Z", "translation_project": 4, "submitter": 4, "suggestion": 268, @@ -24116,7 +24108,7 @@ "model": "pootle_statistics.submission", "pk": 551, "fields": { - "creation_time": "2019-04-03T13:10:23.766Z", + "creation_time": "2019-10-31T16:25:34.093Z", "translation_project": 4, "submitter": 3, "suggestion": 269, @@ -24135,7 +24127,7 @@ "model": "pootle_statistics.submission", "pk": 552, "fields": { - "creation_time": "2019-04-10T13:10:23.766Z", + "creation_time": "2019-11-07T16:25:34.093Z", "translation_project": 4, "submitter": 1, "suggestion": 269, @@ -24154,7 +24146,7 @@ "model": "pootle_statistics.submission", "pk": 553, "fields": { - "creation_time": "2019-04-17T13:10:23.766Z", + "creation_time": "2019-11-14T16:25:34.093Z", "translation_project": 4, "submitter": 4, "suggestion": 270, @@ -24173,7 +24165,7 @@ "model": "pootle_statistics.submission", "pk": 554, "fields": { - "creation_time": "2020-01-10T13:10:38.028Z", + "creation_time": "2020-08-07T16:25:38Z", "translation_project": 4, "submitter": 3, "suggestion": null, @@ -24192,7 +24184,7 @@ "model": "pootle_statistics.submission", "pk": 555, "fields": { - "creation_time": "2019-06-03T13:10:23.766Z", + "creation_time": "2019-12-31T16:25:34.093Z", "translation_project": 4, "submitter": 3, "suggestion": 271, @@ -24211,7 +24203,7 @@ "model": "pootle_statistics.submission", "pk": 556, "fields": { - "creation_time": "2019-06-10T13:10:23.766Z", + "creation_time": "2020-01-07T16:25:34.093Z", "translation_project": 4, "submitter": 1, "suggestion": null, @@ -24230,7 +24222,7 @@ "model": "pootle_statistics.submission", "pk": 557, "fields": { - "creation_time": "2019-06-10T13:10:23.766Z", + "creation_time": "2020-01-07T16:25:34.093Z", "translation_project": 4, "submitter": 1, "suggestion": 271, @@ -24249,7 +24241,7 @@ "model": "pootle_statistics.submission", "pk": 558, "fields": { - "creation_time": "2019-06-17T13:10:23.766Z", + "creation_time": "2020-01-14T16:25:34.093Z", "translation_project": 4, "submitter": 4, "suggestion": 272, @@ -24268,7 +24260,7 @@ "model": "pootle_statistics.submission", "pk": 559, "fields": { - "creation_time": "2019-04-03T13:10:23.766Z", + "creation_time": "2019-10-31T16:25:34.093Z", "translation_project": 4, "submitter": 3, "suggestion": 273, @@ -24287,7 +24279,7 @@ "model": "pootle_statistics.submission", "pk": 560, "fields": { - "creation_time": "2019-04-10T13:10:23.766Z", + "creation_time": "2019-11-07T16:25:34.093Z", "translation_project": 4, "submitter": 1, "suggestion": 273, @@ -24306,7 +24298,7 @@ "model": "pootle_statistics.submission", "pk": 561, "fields": { - "creation_time": "2019-04-17T13:10:23.766Z", + "creation_time": "2019-11-14T16:25:34.093Z", "translation_project": 4, "submitter": 4, "suggestion": 274, @@ -24325,7 +24317,7 @@ "model": "pootle_statistics.submission", "pk": 562, "fields": { - "creation_time": "2020-01-10T13:10:38.310Z", + "creation_time": "2020-08-07T16:25:38Z", "translation_project": 4, "submitter": 3, "suggestion": null, @@ -24344,7 +24336,7 @@ "model": "pootle_statistics.submission", "pk": 563, "fields": { - "creation_time": "2019-05-04T13:10:23.766Z", + "creation_time": "2019-12-01T16:25:34.093Z", "translation_project": 4, "submitter": 3, "suggestion": 275, @@ -24363,7 +24355,7 @@ "model": "pootle_statistics.submission", "pk": 564, "fields": { - "creation_time": "2019-05-11T13:10:23.766Z", + "creation_time": "2019-12-08T16:25:34.093Z", "translation_project": 4, "submitter": 1, "suggestion": 275, @@ -24382,7 +24374,7 @@ "model": "pootle_statistics.submission", "pk": 565, "fields": { - "creation_time": "2019-05-18T13:10:23.766Z", + "creation_time": "2019-12-15T16:25:34.093Z", "translation_project": 4, "submitter": 4, "suggestion": 276, @@ -24401,7 +24393,7 @@ "model": "pootle_statistics.submission", "pk": 566, "fields": { - "creation_time": "2020-01-10T13:10:38.486Z", + "creation_time": "2020-08-07T16:25:38Z", "translation_project": 4, "submitter": 3, "suggestion": null, @@ -24420,7 +24412,7 @@ "model": "pootle_statistics.submission", "pk": 567, "fields": { - "creation_time": "2019-02-03T13:10:23.766Z", + "creation_time": "2019-08-31T16:25:34.093Z", "translation_project": 4, "submitter": 3, "suggestion": 277, @@ -24439,7 +24431,7 @@ "model": "pootle_statistics.submission", "pk": 568, "fields": { - "creation_time": "2019-02-10T13:10:23.766Z", + "creation_time": "2019-09-07T16:25:34.093Z", "translation_project": 4, "submitter": 1, "suggestion": 277, @@ -24458,7 +24450,7 @@ "model": "pootle_statistics.submission", "pk": 569, "fields": { - "creation_time": "2019-02-17T13:10:23.766Z", + "creation_time": "2019-09-14T16:25:34.093Z", "translation_project": 4, "submitter": 4, "suggestion": 278, @@ -24477,7 +24469,7 @@ "model": "pootle_statistics.submission", "pk": 570, "fields": { - "creation_time": "2019-08-03T13:10:23.766Z", + "creation_time": "2020-03-02T16:25:34.093Z", "translation_project": 4, "submitter": 3, "suggestion": 279, @@ -24496,7 +24488,7 @@ "model": "pootle_statistics.submission", "pk": 571, "fields": { - "creation_time": "2019-08-10T13:10:23.766Z", + "creation_time": "2020-03-09T16:25:34.093Z", "translation_project": 4, "submitter": 1, "suggestion": 279, @@ -24515,7 +24507,7 @@ "model": "pootle_statistics.submission", "pk": 572, "fields": { - "creation_time": "2019-08-17T13:10:23.766Z", + "creation_time": "2020-03-16T16:25:34.093Z", "translation_project": 4, "submitter": 4, "suggestion": 280, @@ -24534,7 +24526,7 @@ "model": "pootle_statistics.submission", "pk": 573, "fields": { - "creation_time": "2019-07-04T13:10:23.766Z", + "creation_time": "2020-01-31T16:25:34.093Z", "translation_project": 4, "submitter": 3, "suggestion": 281, @@ -24553,7 +24545,7 @@ "model": "pootle_statistics.submission", "pk": 574, "fields": { - "creation_time": "2019-07-11T13:10:23.766Z", + "creation_time": "2020-02-07T16:25:34.093Z", "translation_project": 4, "submitter": 1, "suggestion": null, @@ -24572,7 +24564,7 @@ "model": "pootle_statistics.submission", "pk": 575, "fields": { - "creation_time": "2019-07-11T13:10:23.766Z", + "creation_time": "2020-02-07T16:25:34.093Z", "translation_project": 4, "submitter": 1, "suggestion": 281, @@ -24591,7 +24583,7 @@ "model": "pootle_statistics.submission", "pk": 576, "fields": { - "creation_time": "2019-07-18T13:10:23.766Z", + "creation_time": "2020-02-14T16:25:34.093Z", "translation_project": 4, "submitter": 4, "suggestion": 282, @@ -24610,7 +24602,7 @@ "model": "pootle_statistics.submission", "pk": 577, "fields": { - "creation_time": "2019-06-03T13:10:23.766Z", + "creation_time": "2019-12-31T16:25:34.093Z", "translation_project": 4, "submitter": 3, "suggestion": 283, @@ -24629,7 +24621,7 @@ "model": "pootle_statistics.submission", "pk": 578, "fields": { - "creation_time": "2019-06-10T13:10:23.766Z", + "creation_time": "2020-01-07T16:25:34.093Z", "translation_project": 4, "submitter": 1, "suggestion": null, @@ -24648,7 +24640,7 @@ "model": "pootle_statistics.submission", "pk": 579, "fields": { - "creation_time": "2019-06-10T13:10:23.766Z", + "creation_time": "2020-01-07T16:25:34.093Z", "translation_project": 4, "submitter": 1, "suggestion": 283, @@ -24667,7 +24659,7 @@ "model": "pootle_statistics.submission", "pk": 580, "fields": { - "creation_time": "2019-06-17T13:10:23.766Z", + "creation_time": "2020-01-14T16:25:34.093Z", "translation_project": 4, "submitter": 4, "suggestion": 284, @@ -24686,7 +24678,7 @@ "model": "pootle_statistics.submission", "pk": 581, "fields": { - "creation_time": "2019-09-03T13:10:23.766Z", + "creation_time": "2020-03-31T16:25:34.093Z", "translation_project": 4, "submitter": 3, "suggestion": 285, @@ -24705,7 +24697,7 @@ "model": "pootle_statistics.submission", "pk": 582, "fields": { - "creation_time": "2019-09-10T13:10:23.766Z", + "creation_time": "2020-04-07T16:25:34.093Z", "translation_project": 4, "submitter": 1, "suggestion": 285, @@ -24724,7 +24716,7 @@ "model": "pootle_statistics.submission", "pk": 583, "fields": { - "creation_time": "2019-09-17T13:10:23.766Z", + "creation_time": "2020-04-14T16:25:34.093Z", "translation_project": 4, "submitter": 4, "suggestion": 286, @@ -24743,7 +24735,7 @@ "model": "pootle_statistics.submission", "pk": 584, "fields": { - "creation_time": "2019-03-06T13:10:23.766Z", + "creation_time": "2019-10-01T16:25:34.093Z", "translation_project": 4, "submitter": 3, "suggestion": 287, @@ -24762,7 +24754,7 @@ "model": "pootle_statistics.submission", "pk": 585, "fields": { - "creation_time": "2019-03-13T13:10:23.766Z", + "creation_time": "2019-10-08T16:25:34.093Z", "translation_project": 4, "submitter": 1, "suggestion": 287, @@ -24781,7 +24773,7 @@ "model": "pootle_statistics.submission", "pk": 586, "fields": { - "creation_time": "2019-03-20T13:10:23.766Z", + "creation_time": "2019-10-15T16:25:34.093Z", "translation_project": 4, "submitter": 4, "suggestion": 288, @@ -24800,7 +24792,7 @@ "model": "pootle_statistics.submission", "pk": 587, "fields": { - "creation_time": "2019-07-04T13:10:23.766Z", + "creation_time": "2020-01-31T16:25:34.093Z", "translation_project": 4, "submitter": 3, "suggestion": 289, @@ -24819,7 +24811,7 @@ "model": "pootle_statistics.submission", "pk": 588, "fields": { - "creation_time": "2019-07-11T13:10:23.766Z", + "creation_time": "2020-02-07T16:25:34.093Z", "translation_project": 4, "submitter": 1, "suggestion": null, @@ -24838,7 +24830,7 @@ "model": "pootle_statistics.submission", "pk": 589, "fields": { - "creation_time": "2019-07-11T13:10:23.766Z", + "creation_time": "2020-02-07T16:25:34.093Z", "translation_project": 4, "submitter": 1, "suggestion": 289, @@ -24857,7 +24849,7 @@ "model": "pootle_statistics.submission", "pk": 590, "fields": { - "creation_time": "2019-07-18T13:10:23.766Z", + "creation_time": "2020-02-14T16:25:34.093Z", "translation_project": 4, "submitter": 4, "suggestion": 290, @@ -24876,7 +24868,7 @@ "model": "pootle_statistics.submission", "pk": 591, "fields": { - "creation_time": "2019-06-03T13:10:23.766Z", + "creation_time": "2019-12-31T16:25:34.093Z", "translation_project": 4, "submitter": 3, "suggestion": 291, @@ -24895,7 +24887,7 @@ "model": "pootle_statistics.submission", "pk": 592, "fields": { - "creation_time": "2019-06-10T13:10:23.766Z", + "creation_time": "2020-01-07T16:25:34.093Z", "translation_project": 4, "submitter": 1, "suggestion": null, @@ -24914,7 +24906,7 @@ "model": "pootle_statistics.submission", "pk": 593, "fields": { - "creation_time": "2019-06-10T13:10:23.766Z", + "creation_time": "2020-01-07T16:25:34.093Z", "translation_project": 4, "submitter": 1, "suggestion": 291, @@ -24933,7 +24925,7 @@ "model": "pootle_statistics.submission", "pk": 594, "fields": { - "creation_time": "2019-06-17T13:10:23.766Z", + "creation_time": "2020-01-14T16:25:34.093Z", "translation_project": 4, "submitter": 4, "suggestion": 292, @@ -24952,7 +24944,7 @@ "model": "pootle_statistics.submission", "pk": 595, "fields": { - "creation_time": "2019-04-03T13:10:23.766Z", + "creation_time": "2019-10-31T16:25:34.093Z", "translation_project": 4, "submitter": 3, "suggestion": 293, @@ -24971,7 +24963,7 @@ "model": "pootle_statistics.submission", "pk": 596, "fields": { - "creation_time": "2019-04-10T13:10:23.766Z", + "creation_time": "2019-11-07T16:25:34.093Z", "translation_project": 4, "submitter": 1, "suggestion": 293, @@ -24990,7 +24982,7 @@ "model": "pootle_statistics.submission", "pk": 597, "fields": { - "creation_time": "2019-04-17T13:10:23.766Z", + "creation_time": "2019-11-14T16:25:34.093Z", "translation_project": 4, "submitter": 4, "suggestion": 294, @@ -25009,7 +25001,7 @@ "model": "pootle_statistics.submission", "pk": 598, "fields": { - "creation_time": "2020-01-10T13:10:39.319Z", + "creation_time": "2020-08-07T16:25:39Z", "translation_project": 4, "submitter": 3, "suggestion": null, @@ -25028,7 +25020,7 @@ "model": "pootle_statistics.submission", "pk": 599, "fields": { - "creation_time": "2019-08-03T13:10:23.766Z", + "creation_time": "2020-03-02T16:25:34.093Z", "translation_project": 4, "submitter": 3, "suggestion": 295, @@ -25047,7 +25039,7 @@ "model": "pootle_statistics.submission", "pk": 600, "fields": { - "creation_time": "2019-08-10T13:10:23.766Z", + "creation_time": "2020-03-09T16:25:34.093Z", "translation_project": 4, "submitter": 1, "suggestion": 295, @@ -25066,7 +25058,7 @@ "model": "pootle_statistics.submission", "pk": 601, "fields": { - "creation_time": "2019-08-17T13:10:23.766Z", + "creation_time": "2020-03-16T16:25:34.093Z", "translation_project": 4, "submitter": 4, "suggestion": 296, @@ -25085,7 +25077,7 @@ "model": "pootle_statistics.submission", "pk": 602, "fields": { - "creation_time": "2019-02-03T13:10:23.766Z", + "creation_time": "2019-08-31T16:25:34.093Z", "translation_project": 4, "submitter": 3, "suggestion": 297, @@ -25104,7 +25096,7 @@ "model": "pootle_statistics.submission", "pk": 603, "fields": { - "creation_time": "2019-02-10T13:10:23.766Z", + "creation_time": "2019-09-07T16:25:34.093Z", "translation_project": 4, "submitter": 1, "suggestion": 297, @@ -25123,7 +25115,7 @@ "model": "pootle_statistics.submission", "pk": 604, "fields": { - "creation_time": "2019-02-17T13:10:23.766Z", + "creation_time": "2019-09-14T16:25:34.093Z", "translation_project": 4, "submitter": 4, "suggestion": 298, @@ -25142,7 +25134,7 @@ "model": "pootle_statistics.submission", "pk": 605, "fields": { - "creation_time": "2019-03-06T13:10:23.766Z", + "creation_time": "2019-10-01T16:25:34.093Z", "translation_project": 4, "submitter": 3, "suggestion": 299, @@ -25161,7 +25153,7 @@ "model": "pootle_statistics.submission", "pk": 606, "fields": { - "creation_time": "2019-03-13T13:10:23.766Z", + "creation_time": "2019-10-08T16:25:34.093Z", "translation_project": 4, "submitter": 1, "suggestion": 299, @@ -25180,7 +25172,7 @@ "model": "pootle_statistics.submission", "pk": 607, "fields": { - "creation_time": "2019-03-20T13:10:23.766Z", + "creation_time": "2019-10-15T16:25:34.093Z", "translation_project": 4, "submitter": 4, "suggestion": 300, @@ -25199,7 +25191,7 @@ "model": "pootle_statistics.submission", "pk": 608, "fields": { - "creation_time": "2019-09-03T13:10:23.766Z", + "creation_time": "2020-03-31T16:25:34.093Z", "translation_project": 4, "submitter": 3, "suggestion": 301, @@ -25218,7 +25210,7 @@ "model": "pootle_statistics.submission", "pk": 609, "fields": { - "creation_time": "2019-09-10T13:10:23.766Z", + "creation_time": "2020-04-07T16:25:34.093Z", "translation_project": 4, "submitter": 1, "suggestion": 301, @@ -25237,7 +25229,7 @@ "model": "pootle_statistics.submission", "pk": 610, "fields": { - "creation_time": "2019-09-17T13:10:23.766Z", + "creation_time": "2020-04-14T16:25:34.093Z", "translation_project": 4, "submitter": 4, "suggestion": 302, @@ -25256,7 +25248,7 @@ "model": "pootle_statistics.submission", "pk": 611, "fields": { - "creation_time": "2019-05-04T13:10:23.766Z", + "creation_time": "2019-12-01T16:25:34.093Z", "translation_project": 4, "submitter": 3, "suggestion": 303, @@ -25275,7 +25267,7 @@ "model": "pootle_statistics.submission", "pk": 612, "fields": { - "creation_time": "2019-05-11T13:10:23.766Z", + "creation_time": "2019-12-08T16:25:34.093Z", "translation_project": 4, "submitter": 1, "suggestion": 303, @@ -25294,7 +25286,7 @@ "model": "pootle_statistics.submission", "pk": 613, "fields": { - "creation_time": "2019-05-18T13:10:23.766Z", + "creation_time": "2019-12-15T16:25:34.093Z", "translation_project": 4, "submitter": 4, "suggestion": 304, @@ -25313,7 +25305,7 @@ "model": "pootle_statistics.submission", "pk": 614, "fields": { - "creation_time": "2020-01-10T13:10:39.773Z", + "creation_time": "2020-08-07T16:25:39Z", "translation_project": 4, "submitter": 3, "suggestion": null, @@ -25332,7 +25324,7 @@ "model": "pootle_statistics.submission", "pk": 615, "fields": { - "creation_time": "2019-02-03T13:10:23.766Z", + "creation_time": "2019-08-31T16:25:34.093Z", "translation_project": 4, "submitter": 3, "suggestion": 305, @@ -25351,7 +25343,7 @@ "model": "pootle_statistics.submission", "pk": 616, "fields": { - "creation_time": "2019-02-10T13:10:23.766Z", + "creation_time": "2019-09-07T16:25:34.093Z", "translation_project": 4, "submitter": 1, "suggestion": 305, @@ -25370,7 +25362,7 @@ "model": "pootle_statistics.submission", "pk": 617, "fields": { - "creation_time": "2019-02-17T13:10:23.766Z", + "creation_time": "2019-09-14T16:25:34.093Z", "translation_project": 4, "submitter": 4, "suggestion": 306, @@ -25389,7 +25381,7 @@ "model": "pootle_statistics.submission", "pk": 618, "fields": { - "creation_time": "2019-04-03T13:10:23.766Z", + "creation_time": "2019-10-31T16:25:34.093Z", "translation_project": 4, "submitter": 3, "suggestion": 307, @@ -25408,7 +25400,7 @@ "model": "pootle_statistics.submission", "pk": 619, "fields": { - "creation_time": "2019-04-10T13:10:23.766Z", + "creation_time": "2019-11-07T16:25:34.093Z", "translation_project": 4, "submitter": 1, "suggestion": null, @@ -25427,7 +25419,7 @@ "model": "pootle_statistics.submission", "pk": 620, "fields": { - "creation_time": "2019-04-10T13:10:23.766Z", + "creation_time": "2019-11-07T16:25:34.093Z", "translation_project": 4, "submitter": 1, "suggestion": 307, @@ -25446,7 +25438,7 @@ "model": "pootle_statistics.submission", "pk": 621, "fields": { - "creation_time": "2019-04-17T13:10:23.766Z", + "creation_time": "2019-11-14T16:25:34.093Z", "translation_project": 4, "submitter": 4, "suggestion": 308, @@ -25465,7 +25457,7 @@ "model": "pootle_statistics.submission", "pk": 622, "fields": { - "creation_time": "2019-03-06T13:10:23.766Z", + "creation_time": "2019-10-01T16:25:34.093Z", "translation_project": 4, "submitter": 3, "suggestion": 309, @@ -25484,7 +25476,7 @@ "model": "pootle_statistics.submission", "pk": 623, "fields": { - "creation_time": "2019-03-13T13:10:23.766Z", + "creation_time": "2019-10-08T16:25:34.093Z", "translation_project": 4, "submitter": 1, "suggestion": 309, @@ -25503,7 +25495,7 @@ "model": "pootle_statistics.submission", "pk": 624, "fields": { - "creation_time": "2019-03-20T13:10:23.766Z", + "creation_time": "2019-10-15T16:25:34.093Z", "translation_project": 4, "submitter": 4, "suggestion": 310, @@ -25522,7 +25514,7 @@ "model": "pootle_statistics.submission", "pk": 625, "fields": { - "creation_time": "2020-01-10T13:10:40.088Z", + "creation_time": "2020-08-07T16:25:39Z", "translation_project": 4, "submitter": 3, "suggestion": null, @@ -25541,7 +25533,7 @@ "model": "pootle_statistics.submission", "pk": 626, "fields": { - "creation_time": "2019-05-04T13:10:23.766Z", + "creation_time": "2019-12-01T16:25:34.093Z", "translation_project": 4, "submitter": 3, "suggestion": 311, @@ -25560,7 +25552,7 @@ "model": "pootle_statistics.submission", "pk": 627, "fields": { - "creation_time": "2019-05-11T13:10:23.766Z", + "creation_time": "2019-12-08T16:25:34.093Z", "translation_project": 4, "submitter": 1, "suggestion": 311, @@ -25579,7 +25571,7 @@ "model": "pootle_statistics.submission", "pk": 628, "fields": { - "creation_time": "2019-05-18T13:10:23.766Z", + "creation_time": "2019-12-15T16:25:34.093Z", "translation_project": 4, "submitter": 4, "suggestion": 312, @@ -25598,7 +25590,7 @@ "model": "pootle_statistics.submission", "pk": 629, "fields": { - "creation_time": "2019-04-03T13:10:23.766Z", + "creation_time": "2019-10-31T16:25:34.093Z", "translation_project": 4, "submitter": 3, "suggestion": 313, @@ -25617,7 +25609,7 @@ "model": "pootle_statistics.submission", "pk": 630, "fields": { - "creation_time": "2019-04-10T13:10:23.766Z", + "creation_time": "2019-11-07T16:25:34.093Z", "translation_project": 4, "submitter": 1, "suggestion": null, @@ -25636,7 +25628,7 @@ "model": "pootle_statistics.submission", "pk": 631, "fields": { - "creation_time": "2019-04-10T13:10:23.766Z", + "creation_time": "2019-11-07T16:25:34.093Z", "translation_project": 4, "submitter": 1, "suggestion": 313, @@ -25655,7 +25647,7 @@ "model": "pootle_statistics.submission", "pk": 632, "fields": { - "creation_time": "2019-04-17T13:10:23.766Z", + "creation_time": "2019-11-14T16:25:34.093Z", "translation_project": 4, "submitter": 4, "suggestion": 314, @@ -25674,7 +25666,7 @@ "model": "pootle_statistics.submission", "pk": 633, "fields": { - "creation_time": "2019-02-03T13:10:23.766Z", + "creation_time": "2019-08-31T16:25:34.093Z", "translation_project": 4, "submitter": 3, "suggestion": 315, @@ -25693,7 +25685,7 @@ "model": "pootle_statistics.submission", "pk": 634, "fields": { - "creation_time": "2019-02-10T13:10:23.766Z", + "creation_time": "2019-09-07T16:25:34.093Z", "translation_project": 4, "submitter": 1, "suggestion": 315, @@ -25712,7 +25704,7 @@ "model": "pootle_statistics.submission", "pk": 635, "fields": { - "creation_time": "2019-02-17T13:10:23.766Z", + "creation_time": "2019-09-14T16:25:34.093Z", "translation_project": 4, "submitter": 4, "suggestion": 316, @@ -25731,7 +25723,7 @@ "model": "pootle_statistics.submission", "pk": 636, "fields": { - "creation_time": "2019-05-04T13:10:23.766Z", + "creation_time": "2019-12-01T16:25:34.093Z", "translation_project": 4, "submitter": 3, "suggestion": 317, @@ -25750,7 +25742,7 @@ "model": "pootle_statistics.submission", "pk": 637, "fields": { - "creation_time": "2019-05-11T13:10:23.766Z", + "creation_time": "2019-12-08T16:25:34.093Z", "translation_project": 4, "submitter": 1, "suggestion": 317, @@ -25769,7 +25761,7 @@ "model": "pootle_statistics.submission", "pk": 638, "fields": { - "creation_time": "2019-05-18T13:10:23.766Z", + "creation_time": "2019-12-15T16:25:34.093Z", "translation_project": 4, "submitter": 4, "suggestion": 318, @@ -25788,7 +25780,7 @@ "model": "pootle_statistics.submission", "pk": 639, "fields": { - "creation_time": "2019-03-06T13:10:23.766Z", + "creation_time": "2019-10-01T16:25:34.093Z", "translation_project": 4, "submitter": 3, "suggestion": 319, @@ -25807,7 +25799,7 @@ "model": "pootle_statistics.submission", "pk": 640, "fields": { - "creation_time": "2019-03-13T13:10:23.766Z", + "creation_time": "2019-10-08T16:25:34.093Z", "translation_project": 4, "submitter": 1, "suggestion": 319, @@ -25826,7 +25818,7 @@ "model": "pootle_statistics.submission", "pk": 641, "fields": { - "creation_time": "2019-03-20T13:10:23.766Z", + "creation_time": "2019-10-15T16:25:34.093Z", "translation_project": 4, "submitter": 4, "suggestion": 320, @@ -25845,7 +25837,7 @@ "model": "pootle_statistics.submission", "pk": 642, "fields": { - "creation_time": "2020-01-10T13:10:40.596Z", + "creation_time": "2020-08-07T16:25:39Z", "translation_project": 4, "submitter": 3, "suggestion": null, @@ -25864,7 +25856,7 @@ "model": "pootle_statistics.submission", "pk": 643, "fields": { - "creation_time": "2019-05-04T13:10:23.766Z", + "creation_time": "2019-12-01T16:25:34.093Z", "translation_project": 4, "submitter": 3, "suggestion": 321, @@ -25883,7 +25875,7 @@ "model": "pootle_statistics.submission", "pk": 644, "fields": { - "creation_time": "2019-05-11T13:10:23.766Z", + "creation_time": "2019-12-08T16:25:34.093Z", "translation_project": 4, "submitter": 1, "suggestion": 321, @@ -25902,7 +25894,7 @@ "model": "pootle_statistics.submission", "pk": 645, "fields": { - "creation_time": "2019-05-18T13:10:23.766Z", + "creation_time": "2019-12-15T16:25:34.093Z", "translation_project": 4, "submitter": 4, "suggestion": 322, @@ -25921,7 +25913,7 @@ "model": "pootle_statistics.submission", "pk": 646, "fields": { - "creation_time": "2019-03-06T13:10:23.766Z", + "creation_time": "2019-10-01T16:25:34.093Z", "translation_project": 4, "submitter": 3, "suggestion": 323, @@ -25940,7 +25932,7 @@ "model": "pootle_statistics.submission", "pk": 647, "fields": { - "creation_time": "2019-03-13T13:10:23.766Z", + "creation_time": "2019-10-08T16:25:34.093Z", "translation_project": 4, "submitter": 1, "suggestion": 323, @@ -25959,7 +25951,7 @@ "model": "pootle_statistics.submission", "pk": 648, "fields": { - "creation_time": "2019-03-20T13:10:23.766Z", + "creation_time": "2019-10-15T16:25:34.093Z", "translation_project": 4, "submitter": 4, "suggestion": 324, @@ -25978,7 +25970,7 @@ "model": "pootle_statistics.submission", "pk": 649, "fields": { - "creation_time": "2020-01-10T13:10:40.870Z", + "creation_time": "2020-08-07T16:25:39Z", "translation_project": 4, "submitter": 3, "suggestion": null, @@ -25997,7 +25989,7 @@ "model": "pootle_statistics.submission", "pk": 650, "fields": { - "creation_time": "2019-04-03T13:10:23.766Z", + "creation_time": "2019-10-31T16:25:34.093Z", "translation_project": 4, "submitter": 3, "suggestion": 325, @@ -26016,7 +26008,7 @@ "model": "pootle_statistics.submission", "pk": 651, "fields": { - "creation_time": "2019-04-10T13:10:23.766Z", + "creation_time": "2019-11-07T16:25:34.093Z", "translation_project": 4, "submitter": 1, "suggestion": null, @@ -26035,7 +26027,7 @@ "model": "pootle_statistics.submission", "pk": 652, "fields": { - "creation_time": "2019-04-10T13:10:23.766Z", + "creation_time": "2019-11-07T16:25:34.093Z", "translation_project": 4, "submitter": 1, "suggestion": 325, @@ -26054,7 +26046,7 @@ "model": "pootle_statistics.submission", "pk": 653, "fields": { - "creation_time": "2019-04-17T13:10:23.766Z", + "creation_time": "2019-11-14T16:25:34.093Z", "translation_project": 4, "submitter": 4, "suggestion": 326, @@ -26073,7 +26065,7 @@ "model": "pootle_statistics.submission", "pk": 654, "fields": { - "creation_time": "2019-02-03T13:10:23.766Z", + "creation_time": "2019-08-31T16:25:34.093Z", "translation_project": 4, "submitter": 3, "suggestion": 327, @@ -26092,7 +26084,7 @@ "model": "pootle_statistics.submission", "pk": 655, "fields": { - "creation_time": "2019-02-10T13:10:23.766Z", + "creation_time": "2019-09-07T16:25:34.093Z", "translation_project": 4, "submitter": 1, "suggestion": 327, @@ -26111,7 +26103,7 @@ "model": "pootle_statistics.submission", "pk": 656, "fields": { - "creation_time": "2019-02-17T13:10:23.766Z", + "creation_time": "2019-09-14T16:25:34.093Z", "translation_project": 4, "submitter": 4, "suggestion": 328, @@ -26130,7 +26122,7 @@ "model": "pootle_statistics.submission", "pk": 657, "fields": { - "creation_time": "2020-01-24T13:10:41.141Z", + "creation_time": "2020-08-21T16:25:39Z", "translation_project": 1, "submitter": 6, "suggestion": null, @@ -26149,7 +26141,7 @@ "model": "pootle_statistics.submission", "pk": 658, "fields": { - "creation_time": "2020-01-24T13:10:41.169Z", + "creation_time": "2020-08-21T16:25:39Z", "translation_project": 1, "submitter": 6, "suggestion": null, @@ -26168,7 +26160,7 @@ "model": "pootle_statistics.submission", "pk": 659, "fields": { - "creation_time": "2020-01-24T13:10:41.244Z", + "creation_time": "2020-08-21T16:25:39Z", "translation_project": 1, "submitter": 6, "suggestion": null, @@ -26187,7 +26179,7 @@ "model": "pootle_statistics.submission", "pk": 660, "fields": { - "creation_time": "2020-01-24T13:10:41.324Z", + "creation_time": "2020-08-21T16:25:39Z", "translation_project": 1, "submitter": 6, "suggestion": null, @@ -26206,7 +26198,7 @@ "model": "pootle_statistics.submission", "pk": 661, "fields": { - "creation_time": "2020-01-24T13:10:41.398Z", + "creation_time": "2020-08-21T16:25:39Z", "translation_project": 1, "submitter": 6, "suggestion": null, @@ -26225,7 +26217,7 @@ "model": "pootle_statistics.submission", "pk": 662, "fields": { - "creation_time": "2020-01-24T13:10:41.469Z", + "creation_time": "2020-08-21T16:25:39Z", "translation_project": 1, "submitter": 6, "suggestion": null, @@ -26244,7 +26236,7 @@ "model": "pootle_statistics.submission", "pk": 663, "fields": { - "creation_time": "2020-01-24T13:10:41.551Z", + "creation_time": "2020-08-21T16:25:39Z", "translation_project": 1, "submitter": 6, "suggestion": null, @@ -26263,7 +26255,7 @@ "model": "pootle_statistics.submission", "pk": 664, "fields": { - "creation_time": "2020-01-24T13:10:41.622Z", + "creation_time": "2020-08-21T16:25:39Z", "translation_project": 1, "submitter": 6, "suggestion": null, @@ -26282,7 +26274,7 @@ "model": "pootle_statistics.submission", "pk": 665, "fields": { - "creation_time": "2020-01-24T13:10:41.694Z", + "creation_time": "2020-08-21T16:25:39Z", "translation_project": 1, "submitter": 6, "suggestion": null, @@ -26301,7 +26293,7 @@ "model": "pootle_statistics.submission", "pk": 666, "fields": { - "creation_time": "2020-01-24T13:10:41.766Z", + "creation_time": "2020-08-21T16:25:39Z", "translation_project": 1, "submitter": 6, "suggestion": null, @@ -26320,7 +26312,7 @@ "model": "pootle_statistics.submission", "pk": 667, "fields": { - "creation_time": "2020-01-24T13:10:41.837Z", + "creation_time": "2020-08-21T16:25:39Z", "translation_project": 1, "submitter": 6, "suggestion": null, @@ -26339,7 +26331,7 @@ "model": "pootle_statistics.submission", "pk": 668, "fields": { - "creation_time": "2020-01-24T13:10:41.911Z", + "creation_time": "2020-08-21T16:25:39Z", "translation_project": 1, "submitter": 6, "suggestion": null, @@ -26358,7 +26350,7 @@ "model": "pootle_statistics.submission", "pk": 669, "fields": { - "creation_time": "2020-01-24T13:10:41.983Z", + "creation_time": "2020-08-21T16:25:39Z", "translation_project": 1, "submitter": 6, "suggestion": null, @@ -26377,7 +26369,7 @@ "model": "pootle_statistics.submission", "pk": 670, "fields": { - "creation_time": "2020-01-24T13:10:42.058Z", + "creation_time": "2020-08-21T16:25:39Z", "translation_project": 1, "submitter": 6, "suggestion": null, @@ -26396,7 +26388,7 @@ "model": "pootle_statistics.submission", "pk": 671, "fields": { - "creation_time": "2020-01-24T13:10:42.133Z", + "creation_time": "2020-08-21T16:25:39Z", "translation_project": 1, "submitter": 6, "suggestion": null, @@ -26415,7 +26407,7 @@ "model": "pootle_statistics.submission", "pk": 672, "fields": { - "creation_time": "2020-01-24T13:10:42.208Z", + "creation_time": "2020-08-21T16:25:39Z", "translation_project": 1, "submitter": 6, "suggestion": null, @@ -26434,7 +26426,7 @@ "model": "pootle_statistics.submission", "pk": 673, "fields": { - "creation_time": "2020-01-24T13:10:42.282Z", + "creation_time": "2020-08-21T16:25:39Z", "translation_project": 1, "submitter": 6, "suggestion": null, @@ -26453,7 +26445,7 @@ "model": "pootle_statistics.submission", "pk": 674, "fields": { - "creation_time": "2020-01-24T13:10:42.350Z", + "creation_time": "2020-08-21T16:25:39Z", "translation_project": 1, "submitter": 6, "suggestion": null, @@ -26472,7 +26464,7 @@ "model": "pootle_statistics.submission", "pk": 675, "fields": { - "creation_time": "2020-01-24T13:10:42.424Z", + "creation_time": "2020-08-21T16:25:39Z", "translation_project": 1, "submitter": 6, "suggestion": null, @@ -26491,7 +26483,7 @@ "model": "pootle_statistics.submission", "pk": 676, "fields": { - "creation_time": "2020-01-24T13:10:42.541Z", + "creation_time": "2020-08-21T16:25:39Z", "translation_project": 1, "submitter": 6, "suggestion": null, @@ -26510,7 +26502,7 @@ "model": "pootle_statistics.scorelog", "pk": 1, "fields": { - "creation_time": "2020-01-24T13:10:23.781Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -26526,7 +26518,7 @@ "model": "pootle_statistics.scorelog", "pk": 2, "fields": { - "creation_time": "2020-01-24T13:10:23.787Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -26542,7 +26534,7 @@ "model": "pootle_statistics.scorelog", "pk": 3, "fields": { - "creation_time": "2020-01-24T13:10:23.787Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -26558,7 +26550,7 @@ "model": "pootle_statistics.scorelog", "pk": 4, "fields": { - "creation_time": "2020-01-24T13:10:23.800Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -26574,7 +26566,7 @@ "model": "pootle_statistics.scorelog", "pk": 5, "fields": { - "creation_time": "2020-01-24T13:10:23.810Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -26590,7 +26582,7 @@ "model": "pootle_statistics.scorelog", "pk": 6, "fields": { - "creation_time": "2020-01-24T13:10:23.815Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -26606,7 +26598,7 @@ "model": "pootle_statistics.scorelog", "pk": 7, "fields": { - "creation_time": "2020-01-24T13:10:23.815Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -26622,7 +26614,7 @@ "model": "pootle_statistics.scorelog", "pk": 8, "fields": { - "creation_time": "2020-01-24T13:10:24.025Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -26638,7 +26630,7 @@ "model": "pootle_statistics.scorelog", "pk": 9, "fields": { - "creation_time": "2020-01-10T13:10:24.032Z", + "creation_time": "2020-08-07T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -26654,7 +26646,7 @@ "model": "pootle_statistics.scorelog", "pk": 10, "fields": { - "creation_time": "2020-01-10T13:10:24.032Z", + "creation_time": "2020-08-07T16:25:34Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -26670,7 +26662,7 @@ "model": "pootle_statistics.scorelog", "pk": 11, "fields": { - "creation_time": "2020-01-24T13:10:24.077Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -26686,7 +26678,7 @@ "model": "pootle_statistics.scorelog", "pk": 12, "fields": { - "creation_time": "2020-01-24T13:10:24.127Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -26702,7 +26694,7 @@ "model": "pootle_statistics.scorelog", "pk": 13, "fields": { - "creation_time": "2020-01-24T13:10:24.127Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -26718,7 +26710,7 @@ "model": "pootle_statistics.scorelog", "pk": 14, "fields": { - "creation_time": "2020-01-24T13:10:24.215Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -26734,7 +26726,7 @@ "model": "pootle_statistics.scorelog", "pk": 15, "fields": { - "creation_time": "2020-01-24T13:10:24.228Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -26750,7 +26742,23 @@ "model": "pootle_statistics.scorelog", "pk": 16, "fields": { - "creation_time": "2020-01-24T13:10:24.233Z", + "creation_time": "2020-08-21T16:25:34Z", + "user": 1, + "rate": 0.0, + "review_rate": 0.0, + "wordcount": 46, + "similarity": 0.0, + "score_delta": 13.142857142857142, + "action_code": 4, + "submission": 94, + "translated_wordcount": null + } +}, +{ + "model": "pootle_statistics.scorelog", + "pk": 17, + "fields": { + "creation_time": "2020-08-21T16:25:34Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -26764,9 +26772,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 17, + "pk": 18, "fields": { - "creation_time": "2020-01-24T13:10:24.233Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -26780,9 +26788,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 18, + "pk": 19, "fields": { - "creation_time": "2020-01-24T13:10:24.315Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -26796,9 +26804,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 19, + "pk": 20, "fields": { - "creation_time": "2020-01-24T13:10:24.330Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -26812,9 +26820,25 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 20, + "pk": 21, + "fields": { + "creation_time": "2020-08-21T16:25:34Z", + "user": 1, + "rate": 0.0, + "review_rate": 0.0, + "wordcount": 53, + "similarity": 0.0, + "score_delta": 15.142857142857142, + "action_code": 4, + "submission": 98, + "translated_wordcount": null + } +}, +{ + "model": "pootle_statistics.scorelog", + "pk": 22, "fields": { - "creation_time": "2020-01-24T13:10:24.335Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -26828,9 +26852,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 21, + "pk": 23, "fields": { - "creation_time": "2020-01-24T13:10:24.335Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -26844,9 +26868,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 22, + "pk": 24, "fields": { - "creation_time": "2020-01-24T13:10:24.422Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -26860,9 +26884,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 23, + "pk": 25, "fields": { - "creation_time": "2020-01-24T13:10:24.435Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -26876,9 +26900,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 24, + "pk": 26, "fields": { - "creation_time": "2020-01-24T13:10:24.441Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -26892,9 +26916,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 25, + "pk": 27, "fields": { - "creation_time": "2020-01-24T13:10:24.441Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -26908,9 +26932,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 26, + "pk": 28, "fields": { - "creation_time": "2020-01-24T13:10:24.451Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -26924,9 +26948,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 27, + "pk": 29, "fields": { - "creation_time": "2020-01-24T13:10:24.461Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -26940,9 +26964,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 28, + "pk": 30, "fields": { - "creation_time": "2020-01-24T13:10:24.466Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -26956,9 +26980,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 29, + "pk": 31, "fields": { - "creation_time": "2020-01-24T13:10:24.466Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -26972,9 +26996,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 30, + "pk": 32, "fields": { - "creation_time": "2020-01-24T13:10:24.546Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -26988,9 +27012,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 31, + "pk": 33, "fields": { - "creation_time": "2020-01-10T13:10:24.552Z", + "creation_time": "2020-08-07T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -27004,9 +27028,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 32, + "pk": 34, "fields": { - "creation_time": "2020-01-10T13:10:24.552Z", + "creation_time": "2020-08-07T16:25:34Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -27020,9 +27044,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 33, + "pk": 35, "fields": { - "creation_time": "2020-01-24T13:10:24.590Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -27036,9 +27060,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 34, + "pk": 36, "fields": { - "creation_time": "2020-01-24T13:10:24.648Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -27052,9 +27076,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 35, + "pk": 37, "fields": { - "creation_time": "2020-01-24T13:10:24.648Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -27068,9 +27092,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 36, + "pk": 38, "fields": { - "creation_time": "2020-01-24T13:10:24.728Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -27084,9 +27108,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 37, + "pk": 39, "fields": { - "creation_time": "2020-01-24T13:10:24.743Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -27100,9 +27124,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 38, + "pk": 40, "fields": { - "creation_time": "2020-01-24T13:10:24.750Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -27116,9 +27140,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 39, + "pk": 41, "fields": { - "creation_time": "2020-01-24T13:10:24.750Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -27132,9 +27156,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 40, + "pk": 42, "fields": { - "creation_time": "2020-01-24T13:10:24.830Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -27148,9 +27172,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 41, + "pk": 43, "fields": { - "creation_time": "2020-01-24T13:10:24.898Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -27164,9 +27188,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 42, + "pk": 44, "fields": { - "creation_time": "2020-01-24T13:10:24.946Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -27180,9 +27204,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 43, + "pk": 45, "fields": { - "creation_time": "2020-01-24T13:10:24.946Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -27196,9 +27220,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 44, + "pk": 46, "fields": { - "creation_time": "2020-01-24T13:10:25.081Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -27212,9 +27236,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 45, + "pk": 47, "fields": { - "creation_time": "2020-01-24T13:10:25.093Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -27228,9 +27252,25 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 46, + "pk": 48, + "fields": { + "creation_time": "2020-08-21T16:25:34Z", + "user": 1, + "rate": 0.0, + "review_rate": 0.0, + "wordcount": 53, + "similarity": 0.0, + "score_delta": 15.142857142857142, + "action_code": 4, + "submission": 118, + "translated_wordcount": null + } +}, +{ + "model": "pootle_statistics.scorelog", + "pk": 49, "fields": { - "creation_time": "2020-01-24T13:10:25.098Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -27244,9 +27284,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 47, + "pk": 50, "fields": { - "creation_time": "2020-01-24T13:10:25.098Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -27260,9 +27300,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 48, + "pk": 51, "fields": { - "creation_time": "2020-01-24T13:10:25.178Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -27276,9 +27316,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 49, + "pk": 52, "fields": { - "creation_time": "2020-01-24T13:10:25.191Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -27292,9 +27332,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 50, + "pk": 53, "fields": { - "creation_time": "2020-01-24T13:10:25.198Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -27308,9 +27348,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 51, + "pk": 54, "fields": { - "creation_time": "2020-01-24T13:10:25.198Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -27324,9 +27364,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 52, + "pk": 55, "fields": { - "creation_time": "2020-01-24T13:10:25.279Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -27340,9 +27380,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 53, + "pk": 56, "fields": { - "creation_time": "2020-01-10T13:10:25.285Z", + "creation_time": "2020-08-07T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -27356,9 +27396,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 54, + "pk": 57, "fields": { - "creation_time": "2020-01-10T13:10:25.285Z", + "creation_time": "2020-08-07T16:25:34Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -27372,9 +27412,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 55, + "pk": 58, "fields": { - "creation_time": "2020-01-24T13:10:25.321Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -27388,9 +27428,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 56, + "pk": 59, "fields": { - "creation_time": "2020-01-24T13:10:25.368Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -27404,9 +27444,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 57, + "pk": 60, "fields": { - "creation_time": "2020-01-24T13:10:25.368Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -27420,9 +27460,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 58, + "pk": 61, "fields": { - "creation_time": "2020-01-24T13:10:25.435Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -27436,9 +27476,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 59, + "pk": 62, "fields": { - "creation_time": "2020-01-10T13:10:25.440Z", + "creation_time": "2020-08-07T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -27452,9 +27492,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 60, + "pk": 63, "fields": { - "creation_time": "2020-01-10T13:10:25.440Z", + "creation_time": "2020-08-07T16:25:34Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -27468,9 +27508,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 61, + "pk": 64, "fields": { - "creation_time": "2020-01-24T13:10:25.475Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -27484,9 +27524,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 62, + "pk": 65, "fields": { - "creation_time": "2020-01-24T13:10:25.522Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -27500,9 +27540,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 63, + "pk": 66, "fields": { - "creation_time": "2020-01-24T13:10:25.522Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -27516,9 +27556,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 64, + "pk": 67, "fields": { - "creation_time": "2020-01-24T13:10:25.533Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -27532,9 +27572,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 65, + "pk": 68, "fields": { - "creation_time": "2020-01-24T13:10:25.544Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -27548,9 +27588,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 66, + "pk": 69, "fields": { - "creation_time": "2020-01-24T13:10:25.550Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -27564,9 +27604,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 67, + "pk": 70, "fields": { - "creation_time": "2020-01-24T13:10:25.550Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -27580,9 +27620,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 68, + "pk": 71, "fields": { - "creation_time": "2020-01-24T13:10:25.629Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -27596,9 +27636,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 69, + "pk": 72, "fields": { - "creation_time": "2020-01-24T13:10:25.641Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -27612,9 +27652,25 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 70, + "pk": 73, + "fields": { + "creation_time": "2020-08-21T16:25:34Z", + "user": 1, + "rate": 0.0, + "review_rate": 0.0, + "wordcount": 53, + "similarity": 0.0, + "score_delta": 15.142857142857142, + "action_code": 4, + "submission": 136, + "translated_wordcount": null + } +}, +{ + "model": "pootle_statistics.scorelog", + "pk": 74, "fields": { - "creation_time": "2020-01-24T13:10:25.646Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -27628,9 +27684,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 71, + "pk": 75, "fields": { - "creation_time": "2020-01-24T13:10:25.646Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -27644,9 +27700,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 72, + "pk": 76, "fields": { - "creation_time": "2020-01-24T13:10:25.728Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -27660,9 +27716,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 73, + "pk": 77, "fields": { - "creation_time": "2020-01-24T13:10:25.742Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -27676,9 +27732,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 74, + "pk": 78, "fields": { - "creation_time": "2020-01-24T13:10:25.749Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -27692,9 +27748,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 75, + "pk": 79, "fields": { - "creation_time": "2020-01-24T13:10:25.749Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -27708,9 +27764,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 76, + "pk": 80, "fields": { - "creation_time": "2020-01-24T13:10:25.821Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -27724,9 +27780,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 77, + "pk": 81, "fields": { - "creation_time": "2020-01-24T13:10:25.834Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -27740,9 +27796,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 78, + "pk": 82, "fields": { - "creation_time": "2020-01-24T13:10:25.840Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -27756,9 +27812,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 79, + "pk": 83, "fields": { - "creation_time": "2020-01-24T13:10:25.840Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -27772,9 +27828,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 80, + "pk": 84, "fields": { - "creation_time": "2020-01-24T13:10:25.851Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -27788,9 +27844,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 81, + "pk": 85, "fields": { - "creation_time": "2020-01-24T13:10:25.903Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -27804,9 +27860,25 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 82, + "pk": 86, + "fields": { + "creation_time": "2020-08-21T16:25:34Z", + "user": 1, + "rate": 0.0, + "review_rate": 0.0, + "wordcount": 60, + "similarity": 0.0, + "score_delta": 17.142857142857142, + "action_code": 4, + "submission": 146, + "translated_wordcount": null + } +}, +{ + "model": "pootle_statistics.scorelog", + "pk": 87, "fields": { - "creation_time": "2020-01-24T13:10:25.952Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -27820,9 +27892,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 83, + "pk": 88, "fields": { - "creation_time": "2020-01-24T13:10:25.952Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -27836,9 +27908,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 84, + "pk": 89, "fields": { - "creation_time": "2020-01-24T13:10:26.035Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -27852,9 +27924,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 85, + "pk": 90, "fields": { - "creation_time": "2020-01-24T13:10:26.050Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -27868,9 +27940,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 86, + "pk": 91, "fields": { - "creation_time": "2020-01-24T13:10:26.056Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -27884,9 +27956,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 87, + "pk": 92, "fields": { - "creation_time": "2020-01-24T13:10:26.056Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -27900,9 +27972,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 88, + "pk": 93, "fields": { - "creation_time": "2020-01-24T13:10:26.137Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -27916,9 +27988,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 89, + "pk": 94, "fields": { - "creation_time": "2020-01-10T13:10:26.144Z", + "creation_time": "2020-08-07T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -27932,9 +28004,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 90, + "pk": 95, "fields": { - "creation_time": "2020-01-10T13:10:26.144Z", + "creation_time": "2020-08-07T16:25:34Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -27948,9 +28020,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 91, + "pk": 96, "fields": { - "creation_time": "2020-01-24T13:10:26.191Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -27964,9 +28036,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 92, + "pk": 97, "fields": { - "creation_time": "2020-01-24T13:10:26.240Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -27980,9 +28052,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 93, + "pk": 98, "fields": { - "creation_time": "2020-01-24T13:10:26.240Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -27996,9 +28068,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 94, + "pk": 99, "fields": { - "creation_time": "2020-01-24T13:10:26.321Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -28012,9 +28084,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 95, + "pk": 100, "fields": { - "creation_time": "2020-01-24T13:10:26.334Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -28028,9 +28100,25 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 96, + "pk": 101, + "fields": { + "creation_time": "2020-08-21T16:25:34Z", + "user": 1, + "rate": 0.0, + "review_rate": 0.0, + "wordcount": 38, + "similarity": 0.0, + "score_delta": 10.857142857142856, + "action_code": 4, + "submission": 157, + "translated_wordcount": null + } +}, +{ + "model": "pootle_statistics.scorelog", + "pk": 102, "fields": { - "creation_time": "2020-01-24T13:10:26.340Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -28044,9 +28132,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 97, + "pk": 103, "fields": { - "creation_time": "2020-01-24T13:10:26.340Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -28060,9 +28148,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 98, + "pk": 104, "fields": { - "creation_time": "2020-01-24T13:10:26.426Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -28076,9 +28164,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 99, + "pk": 105, "fields": { - "creation_time": "2020-01-24T13:10:26.482Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -28092,9 +28180,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 100, + "pk": 106, "fields": { - "creation_time": "2020-01-24T13:10:26.488Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -28108,9 +28196,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 101, + "pk": 107, "fields": { - "creation_time": "2020-01-24T13:10:26.488Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -28124,9 +28212,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 102, + "pk": 108, "fields": { - "creation_time": "2020-01-24T13:10:26.499Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -28140,9 +28228,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 103, + "pk": 109, "fields": { - "creation_time": "2020-01-24T13:10:26.510Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -28156,9 +28244,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 104, + "pk": 110, "fields": { - "creation_time": "2020-01-24T13:10:26.515Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -28172,9 +28260,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 105, + "pk": 111, "fields": { - "creation_time": "2020-01-24T13:10:26.515Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -28188,9 +28276,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 106, + "pk": 112, "fields": { - "creation_time": "2020-01-24T13:10:26.599Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -28204,9 +28292,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 107, + "pk": 113, "fields": { - "creation_time": "2020-01-10T13:10:26.606Z", + "creation_time": "2020-08-07T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -28220,9 +28308,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 108, + "pk": 114, "fields": { - "creation_time": "2020-01-10T13:10:26.606Z", + "creation_time": "2020-08-07T16:25:34Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -28236,9 +28324,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 109, + "pk": 115, "fields": { - "creation_time": "2020-01-24T13:10:26.649Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -28252,9 +28340,25 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 110, + "pk": 116, + "fields": { + "creation_time": "2020-08-21T16:25:34Z", + "user": 1, + "rate": 0.0, + "review_rate": 0.0, + "wordcount": 38, + "similarity": 0.0, + "score_delta": 10.857142857142856, + "action_code": 4, + "submission": 168, + "translated_wordcount": null + } +}, +{ + "model": "pootle_statistics.scorelog", + "pk": 117, "fields": { - "creation_time": "2020-01-24T13:10:26.702Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -28268,9 +28372,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 111, + "pk": 118, "fields": { - "creation_time": "2020-01-24T13:10:26.702Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -28284,9 +28388,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 112, + "pk": 119, "fields": { - "creation_time": "2020-01-24T13:10:26.826Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -28300,9 +28404,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 113, + "pk": 120, "fields": { - "creation_time": "2020-01-24T13:10:26.843Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -28316,9 +28420,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 114, + "pk": 121, "fields": { - "creation_time": "2020-01-24T13:10:26.848Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -28332,9 +28436,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 115, + "pk": 122, "fields": { - "creation_time": "2020-01-24T13:10:26.848Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -28348,9 +28452,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 116, + "pk": 123, "fields": { - "creation_time": "2020-01-24T13:10:26.932Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -28364,9 +28468,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 117, + "pk": 124, "fields": { - "creation_time": "2020-01-10T13:10:26.939Z", + "creation_time": "2020-08-07T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -28380,9 +28484,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 118, + "pk": 125, "fields": { - "creation_time": "2020-01-10T13:10:26.939Z", + "creation_time": "2020-08-07T16:25:34Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -28396,9 +28500,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 119, + "pk": 126, "fields": { - "creation_time": "2020-01-24T13:10:26.979Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -28412,9 +28516,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 120, + "pk": 127, "fields": { - "creation_time": "2020-01-24T13:10:27.030Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -28428,9 +28532,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 121, + "pk": 128, "fields": { - "creation_time": "2020-01-24T13:10:27.030Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -28444,9 +28548,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 122, + "pk": 129, "fields": { - "creation_time": "2020-01-24T13:10:27.114Z", + "creation_time": "2020-08-21T16:25:34Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -28460,9 +28564,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 123, + "pk": 130, "fields": { - "creation_time": "2020-01-24T13:10:27.127Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -28476,9 +28580,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 124, + "pk": 131, "fields": { - "creation_time": "2020-01-24T13:10:27.133Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -28492,9 +28596,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 125, + "pk": 132, "fields": { - "creation_time": "2020-01-24T13:10:27.133Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -28508,9 +28612,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 126, + "pk": 133, "fields": { - "creation_time": "2020-01-24T13:10:27.144Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -28524,9 +28628,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 127, + "pk": 134, "fields": { - "creation_time": "2020-01-24T13:10:27.156Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -28540,9 +28644,25 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 128, + "pk": 135, + "fields": { + "creation_time": "2020-08-21T16:25:35Z", + "user": 1, + "rate": 0.0, + "review_rate": 0.0, + "wordcount": 38, + "similarity": 0.0, + "score_delta": 10.857142857142856, + "action_code": 4, + "submission": 182, + "translated_wordcount": null + } +}, +{ + "model": "pootle_statistics.scorelog", + "pk": 136, "fields": { - "creation_time": "2020-01-24T13:10:27.161Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -28556,9 +28676,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 129, + "pk": 137, "fields": { - "creation_time": "2020-01-24T13:10:27.161Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -28572,9 +28692,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 130, + "pk": 138, "fields": { - "creation_time": "2020-01-24T13:10:27.246Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -28588,9 +28708,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 131, + "pk": 139, "fields": { - "creation_time": "2020-01-24T13:10:27.259Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -28604,9 +28724,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 132, + "pk": 140, "fields": { - "creation_time": "2020-01-24T13:10:27.264Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -28620,9 +28740,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 133, + "pk": 141, "fields": { - "creation_time": "2020-01-24T13:10:27.264Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -28636,9 +28756,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 134, + "pk": 142, "fields": { - "creation_time": "2020-01-24T13:10:27.345Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -28652,9 +28772,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 135, + "pk": 143, "fields": { - "creation_time": "2020-01-24T13:10:27.360Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -28668,9 +28788,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 136, + "pk": 144, "fields": { - "creation_time": "2020-01-24T13:10:27.366Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -28684,9 +28804,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 137, + "pk": 145, "fields": { - "creation_time": "2020-01-24T13:10:27.366Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -28700,9 +28820,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 138, + "pk": 146, "fields": { - "creation_time": "2020-01-24T13:10:27.376Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -28716,9 +28836,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 139, + "pk": 147, "fields": { - "creation_time": "2020-01-24T13:10:27.387Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -28732,9 +28852,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 140, + "pk": 148, "fields": { - "creation_time": "2020-01-24T13:10:27.392Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -28748,9 +28868,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 141, + "pk": 149, "fields": { - "creation_time": "2020-01-24T13:10:27.392Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -28764,9 +28884,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 142, + "pk": 150, "fields": { - "creation_time": "2020-01-24T13:10:27.474Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -28780,9 +28900,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 143, + "pk": 151, "fields": { - "creation_time": "2020-01-10T13:10:27.481Z", + "creation_time": "2020-08-07T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -28796,9 +28916,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 144, + "pk": 152, "fields": { - "creation_time": "2020-01-10T13:10:27.481Z", + "creation_time": "2020-08-07T16:25:35Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -28812,9 +28932,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 145, + "pk": 153, "fields": { - "creation_time": "2020-01-24T13:10:27.518Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -28828,9 +28948,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 146, + "pk": 154, "fields": { - "creation_time": "2020-01-24T13:10:27.566Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -28844,9 +28964,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 147, + "pk": 155, "fields": { - "creation_time": "2020-01-24T13:10:27.566Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -28860,9 +28980,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 148, + "pk": 156, "fields": { - "creation_time": "2020-01-24T13:10:27.649Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -28876,9 +28996,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 149, + "pk": 157, "fields": { - "creation_time": "2020-01-10T13:10:27.656Z", + "creation_time": "2020-08-07T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -28892,9 +29012,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 150, + "pk": 158, "fields": { - "creation_time": "2020-01-10T13:10:27.656Z", + "creation_time": "2020-08-07T16:25:35Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -28908,9 +29028,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 151, + "pk": 159, "fields": { - "creation_time": "2020-01-24T13:10:27.694Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -28924,9 +29044,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 152, + "pk": 160, "fields": { - "creation_time": "2020-01-24T13:10:27.743Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -28940,9 +29060,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 153, + "pk": 161, "fields": { - "creation_time": "2020-01-24T13:10:27.743Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -28956,9 +29076,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 154, + "pk": 162, "fields": { - "creation_time": "2020-01-24T13:10:27.826Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -28972,9 +29092,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 155, + "pk": 163, "fields": { - "creation_time": "2020-01-24T13:10:27.838Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -28988,9 +29108,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 156, + "pk": 164, "fields": { - "creation_time": "2020-01-24T13:10:27.844Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -29004,9 +29124,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 157, + "pk": 165, "fields": { - "creation_time": "2020-01-24T13:10:27.844Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -29020,9 +29140,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 158, + "pk": 166, "fields": { - "creation_time": "2020-01-24T13:10:27.855Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -29036,9 +29156,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 159, + "pk": 167, "fields": { - "creation_time": "2020-01-24T13:10:27.866Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -29052,9 +29172,25 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 160, + "pk": 168, + "fields": { + "creation_time": "2020-08-21T16:25:35Z", + "user": 1, + "rate": 0.0, + "review_rate": 0.0, + "wordcount": 38, + "similarity": 0.0, + "score_delta": 10.857142857142856, + "action_code": 4, + "submission": 206, + "translated_wordcount": null + } +}, +{ + "model": "pootle_statistics.scorelog", + "pk": 169, "fields": { - "creation_time": "2020-01-24T13:10:27.872Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -29068,9 +29204,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 161, + "pk": 170, "fields": { - "creation_time": "2020-01-24T13:10:27.872Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -29084,9 +29220,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 162, + "pk": 171, "fields": { - "creation_time": "2020-01-24T13:10:27.957Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -29100,9 +29236,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 163, + "pk": 172, "fields": { - "creation_time": "2020-01-24T13:10:27.974Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -29116,9 +29252,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 164, + "pk": 173, "fields": { - "creation_time": "2020-01-24T13:10:27.980Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -29132,9 +29268,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 165, + "pk": 174, "fields": { - "creation_time": "2020-01-24T13:10:27.980Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -29148,9 +29284,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 166, + "pk": 175, "fields": { - "creation_time": "2020-01-24T13:10:27.990Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -29164,9 +29300,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 167, + "pk": 176, "fields": { - "creation_time": "2020-01-24T13:10:28.001Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -29180,9 +29316,25 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 168, + "pk": 177, + "fields": { + "creation_time": "2020-08-21T16:25:35Z", + "user": 1, + "rate": 0.0, + "review_rate": 0.0, + "wordcount": 38, + "similarity": 0.0, + "score_delta": 10.857142857142856, + "action_code": 4, + "submission": 213, + "translated_wordcount": null + } +}, +{ + "model": "pootle_statistics.scorelog", + "pk": 178, "fields": { - "creation_time": "2020-01-24T13:10:28.007Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -29196,9 +29348,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 169, + "pk": 179, "fields": { - "creation_time": "2020-01-24T13:10:28.007Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -29212,9 +29364,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 170, + "pk": 180, "fields": { - "creation_time": "2020-01-24T13:10:28.091Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -29228,9 +29380,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 171, + "pk": 181, "fields": { - "creation_time": "2020-01-24T13:10:28.104Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -29244,9 +29396,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 172, + "pk": 182, "fields": { - "creation_time": "2020-01-24T13:10:28.110Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -29260,9 +29412,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 173, + "pk": 183, "fields": { - "creation_time": "2020-01-24T13:10:28.110Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -29276,9 +29428,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 174, + "pk": 184, "fields": { - "creation_time": "2020-01-24T13:10:28.193Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -29292,9 +29444,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 175, + "pk": 185, "fields": { - "creation_time": "2020-01-24T13:10:28.207Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -29308,9 +29460,25 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 176, + "pk": 186, + "fields": { + "creation_time": "2020-08-21T16:25:35Z", + "user": 1, + "rate": 0.0, + "review_rate": 0.0, + "wordcount": 38, + "similarity": 0.0, + "score_delta": 10.857142857142856, + "action_code": 4, + "submission": 220, + "translated_wordcount": null + } +}, +{ + "model": "pootle_statistics.scorelog", + "pk": 187, "fields": { - "creation_time": "2020-01-24T13:10:28.213Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -29324,9 +29492,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 177, + "pk": 188, "fields": { - "creation_time": "2020-01-24T13:10:28.213Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -29340,9 +29508,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 178, + "pk": 189, "fields": { - "creation_time": "2020-01-24T13:10:28.293Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -29356,9 +29524,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 179, + "pk": 190, "fields": { - "creation_time": "2020-01-24T13:10:28.306Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -29372,9 +29540,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 180, + "pk": 191, "fields": { - "creation_time": "2020-01-24T13:10:28.312Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -29388,9 +29556,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 181, + "pk": 192, "fields": { - "creation_time": "2020-01-24T13:10:28.312Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -29404,9 +29572,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 182, + "pk": 193, "fields": { - "creation_time": "2020-01-24T13:10:28.323Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -29420,9 +29588,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 183, + "pk": 194, "fields": { - "creation_time": "2020-01-24T13:10:28.333Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -29436,9 +29604,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 184, + "pk": 195, "fields": { - "creation_time": "2020-01-24T13:10:28.339Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -29452,9 +29620,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 185, + "pk": 196, "fields": { - "creation_time": "2020-01-24T13:10:28.339Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -29468,9 +29636,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 186, + "pk": 197, "fields": { - "creation_time": "2020-01-24T13:10:28.423Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -29484,9 +29652,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 187, + "pk": 198, "fields": { - "creation_time": "2020-01-24T13:10:28.436Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -29500,9 +29668,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 188, + "pk": 199, "fields": { - "creation_time": "2020-01-24T13:10:28.442Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -29516,9 +29684,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 189, + "pk": 200, "fields": { - "creation_time": "2020-01-24T13:10:28.442Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -29532,9 +29700,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 190, + "pk": 201, "fields": { - "creation_time": "2020-01-24T13:10:28.525Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -29548,9 +29716,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 191, + "pk": 202, "fields": { - "creation_time": "2020-01-10T13:10:28.532Z", + "creation_time": "2020-08-07T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -29564,9 +29732,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 192, + "pk": 203, "fields": { - "creation_time": "2020-01-10T13:10:28.532Z", + "creation_time": "2020-08-07T16:25:35Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -29580,9 +29748,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 193, + "pk": 204, "fields": { - "creation_time": "2020-01-24T13:10:28.571Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -29596,9 +29764,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 194, + "pk": 205, "fields": { - "creation_time": "2020-01-24T13:10:28.619Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -29612,9 +29780,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 195, + "pk": 206, "fields": { - "creation_time": "2020-01-24T13:10:28.619Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -29628,9 +29796,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 196, + "pk": 207, "fields": { - "creation_time": "2020-01-24T13:10:28.701Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -29644,9 +29812,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 197, + "pk": 208, "fields": { - "creation_time": "2020-01-10T13:10:28.708Z", + "creation_time": "2020-08-07T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -29660,9 +29828,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 198, + "pk": 209, "fields": { - "creation_time": "2020-01-10T13:10:28.708Z", + "creation_time": "2020-08-07T16:25:35Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -29676,9 +29844,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 199, + "pk": 210, "fields": { - "creation_time": "2020-01-24T13:10:28.751Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -29692,9 +29860,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 200, + "pk": 211, "fields": { - "creation_time": "2020-01-24T13:10:28.802Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -29708,9 +29876,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 201, + "pk": 212, "fields": { - "creation_time": "2020-01-24T13:10:28.802Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -29724,9 +29892,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 202, + "pk": 213, "fields": { - "creation_time": "2020-01-24T13:10:28.880Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -29740,9 +29908,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 203, + "pk": 214, "fields": { - "creation_time": "2020-01-10T13:10:28.886Z", + "creation_time": "2020-08-07T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -29756,9 +29924,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 204, + "pk": 215, "fields": { - "creation_time": "2020-01-10T13:10:28.886Z", + "creation_time": "2020-08-07T16:25:35Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -29772,9 +29940,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 205, + "pk": 216, "fields": { - "creation_time": "2020-01-24T13:10:28.923Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -29788,9 +29956,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 206, + "pk": 217, "fields": { - "creation_time": "2020-01-24T13:10:28.972Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -29804,9 +29972,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 207, + "pk": 218, "fields": { - "creation_time": "2020-01-24T13:10:28.972Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -29820,9 +29988,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 208, + "pk": 219, "fields": { - "creation_time": "2020-01-24T13:10:29.061Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -29836,9 +30004,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 209, + "pk": 220, "fields": { - "creation_time": "2020-01-24T13:10:29.075Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -29852,9 +30020,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 210, + "pk": 221, "fields": { - "creation_time": "2020-01-24T13:10:29.083Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -29868,9 +30036,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 211, + "pk": 222, "fields": { - "creation_time": "2020-01-24T13:10:29.083Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -29884,9 +30052,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 212, + "pk": 223, "fields": { - "creation_time": "2020-01-24T13:10:29.093Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -29900,9 +30068,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 213, + "pk": 224, "fields": { - "creation_time": "2020-01-24T13:10:29.105Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -29916,9 +30084,25 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 214, + "pk": 225, + "fields": { + "creation_time": "2020-08-21T16:25:35Z", + "user": 1, + "rate": 0.0, + "review_rate": 0.0, + "wordcount": 45, + "similarity": 0.0, + "score_delta": 12.857142857142856, + "action_code": 4, + "submission": 248, + "translated_wordcount": null + } +}, +{ + "model": "pootle_statistics.scorelog", + "pk": 226, "fields": { - "creation_time": "2020-01-24T13:10:29.110Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -29932,9 +30116,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 215, + "pk": 227, "fields": { - "creation_time": "2020-01-24T13:10:29.110Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -29948,9 +30132,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 216, + "pk": 228, "fields": { - "creation_time": "2020-01-24T13:10:29.192Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -29964,9 +30148,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 217, + "pk": 229, "fields": { - "creation_time": "2020-01-24T13:10:29.207Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -29980,9 +30164,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 218, + "pk": 230, "fields": { - "creation_time": "2020-01-24T13:10:29.212Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -29996,9 +30180,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 219, + "pk": 231, "fields": { - "creation_time": "2020-01-24T13:10:29.212Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -30012,9 +30196,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 220, + "pk": 232, "fields": { - "creation_time": "2020-01-24T13:10:29.295Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -30028,9 +30212,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 221, + "pk": 233, "fields": { - "creation_time": "2020-01-10T13:10:29.301Z", + "creation_time": "2020-08-07T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -30044,9 +30228,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 222, + "pk": 234, "fields": { - "creation_time": "2020-01-10T13:10:29.301Z", + "creation_time": "2020-08-07T16:25:35Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -30060,9 +30244,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 223, + "pk": 235, "fields": { - "creation_time": "2020-01-24T13:10:29.339Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -30076,9 +30260,25 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 224, + "pk": 236, + "fields": { + "creation_time": "2020-08-21T16:25:35Z", + "user": 1, + "rate": 0.0, + "review_rate": 0.0, + "wordcount": 45, + "similarity": 0.0, + "score_delta": 12.857142857142856, + "action_code": 4, + "submission": 256, + "translated_wordcount": null + } +}, +{ + "model": "pootle_statistics.scorelog", + "pk": 237, "fields": { - "creation_time": "2020-01-24T13:10:29.392Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -30092,9 +30292,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 225, + "pk": 238, "fields": { - "creation_time": "2020-01-24T13:10:29.392Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -30108,9 +30308,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 226, + "pk": 239, "fields": { - "creation_time": "2020-01-24T13:10:29.473Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -30124,9 +30324,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 227, + "pk": 240, "fields": { - "creation_time": "2020-01-24T13:10:29.486Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -30140,9 +30340,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 228, + "pk": 241, "fields": { - "creation_time": "2020-01-24T13:10:29.492Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -30156,9 +30356,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 229, + "pk": 242, "fields": { - "creation_time": "2020-01-24T13:10:29.492Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -30172,9 +30372,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 230, + "pk": 243, "fields": { - "creation_time": "2020-01-24T13:10:29.570Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -30188,9 +30388,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 231, + "pk": 244, "fields": { - "creation_time": "2020-01-24T13:10:29.583Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -30204,9 +30404,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 232, + "pk": 245, "fields": { - "creation_time": "2020-01-24T13:10:29.588Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -30220,9 +30420,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 233, + "pk": 246, "fields": { - "creation_time": "2020-01-24T13:10:29.588Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -30236,9 +30436,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 234, + "pk": 247, "fields": { - "creation_time": "2020-01-24T13:10:29.600Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -30252,9 +30452,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 235, + "pk": 248, "fields": { - "creation_time": "2020-01-24T13:10:29.612Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -30268,9 +30468,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 236, + "pk": 249, "fields": { - "creation_time": "2020-01-24T13:10:29.618Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -30284,9 +30484,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 237, + "pk": 250, "fields": { - "creation_time": "2020-01-24T13:10:29.618Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -30300,9 +30500,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 238, + "pk": 251, "fields": { - "creation_time": "2020-01-24T13:10:29.698Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -30316,9 +30516,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 239, + "pk": 252, "fields": { - "creation_time": "2020-01-10T13:10:29.704Z", + "creation_time": "2020-08-07T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -30332,9 +30532,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 240, + "pk": 253, "fields": { - "creation_time": "2020-01-10T13:10:29.704Z", + "creation_time": "2020-08-07T16:25:35Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -30348,9 +30548,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 241, + "pk": 254, "fields": { - "creation_time": "2020-01-24T13:10:29.740Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -30364,9 +30564,25 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 242, + "pk": 255, + "fields": { + "creation_time": "2020-08-21T16:25:35Z", + "user": 1, + "rate": 0.0, + "review_rate": 0.0, + "wordcount": 52, + "similarity": 0.0, + "score_delta": 14.857142857142856, + "action_code": 4, + "submission": 270, + "translated_wordcount": null + } +}, +{ + "model": "pootle_statistics.scorelog", + "pk": 256, "fields": { - "creation_time": "2020-01-24T13:10:29.792Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -30380,9 +30596,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 243, + "pk": 257, "fields": { - "creation_time": "2020-01-24T13:10:29.792Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -30396,9 +30612,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 244, + "pk": 258, "fields": { - "creation_time": "2020-01-24T13:10:29.875Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -30412,9 +30628,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 245, + "pk": 259, "fields": { - "creation_time": "2020-01-24T13:10:29.888Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -30428,9 +30644,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 246, + "pk": 260, "fields": { - "creation_time": "2020-01-24T13:10:29.893Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -30444,9 +30660,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 247, + "pk": 261, "fields": { - "creation_time": "2020-01-24T13:10:29.893Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -30460,9 +30676,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 248, + "pk": 262, "fields": { - "creation_time": "2020-01-24T13:10:29.903Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -30476,9 +30692,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 249, + "pk": 263, "fields": { - "creation_time": "2020-01-24T13:10:29.913Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -30492,9 +30708,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 250, + "pk": 264, "fields": { - "creation_time": "2020-01-24T13:10:29.918Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -30508,9 +30724,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 251, + "pk": 265, "fields": { - "creation_time": "2020-01-24T13:10:29.918Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -30524,9 +30740,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 252, + "pk": 266, "fields": { - "creation_time": "2020-01-24T13:10:30.001Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -30540,9 +30756,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 253, + "pk": 267, "fields": { - "creation_time": "2020-01-24T13:10:30.017Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -30556,9 +30772,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 254, + "pk": 268, "fields": { - "creation_time": "2020-01-24T13:10:30.023Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -30572,9 +30788,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 255, + "pk": 269, "fields": { - "creation_time": "2020-01-24T13:10:30.023Z", + "creation_time": "2020-08-21T16:25:35Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -30588,9 +30804,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 256, + "pk": 270, "fields": { - "creation_time": "2020-01-24T13:10:30.104Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -30604,9 +30820,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 257, + "pk": 271, "fields": { - "creation_time": "2020-01-24T13:10:30.117Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -30620,9 +30836,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 258, + "pk": 272, "fields": { - "creation_time": "2020-01-24T13:10:30.122Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -30636,9 +30852,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 259, + "pk": 273, "fields": { - "creation_time": "2020-01-24T13:10:30.122Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -30652,9 +30868,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 260, + "pk": 274, "fields": { - "creation_time": "2020-01-24T13:10:30.133Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -30668,9 +30884,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 261, + "pk": 275, "fields": { - "creation_time": "2020-01-24T13:10:30.143Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -30684,9 +30900,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 262, + "pk": 276, "fields": { - "creation_time": "2020-01-24T13:10:30.148Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -30700,9 +30916,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 263, + "pk": 277, "fields": { - "creation_time": "2020-01-24T13:10:30.148Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -30716,9 +30932,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 264, + "pk": 278, "fields": { - "creation_time": "2020-01-24T13:10:30.158Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -30732,9 +30948,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 265, + "pk": 279, "fields": { - "creation_time": "2020-01-24T13:10:30.167Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -30748,9 +30964,25 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 266, + "pk": 280, + "fields": { + "creation_time": "2020-08-21T16:25:36Z", + "user": 1, + "rate": 0.0, + "review_rate": 0.0, + "wordcount": 38, + "similarity": 0.0, + "score_delta": 10.857142857142856, + "action_code": 4, + "submission": 289, + "translated_wordcount": null + } +}, +{ + "model": "pootle_statistics.scorelog", + "pk": 281, "fields": { - "creation_time": "2020-01-24T13:10:30.172Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -30764,9 +30996,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 267, + "pk": 282, "fields": { - "creation_time": "2020-01-24T13:10:30.172Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -30780,9 +31012,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 268, + "pk": 283, "fields": { - "creation_time": "2020-01-24T13:10:30.251Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -30796,9 +31028,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 269, + "pk": 284, "fields": { - "creation_time": "2020-01-24T13:10:30.265Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -30812,9 +31044,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 270, + "pk": 285, "fields": { - "creation_time": "2020-01-24T13:10:30.270Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -30828,9 +31060,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 271, + "pk": 286, "fields": { - "creation_time": "2020-01-24T13:10:30.270Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -30844,9 +31076,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 272, + "pk": 287, "fields": { - "creation_time": "2020-01-24T13:10:30.348Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -30860,9 +31092,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 273, + "pk": 288, "fields": { - "creation_time": "2020-01-10T13:10:30.355Z", + "creation_time": "2020-08-07T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -30876,9 +31108,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 274, + "pk": 289, "fields": { - "creation_time": "2020-01-10T13:10:30.355Z", + "creation_time": "2020-08-07T16:25:36Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -30892,9 +31124,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 275, + "pk": 290, "fields": { - "creation_time": "2020-01-24T13:10:30.391Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -30908,9 +31140,25 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 276, + "pk": 291, + "fields": { + "creation_time": "2020-08-21T16:25:36Z", + "user": 1, + "rate": 0.0, + "review_rate": 0.0, + "wordcount": 38, + "similarity": 0.0, + "score_delta": 10.857142857142856, + "action_code": 4, + "submission": 297, + "translated_wordcount": null + } +}, +{ + "model": "pootle_statistics.scorelog", + "pk": 292, "fields": { - "creation_time": "2020-01-24T13:10:30.440Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -30924,9 +31172,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 277, + "pk": 293, "fields": { - "creation_time": "2020-01-24T13:10:30.440Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -30940,9 +31188,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 278, + "pk": 294, "fields": { - "creation_time": "2020-01-24T13:10:30.522Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -30956,9 +31204,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 279, + "pk": 295, "fields": { - "creation_time": "2020-01-24T13:10:30.536Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -30972,9 +31220,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 280, + "pk": 296, "fields": { - "creation_time": "2020-01-24T13:10:30.541Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -30988,9 +31236,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 281, + "pk": 297, "fields": { - "creation_time": "2020-01-24T13:10:30.541Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -31004,9 +31252,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 282, + "pk": 298, "fields": { - "creation_time": "2020-01-24T13:10:30.621Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -31020,9 +31268,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 283, + "pk": 299, "fields": { - "creation_time": "2020-01-24T13:10:30.634Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -31036,9 +31284,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 284, + "pk": 300, "fields": { - "creation_time": "2020-01-24T13:10:30.640Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -31052,9 +31300,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 285, + "pk": 301, "fields": { - "creation_time": "2020-01-24T13:10:30.640Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -31068,9 +31316,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 286, + "pk": 302, "fields": { - "creation_time": "2020-01-24T13:10:30.724Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -31084,9 +31332,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 287, + "pk": 303, "fields": { - "creation_time": "2020-01-10T13:10:30.731Z", + "creation_time": "2020-08-07T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -31100,9 +31348,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 288, + "pk": 304, "fields": { - "creation_time": "2020-01-10T13:10:30.731Z", + "creation_time": "2020-08-07T16:25:36Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -31116,9 +31364,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 289, + "pk": 305, "fields": { - "creation_time": "2020-01-24T13:10:30.775Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -31132,9 +31380,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 290, + "pk": 306, "fields": { - "creation_time": "2020-01-24T13:10:30.814Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -31148,9 +31396,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 291, + "pk": 307, "fields": { - "creation_time": "2020-01-24T13:10:30.814Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -31164,9 +31412,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 292, + "pk": 308, "fields": { - "creation_time": "2020-01-24T13:10:30.900Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -31180,9 +31428,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 293, + "pk": 309, "fields": { - "creation_time": "2020-01-24T13:10:30.913Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -31196,9 +31444,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 294, + "pk": 310, "fields": { - "creation_time": "2020-01-24T13:10:30.918Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -31212,9 +31460,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 295, + "pk": 311, "fields": { - "creation_time": "2020-01-24T13:10:30.918Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -31228,9 +31476,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 296, + "pk": 312, "fields": { - "creation_time": "2020-01-24T13:10:31.003Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -31244,9 +31492,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 297, + "pk": 313, "fields": { - "creation_time": "2020-01-24T13:10:31.015Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -31260,9 +31508,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 298, + "pk": 314, "fields": { - "creation_time": "2020-01-24T13:10:31.021Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -31276,9 +31524,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 299, + "pk": 315, "fields": { - "creation_time": "2020-01-24T13:10:31.021Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -31292,9 +31540,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 300, + "pk": 316, "fields": { - "creation_time": "2020-01-24T13:10:31.032Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -31308,9 +31556,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 301, + "pk": 317, "fields": { - "creation_time": "2020-01-24T13:10:31.042Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -31324,9 +31572,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 302, + "pk": 318, "fields": { - "creation_time": "2020-01-24T13:10:31.047Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -31340,9 +31588,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 303, + "pk": 319, "fields": { - "creation_time": "2020-01-24T13:10:31.047Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -31356,9 +31604,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 304, + "pk": 320, "fields": { - "creation_time": "2020-01-24T13:10:31.058Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -31372,9 +31620,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 305, + "pk": 321, "fields": { - "creation_time": "2020-01-24T13:10:31.069Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -31388,9 +31636,25 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 306, + "pk": 322, "fields": { - "creation_time": "2020-01-24T13:10:31.074Z", + "creation_time": "2020-08-21T16:25:36Z", + "user": 1, + "rate": 0.0, + "review_rate": 0.0, + "wordcount": 38, + "similarity": 0.0, + "score_delta": 10.857142857142856, + "action_code": 4, + "submission": 320, + "translated_wordcount": null + } +}, +{ + "model": "pootle_statistics.scorelog", + "pk": 323, + "fields": { + "creation_time": "2020-08-21T16:25:36Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -31404,9 +31668,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 307, + "pk": 324, "fields": { - "creation_time": "2020-01-24T13:10:31.074Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -31420,9 +31684,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 308, + "pk": 325, "fields": { - "creation_time": "2020-01-24T13:10:31.164Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -31436,9 +31700,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 309, + "pk": 326, "fields": { - "creation_time": "2020-01-24T13:10:31.178Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -31452,9 +31716,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 310, + "pk": 327, "fields": { - "creation_time": "2020-01-24T13:10:31.183Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -31468,9 +31732,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 311, + "pk": 328, "fields": { - "creation_time": "2020-01-24T13:10:31.183Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -31484,9 +31748,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 312, + "pk": 329, "fields": { - "creation_time": "2020-01-24T13:10:31.264Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -31500,9 +31764,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 313, + "pk": 330, "fields": { - "creation_time": "2020-01-10T13:10:31.271Z", + "creation_time": "2020-08-07T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -31516,9 +31780,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 314, + "pk": 331, "fields": { - "creation_time": "2020-01-10T13:10:31.271Z", + "creation_time": "2020-08-07T16:25:36Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -31532,9 +31796,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 315, + "pk": 332, "fields": { - "creation_time": "2020-01-24T13:10:31.317Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -31548,9 +31812,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 316, + "pk": 333, "fields": { - "creation_time": "2020-01-24T13:10:31.365Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -31564,9 +31828,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 317, + "pk": 334, "fields": { - "creation_time": "2020-01-24T13:10:31.365Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -31580,9 +31844,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 318, + "pk": 335, "fields": { - "creation_time": "2020-01-24T13:10:31.450Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -31596,9 +31860,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 319, + "pk": 336, "fields": { - "creation_time": "2020-01-10T13:10:31.456Z", + "creation_time": "2020-08-07T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -31612,9 +31876,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 320, + "pk": 337, "fields": { - "creation_time": "2020-01-10T13:10:31.456Z", + "creation_time": "2020-08-07T16:25:36Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -31628,9 +31892,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 321, + "pk": 338, "fields": { - "creation_time": "2020-01-24T13:10:31.497Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -31644,9 +31908,25 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 322, + "pk": 339, "fields": { - "creation_time": "2020-01-24T13:10:31.550Z", + "creation_time": "2020-08-21T16:25:36Z", + "user": 1, + "rate": 0.0, + "review_rate": 0.0, + "wordcount": 38, + "similarity": 0.0, + "score_delta": 10.857142857142856, + "action_code": 4, + "submission": 332, + "translated_wordcount": null + } +}, +{ + "model": "pootle_statistics.scorelog", + "pk": 340, + "fields": { + "creation_time": "2020-08-21T16:25:36Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -31660,9 +31940,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 323, + "pk": 341, "fields": { - "creation_time": "2020-01-24T13:10:31.550Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -31676,9 +31956,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 324, + "pk": 342, "fields": { - "creation_time": "2020-01-24T13:10:31.638Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -31692,9 +31972,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 325, + "pk": 343, "fields": { - "creation_time": "2020-01-24T13:10:31.654Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -31708,9 +31988,25 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 326, + "pk": 344, "fields": { - "creation_time": "2020-01-24T13:10:31.659Z", + "creation_time": "2020-08-21T16:25:36Z", + "user": 1, + "rate": 0.0, + "review_rate": 0.0, + "wordcount": 38, + "similarity": 0.0, + "score_delta": 10.857142857142856, + "action_code": 4, + "submission": 336, + "translated_wordcount": null + } +}, +{ + "model": "pootle_statistics.scorelog", + "pk": 345, + "fields": { + "creation_time": "2020-08-21T16:25:36Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -31724,9 +32020,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 327, + "pk": 346, "fields": { - "creation_time": "2020-01-24T13:10:31.659Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -31740,9 +32036,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 328, + "pk": 347, "fields": { - "creation_time": "2020-01-24T13:10:31.781Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -31756,9 +32052,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 329, + "pk": 348, "fields": { - "creation_time": "2020-01-24T13:10:31.794Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -31772,9 +32068,25 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 330, + "pk": 349, + "fields": { + "creation_time": "2020-08-21T16:25:36Z", + "user": 1, + "rate": 0.0, + "review_rate": 0.0, + "wordcount": 38, + "similarity": 0.0, + "score_delta": 10.857142857142856, + "action_code": 4, + "submission": 340, + "translated_wordcount": null + } +}, +{ + "model": "pootle_statistics.scorelog", + "pk": 350, "fields": { - "creation_time": "2020-01-24T13:10:31.800Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -31788,9 +32100,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 331, + "pk": 351, "fields": { - "creation_time": "2020-01-24T13:10:31.800Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -31804,9 +32116,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 332, + "pk": 352, "fields": { - "creation_time": "2020-01-24T13:10:31.884Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -31820,9 +32132,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 333, + "pk": 353, "fields": { - "creation_time": "2020-01-24T13:10:31.897Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -31836,9 +32148,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 334, + "pk": 354, "fields": { - "creation_time": "2020-01-24T13:10:31.903Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -31852,9 +32164,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 335, + "pk": 355, "fields": { - "creation_time": "2020-01-24T13:10:31.903Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -31868,9 +32180,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 336, + "pk": 356, "fields": { - "creation_time": "2020-01-24T13:10:31.913Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -31884,9 +32196,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 337, + "pk": 357, "fields": { - "creation_time": "2020-01-24T13:10:31.923Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -31900,9 +32212,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 338, + "pk": 358, "fields": { - "creation_time": "2020-01-24T13:10:31.928Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -31916,9 +32228,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 339, + "pk": 359, "fields": { - "creation_time": "2020-01-24T13:10:31.928Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -31932,9 +32244,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 340, + "pk": 360, "fields": { - "creation_time": "2020-01-24T13:10:32.011Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -31948,9 +32260,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 341, + "pk": 361, "fields": { - "creation_time": "2020-01-10T13:10:32.017Z", + "creation_time": "2020-08-07T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -31964,9 +32276,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 342, + "pk": 362, "fields": { - "creation_time": "2020-01-10T13:10:32.017Z", + "creation_time": "2020-08-07T16:25:36Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -31980,9 +32292,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 343, + "pk": 363, "fields": { - "creation_time": "2020-01-24T13:10:32.055Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -31996,9 +32308,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 344, + "pk": 364, "fields": { - "creation_time": "2020-01-24T13:10:32.104Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -32012,9 +32324,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 345, + "pk": 365, "fields": { - "creation_time": "2020-01-24T13:10:32.104Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -32028,9 +32340,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 346, + "pk": 366, "fields": { - "creation_time": "2020-01-24T13:10:32.190Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -32044,9 +32356,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 347, + "pk": 367, "fields": { - "creation_time": "2020-01-24T13:10:32.203Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -32060,9 +32372,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 348, + "pk": 368, "fields": { - "creation_time": "2020-01-24T13:10:32.209Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -32076,9 +32388,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 349, + "pk": 369, "fields": { - "creation_time": "2020-01-24T13:10:32.209Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -32092,9 +32404,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 350, + "pk": 370, "fields": { - "creation_time": "2020-01-24T13:10:32.287Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -32108,9 +32420,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 351, + "pk": 371, "fields": { - "creation_time": "2020-01-24T13:10:32.300Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -32124,9 +32436,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 352, + "pk": 372, "fields": { - "creation_time": "2020-01-24T13:10:32.305Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -32140,9 +32452,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 353, + "pk": 373, "fields": { - "creation_time": "2020-01-24T13:10:32.305Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -32156,9 +32468,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 354, + "pk": 374, "fields": { - "creation_time": "2020-01-24T13:10:32.316Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -32172,9 +32484,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 355, + "pk": 375, "fields": { - "creation_time": "2020-01-24T13:10:32.326Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -32188,9 +32500,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 356, + "pk": 376, "fields": { - "creation_time": "2020-01-24T13:10:32.332Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -32204,9 +32516,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 357, + "pk": 377, "fields": { - "creation_time": "2020-01-24T13:10:32.332Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -32220,9 +32532,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 358, + "pk": 378, "fields": { - "creation_time": "2020-01-24T13:10:32.413Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -32236,9 +32548,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 359, + "pk": 379, "fields": { - "creation_time": "2020-01-10T13:10:32.419Z", + "creation_time": "2020-08-07T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -32252,9 +32564,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 360, + "pk": 380, "fields": { - "creation_time": "2020-01-10T13:10:32.419Z", + "creation_time": "2020-08-07T16:25:36Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -32268,9 +32580,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 361, + "pk": 381, "fields": { - "creation_time": "2020-01-24T13:10:32.460Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -32284,9 +32596,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 362, + "pk": 382, "fields": { - "creation_time": "2020-01-24T13:10:32.512Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -32300,9 +32612,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 363, + "pk": 383, "fields": { - "creation_time": "2020-01-24T13:10:32.512Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -32316,9 +32628,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 364, + "pk": 384, "fields": { - "creation_time": "2020-01-24T13:10:32.596Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -32332,9 +32644,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 365, + "pk": 385, "fields": { - "creation_time": "2020-01-24T13:10:32.609Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -32348,9 +32660,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 366, + "pk": 386, "fields": { - "creation_time": "2020-01-24T13:10:32.614Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -32364,9 +32676,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 367, + "pk": 387, "fields": { - "creation_time": "2020-01-24T13:10:32.614Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -32380,9 +32692,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 368, + "pk": 388, "fields": { - "creation_time": "2020-01-24T13:10:32.625Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -32396,9 +32708,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 369, + "pk": 389, "fields": { - "creation_time": "2020-01-24T13:10:32.635Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -32412,9 +32724,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 370, + "pk": 390, "fields": { - "creation_time": "2020-01-24T13:10:32.640Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -32428,9 +32740,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 371, + "pk": 391, "fields": { - "creation_time": "2020-01-24T13:10:32.640Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -32444,9 +32756,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 372, + "pk": 392, "fields": { - "creation_time": "2020-01-24T13:10:32.717Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -32460,9 +32772,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 373, + "pk": 393, "fields": { - "creation_time": "2020-01-10T13:10:32.724Z", + "creation_time": "2020-08-07T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -32476,9 +32788,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 374, + "pk": 394, "fields": { - "creation_time": "2020-01-10T13:10:32.724Z", + "creation_time": "2020-08-07T16:25:36Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -32492,9 +32804,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 375, + "pk": 395, "fields": { - "creation_time": "2020-01-24T13:10:32.764Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -32508,9 +32820,25 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 376, + "pk": 396, + "fields": { + "creation_time": "2020-08-21T16:25:36Z", + "user": 1, + "rate": 0.0, + "review_rate": 0.0, + "wordcount": 45, + "similarity": 0.0, + "score_delta": 12.857142857142856, + "action_code": 4, + "submission": 374, + "translated_wordcount": null + } +}, +{ + "model": "pootle_statistics.scorelog", + "pk": 397, "fields": { - "creation_time": "2020-01-24T13:10:32.816Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -32524,9 +32852,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 377, + "pk": 398, "fields": { - "creation_time": "2020-01-24T13:10:32.816Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -32540,9 +32868,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 378, + "pk": 399, "fields": { - "creation_time": "2020-01-24T13:10:32.899Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -32556,9 +32884,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 379, + "pk": 400, "fields": { - "creation_time": "2020-01-24T13:10:32.915Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -32572,9 +32900,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 380, + "pk": 401, "fields": { - "creation_time": "2020-01-24T13:10:32.920Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -32588,9 +32916,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 381, + "pk": 402, "fields": { - "creation_time": "2020-01-24T13:10:32.920Z", + "creation_time": "2020-08-21T16:25:36Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -32604,9 +32932,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 382, + "pk": 403, "fields": { - "creation_time": "2020-01-24T13:10:33.001Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -32620,9 +32948,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 383, + "pk": 404, "fields": { - "creation_time": "2020-01-10T13:10:33.008Z", + "creation_time": "2020-08-07T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -32636,9 +32964,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 384, + "pk": 405, "fields": { - "creation_time": "2020-01-10T13:10:33.008Z", + "creation_time": "2020-08-07T16:25:37Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -32652,9 +32980,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 385, + "pk": 406, "fields": { - "creation_time": "2020-01-24T13:10:33.044Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -32668,9 +32996,25 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 386, + "pk": 407, + "fields": { + "creation_time": "2020-08-21T16:25:37Z", + "user": 1, + "rate": 0.0, + "review_rate": 0.0, + "wordcount": 45, + "similarity": 0.0, + "score_delta": 12.857142857142856, + "action_code": 4, + "submission": 382, + "translated_wordcount": null + } +}, +{ + "model": "pootle_statistics.scorelog", + "pk": 408, "fields": { - "creation_time": "2020-01-24T13:10:33.096Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -32684,9 +33028,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 387, + "pk": 409, "fields": { - "creation_time": "2020-01-24T13:10:33.096Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -32700,9 +33044,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 388, + "pk": 410, "fields": { - "creation_time": "2020-01-24T13:10:33.181Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -32716,9 +33060,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 389, + "pk": 411, "fields": { - "creation_time": "2020-01-24T13:10:33.195Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -32732,9 +33076,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 390, + "pk": 412, "fields": { - "creation_time": "2020-01-24T13:10:33.200Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -32748,9 +33092,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 391, + "pk": 413, "fields": { - "creation_time": "2020-01-24T13:10:33.200Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -32764,9 +33108,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 392, + "pk": 414, "fields": { - "creation_time": "2020-01-24T13:10:33.211Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -32780,9 +33124,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 393, + "pk": 415, "fields": { - "creation_time": "2020-01-24T13:10:33.222Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -32796,9 +33140,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 394, + "pk": 416, "fields": { - "creation_time": "2020-01-24T13:10:33.226Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -32812,9 +33156,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 395, + "pk": 417, "fields": { - "creation_time": "2020-01-24T13:10:33.226Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -32828,9 +33172,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 396, + "pk": 418, "fields": { - "creation_time": "2020-01-24T13:10:33.308Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -32844,9 +33188,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 397, + "pk": 419, "fields": { - "creation_time": "2020-01-24T13:10:33.323Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -32860,9 +33204,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 398, + "pk": 420, "fields": { - "creation_time": "2020-01-24T13:10:33.328Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -32876,9 +33220,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 399, + "pk": 421, "fields": { - "creation_time": "2020-01-24T13:10:33.328Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -32892,9 +33236,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 400, + "pk": 422, "fields": { - "creation_time": "2020-01-24T13:10:33.409Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -32908,9 +33252,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 401, + "pk": 423, "fields": { - "creation_time": "2020-01-10T13:10:33.416Z", + "creation_time": "2020-08-07T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -32924,9 +33268,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 402, + "pk": 424, "fields": { - "creation_time": "2020-01-10T13:10:33.416Z", + "creation_time": "2020-08-07T16:25:37Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -32940,9 +33284,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 403, + "pk": 425, "fields": { - "creation_time": "2020-01-24T13:10:33.451Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -32956,9 +33300,25 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 404, + "pk": 426, + "fields": { + "creation_time": "2020-08-21T16:25:37Z", + "user": 1, + "rate": 0.0, + "review_rate": 0.0, + "wordcount": 52, + "similarity": 0.0, + "score_delta": 14.857142857142856, + "action_code": 4, + "submission": 396, + "translated_wordcount": null + } +}, +{ + "model": "pootle_statistics.scorelog", + "pk": 427, "fields": { - "creation_time": "2020-01-24T13:10:33.502Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -32972,9 +33332,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 405, + "pk": 428, "fields": { - "creation_time": "2020-01-24T13:10:33.502Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -32988,9 +33348,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 406, + "pk": 429, "fields": { - "creation_time": "2020-01-24T13:10:33.585Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -33004,9 +33364,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 407, + "pk": 430, "fields": { - "creation_time": "2020-01-24T13:10:33.598Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -33020,9 +33380,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 408, + "pk": 431, "fields": { - "creation_time": "2020-01-24T13:10:33.603Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -33036,9 +33396,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 409, + "pk": 432, "fields": { - "creation_time": "2020-01-24T13:10:33.603Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -33052,9 +33412,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 410, + "pk": 433, "fields": { - "creation_time": "2020-01-24T13:10:33.614Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -33068,9 +33428,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 411, + "pk": 434, "fields": { - "creation_time": "2020-01-24T13:10:33.624Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -33084,9 +33444,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 412, + "pk": 435, "fields": { - "creation_time": "2020-01-24T13:10:33.629Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -33100,9 +33460,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 413, + "pk": 436, "fields": { - "creation_time": "2020-01-24T13:10:33.629Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -33116,9 +33476,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 414, + "pk": 437, "fields": { - "creation_time": "2020-01-24T13:10:33.706Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -33132,9 +33492,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 415, + "pk": 438, "fields": { - "creation_time": "2020-01-24T13:10:33.721Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -33148,9 +33508,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 416, + "pk": 439, "fields": { - "creation_time": "2020-01-24T13:10:33.726Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -33164,9 +33524,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 417, + "pk": 440, "fields": { - "creation_time": "2020-01-24T13:10:33.726Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -33180,9 +33540,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 418, + "pk": 441, "fields": { - "creation_time": "2020-01-24T13:10:33.737Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -33196,9 +33556,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 419, + "pk": 442, "fields": { - "creation_time": "2020-01-24T13:10:33.748Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -33212,9 +33572,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 420, + "pk": 443, "fields": { - "creation_time": "2020-01-24T13:10:33.752Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -33228,9 +33588,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 421, + "pk": 444, "fields": { - "creation_time": "2020-01-24T13:10:33.752Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -33244,9 +33604,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 422, + "pk": 445, "fields": { - "creation_time": "2020-01-24T13:10:33.873Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -33260,9 +33620,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 423, + "pk": 446, "fields": { - "creation_time": "2020-01-24T13:10:33.886Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -33276,9 +33636,25 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 424, + "pk": 447, + "fields": { + "creation_time": "2020-08-21T16:25:37Z", + "user": 1, + "rate": 0.0, + "review_rate": 0.0, + "wordcount": 38, + "similarity": 0.0, + "score_delta": 10.857142857142856, + "action_code": 4, + "submission": 412, + "translated_wordcount": null + } +}, +{ + "model": "pootle_statistics.scorelog", + "pk": 448, "fields": { - "creation_time": "2020-01-24T13:10:33.892Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -33292,9 +33668,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 425, + "pk": 449, "fields": { - "creation_time": "2020-01-24T13:10:33.892Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -33308,9 +33684,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 426, + "pk": 450, "fields": { - "creation_time": "2020-01-24T13:10:33.957Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -33324,9 +33700,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 427, + "pk": 451, "fields": { - "creation_time": "2020-01-24T13:10:33.971Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -33340,9 +33716,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 428, + "pk": 452, "fields": { - "creation_time": "2020-01-24T13:10:33.976Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -33356,9 +33732,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 429, + "pk": 453, "fields": { - "creation_time": "2020-01-24T13:10:33.976Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -33372,9 +33748,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 430, + "pk": 454, "fields": { - "creation_time": "2020-01-24T13:10:34.058Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -33388,9 +33764,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 431, + "pk": 455, "fields": { - "creation_time": "2020-01-10T13:10:34.065Z", + "creation_time": "2020-08-07T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -33404,9 +33780,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 432, + "pk": 456, "fields": { - "creation_time": "2020-01-10T13:10:34.065Z", + "creation_time": "2020-08-07T16:25:37Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -33420,9 +33796,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 433, + "pk": 457, "fields": { - "creation_time": "2020-01-24T13:10:34.105Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -33436,9 +33812,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 434, + "pk": 458, "fields": { - "creation_time": "2020-01-24T13:10:34.156Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -33452,9 +33828,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 435, + "pk": 459, "fields": { - "creation_time": "2020-01-24T13:10:34.156Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -33468,9 +33844,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 436, + "pk": 460, "fields": { - "creation_time": "2020-01-24T13:10:34.241Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -33484,9 +33860,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 437, + "pk": 461, "fields": { - "creation_time": "2020-01-10T13:10:34.248Z", + "creation_time": "2020-08-07T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -33500,9 +33876,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 438, + "pk": 462, "fields": { - "creation_time": "2020-01-10T13:10:34.248Z", + "creation_time": "2020-08-07T16:25:37Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -33516,9 +33892,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 439, + "pk": 463, "fields": { - "creation_time": "2020-01-24T13:10:34.285Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -33532,9 +33908,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 440, + "pk": 464, "fields": { - "creation_time": "2020-01-24T13:10:34.333Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -33548,9 +33924,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 441, + "pk": 465, "fields": { - "creation_time": "2020-01-24T13:10:34.333Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -33564,9 +33940,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 442, + "pk": 466, "fields": { - "creation_time": "2020-01-24T13:10:34.343Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -33580,9 +33956,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 443, + "pk": 467, "fields": { - "creation_time": "2020-01-24T13:10:34.356Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -33596,9 +33972,25 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 444, + "pk": 468, + "fields": { + "creation_time": "2020-08-21T16:25:37Z", + "user": 1, + "rate": 0.0, + "review_rate": 0.0, + "wordcount": 38, + "similarity": 0.0, + "score_delta": 10.857142857142856, + "action_code": 4, + "submission": 427, + "translated_wordcount": null + } +}, +{ + "model": "pootle_statistics.scorelog", + "pk": 469, "fields": { - "creation_time": "2020-01-24T13:10:34.361Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -33612,9 +34004,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 445, + "pk": 470, "fields": { - "creation_time": "2020-01-24T13:10:34.361Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -33628,9 +34020,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 446, + "pk": 471, "fields": { - "creation_time": "2020-01-24T13:10:34.462Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -33644,9 +34036,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 447, + "pk": 472, "fields": { - "creation_time": "2020-01-24T13:10:34.476Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -33660,9 +34052,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 448, + "pk": 473, "fields": { - "creation_time": "2020-01-24T13:10:34.482Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -33676,9 +34068,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 449, + "pk": 474, "fields": { - "creation_time": "2020-01-24T13:10:34.482Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -33692,9 +34084,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 450, + "pk": 475, "fields": { - "creation_time": "2020-01-24T13:10:34.569Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -33708,9 +34100,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 451, + "pk": 476, "fields": { - "creation_time": "2020-01-24T13:10:34.584Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -33724,9 +34116,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 452, + "pk": 477, "fields": { - "creation_time": "2020-01-24T13:10:34.589Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -33740,9 +34132,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 453, + "pk": 478, "fields": { - "creation_time": "2020-01-24T13:10:34.589Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -33756,9 +34148,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 454, + "pk": 479, "fields": { - "creation_time": "2020-01-24T13:10:34.600Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -33772,9 +34164,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 455, + "pk": 480, "fields": { - "creation_time": "2020-01-24T13:10:34.610Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -33788,9 +34180,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 456, + "pk": 481, "fields": { - "creation_time": "2020-01-24T13:10:34.616Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -33804,9 +34196,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 457, + "pk": 482, "fields": { - "creation_time": "2020-01-24T13:10:34.616Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -33820,9 +34212,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 458, + "pk": 483, "fields": { - "creation_time": "2020-01-24T13:10:34.704Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -33836,9 +34228,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 459, + "pk": 484, "fields": { - "creation_time": "2020-01-10T13:10:34.711Z", + "creation_time": "2020-08-07T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -33852,9 +34244,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 460, + "pk": 485, "fields": { - "creation_time": "2020-01-10T13:10:34.711Z", + "creation_time": "2020-08-07T16:25:37Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -33868,9 +34260,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 461, + "pk": 486, "fields": { - "creation_time": "2020-01-24T13:10:34.751Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -33884,9 +34276,25 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 462, + "pk": 487, + "fields": { + "creation_time": "2020-08-21T16:25:37Z", + "user": 1, + "rate": 0.0, + "review_rate": 0.0, + "wordcount": 38, + "similarity": 0.0, + "score_delta": 10.857142857142856, + "action_code": 4, + "submission": 441, + "translated_wordcount": null + } +}, +{ + "model": "pootle_statistics.scorelog", + "pk": 488, "fields": { - "creation_time": "2020-01-24T13:10:34.804Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -33900,9 +34308,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 463, + "pk": 489, "fields": { - "creation_time": "2020-01-24T13:10:34.804Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -33916,9 +34324,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 464, + "pk": 490, "fields": { - "creation_time": "2020-01-24T13:10:34.884Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -33932,9 +34340,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 465, + "pk": 491, "fields": { - "creation_time": "2020-01-24T13:10:34.897Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -33948,9 +34356,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 466, + "pk": 492, "fields": { - "creation_time": "2020-01-24T13:10:34.902Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -33964,9 +34372,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 467, + "pk": 493, "fields": { - "creation_time": "2020-01-24T13:10:34.902Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -33980,9 +34388,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 468, + "pk": 494, "fields": { - "creation_time": "2020-01-24T13:10:34.984Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -33996,9 +34404,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 469, + "pk": 495, "fields": { - "creation_time": "2020-01-24T13:10:34.997Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -34012,9 +34420,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 470, + "pk": 496, "fields": { - "creation_time": "2020-01-24T13:10:35.002Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -34028,9 +34436,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 471, + "pk": 497, "fields": { - "creation_time": "2020-01-24T13:10:35.002Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -34044,9 +34452,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 472, + "pk": 498, "fields": { - "creation_time": "2020-01-24T13:10:35.069Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -34060,9 +34468,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 473, + "pk": 499, "fields": { - "creation_time": "2020-01-10T13:10:35.076Z", + "creation_time": "2020-08-07T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -34076,9 +34484,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 474, + "pk": 500, "fields": { - "creation_time": "2020-01-10T13:10:35.076Z", + "creation_time": "2020-08-07T16:25:37Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -34092,9 +34500,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 475, + "pk": 501, "fields": { - "creation_time": "2020-01-24T13:10:35.114Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -34108,9 +34516,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 476, + "pk": 502, "fields": { - "creation_time": "2020-01-24T13:10:35.163Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -34124,9 +34532,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 477, + "pk": 503, "fields": { - "creation_time": "2020-01-24T13:10:35.163Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -34140,9 +34548,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 478, + "pk": 504, "fields": { - "creation_time": "2020-01-24T13:10:35.244Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -34156,9 +34564,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 479, + "pk": 505, "fields": { - "creation_time": "2020-01-24T13:10:35.257Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -34172,9 +34580,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 480, + "pk": 506, "fields": { - "creation_time": "2020-01-24T13:10:35.262Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -34188,9 +34596,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 481, + "pk": 507, "fields": { - "creation_time": "2020-01-24T13:10:35.262Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -34204,9 +34612,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 482, + "pk": 508, "fields": { - "creation_time": "2020-01-24T13:10:35.273Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -34220,9 +34628,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 483, + "pk": 509, "fields": { - "creation_time": "2020-01-24T13:10:35.283Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -34236,9 +34644,25 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 484, + "pk": 510, + "fields": { + "creation_time": "2020-08-21T16:25:37Z", + "user": 1, + "rate": 0.0, + "review_rate": 0.0, + "wordcount": 38, + "similarity": 0.0, + "score_delta": 10.857142857142856, + "action_code": 4, + "submission": 458, + "translated_wordcount": null + } +}, +{ + "model": "pootle_statistics.scorelog", + "pk": 511, "fields": { - "creation_time": "2020-01-24T13:10:35.288Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -34252,9 +34676,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 485, + "pk": 512, "fields": { - "creation_time": "2020-01-24T13:10:35.288Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -34268,9 +34692,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 486, + "pk": 513, "fields": { - "creation_time": "2020-01-24T13:10:35.368Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -34284,9 +34708,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 487, + "pk": 514, "fields": { - "creation_time": "2020-01-24T13:10:35.384Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -34300,9 +34724,25 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 488, + "pk": 515, + "fields": { + "creation_time": "2020-08-21T16:25:37Z", + "user": 1, + "rate": 0.0, + "review_rate": 0.0, + "wordcount": 38, + "similarity": 0.0, + "score_delta": 10.857142857142856, + "action_code": 4, + "submission": 462, + "translated_wordcount": null + } +}, +{ + "model": "pootle_statistics.scorelog", + "pk": 516, "fields": { - "creation_time": "2020-01-24T13:10:35.389Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -34316,9 +34756,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 489, + "pk": 517, "fields": { - "creation_time": "2020-01-24T13:10:35.389Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -34332,9 +34772,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 490, + "pk": 518, "fields": { - "creation_time": "2020-01-24T13:10:35.471Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -34348,9 +34788,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 491, + "pk": 519, "fields": { - "creation_time": "2020-01-24T13:10:35.484Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -34364,9 +34804,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 492, + "pk": 520, "fields": { - "creation_time": "2020-01-24T13:10:35.489Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -34380,9 +34820,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 493, + "pk": 521, "fields": { - "creation_time": "2020-01-24T13:10:35.489Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -34396,9 +34836,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 494, + "pk": 522, "fields": { - "creation_time": "2020-01-24T13:10:35.572Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -34412,9 +34852,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 495, + "pk": 523, "fields": { - "creation_time": "2020-01-24T13:10:35.586Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -34428,9 +34868,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 496, + "pk": 524, "fields": { - "creation_time": "2020-01-24T13:10:35.591Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -34444,9 +34884,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 497, + "pk": 525, "fields": { - "creation_time": "2020-01-24T13:10:35.591Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -34460,9 +34900,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 498, + "pk": 526, "fields": { - "creation_time": "2020-01-24T13:10:35.603Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -34476,9 +34916,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 499, + "pk": 527, "fields": { - "creation_time": "2020-01-24T13:10:35.615Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -34492,9 +34932,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 500, + "pk": 528, "fields": { - "creation_time": "2020-01-24T13:10:35.620Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -34508,9 +34948,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 501, + "pk": 529, "fields": { - "creation_time": "2020-01-24T13:10:35.620Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -34524,9 +34964,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 502, + "pk": 530, "fields": { - "creation_time": "2020-01-24T13:10:35.630Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -34540,9 +34980,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 503, + "pk": 531, "fields": { - "creation_time": "2020-01-24T13:10:35.641Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -34556,9 +34996,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 504, + "pk": 532, "fields": { - "creation_time": "2020-01-24T13:10:35.646Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -34572,9 +35012,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 505, + "pk": 533, "fields": { - "creation_time": "2020-01-24T13:10:35.646Z", + "creation_time": "2020-08-21T16:25:37Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -34588,9 +35028,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 506, + "pk": 534, "fields": { - "creation_time": "2020-01-24T13:10:35.710Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -34604,9 +35044,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 507, + "pk": 535, "fields": { - "creation_time": "2020-01-10T13:10:35.716Z", + "creation_time": "2020-08-07T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -34620,9 +35060,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 508, + "pk": 536, "fields": { - "creation_time": "2020-01-10T13:10:35.716Z", + "creation_time": "2020-08-07T16:25:38Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -34636,9 +35076,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 509, + "pk": 537, "fields": { - "creation_time": "2020-01-24T13:10:35.755Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -34652,9 +35092,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 510, + "pk": 538, "fields": { - "creation_time": "2020-01-24T13:10:35.807Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -34668,9 +35108,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 511, + "pk": 539, "fields": { - "creation_time": "2020-01-24T13:10:35.807Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -34684,9 +35124,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 512, + "pk": 540, "fields": { - "creation_time": "2020-01-24T13:10:35.893Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -34700,9 +35140,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 513, + "pk": 541, "fields": { - "creation_time": "2020-01-10T13:10:35.900Z", + "creation_time": "2020-08-07T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -34716,9 +35156,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 514, + "pk": 542, "fields": { - "creation_time": "2020-01-10T13:10:35.900Z", + "creation_time": "2020-08-07T16:25:38Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -34732,9 +35172,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 515, + "pk": 543, "fields": { - "creation_time": "2020-01-24T13:10:35.944Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -34748,9 +35188,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 516, + "pk": 544, "fields": { - "creation_time": "2020-01-24T13:10:35.993Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -34764,9 +35204,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 517, + "pk": 545, "fields": { - "creation_time": "2020-01-24T13:10:35.993Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -34780,9 +35220,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 518, + "pk": 546, "fields": { - "creation_time": "2020-01-24T13:10:36.076Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -34796,9 +35236,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 519, + "pk": 547, "fields": { - "creation_time": "2020-01-24T13:10:36.089Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -34812,9 +35252,25 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 520, + "pk": 548, + "fields": { + "creation_time": "2020-08-21T16:25:38Z", + "user": 1, + "rate": 0.0, + "review_rate": 0.0, + "wordcount": 38, + "similarity": 0.0, + "score_delta": 10.857142857142856, + "action_code": 4, + "submission": 486, + "translated_wordcount": null + } +}, +{ + "model": "pootle_statistics.scorelog", + "pk": 549, "fields": { - "creation_time": "2020-01-24T13:10:36.094Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -34828,9 +35284,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 521, + "pk": 550, "fields": { - "creation_time": "2020-01-24T13:10:36.094Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -34844,9 +35300,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 522, + "pk": 551, "fields": { - "creation_time": "2020-01-24T13:10:36.175Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -34860,9 +35316,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 523, + "pk": 552, "fields": { - "creation_time": "2020-01-24T13:10:36.190Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -34876,9 +35332,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 524, + "pk": 553, "fields": { - "creation_time": "2020-01-24T13:10:36.196Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -34892,9 +35348,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 525, + "pk": 554, "fields": { - "creation_time": "2020-01-24T13:10:36.196Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -34908,9 +35364,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 526, + "pk": 555, "fields": { - "creation_time": "2020-01-24T13:10:36.277Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -34924,9 +35380,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 527, + "pk": 556, "fields": { - "creation_time": "2020-01-24T13:10:36.290Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -34940,9 +35396,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 528, + "pk": 557, "fields": { - "creation_time": "2020-01-24T13:10:36.296Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -34956,9 +35412,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 529, + "pk": 558, "fields": { - "creation_time": "2020-01-24T13:10:36.296Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -34972,9 +35428,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 530, + "pk": 559, "fields": { - "creation_time": "2020-01-24T13:10:36.379Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -34988,9 +35444,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 531, + "pk": 560, "fields": { - "creation_time": "2020-01-10T13:10:36.386Z", + "creation_time": "2020-08-07T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -35004,9 +35460,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 532, + "pk": 561, "fields": { - "creation_time": "2020-01-10T13:10:36.386Z", + "creation_time": "2020-08-07T16:25:38Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -35020,9 +35476,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 533, + "pk": 562, "fields": { - "creation_time": "2020-01-24T13:10:36.428Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -35036,9 +35492,25 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 534, + "pk": 563, + "fields": { + "creation_time": "2020-08-21T16:25:38Z", + "user": 1, + "rate": 0.0, + "review_rate": 0.0, + "wordcount": 45, + "similarity": 0.0, + "score_delta": 12.857142857142856, + "action_code": 4, + "submission": 497, + "translated_wordcount": null + } +}, +{ + "model": "pootle_statistics.scorelog", + "pk": 564, "fields": { - "creation_time": "2020-01-24T13:10:36.477Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -35052,9 +35524,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 535, + "pk": 565, "fields": { - "creation_time": "2020-01-24T13:10:36.477Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -35068,9 +35540,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 536, + "pk": 566, "fields": { - "creation_time": "2020-01-24T13:10:36.560Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -35084,9 +35556,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 537, + "pk": 567, "fields": { - "creation_time": "2020-01-24T13:10:36.574Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -35100,9 +35572,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 538, + "pk": 568, "fields": { - "creation_time": "2020-01-24T13:10:36.580Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -35116,9 +35588,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 539, + "pk": 569, "fields": { - "creation_time": "2020-01-24T13:10:36.580Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -35132,9 +35604,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 540, + "pk": 570, "fields": { - "creation_time": "2020-01-24T13:10:36.591Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -35148,9 +35620,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 541, + "pk": 571, "fields": { - "creation_time": "2020-01-24T13:10:36.603Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -35164,9 +35636,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 542, + "pk": 572, "fields": { - "creation_time": "2020-01-24T13:10:36.608Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -35180,9 +35652,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 543, + "pk": 573, "fields": { - "creation_time": "2020-01-24T13:10:36.608Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -35196,9 +35668,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 544, + "pk": 574, "fields": { - "creation_time": "2020-01-24T13:10:36.618Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -35212,9 +35684,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 545, + "pk": 575, "fields": { - "creation_time": "2020-01-24T13:10:36.628Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -35228,9 +35700,25 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 546, + "pk": 576, + "fields": { + "creation_time": "2020-08-21T16:25:38Z", + "user": 1, + "rate": 0.0, + "review_rate": 0.0, + "wordcount": 45, + "similarity": 0.0, + "score_delta": 12.857142857142856, + "action_code": 4, + "submission": 507, + "translated_wordcount": null + } +}, +{ + "model": "pootle_statistics.scorelog", + "pk": 577, "fields": { - "creation_time": "2020-01-24T13:10:36.633Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -35244,9 +35732,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 547, + "pk": 578, "fields": { - "creation_time": "2020-01-24T13:10:36.633Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -35260,9 +35748,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 548, + "pk": 579, "fields": { - "creation_time": "2020-01-24T13:10:36.714Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -35276,9 +35764,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 549, + "pk": 580, "fields": { - "creation_time": "2020-01-24T13:10:36.727Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -35292,9 +35780,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 550, + "pk": 581, "fields": { - "creation_time": "2020-01-24T13:10:36.733Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -35308,9 +35796,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 551, + "pk": 582, "fields": { - "creation_time": "2020-01-24T13:10:36.733Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -35324,9 +35812,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 552, + "pk": 583, "fields": { - "creation_time": "2020-01-24T13:10:36.810Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -35340,9 +35828,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 553, + "pk": 584, "fields": { - "creation_time": "2020-01-10T13:10:36.816Z", + "creation_time": "2020-08-07T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -35356,9 +35844,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 554, + "pk": 585, "fields": { - "creation_time": "2020-01-10T13:10:36.816Z", + "creation_time": "2020-08-07T16:25:38Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -35372,9 +35860,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 555, + "pk": 586, "fields": { - "creation_time": "2020-01-24T13:10:36.853Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -35388,9 +35876,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 556, + "pk": 587, "fields": { - "creation_time": "2020-01-24T13:10:36.904Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -35404,9 +35892,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 557, + "pk": 588, "fields": { - "creation_time": "2020-01-24T13:10:36.904Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -35420,9 +35908,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 558, + "pk": 589, "fields": { - "creation_time": "2020-01-24T13:10:36.992Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -35436,9 +35924,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 559, + "pk": 590, "fields": { - "creation_time": "2020-01-24T13:10:37.008Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -35452,9 +35940,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 560, + "pk": 591, "fields": { - "creation_time": "2020-01-24T13:10:37.013Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -35468,9 +35956,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 561, + "pk": 592, "fields": { - "creation_time": "2020-01-24T13:10:37.013Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -35484,9 +35972,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 562, + "pk": 593, "fields": { - "creation_time": "2020-01-24T13:10:37.092Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -35500,9 +35988,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 563, + "pk": 594, "fields": { - "creation_time": "2020-01-24T13:10:37.105Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -35516,9 +36004,25 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 564, + "pk": 595, + "fields": { + "creation_time": "2020-08-21T16:25:38Z", + "user": 1, + "rate": 0.0, + "review_rate": 0.0, + "wordcount": 52, + "similarity": 0.0, + "score_delta": 14.857142857142856, + "action_code": 4, + "submission": 521, + "translated_wordcount": null + } +}, +{ + "model": "pootle_statistics.scorelog", + "pk": 596, "fields": { - "creation_time": "2020-01-24T13:10:37.111Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -35532,9 +36036,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 565, + "pk": 597, "fields": { - "creation_time": "2020-01-24T13:10:37.111Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -35548,9 +36052,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 566, + "pk": 598, "fields": { - "creation_time": "2020-01-24T13:10:37.193Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -35564,9 +36068,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 567, + "pk": 599, "fields": { - "creation_time": "2020-01-24T13:10:37.207Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -35580,9 +36084,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 568, + "pk": 600, "fields": { - "creation_time": "2020-01-24T13:10:37.212Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -35596,9 +36100,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 569, + "pk": 601, "fields": { - "creation_time": "2020-01-24T13:10:37.212Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -35612,9 +36116,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 570, + "pk": 602, "fields": { - "creation_time": "2020-01-24T13:10:37.287Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -35628,9 +36132,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 571, + "pk": 603, "fields": { - "creation_time": "2020-01-10T13:10:37.294Z", + "creation_time": "2020-08-07T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -35644,9 +36148,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 572, + "pk": 604, "fields": { - "creation_time": "2020-01-10T13:10:37.294Z", + "creation_time": "2020-08-07T16:25:38Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -35660,9 +36164,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 573, + "pk": 605, "fields": { - "creation_time": "2020-01-24T13:10:37.328Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -35676,9 +36180,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 574, + "pk": 606, "fields": { - "creation_time": "2020-01-24T13:10:37.379Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -35692,9 +36196,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 575, + "pk": 607, "fields": { - "creation_time": "2020-01-24T13:10:37.379Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -35708,9 +36212,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 576, + "pk": 608, "fields": { - "creation_time": "2020-01-24T13:10:37.391Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -35724,9 +36228,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 577, + "pk": 609, "fields": { - "creation_time": "2020-01-24T13:10:37.407Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -35740,9 +36244,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 578, + "pk": 610, "fields": { - "creation_time": "2020-01-24T13:10:37.412Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -35756,9 +36260,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 579, + "pk": 611, "fields": { - "creation_time": "2020-01-24T13:10:37.412Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -35772,9 +36276,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 580, + "pk": 612, "fields": { - "creation_time": "2020-01-24T13:10:37.424Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -35788,9 +36292,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 581, + "pk": 613, "fields": { - "creation_time": "2020-01-24T13:10:37.434Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -35804,9 +36308,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 582, + "pk": 614, "fields": { - "creation_time": "2020-01-24T13:10:37.439Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -35820,9 +36324,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 583, + "pk": 615, "fields": { - "creation_time": "2020-01-24T13:10:37.439Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -35836,9 +36340,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 584, + "pk": 616, "fields": { - "creation_time": "2020-01-24T13:10:37.519Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -35852,9 +36356,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 585, + "pk": 617, "fields": { - "creation_time": "2020-01-10T13:10:37.526Z", + "creation_time": "2020-08-07T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -35868,9 +36372,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 586, + "pk": 618, "fields": { - "creation_time": "2020-01-10T13:10:37.526Z", + "creation_time": "2020-08-07T16:25:38Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -35884,9 +36388,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 587, + "pk": 619, "fields": { - "creation_time": "2020-01-24T13:10:37.565Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -35900,9 +36404,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 588, + "pk": 620, "fields": { - "creation_time": "2020-01-24T13:10:37.616Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -35916,9 +36420,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 589, + "pk": 621, "fields": { - "creation_time": "2020-01-24T13:10:37.616Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -35932,9 +36436,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 590, + "pk": 622, "fields": { - "creation_time": "2020-01-24T13:10:37.698Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -35948,9 +36452,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 591, + "pk": 623, "fields": { - "creation_time": "2020-01-24T13:10:37.711Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -35964,9 +36468,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 592, + "pk": 624, "fields": { - "creation_time": "2020-01-24T13:10:37.717Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -35980,9 +36484,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 593, + "pk": 625, "fields": { - "creation_time": "2020-01-24T13:10:37.717Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -35996,9 +36500,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 594, + "pk": 626, "fields": { - "creation_time": "2020-01-24T13:10:37.728Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -36012,9 +36516,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 595, + "pk": 627, "fields": { - "creation_time": "2020-01-24T13:10:37.738Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -36028,9 +36532,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 596, + "pk": 628, "fields": { - "creation_time": "2020-01-24T13:10:37.743Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -36044,9 +36548,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 597, + "pk": 629, "fields": { - "creation_time": "2020-01-24T13:10:37.743Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -36060,9 +36564,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 598, + "pk": 630, "fields": { - "creation_time": "2020-01-24T13:10:37.822Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -36076,9 +36580,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 599, + "pk": 631, "fields": { - "creation_time": "2020-01-24T13:10:37.835Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -36092,9 +36596,25 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 600, + "pk": 632, + "fields": { + "creation_time": "2020-08-21T16:25:38Z", + "user": 1, + "rate": 0.0, + "review_rate": 0.0, + "wordcount": 38, + "similarity": 0.0, + "score_delta": 10.857142857142856, + "action_code": 4, + "submission": 548, + "translated_wordcount": null + } +}, +{ + "model": "pootle_statistics.scorelog", + "pk": 633, "fields": { - "creation_time": "2020-01-24T13:10:37.841Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -36108,9 +36628,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 601, + "pk": 634, "fields": { - "creation_time": "2020-01-24T13:10:37.841Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -36124,9 +36644,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 602, + "pk": 635, "fields": { - "creation_time": "2020-01-24T13:10:37.924Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -36140,9 +36660,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 603, + "pk": 636, "fields": { - "creation_time": "2020-01-24T13:10:37.937Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -36156,9 +36676,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 604, + "pk": 637, "fields": { - "creation_time": "2020-01-24T13:10:37.943Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -36172,9 +36692,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 605, + "pk": 638, "fields": { - "creation_time": "2020-01-24T13:10:37.943Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -36188,9 +36708,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 606, + "pk": 639, "fields": { - "creation_time": "2020-01-24T13:10:38.021Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -36204,9 +36724,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 607, + "pk": 640, "fields": { - "creation_time": "2020-01-10T13:10:38.028Z", + "creation_time": "2020-08-07T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -36220,9 +36740,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 608, + "pk": 641, "fields": { - "creation_time": "2020-01-10T13:10:38.028Z", + "creation_time": "2020-08-07T16:25:38Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -36236,9 +36756,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 609, + "pk": 642, "fields": { - "creation_time": "2020-01-24T13:10:38.065Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -36252,9 +36772,25 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 610, + "pk": 643, + "fields": { + "creation_time": "2020-08-21T16:25:38Z", + "user": 1, + "rate": 0.0, + "review_rate": 0.0, + "wordcount": 38, + "similarity": 0.0, + "score_delta": 10.857142857142856, + "action_code": 4, + "submission": 556, + "translated_wordcount": null + } +}, +{ + "model": "pootle_statistics.scorelog", + "pk": 644, "fields": { - "creation_time": "2020-01-24T13:10:38.114Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -36268,9 +36804,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 611, + "pk": 645, "fields": { - "creation_time": "2020-01-24T13:10:38.114Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -36284,9 +36820,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 612, + "pk": 646, "fields": { - "creation_time": "2020-01-24T13:10:38.202Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -36300,9 +36836,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 613, + "pk": 647, "fields": { - "creation_time": "2020-01-24T13:10:38.217Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -36316,9 +36852,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 614, + "pk": 648, "fields": { - "creation_time": "2020-01-24T13:10:38.223Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -36332,9 +36868,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 615, + "pk": 649, "fields": { - "creation_time": "2020-01-24T13:10:38.223Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -36348,9 +36884,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 616, + "pk": 650, "fields": { - "creation_time": "2020-01-24T13:10:38.303Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -36364,9 +36900,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 617, + "pk": 651, "fields": { - "creation_time": "2020-01-10T13:10:38.310Z", + "creation_time": "2020-08-07T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -36380,9 +36916,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 618, + "pk": 652, "fields": { - "creation_time": "2020-01-10T13:10:38.310Z", + "creation_time": "2020-08-07T16:25:38Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -36396,9 +36932,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 619, + "pk": 653, "fields": { - "creation_time": "2020-01-24T13:10:38.348Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -36412,9 +36948,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 620, + "pk": 654, "fields": { - "creation_time": "2020-01-24T13:10:38.397Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -36428,9 +36964,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 621, + "pk": 655, "fields": { - "creation_time": "2020-01-24T13:10:38.397Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -36444,9 +36980,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 622, + "pk": 656, "fields": { - "creation_time": "2020-01-24T13:10:38.480Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -36460,9 +36996,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 623, + "pk": 657, "fields": { - "creation_time": "2020-01-10T13:10:38.486Z", + "creation_time": "2020-08-07T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -36476,9 +37012,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 624, + "pk": 658, "fields": { - "creation_time": "2020-01-10T13:10:38.486Z", + "creation_time": "2020-08-07T16:25:38Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -36492,9 +37028,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 625, + "pk": 659, "fields": { - "creation_time": "2020-01-24T13:10:38.522Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -36508,9 +37044,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 626, + "pk": 660, "fields": { - "creation_time": "2020-01-24T13:10:38.571Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -36524,9 +37060,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 627, + "pk": 661, "fields": { - "creation_time": "2020-01-24T13:10:38.571Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -36540,9 +37076,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 628, + "pk": 662, "fields": { - "creation_time": "2020-01-24T13:10:38.583Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -36556,9 +37092,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 629, + "pk": 663, "fields": { - "creation_time": "2020-01-24T13:10:38.593Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -36572,9 +37108,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 630, + "pk": 664, "fields": { - "creation_time": "2020-01-24T13:10:38.599Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -36588,9 +37124,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 631, + "pk": 665, "fields": { - "creation_time": "2020-01-24T13:10:38.599Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -36604,9 +37140,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 632, + "pk": 666, "fields": { - "creation_time": "2020-01-24T13:10:38.681Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -36620,9 +37156,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 633, + "pk": 667, "fields": { - "creation_time": "2020-01-24T13:10:38.694Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -36636,9 +37172,25 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 634, + "pk": 668, + "fields": { + "creation_time": "2020-08-21T16:25:38Z", + "user": 1, + "rate": 0.0, + "review_rate": 0.0, + "wordcount": 38, + "similarity": 0.0, + "score_delta": 10.857142857142856, + "action_code": 4, + "submission": 574, + "translated_wordcount": null + } +}, +{ + "model": "pootle_statistics.scorelog", + "pk": 669, "fields": { - "creation_time": "2020-01-24T13:10:38.699Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -36652,9 +37204,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 635, + "pk": 670, "fields": { - "creation_time": "2020-01-24T13:10:38.699Z", + "creation_time": "2020-08-21T16:25:38Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -36668,9 +37220,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 636, + "pk": 671, "fields": { - "creation_time": "2020-01-24T13:10:38.783Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -36684,9 +37236,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 637, + "pk": 672, "fields": { - "creation_time": "2020-01-24T13:10:38.797Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -36700,9 +37252,25 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 638, + "pk": 673, + "fields": { + "creation_time": "2020-08-21T16:25:39Z", + "user": 1, + "rate": 0.0, + "review_rate": 0.0, + "wordcount": 38, + "similarity": 0.0, + "score_delta": 10.857142857142856, + "action_code": 4, + "submission": 578, + "translated_wordcount": null + } +}, +{ + "model": "pootle_statistics.scorelog", + "pk": 674, "fields": { - "creation_time": "2020-01-24T13:10:38.802Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -36716,9 +37284,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 639, + "pk": 675, "fields": { - "creation_time": "2020-01-24T13:10:38.802Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -36732,9 +37300,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 640, + "pk": 676, "fields": { - "creation_time": "2020-01-24T13:10:38.884Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -36748,9 +37316,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 641, + "pk": 677, "fields": { - "creation_time": "2020-01-24T13:10:38.897Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -36764,9 +37332,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 642, + "pk": 678, "fields": { - "creation_time": "2020-01-24T13:10:38.903Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -36780,9 +37348,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 643, + "pk": 679, "fields": { - "creation_time": "2020-01-24T13:10:38.903Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -36796,9 +37364,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 644, + "pk": 680, "fields": { - "creation_time": "2020-01-24T13:10:38.984Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -36812,9 +37380,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 645, + "pk": 681, "fields": { - "creation_time": "2020-01-24T13:10:38.997Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -36828,9 +37396,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 646, + "pk": 682, "fields": { - "creation_time": "2020-01-24T13:10:39.003Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -36844,9 +37412,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 647, + "pk": 683, "fields": { - "creation_time": "2020-01-24T13:10:39.003Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -36860,9 +37428,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 648, + "pk": 684, "fields": { - "creation_time": "2020-01-24T13:10:39.013Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -36876,9 +37444,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 649, + "pk": 685, "fields": { - "creation_time": "2020-01-24T13:10:39.025Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -36892,9 +37460,25 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 650, + "pk": 686, + "fields": { + "creation_time": "2020-08-21T16:25:39Z", + "user": 1, + "rate": 0.0, + "review_rate": 0.0, + "wordcount": 38, + "similarity": 0.0, + "score_delta": 10.857142857142856, + "action_code": 4, + "submission": 588, + "translated_wordcount": null + } +}, +{ + "model": "pootle_statistics.scorelog", + "pk": 687, "fields": { - "creation_time": "2020-01-24T13:10:39.030Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -36908,9 +37492,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 651, + "pk": 688, "fields": { - "creation_time": "2020-01-24T13:10:39.030Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -36924,9 +37508,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 652, + "pk": 689, "fields": { - "creation_time": "2020-01-24T13:10:39.108Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -36940,9 +37524,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 653, + "pk": 690, "fields": { - "creation_time": "2020-01-24T13:10:39.122Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -36956,9 +37540,25 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 654, + "pk": 691, + "fields": { + "creation_time": "2020-08-21T16:25:39Z", + "user": 1, + "rate": 0.0, + "review_rate": 0.0, + "wordcount": 38, + "similarity": 0.0, + "score_delta": 10.857142857142856, + "action_code": 4, + "submission": 592, + "translated_wordcount": null + } +}, +{ + "model": "pootle_statistics.scorelog", + "pk": 692, "fields": { - "creation_time": "2020-01-24T13:10:39.127Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -36972,9 +37572,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 655, + "pk": 693, "fields": { - "creation_time": "2020-01-24T13:10:39.127Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -36988,9 +37588,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 656, + "pk": 694, "fields": { - "creation_time": "2020-01-24T13:10:39.208Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -37004,9 +37604,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 657, + "pk": 695, "fields": { - "creation_time": "2020-01-24T13:10:39.222Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -37020,9 +37620,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 658, + "pk": 696, "fields": { - "creation_time": "2020-01-24T13:10:39.228Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -37036,9 +37636,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 659, + "pk": 697, "fields": { - "creation_time": "2020-01-24T13:10:39.228Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -37052,9 +37652,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 660, + "pk": 698, "fields": { - "creation_time": "2020-01-24T13:10:39.312Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -37068,9 +37668,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 661, + "pk": 699, "fields": { - "creation_time": "2020-01-10T13:10:39.319Z", + "creation_time": "2020-08-07T16:25:39Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -37084,9 +37684,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 662, + "pk": 700, "fields": { - "creation_time": "2020-01-10T13:10:39.319Z", + "creation_time": "2020-08-07T16:25:39Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -37100,9 +37700,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 663, + "pk": 701, "fields": { - "creation_time": "2020-01-24T13:10:39.356Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -37116,9 +37716,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 664, + "pk": 702, "fields": { - "creation_time": "2020-01-24T13:10:39.431Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -37132,9 +37732,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 665, + "pk": 703, "fields": { - "creation_time": "2020-01-24T13:10:39.431Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -37148,9 +37748,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 666, + "pk": 704, "fields": { - "creation_time": "2020-01-24T13:10:39.516Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -37164,9 +37764,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 667, + "pk": 705, "fields": { - "creation_time": "2020-01-24T13:10:39.529Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -37180,9 +37780,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 668, + "pk": 706, "fields": { - "creation_time": "2020-01-24T13:10:39.534Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -37196,9 +37796,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 669, + "pk": 707, "fields": { - "creation_time": "2020-01-24T13:10:39.534Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -37212,9 +37812,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 670, + "pk": 708, "fields": { - "creation_time": "2020-01-24T13:10:39.544Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -37228,9 +37828,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 671, + "pk": 709, "fields": { - "creation_time": "2020-01-24T13:10:39.554Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -37244,9 +37844,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 672, + "pk": 710, "fields": { - "creation_time": "2020-01-24T13:10:39.559Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -37260,9 +37860,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 673, + "pk": 711, "fields": { - "creation_time": "2020-01-24T13:10:39.559Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -37276,9 +37876,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 674, + "pk": 712, "fields": { - "creation_time": "2020-01-24T13:10:39.569Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -37292,9 +37892,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 675, + "pk": 713, "fields": { - "creation_time": "2020-01-24T13:10:39.579Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -37308,9 +37908,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 676, + "pk": 714, "fields": { - "creation_time": "2020-01-24T13:10:39.584Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -37324,9 +37924,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 677, + "pk": 715, "fields": { - "creation_time": "2020-01-24T13:10:39.584Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -37340,9 +37940,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 678, + "pk": 716, "fields": { - "creation_time": "2020-01-24T13:10:39.666Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -37356,9 +37956,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 679, + "pk": 717, "fields": { - "creation_time": "2020-01-24T13:10:39.678Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -37372,9 +37972,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 680, + "pk": 718, "fields": { - "creation_time": "2020-01-24T13:10:39.683Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -37388,9 +37988,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 681, + "pk": 719, "fields": { - "creation_time": "2020-01-24T13:10:39.683Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -37404,9 +38004,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 682, + "pk": 720, "fields": { - "creation_time": "2020-01-24T13:10:39.766Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -37420,9 +38020,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 683, + "pk": 721, "fields": { - "creation_time": "2020-01-10T13:10:39.773Z", + "creation_time": "2020-08-07T16:25:39Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -37436,9 +38036,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 684, + "pk": 722, "fields": { - "creation_time": "2020-01-10T13:10:39.773Z", + "creation_time": "2020-08-07T16:25:39Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -37452,9 +38052,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 685, + "pk": 723, "fields": { - "creation_time": "2020-01-24T13:10:39.812Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -37468,9 +38068,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 686, + "pk": 724, "fields": { - "creation_time": "2020-01-24T13:10:39.864Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -37484,9 +38084,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 687, + "pk": 725, "fields": { - "creation_time": "2020-01-24T13:10:39.864Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -37500,9 +38100,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 688, + "pk": 726, "fields": { - "creation_time": "2020-01-24T13:10:39.876Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -37516,9 +38116,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 689, + "pk": 727, "fields": { - "creation_time": "2020-01-24T13:10:39.887Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -37532,9 +38132,25 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 690, + "pk": 728, "fields": { - "creation_time": "2020-01-24T13:10:39.892Z", + "creation_time": "2020-08-21T16:25:39Z", + "user": 1, + "rate": 0.0, + "review_rate": 0.0, + "wordcount": 45, + "similarity": 0.0, + "score_delta": 12.857142857142856, + "action_code": 4, + "submission": 619, + "translated_wordcount": null + } +}, +{ + "model": "pootle_statistics.scorelog", + "pk": 729, + "fields": { + "creation_time": "2020-08-21T16:25:39Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -37548,9 +38164,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 691, + "pk": 730, "fields": { - "creation_time": "2020-01-24T13:10:39.892Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -37564,9 +38180,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 692, + "pk": 731, "fields": { - "creation_time": "2020-01-24T13:10:39.977Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -37580,9 +38196,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 693, + "pk": 732, "fields": { - "creation_time": "2020-01-24T13:10:39.990Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -37596,9 +38212,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 694, + "pk": 733, "fields": { - "creation_time": "2020-01-24T13:10:39.996Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -37612,9 +38228,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 695, + "pk": 734, "fields": { - "creation_time": "2020-01-24T13:10:39.996Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -37628,9 +38244,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 696, + "pk": 735, "fields": { - "creation_time": "2020-01-24T13:10:40.081Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -37644,9 +38260,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 697, + "pk": 736, "fields": { - "creation_time": "2020-01-10T13:10:40.088Z", + "creation_time": "2020-08-07T16:25:39Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -37660,9 +38276,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 698, + "pk": 737, "fields": { - "creation_time": "2020-01-10T13:10:40.088Z", + "creation_time": "2020-08-07T16:25:39Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -37676,9 +38292,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 699, + "pk": 738, "fields": { - "creation_time": "2020-01-24T13:10:40.129Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -37692,9 +38308,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 700, + "pk": 739, "fields": { - "creation_time": "2020-01-24T13:10:40.181Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -37708,9 +38324,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 701, + "pk": 740, "fields": { - "creation_time": "2020-01-24T13:10:40.181Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -37724,9 +38340,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 702, + "pk": 741, "fields": { - "creation_time": "2020-01-24T13:10:40.263Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -37740,9 +38356,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 703, + "pk": 742, "fields": { - "creation_time": "2020-01-24T13:10:40.278Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -37756,9 +38372,25 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 704, + "pk": 743, + "fields": { + "creation_time": "2020-08-21T16:25:39Z", + "user": 1, + "rate": 0.0, + "review_rate": 0.0, + "wordcount": 45, + "similarity": 0.0, + "score_delta": 12.857142857142856, + "action_code": 4, + "submission": 630, + "translated_wordcount": null + } +}, +{ + "model": "pootle_statistics.scorelog", + "pk": 744, "fields": { - "creation_time": "2020-01-24T13:10:40.283Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -37772,9 +38404,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 705, + "pk": 745, "fields": { - "creation_time": "2020-01-24T13:10:40.283Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -37788,9 +38420,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 706, + "pk": 746, "fields": { - "creation_time": "2020-01-24T13:10:40.366Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -37804,9 +38436,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 707, + "pk": 747, "fields": { - "creation_time": "2020-01-24T13:10:40.380Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -37820,9 +38452,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 708, + "pk": 748, "fields": { - "creation_time": "2020-01-24T13:10:40.385Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -37836,9 +38468,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 709, + "pk": 749, "fields": { - "creation_time": "2020-01-24T13:10:40.385Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -37852,9 +38484,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 710, + "pk": 750, "fields": { - "creation_time": "2020-01-24T13:10:40.396Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -37868,9 +38500,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 711, + "pk": 751, "fields": { - "creation_time": "2020-01-24T13:10:40.406Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -37884,9 +38516,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 712, + "pk": 752, "fields": { - "creation_time": "2020-01-24T13:10:40.411Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -37900,9 +38532,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 713, + "pk": 753, "fields": { - "creation_time": "2020-01-24T13:10:40.411Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -37916,9 +38548,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 714, + "pk": 754, "fields": { - "creation_time": "2020-01-24T13:10:40.492Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -37932,9 +38564,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 715, + "pk": 755, "fields": { - "creation_time": "2020-01-24T13:10:40.505Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -37948,9 +38580,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 716, + "pk": 756, "fields": { - "creation_time": "2020-01-24T13:10:40.510Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -37964,9 +38596,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 717, + "pk": 757, "fields": { - "creation_time": "2020-01-24T13:10:40.510Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -37980,9 +38612,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 718, + "pk": 758, "fields": { - "creation_time": "2020-01-24T13:10:40.589Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -37996,9 +38628,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 719, + "pk": 759, "fields": { - "creation_time": "2020-01-10T13:10:40.596Z", + "creation_time": "2020-08-07T16:25:39Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -38012,9 +38644,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 720, + "pk": 760, "fields": { - "creation_time": "2020-01-10T13:10:40.596Z", + "creation_time": "2020-08-07T16:25:39Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -38028,9 +38660,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 721, + "pk": 761, "fields": { - "creation_time": "2020-01-24T13:10:40.632Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -38044,9 +38676,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 722, + "pk": 762, "fields": { - "creation_time": "2020-01-24T13:10:40.684Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -38060,9 +38692,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 723, + "pk": 763, "fields": { - "creation_time": "2020-01-24T13:10:40.684Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -38076,9 +38708,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 724, + "pk": 764, "fields": { - "creation_time": "2020-01-24T13:10:40.763Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -38092,9 +38724,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 725, + "pk": 765, "fields": { - "creation_time": "2020-01-24T13:10:40.775Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -38108,9 +38740,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 726, + "pk": 766, "fields": { - "creation_time": "2020-01-24T13:10:40.781Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -38124,9 +38756,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 727, + "pk": 767, "fields": { - "creation_time": "2020-01-24T13:10:40.781Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -38140,9 +38772,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 728, + "pk": 768, "fields": { - "creation_time": "2020-01-24T13:10:40.863Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -38156,9 +38788,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 729, + "pk": 769, "fields": { - "creation_time": "2020-01-10T13:10:40.870Z", + "creation_time": "2020-08-07T16:25:39Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -38172,9 +38804,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 730, + "pk": 770, "fields": { - "creation_time": "2020-01-10T13:10:40.870Z", + "creation_time": "2020-08-07T16:25:39Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -38188,9 +38820,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 731, + "pk": 771, "fields": { - "creation_time": "2020-01-24T13:10:40.905Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -38204,9 +38836,25 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 732, + "pk": 772, + "fields": { + "creation_time": "2020-08-21T16:25:39Z", + "user": 1, + "rate": 0.0, + "review_rate": 0.0, + "wordcount": 52, + "similarity": 0.0, + "score_delta": 14.857142857142856, + "action_code": 4, + "submission": 651, + "translated_wordcount": null + } +}, +{ + "model": "pootle_statistics.scorelog", + "pk": 773, "fields": { - "creation_time": "2020-01-24T13:10:40.953Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -38220,9 +38868,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 733, + "pk": 774, "fields": { - "creation_time": "2020-01-24T13:10:40.953Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -38236,9 +38884,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 734, + "pk": 775, "fields": { - "creation_time": "2020-01-24T13:10:41.044Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -38252,9 +38900,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 735, + "pk": 776, "fields": { - "creation_time": "2020-01-24T13:10:41.057Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -38268,9 +38916,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 736, + "pk": 777, "fields": { - "creation_time": "2020-01-24T13:10:41.063Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 1, "rate": 0.0, "review_rate": 0.0, @@ -38284,9 +38932,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 737, + "pk": 778, "fields": { - "creation_time": "2020-01-24T13:10:41.063Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 3, "rate": 0.0, "review_rate": 0.0, @@ -38300,9 +38948,9 @@ }, { "model": "pootle_statistics.scorelog", - "pk": 738, + "pk": 779, "fields": { - "creation_time": "2020-01-24T13:10:41.074Z", + "creation_time": "2020-08-21T16:25:39Z", "user": 4, "rate": 0.0, "review_rate": 0.0, @@ -38711,144 +39359,144 @@ "model": "auth.permission", "pk": 38, "fields": { - "name": "Can add quality check", + "name": "Can add store", "content_type": 11, - "codename": "add_qualitycheck" + "codename": "add_store" } }, { "model": "auth.permission", "pk": 39, "fields": { - "name": "Can change quality check", + "name": "Can change store", "content_type": 11, - "codename": "change_qualitycheck" + "codename": "change_store" } }, { "model": "auth.permission", "pk": 40, "fields": { - "name": "Can delete quality check", + "name": "Can delete store", "content_type": 11, - "codename": "delete_qualitycheck" + "codename": "delete_store" } }, { "model": "auth.permission", "pk": 41, "fields": { - "name": "Can view quality check", + "name": "Can view store", "content_type": 11, - "codename": "view_qualitycheck" + "codename": "view_store" } }, { "model": "auth.permission", "pk": 42, "fields": { - "name": "Can add suggestion", + "name": "Can add unit", "content_type": 12, - "codename": "add_suggestion" + "codename": "add_unit" } }, { "model": "auth.permission", "pk": 43, "fields": { - "name": "Can change suggestion", + "name": "Can change unit", "content_type": 12, - "codename": "change_suggestion" + "codename": "change_unit" } }, { "model": "auth.permission", "pk": 44, "fields": { - "name": "Can delete suggestion", + "name": "Can delete unit", "content_type": 12, - "codename": "delete_suggestion" + "codename": "delete_unit" } }, { "model": "auth.permission", "pk": 45, "fields": { - "name": "Can view suggestion", + "name": "Can view unit", "content_type": 12, - "codename": "view_suggestion" + "codename": "view_unit" } }, { "model": "auth.permission", "pk": 46, "fields": { - "name": "Can add unit", + "name": "Can add suggestion", "content_type": 13, - "codename": "add_unit" + "codename": "add_suggestion" } }, { "model": "auth.permission", "pk": 47, "fields": { - "name": "Can change unit", + "name": "Can change suggestion", "content_type": 13, - "codename": "change_unit" + "codename": "change_suggestion" } }, { "model": "auth.permission", "pk": 48, "fields": { - "name": "Can delete unit", + "name": "Can delete suggestion", "content_type": 13, - "codename": "delete_unit" + "codename": "delete_suggestion" } }, { "model": "auth.permission", "pk": 49, "fields": { - "name": "Can view unit", + "name": "Can view suggestion", "content_type": 13, - "codename": "view_unit" + "codename": "view_suggestion" } }, { "model": "auth.permission", "pk": 50, "fields": { - "name": "Can add store", + "name": "Can add quality check", "content_type": 14, - "codename": "add_store" + "codename": "add_qualitycheck" } }, { "model": "auth.permission", "pk": 51, "fields": { - "name": "Can change store", + "name": "Can change quality check", "content_type": 14, - "codename": "change_store" + "codename": "change_qualitycheck" } }, { "model": "auth.permission", "pk": 52, "fields": { - "name": "Can delete store", + "name": "Can delete quality check", "content_type": 14, - "codename": "delete_store" + "codename": "delete_qualitycheck" } }, { "model": "auth.permission", "pk": 53, "fields": { - "name": "Can view store", + "name": "Can view quality check", "content_type": 14, - "codename": "view_store" + "codename": "view_qualitycheck" } }, { @@ -39251,72 +39899,72 @@ "model": "auth.permission", "pk": 98, "fields": { - "name": "Can add social application", + "name": "Can add social account", "content_type": 26, - "codename": "add_socialapp" + "codename": "add_socialaccount" } }, { "model": "auth.permission", "pk": 99, "fields": { - "name": "Can change social application", + "name": "Can change social account", "content_type": 26, - "codename": "change_socialapp" + "codename": "change_socialaccount" } }, { "model": "auth.permission", "pk": 100, "fields": { - "name": "Can delete social application", + "name": "Can delete social account", "content_type": 26, - "codename": "delete_socialapp" + "codename": "delete_socialaccount" } }, { "model": "auth.permission", "pk": 101, "fields": { - "name": "Can view social application", + "name": "Can view social account", "content_type": 26, - "codename": "view_socialapp" + "codename": "view_socialaccount" } }, { "model": "auth.permission", "pk": 102, "fields": { - "name": "Can add social account", + "name": "Can add social application", "content_type": 27, - "codename": "add_socialaccount" + "codename": "add_socialapp" } }, { "model": "auth.permission", "pk": 103, "fields": { - "name": "Can change social account", + "name": "Can change social application", "content_type": 27, - "codename": "change_socialaccount" + "codename": "change_socialapp" } }, { "model": "auth.permission", "pk": 104, "fields": { - "name": "Can delete social account", + "name": "Can delete social application", "content_type": 27, - "codename": "delete_socialaccount" + "codename": "delete_socialapp" } }, { "model": "auth.permission", "pk": 105, "fields": { - "name": "Can view social account", + "name": "Can view social application", "content_type": 27, - "codename": "view_socialaccount" + "codename": "view_socialapp" } }, { @@ -39358,42 +40006,6 @@ { "model": "auth.permission", "pk": 110, - "fields": { - "name": "Can add evernote account", - "content_type": 29, - "codename": "add_evernoteaccount" - } -}, -{ - "model": "auth.permission", - "pk": 111, - "fields": { - "name": "Can change evernote account", - "content_type": 29, - "codename": "change_evernoteaccount" - } -}, -{ - "model": "auth.permission", - "pk": 112, - "fields": { - "name": "Can delete evernote account", - "content_type": 29, - "codename": "delete_evernoteaccount" - } -}, -{ - "model": "auth.permission", - "pk": 113, - "fields": { - "name": "Can view evernote account", - "content_type": 29, - "codename": "view_evernoteaccount" - } -}, -{ - "model": "auth.permission", - "pk": 114, "fields": { "name": "Can access a project", "content_type": 8, @@ -39402,7 +40014,7 @@ }, { "model": "auth.permission", - "pk": 115, + "pk": 111, "fields": { "name": "Cannot access a project", "content_type": 8, @@ -39411,7 +40023,7 @@ }, { "model": "auth.permission", - "pk": 116, + "pk": 112, "fields": { "name": "Can make a suggestion", "content_type": 8, @@ -39420,7 +40032,7 @@ }, { "model": "auth.permission", - "pk": 117, + "pk": 113, "fields": { "name": "Can submit translations", "content_type": 8, @@ -39429,7 +40041,7 @@ }, { "model": "auth.permission", - "pk": 118, + "pk": 114, "fields": { "name": "Can review translations", "content_type": 8, @@ -39438,7 +40050,7 @@ }, { "model": "auth.permission", - "pk": 119, + "pk": 115, "fields": { "name": "Can administrate a TP", "content_type": 8, @@ -39452,8 +40064,8 @@ "user": 5, "directory": 1, "positive_permissions": [ - 116, - 114 + 112, + 110 ], "negative_permissions": [] } @@ -39465,9 +40077,9 @@ "user": 2, "directory": 1, "positive_permissions": [ - 116, - 117, - 114 + 112, + 113, + 110 ], "negative_permissions": [] } From 9e3bddebf91dac643af62a76c94319dad0402329 Mon Sep 17 00:00:00 2001 From: mandrade2 Date: Mon, 24 Aug 2020 15:19:51 -0400 Subject: [PATCH 13/13] Regenerate snapshots --- .../admin/_language0_.context.json | 10 ++++---- .../admin/_language0_project0_.context.json | 16 ++++++------- ..._language0_project0_store0.po.context.json | 2 +- .../_language0_project0_subdir0_.context.json | 10 ++++---- ...e0_project0_subdir0_store4.po.context.json | 2 +- .../test_browse/admin/_projects_.context.json | 18 +++++++------- .../admin/_projects_project0_.context.json | 18 +++++++------- .../_projects_project0_store0.po.context.json | 6 ++--- .../_projects_project0_subdir0_.context.json | 16 ++++++------- ...ts_project0_subdir0_store4.po.context.json | 6 ++--- .../member/_language0_.context.json | 10 ++++---- .../member/_language0_project0_.context.json | 16 ++++++------- ..._language0_project0_store0.po.context.json | 2 +- .../_language0_project0_subdir0_.context.json | 10 ++++---- ...e0_project0_subdir0_store4.po.context.json | 2 +- .../member/_projects_.context.json | 18 +++++++------- .../member/_projects_project0_.context.json | 18 +++++++------- .../_projects_project0_store0.po.context.json | 6 ++--- .../_projects_project0_subdir0_.context.json | 16 ++++++------- ...ts_project0_subdir0_store4.po.context.json | 6 ++--- .../nobody/_language0_.context.json | 10 ++++---- .../nobody/_language0_project0_.context.json | 16 ++++++------- ..._language0_project0_store0.po.context.json | 2 +- .../_language0_project0_subdir0_.context.json | 10 ++++---- ...e0_project0_subdir0_store4.po.context.json | 2 +- .../nobody/_projects_.context.json | 18 +++++++------- .../nobody/_projects_project0_.context.json | 18 +++++++------- .../_projects_project0_store0.po.context.json | 6 ++--- .../_projects_project0_subdir0_.context.json | 16 ++++++------- ...ts_project0_subdir0_store4.po.context.json | 6 ++--- ...ts_path=%2Flanguage0%2F&all=.response.json | 16 ++++++------- ...r_stats_path=%2Flanguage0%2F.response.json | 10 ++++---- ...language0%2Fproject0%2F&all=.response.json | 16 ++++++------- ...h=%2Flanguage0%2Fproject0%2F.response.json | 16 ++++++------- ...ats_path=%2Fprojects%2F&all=.response.json | 24 +++++++++---------- ...hr_stats_path=%2Fprojects%2F.response.json | 18 +++++++------- ...Fprojects%2Fproject0%2F&all=.response.json | 18 +++++++------- ...th=%2Fprojects%2Fproject0%2F.response.json | 18 +++++++------- ...ts_path=%2Flanguage0%2F&all=.response.json | 10 ++++---- ...r_stats_path=%2Flanguage0%2F.response.json | 10 ++++---- ...language0%2Fproject0%2F&all=.response.json | 16 ++++++------- ...h=%2Flanguage0%2Fproject0%2F.response.json | 16 ++++++------- ...ats_path=%2Fprojects%2F&all=.response.json | 18 +++++++------- ...hr_stats_path=%2Fprojects%2F.response.json | 18 +++++++------- ...Fprojects%2Fproject0%2F&all=.response.json | 18 +++++++------- ...th=%2Fprojects%2Fproject0%2F.response.json | 18 +++++++------- ...ts_path=%2Flanguage0%2F&all=.response.json | 10 ++++---- ...r_stats_path=%2Flanguage0%2F.response.json | 10 ++++---- ...language0%2Fproject0%2F&all=.response.json | 16 ++++++------- ...h=%2Flanguage0%2Fproject0%2F.response.json | 16 ++++++------- ...ats_path=%2Fprojects%2F&all=.response.json | 18 +++++++------- ...hr_stats_path=%2Fprojects%2F.response.json | 18 +++++++------- ...Fprojects%2Fproject0%2F&all=.response.json | 18 +++++++------- ...th=%2Fprojects%2Fproject0%2F.response.json | 18 +++++++------- .../_language0_project0_.json | 8 +++---- 55 files changed, 352 insertions(+), 352 deletions(-) diff --git a/tests/data/snapshots/test_browse/admin/_language0_.context.json b/tests/data/snapshots/test_browse/admin/_language0_.context.json index 1e7fc64cb5..82c96ccfd1 100644 --- a/tests/data/snapshots/test_browse/admin/_language0_.context.json +++ b/tests/data/snapshots/test_browse/admin/_language0_.context.json @@ -9,11 +9,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661829, - "source": "Translated Source /language0/project0/subdir0/sto\u2026", + "mtime": 1596817535, + "source": "Translated Source /language0/project0/store1.po 2\u2026", "translation_action_type": 1, "type": 1, - "uid": 110, + "uid": 11, "username": "member" }, "suggestions": 27, @@ -28,7 +28,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661833, + "mtime": 1596817537, "source": "Translated Source /language0/project1/subdir0/sto\u2026", "translation_action_type": 1, "type": 1, @@ -52,7 +52,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661833, + "mtime": 1596817537, "source": "Translated Source /language0/project1/subdir0/sto\u2026", "translation_action_type": 1, "type": 1, diff --git a/tests/data/snapshots/test_browse/admin/_language0_project0_.context.json b/tests/data/snapshots/test_browse/admin/_language0_project0_.context.json index 8b45587fdc..d419afd877 100644 --- a/tests/data/snapshots/test_browse/admin/_language0_project0_.context.json +++ b/tests/data/snapshots/test_browse/admin/_language0_project0_.context.json @@ -18,7 +18,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661826, + "mtime": 1596817534, "source": "Translated Source /language0/project0/store0.po 2\u2026", "translation_action_type": 1, "type": 1, @@ -36,7 +36,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661827, + "mtime": 1596817535, "source": "Translated Source /language0/project0/store1.po 2\u2026", "translation_action_type": 1, "type": 1, @@ -54,7 +54,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661828, + "mtime": 1596817535, "source": "Translated Source /language0/project0/store2.po 2\u2026", "translation_action_type": 1, "type": 1, @@ -72,11 +72,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661829, + "mtime": 1596817535, "source": "Translated Source /language0/project0/subdir0/sto\u2026", "translation_action_type": 1, "type": 1, - "uid": 110, + "uid": 106, "username": "member" }, "suggestions": 9, @@ -91,11 +91,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661829, - "source": "Translated Source /language0/project0/subdir0/sto\u2026", + "mtime": 1596817535, + "source": "Translated Source /language0/project0/store1.po 2\u2026", "translation_action_type": 1, "type": 1, - "uid": 110, + "uid": 11, "username": "member" }, "suggestions": 27, diff --git a/tests/data/snapshots/test_browse/admin/_language0_project0_store0.po.context.json b/tests/data/snapshots/test_browse/admin/_language0_project0_store0.po.context.json index f359af2057..b98403cc9d 100644 --- a/tests/data/snapshots/test_browse/admin/_language0_project0_store0.po.context.json +++ b/tests/data/snapshots/test_browse/admin/_language0_project0_store0.po.context.json @@ -8,7 +8,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661826, + "mtime": 1596817534, "source": "Translated Source /language0/project0/store0.po 2\u2026", "translation_action_type": 1, "type": 1, diff --git a/tests/data/snapshots/test_browse/admin/_language0_project0_subdir0_.context.json b/tests/data/snapshots/test_browse/admin/_language0_project0_subdir0_.context.json index c42ca8c093..a0082d3d19 100644 --- a/tests/data/snapshots/test_browse/admin/_language0_project0_subdir0_.context.json +++ b/tests/data/snapshots/test_browse/admin/_language0_project0_subdir0_.context.json @@ -9,7 +9,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661828, + "mtime": 1596817535, "source": "Translated Source /language0/project0/subdir0/sto\u2026", "translation_action_type": 1, "type": 1, @@ -27,7 +27,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661829, + "mtime": 1596817535, "source": "Translated Source /language0/project0/subdir0/sto\u2026", "translation_action_type": 1, "type": 1, @@ -45,7 +45,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661829, + "mtime": 1596817535, "source": "Translated Source /language0/project0/subdir0/sub\u2026", "translation_action_type": 1, "type": 1, @@ -64,11 +64,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661829, + "mtime": 1596817535, "source": "Translated Source /language0/project0/subdir0/sto\u2026", "translation_action_type": 1, "type": 1, - "uid": 110, + "uid": 106, "username": "member" }, "suggestions": 9, diff --git a/tests/data/snapshots/test_browse/admin/_language0_project0_subdir0_store4.po.context.json b/tests/data/snapshots/test_browse/admin/_language0_project0_subdir0_store4.po.context.json index 375ef36934..1ae86b1bb0 100644 --- a/tests/data/snapshots/test_browse/admin/_language0_project0_subdir0_store4.po.context.json +++ b/tests/data/snapshots/test_browse/admin/_language0_project0_subdir0_store4.po.context.json @@ -8,7 +8,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661829, + "mtime": 1596817535, "source": "Translated Source /language0/project0/subdir0/sto\u2026", "translation_action_type": 1, "type": 1, diff --git a/tests/data/snapshots/test_browse/admin/_projects_.context.json b/tests/data/snapshots/test_browse/admin/_projects_.context.json index 32c588adc3..c32667c683 100644 --- a/tests/data/snapshots/test_browse/admin/_projects_.context.json +++ b/tests/data/snapshots/test_browse/admin/_projects_.context.json @@ -9,11 +9,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661837, - "source": "Translated Source /language1/project0/subdir0/sub\u2026", + "mtime": 1596817538, + "source": "Translated Source /language1/project0/store2.po 2\u2026", "translation_action_type": 1, "type": 1, - "uid": 126, + "uid": 43, "username": "member" }, "suggestions": 54, @@ -28,11 +28,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661840, - "source": "Translated Source /language1/project1/subdir0/sto\u2026", + "mtime": 1596817539, + "source": "Translated Source /language1/project1/store2.po 3\u2026", "translation_action_type": 1, "type": 1, - "uid": 142, + "uid": 92, "username": "member" }, "suggestions": 54, @@ -52,11 +52,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661840, - "source": "Translated Source /language1/project1/subdir0/sto\u2026", + "mtime": 1596817539, + "source": "Translated Source /language1/project1/store2.po 3\u2026", "translation_action_type": 1, "type": 1, - "uid": 142, + "uid": 92, "username": "member" }, "suggestions": 108, diff --git a/tests/data/snapshots/test_browse/admin/_projects_project0_.context.json b/tests/data/snapshots/test_browse/admin/_projects_project0_.context.json index ea58d7d080..d59ba842b4 100644 --- a/tests/data/snapshots/test_browse/admin/_projects_project0_.context.json +++ b/tests/data/snapshots/test_browse/admin/_projects_project0_.context.json @@ -9,11 +9,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661829, - "source": "Translated Source /language0/project0/subdir0/sto\u2026", + "mtime": 1596817535, + "source": "Translated Source /language0/project0/store1.po 2\u2026", "translation_action_type": 1, "type": 1, - "uid": 110, + "uid": 11, "username": "member" }, "suggestions": 27, @@ -28,11 +28,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661837, - "source": "Translated Source /language1/project0/subdir0/sub\u2026", + "mtime": 1596817538, + "source": "Translated Source /language1/project0/store2.po 2\u2026", "translation_action_type": 1, "type": 1, - "uid": 126, + "uid": 43, "username": "member" }, "suggestions": 27, @@ -47,11 +47,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661837, - "source": "Translated Source /language1/project0/subdir0/sub\u2026", + "mtime": 1596817538, + "source": "Translated Source /language1/project0/store2.po 2\u2026", "translation_action_type": 1, "type": 1, - "uid": 126, + "uid": 43, "username": "member" }, "suggestions": 54, diff --git a/tests/data/snapshots/test_browse/admin/_projects_project0_store0.po.context.json b/tests/data/snapshots/test_browse/admin/_projects_project0_store0.po.context.json index cda7d55e12..75b0041aaf 100644 --- a/tests/data/snapshots/test_browse/admin/_projects_project0_store0.po.context.json +++ b/tests/data/snapshots/test_browse/admin/_projects_project0_store0.po.context.json @@ -9,7 +9,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661826, + "mtime": 1596817534, "source": "Translated Source /language0/project0/store0.po 2\u2026", "translation_action_type": 1, "type": 1, @@ -28,7 +28,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661834, + "mtime": 1596817537, "source": "Translated Source /language1/project0/store0.po 2\u2026", "translation_action_type": 1, "type": 1, @@ -47,7 +47,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661834, + "mtime": 1596817537, "source": "Translated Source /language1/project0/store0.po 2\u2026", "translation_action_type": 1, "type": 1, diff --git a/tests/data/snapshots/test_browse/admin/_projects_project0_subdir0_.context.json b/tests/data/snapshots/test_browse/admin/_projects_project0_subdir0_.context.json index 463a27c940..4d00e1a9f7 100644 --- a/tests/data/snapshots/test_browse/admin/_projects_project0_subdir0_.context.json +++ b/tests/data/snapshots/test_browse/admin/_projects_project0_subdir0_.context.json @@ -9,11 +9,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661829, + "mtime": 1596817535, "source": "Translated Source /language0/project0/subdir0/sto\u2026", "translation_action_type": 1, "type": 1, - "uid": 110, + "uid": 106, "username": "member" }, "suggestions": 9, @@ -28,11 +28,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661837, - "source": "Translated Source /language1/project0/subdir0/sub\u2026", + "mtime": 1596817538, + "source": "Translated Source /language1/project0/subdir0/sto\u2026", "translation_action_type": 1, "type": 1, - "uid": 126, + "uid": 118, "username": "member" }, "suggestions": 9, @@ -47,11 +47,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661837, - "source": "Translated Source /language1/project0/subdir0/sub\u2026", + "mtime": 1596817538, + "source": "Translated Source /language1/project0/subdir0/sto\u2026", "translation_action_type": 1, "type": 1, - "uid": 126, + "uid": 118, "username": "member" }, "suggestions": 18, diff --git a/tests/data/snapshots/test_browse/admin/_projects_project0_subdir0_store4.po.context.json b/tests/data/snapshots/test_browse/admin/_projects_project0_subdir0_store4.po.context.json index 99d3673a20..08fe62274c 100644 --- a/tests/data/snapshots/test_browse/admin/_projects_project0_subdir0_store4.po.context.json +++ b/tests/data/snapshots/test_browse/admin/_projects_project0_subdir0_store4.po.context.json @@ -9,7 +9,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661829, + "mtime": 1596817535, "source": "Translated Source /language0/project0/subdir0/sto\u2026", "translation_action_type": 1, "type": 1, @@ -28,7 +28,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661836, + "mtime": 1596817538, "source": "Translated Source /language1/project0/subdir0/sto\u2026", "translation_action_type": 1, "type": 1, @@ -47,7 +47,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661836, + "mtime": 1596817538, "source": "Translated Source /language1/project0/subdir0/sto\u2026", "translation_action_type": 1, "type": 1, diff --git a/tests/data/snapshots/test_browse/member/_language0_.context.json b/tests/data/snapshots/test_browse/member/_language0_.context.json index 0fdcb6cd22..9fe69fe9fe 100644 --- a/tests/data/snapshots/test_browse/member/_language0_.context.json +++ b/tests/data/snapshots/test_browse/member/_language0_.context.json @@ -9,11 +9,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661829, - "source": "Translated Source /language0/project0/subdir0/sto\u2026", + "mtime": 1596817535, + "source": "Translated Source /language0/project0/store1.po 2\u2026", "translation_action_type": 1, "type": 1, - "uid": 110, + "uid": 11, "username": "member" }, "suggestions": 27, @@ -28,7 +28,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661833, + "mtime": 1596817537, "source": "Translated Source /language0/project1/subdir0/sto\u2026", "translation_action_type": 1, "type": 1, @@ -52,7 +52,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661833, + "mtime": 1596817537, "source": "Translated Source /language0/project1/subdir0/sto\u2026", "translation_action_type": 1, "type": 1, diff --git a/tests/data/snapshots/test_browse/member/_language0_project0_.context.json b/tests/data/snapshots/test_browse/member/_language0_project0_.context.json index fcad53586e..5fb9a4059f 100644 --- a/tests/data/snapshots/test_browse/member/_language0_project0_.context.json +++ b/tests/data/snapshots/test_browse/member/_language0_project0_.context.json @@ -14,7 +14,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661826, + "mtime": 1596817534, "source": "Translated Source /language0/project0/store0.po 2\u2026", "translation_action_type": 1, "type": 1, @@ -32,7 +32,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661827, + "mtime": 1596817535, "source": "Translated Source /language0/project0/store1.po 2\u2026", "translation_action_type": 1, "type": 1, @@ -50,7 +50,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661828, + "mtime": 1596817535, "source": "Translated Source /language0/project0/store2.po 2\u2026", "translation_action_type": 1, "type": 1, @@ -68,11 +68,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661829, + "mtime": 1596817535, "source": "Translated Source /language0/project0/subdir0/sto\u2026", "translation_action_type": 1, "type": 1, - "uid": 110, + "uid": 106, "username": "member" }, "suggestions": 9, @@ -87,11 +87,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661829, - "source": "Translated Source /language0/project0/subdir0/sto\u2026", + "mtime": 1596817535, + "source": "Translated Source /language0/project0/store1.po 2\u2026", "translation_action_type": 1, "type": 1, - "uid": 110, + "uid": 11, "username": "member" }, "suggestions": 27, diff --git a/tests/data/snapshots/test_browse/member/_language0_project0_store0.po.context.json b/tests/data/snapshots/test_browse/member/_language0_project0_store0.po.context.json index eef198a3f8..0ced055e35 100644 --- a/tests/data/snapshots/test_browse/member/_language0_project0_store0.po.context.json +++ b/tests/data/snapshots/test_browse/member/_language0_project0_store0.po.context.json @@ -8,7 +8,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661826, + "mtime": 1596817534, "source": "Translated Source /language0/project0/store0.po 2\u2026", "translation_action_type": 1, "type": 1, diff --git a/tests/data/snapshots/test_browse/member/_language0_project0_subdir0_.context.json b/tests/data/snapshots/test_browse/member/_language0_project0_subdir0_.context.json index 80415e8bc6..84546384dc 100644 --- a/tests/data/snapshots/test_browse/member/_language0_project0_subdir0_.context.json +++ b/tests/data/snapshots/test_browse/member/_language0_project0_subdir0_.context.json @@ -9,7 +9,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661828, + "mtime": 1596817535, "source": "Translated Source /language0/project0/subdir0/sto\u2026", "translation_action_type": 1, "type": 1, @@ -27,7 +27,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661829, + "mtime": 1596817535, "source": "Translated Source /language0/project0/subdir0/sto\u2026", "translation_action_type": 1, "type": 1, @@ -45,7 +45,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661829, + "mtime": 1596817535, "source": "Translated Source /language0/project0/subdir0/sub\u2026", "translation_action_type": 1, "type": 1, @@ -64,11 +64,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661829, + "mtime": 1596817535, "source": "Translated Source /language0/project0/subdir0/sto\u2026", "translation_action_type": 1, "type": 1, - "uid": 110, + "uid": 106, "username": "member" }, "suggestions": 9, diff --git a/tests/data/snapshots/test_browse/member/_language0_project0_subdir0_store4.po.context.json b/tests/data/snapshots/test_browse/member/_language0_project0_subdir0_store4.po.context.json index d90557d4e8..50362b0f1d 100644 --- a/tests/data/snapshots/test_browse/member/_language0_project0_subdir0_store4.po.context.json +++ b/tests/data/snapshots/test_browse/member/_language0_project0_subdir0_store4.po.context.json @@ -8,7 +8,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661829, + "mtime": 1596817535, "source": "Translated Source /language0/project0/subdir0/sto\u2026", "translation_action_type": 1, "type": 1, diff --git a/tests/data/snapshots/test_browse/member/_projects_.context.json b/tests/data/snapshots/test_browse/member/_projects_.context.json index f8fbfc85c4..7ddb4f9003 100644 --- a/tests/data/snapshots/test_browse/member/_projects_.context.json +++ b/tests/data/snapshots/test_browse/member/_projects_.context.json @@ -9,11 +9,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661837, - "source": "Translated Source /language1/project0/subdir0/sub\u2026", + "mtime": 1596817538, + "source": "Translated Source /language1/project0/store2.po 2\u2026", "translation_action_type": 1, "type": 1, - "uid": 126, + "uid": 43, "username": "member" }, "suggestions": 54, @@ -28,11 +28,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661840, - "source": "Translated Source /language1/project1/subdir0/sto\u2026", + "mtime": 1596817539, + "source": "Translated Source /language1/project1/store2.po 3\u2026", "translation_action_type": 1, "type": 1, - "uid": 142, + "uid": 92, "username": "member" }, "suggestions": 54, @@ -52,11 +52,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661840, - "source": "Translated Source /language1/project1/subdir0/sto\u2026", + "mtime": 1596817539, + "source": "Translated Source /language1/project1/store2.po 3\u2026", "translation_action_type": 1, "type": 1, - "uid": 142, + "uid": 92, "username": "member" }, "suggestions": 108, diff --git a/tests/data/snapshots/test_browse/member/_projects_project0_.context.json b/tests/data/snapshots/test_browse/member/_projects_project0_.context.json index 8b3869a74a..c3ded396be 100644 --- a/tests/data/snapshots/test_browse/member/_projects_project0_.context.json +++ b/tests/data/snapshots/test_browse/member/_projects_project0_.context.json @@ -9,11 +9,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661829, - "source": "Translated Source /language0/project0/subdir0/sto\u2026", + "mtime": 1596817535, + "source": "Translated Source /language0/project0/store1.po 2\u2026", "translation_action_type": 1, "type": 1, - "uid": 110, + "uid": 11, "username": "member" }, "suggestions": 27, @@ -28,11 +28,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661837, - "source": "Translated Source /language1/project0/subdir0/sub\u2026", + "mtime": 1596817538, + "source": "Translated Source /language1/project0/store2.po 2\u2026", "translation_action_type": 1, "type": 1, - "uid": 126, + "uid": 43, "username": "member" }, "suggestions": 27, @@ -47,11 +47,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661837, - "source": "Translated Source /language1/project0/subdir0/sub\u2026", + "mtime": 1596817538, + "source": "Translated Source /language1/project0/store2.po 2\u2026", "translation_action_type": 1, "type": 1, - "uid": 126, + "uid": 43, "username": "member" }, "suggestions": 54, diff --git a/tests/data/snapshots/test_browse/member/_projects_project0_store0.po.context.json b/tests/data/snapshots/test_browse/member/_projects_project0_store0.po.context.json index d2295913da..09f6ea6c6f 100644 --- a/tests/data/snapshots/test_browse/member/_projects_project0_store0.po.context.json +++ b/tests/data/snapshots/test_browse/member/_projects_project0_store0.po.context.json @@ -9,7 +9,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661826, + "mtime": 1596817534, "source": "Translated Source /language0/project0/store0.po 2\u2026", "translation_action_type": 1, "type": 1, @@ -28,7 +28,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661834, + "mtime": 1596817537, "source": "Translated Source /language1/project0/store0.po 2\u2026", "translation_action_type": 1, "type": 1, @@ -47,7 +47,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661834, + "mtime": 1596817537, "source": "Translated Source /language1/project0/store0.po 2\u2026", "translation_action_type": 1, "type": 1, diff --git a/tests/data/snapshots/test_browse/member/_projects_project0_subdir0_.context.json b/tests/data/snapshots/test_browse/member/_projects_project0_subdir0_.context.json index 841e1969af..096cab38cc 100644 --- a/tests/data/snapshots/test_browse/member/_projects_project0_subdir0_.context.json +++ b/tests/data/snapshots/test_browse/member/_projects_project0_subdir0_.context.json @@ -9,11 +9,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661829, + "mtime": 1596817535, "source": "Translated Source /language0/project0/subdir0/sto\u2026", "translation_action_type": 1, "type": 1, - "uid": 110, + "uid": 106, "username": "member" }, "suggestions": 9, @@ -28,11 +28,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661837, - "source": "Translated Source /language1/project0/subdir0/sub\u2026", + "mtime": 1596817538, + "source": "Translated Source /language1/project0/subdir0/sto\u2026", "translation_action_type": 1, "type": 1, - "uid": 126, + "uid": 118, "username": "member" }, "suggestions": 9, @@ -47,11 +47,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661837, - "source": "Translated Source /language1/project0/subdir0/sub\u2026", + "mtime": 1596817538, + "source": "Translated Source /language1/project0/subdir0/sto\u2026", "translation_action_type": 1, "type": 1, - "uid": 126, + "uid": 118, "username": "member" }, "suggestions": 18, diff --git a/tests/data/snapshots/test_browse/member/_projects_project0_subdir0_store4.po.context.json b/tests/data/snapshots/test_browse/member/_projects_project0_subdir0_store4.po.context.json index 6532be6281..149c17c862 100644 --- a/tests/data/snapshots/test_browse/member/_projects_project0_subdir0_store4.po.context.json +++ b/tests/data/snapshots/test_browse/member/_projects_project0_subdir0_store4.po.context.json @@ -9,7 +9,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661829, + "mtime": 1596817535, "source": "Translated Source /language0/project0/subdir0/sto\u2026", "translation_action_type": 1, "type": 1, @@ -28,7 +28,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661836, + "mtime": 1596817538, "source": "Translated Source /language1/project0/subdir0/sto\u2026", "translation_action_type": 1, "type": 1, @@ -47,7 +47,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661836, + "mtime": 1596817538, "source": "Translated Source /language1/project0/subdir0/sto\u2026", "translation_action_type": 1, "type": 1, diff --git a/tests/data/snapshots/test_browse/nobody/_language0_.context.json b/tests/data/snapshots/test_browse/nobody/_language0_.context.json index f3984e5134..696359c8bb 100644 --- a/tests/data/snapshots/test_browse/nobody/_language0_.context.json +++ b/tests/data/snapshots/test_browse/nobody/_language0_.context.json @@ -9,11 +9,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661829, - "source": "Translated Source /language0/project0/subdir0/sto\u2026", + "mtime": 1596817535, + "source": "Translated Source /language0/project0/store1.po 2\u2026", "translation_action_type": 1, "type": 1, - "uid": 110, + "uid": 11, "username": "member" }, "suggestions": 27, @@ -28,7 +28,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661833, + "mtime": 1596817537, "source": "Translated Source /language0/project1/subdir0/sto\u2026", "translation_action_type": 1, "type": 1, @@ -52,7 +52,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661833, + "mtime": 1596817537, "source": "Translated Source /language0/project1/subdir0/sto\u2026", "translation_action_type": 1, "type": 1, diff --git a/tests/data/snapshots/test_browse/nobody/_language0_project0_.context.json b/tests/data/snapshots/test_browse/nobody/_language0_project0_.context.json index c45b79c05a..b9e43219a2 100644 --- a/tests/data/snapshots/test_browse/nobody/_language0_project0_.context.json +++ b/tests/data/snapshots/test_browse/nobody/_language0_project0_.context.json @@ -14,7 +14,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661826, + "mtime": 1596817534, "source": "Translated Source /language0/project0/store0.po 2\u2026", "translation_action_type": 1, "type": 1, @@ -32,7 +32,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661827, + "mtime": 1596817535, "source": "Translated Source /language0/project0/store1.po 2\u2026", "translation_action_type": 1, "type": 1, @@ -50,7 +50,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661828, + "mtime": 1596817535, "source": "Translated Source /language0/project0/store2.po 2\u2026", "translation_action_type": 1, "type": 1, @@ -68,11 +68,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661829, + "mtime": 1596817535, "source": "Translated Source /language0/project0/subdir0/sto\u2026", "translation_action_type": 1, "type": 1, - "uid": 110, + "uid": 106, "username": "member" }, "suggestions": 9, @@ -87,11 +87,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661829, - "source": "Translated Source /language0/project0/subdir0/sto\u2026", + "mtime": 1596817535, + "source": "Translated Source /language0/project0/store1.po 2\u2026", "translation_action_type": 1, "type": 1, - "uid": 110, + "uid": 11, "username": "member" }, "suggestions": 27, diff --git a/tests/data/snapshots/test_browse/nobody/_language0_project0_store0.po.context.json b/tests/data/snapshots/test_browse/nobody/_language0_project0_store0.po.context.json index 00055818ed..99d1c43e7a 100644 --- a/tests/data/snapshots/test_browse/nobody/_language0_project0_store0.po.context.json +++ b/tests/data/snapshots/test_browse/nobody/_language0_project0_store0.po.context.json @@ -8,7 +8,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661826, + "mtime": 1596817534, "source": "Translated Source /language0/project0/store0.po 2\u2026", "translation_action_type": 1, "type": 1, diff --git a/tests/data/snapshots/test_browse/nobody/_language0_project0_subdir0_.context.json b/tests/data/snapshots/test_browse/nobody/_language0_project0_subdir0_.context.json index c7aea94c87..40344f9ad1 100644 --- a/tests/data/snapshots/test_browse/nobody/_language0_project0_subdir0_.context.json +++ b/tests/data/snapshots/test_browse/nobody/_language0_project0_subdir0_.context.json @@ -9,7 +9,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661828, + "mtime": 1596817535, "source": "Translated Source /language0/project0/subdir0/sto\u2026", "translation_action_type": 1, "type": 1, @@ -27,7 +27,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661829, + "mtime": 1596817535, "source": "Translated Source /language0/project0/subdir0/sto\u2026", "translation_action_type": 1, "type": 1, @@ -45,7 +45,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661829, + "mtime": 1596817535, "source": "Translated Source /language0/project0/subdir0/sub\u2026", "translation_action_type": 1, "type": 1, @@ -64,11 +64,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661829, + "mtime": 1596817535, "source": "Translated Source /language0/project0/subdir0/sto\u2026", "translation_action_type": 1, "type": 1, - "uid": 110, + "uid": 106, "username": "member" }, "suggestions": 9, diff --git a/tests/data/snapshots/test_browse/nobody/_language0_project0_subdir0_store4.po.context.json b/tests/data/snapshots/test_browse/nobody/_language0_project0_subdir0_store4.po.context.json index fd975be804..7455ef89c0 100644 --- a/tests/data/snapshots/test_browse/nobody/_language0_project0_subdir0_store4.po.context.json +++ b/tests/data/snapshots/test_browse/nobody/_language0_project0_subdir0_store4.po.context.json @@ -8,7 +8,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661829, + "mtime": 1596817535, "source": "Translated Source /language0/project0/subdir0/sto\u2026", "translation_action_type": 1, "type": 1, diff --git a/tests/data/snapshots/test_browse/nobody/_projects_.context.json b/tests/data/snapshots/test_browse/nobody/_projects_.context.json index 254dcf201a..f53cd0ba77 100644 --- a/tests/data/snapshots/test_browse/nobody/_projects_.context.json +++ b/tests/data/snapshots/test_browse/nobody/_projects_.context.json @@ -9,11 +9,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661837, - "source": "Translated Source /language1/project0/subdir0/sub\u2026", + "mtime": 1596817538, + "source": "Translated Source /language1/project0/store2.po 2\u2026", "translation_action_type": 1, "type": 1, - "uid": 126, + "uid": 43, "username": "member" }, "suggestions": 54, @@ -28,11 +28,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661840, - "source": "Translated Source /language1/project1/subdir0/sto\u2026", + "mtime": 1596817539, + "source": "Translated Source /language1/project1/store2.po 3\u2026", "translation_action_type": 1, "type": 1, - "uid": 142, + "uid": 92, "username": "member" }, "suggestions": 54, @@ -52,11 +52,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661840, - "source": "Translated Source /language1/project1/subdir0/sto\u2026", + "mtime": 1596817539, + "source": "Translated Source /language1/project1/store2.po 3\u2026", "translation_action_type": 1, "type": 1, - "uid": 142, + "uid": 92, "username": "member" }, "suggestions": 108, diff --git a/tests/data/snapshots/test_browse/nobody/_projects_project0_.context.json b/tests/data/snapshots/test_browse/nobody/_projects_project0_.context.json index 19e2160496..666091e050 100644 --- a/tests/data/snapshots/test_browse/nobody/_projects_project0_.context.json +++ b/tests/data/snapshots/test_browse/nobody/_projects_project0_.context.json @@ -9,11 +9,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661829, - "source": "Translated Source /language0/project0/subdir0/sto\u2026", + "mtime": 1596817535, + "source": "Translated Source /language0/project0/store1.po 2\u2026", "translation_action_type": 1, "type": 1, - "uid": 110, + "uid": 11, "username": "member" }, "suggestions": 27, @@ -28,11 +28,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661837, - "source": "Translated Source /language1/project0/subdir0/sub\u2026", + "mtime": 1596817538, + "source": "Translated Source /language1/project0/store2.po 2\u2026", "translation_action_type": 1, "type": 1, - "uid": 126, + "uid": 43, "username": "member" }, "suggestions": 27, @@ -47,11 +47,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661837, - "source": "Translated Source /language1/project0/subdir0/sub\u2026", + "mtime": 1596817538, + "source": "Translated Source /language1/project0/store2.po 2\u2026", "translation_action_type": 1, "type": 1, - "uid": 126, + "uid": 43, "username": "member" }, "suggestions": 54, diff --git a/tests/data/snapshots/test_browse/nobody/_projects_project0_store0.po.context.json b/tests/data/snapshots/test_browse/nobody/_projects_project0_store0.po.context.json index 17eccf40a3..2a508f3c4d 100644 --- a/tests/data/snapshots/test_browse/nobody/_projects_project0_store0.po.context.json +++ b/tests/data/snapshots/test_browse/nobody/_projects_project0_store0.po.context.json @@ -9,7 +9,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661826, + "mtime": 1596817534, "source": "Translated Source /language0/project0/store0.po 2\u2026", "translation_action_type": 1, "type": 1, @@ -28,7 +28,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661834, + "mtime": 1596817537, "source": "Translated Source /language1/project0/store0.po 2\u2026", "translation_action_type": 1, "type": 1, @@ -47,7 +47,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661834, + "mtime": 1596817537, "source": "Translated Source /language1/project0/store0.po 2\u2026", "translation_action_type": 1, "type": 1, diff --git a/tests/data/snapshots/test_browse/nobody/_projects_project0_subdir0_.context.json b/tests/data/snapshots/test_browse/nobody/_projects_project0_subdir0_.context.json index fa81f5d320..7e39473b6c 100644 --- a/tests/data/snapshots/test_browse/nobody/_projects_project0_subdir0_.context.json +++ b/tests/data/snapshots/test_browse/nobody/_projects_project0_subdir0_.context.json @@ -9,11 +9,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661829, + "mtime": 1596817535, "source": "Translated Source /language0/project0/subdir0/sto\u2026", "translation_action_type": 1, "type": 1, - "uid": 110, + "uid": 106, "username": "member" }, "suggestions": 9, @@ -28,11 +28,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661837, - "source": "Translated Source /language1/project0/subdir0/sub\u2026", + "mtime": 1596817538, + "source": "Translated Source /language1/project0/subdir0/sto\u2026", "translation_action_type": 1, "type": 1, - "uid": 126, + "uid": 118, "username": "member" }, "suggestions": 9, @@ -47,11 +47,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661837, - "source": "Translated Source /language1/project0/subdir0/sub\u2026", + "mtime": 1596817538, + "source": "Translated Source /language1/project0/subdir0/sto\u2026", "translation_action_type": 1, "type": 1, - "uid": 126, + "uid": 118, "username": "member" }, "suggestions": 18, diff --git a/tests/data/snapshots/test_browse/nobody/_projects_project0_subdir0_store4.po.context.json b/tests/data/snapshots/test_browse/nobody/_projects_project0_subdir0_store4.po.context.json index 8707e982d4..8d7e5b8d78 100644 --- a/tests/data/snapshots/test_browse/nobody/_projects_project0_subdir0_store4.po.context.json +++ b/tests/data/snapshots/test_browse/nobody/_projects_project0_subdir0_store4.po.context.json @@ -9,7 +9,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661829, + "mtime": 1596817535, "source": "Translated Source /language0/project0/subdir0/sto\u2026", "translation_action_type": 1, "type": 1, @@ -28,7 +28,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661836, + "mtime": 1596817538, "source": "Translated Source /language1/project0/subdir0/sto\u2026", "translation_action_type": 1, "type": 1, @@ -47,7 +47,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661836, + "mtime": 1596817538, "source": "Translated Source /language1/project0/subdir0/sto\u2026", "translation_action_type": 1, "type": 1, diff --git a/tests/data/snapshots/test_get_stats/admin/_xhr_stats_path=%2Flanguage0%2F&all=.response.json b/tests/data/snapshots/test_get_stats/admin/_xhr_stats_path=%2Flanguage0%2F&all=.response.json index f448bb6ee2..5c34d94326 100644 --- a/tests/data/snapshots/test_get_stats/admin/_xhr_stats_path=%2Flanguage0%2F&all=.response.json +++ b/tests/data/snapshots/test_get_stats/admin/_xhr_stats_path=%2Flanguage0%2F&all=.response.json @@ -7,11 +7,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661826, - "source": "Translated Source /language0/disabled_project0/su\u2026", + "mtime": 1596817534, + "source": "Translated Source /language0/disabled_project0/st\u2026", "translation_action_type": 1, "type": 1, - "uid": 162, + "uid": 98, "username": "member" }, "suggestions": 15, @@ -26,11 +26,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661829, - "source": "Translated Source /language0/project0/subdir0/sto\u2026", + "mtime": 1596817535, + "source": "Translated Source /language0/project0/store1.po 2\u2026", "translation_action_type": 1, "type": 1, - "uid": 110, + "uid": 11, "username": "member" }, "suggestions": 27, @@ -45,7 +45,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661833, + "mtime": 1596817537, "source": "Translated Source /language0/project1/subdir0/sto\u2026", "translation_action_type": 1, "type": 1, @@ -69,7 +69,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661833, + "mtime": 1596817537, "source": "Translated Source /language0/project1/subdir0/sto\u2026", "translation_action_type": 1, "type": 1, diff --git a/tests/data/snapshots/test_get_stats/admin/_xhr_stats_path=%2Flanguage0%2F.response.json b/tests/data/snapshots/test_get_stats/admin/_xhr_stats_path=%2Flanguage0%2F.response.json index 270f573df5..68ac3c2f52 100644 --- a/tests/data/snapshots/test_get_stats/admin/_xhr_stats_path=%2Flanguage0%2F.response.json +++ b/tests/data/snapshots/test_get_stats/admin/_xhr_stats_path=%2Flanguage0%2F.response.json @@ -6,11 +6,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661829, - "source": "Translated Source /language0/project0/subdir0/sto\u2026", + "mtime": 1596817535, + "source": "Translated Source /language0/project0/store1.po 2\u2026", "translation_action_type": 1, "type": 1, - "uid": 110, + "uid": 11, "username": "member" }, "suggestions": 27, @@ -25,7 +25,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661833, + "mtime": 1596817537, "source": "Translated Source /language0/project1/subdir0/sto\u2026", "translation_action_type": 1, "type": 1, @@ -49,7 +49,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661833, + "mtime": 1596817537, "source": "Translated Source /language0/project1/subdir0/sto\u2026", "translation_action_type": 1, "type": 1, diff --git a/tests/data/snapshots/test_get_stats/admin/_xhr_stats_path=%2Flanguage0%2Fproject0%2F&all=.response.json b/tests/data/snapshots/test_get_stats/admin/_xhr_stats_path=%2Flanguage0%2Fproject0%2F&all=.response.json index 862d416579..df0022bb7b 100644 --- a/tests/data/snapshots/test_get_stats/admin/_xhr_stats_path=%2Flanguage0%2Fproject0%2F&all=.response.json +++ b/tests/data/snapshots/test_get_stats/admin/_xhr_stats_path=%2Flanguage0%2Fproject0%2F&all=.response.json @@ -15,7 +15,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661826, + "mtime": 1596817534, "source": "Translated Source /language0/project0/store0.po 2\u2026", "translation_action_type": 1, "type": 1, @@ -33,7 +33,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661827, + "mtime": 1596817535, "source": "Translated Source /language0/project0/store1.po 2\u2026", "translation_action_type": 1, "type": 1, @@ -51,7 +51,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661828, + "mtime": 1596817535, "source": "Translated Source /language0/project0/store2.po 2\u2026", "translation_action_type": 1, "type": 1, @@ -69,11 +69,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661829, + "mtime": 1596817535, "source": "Translated Source /language0/project0/subdir0/sto\u2026", "translation_action_type": 1, "type": 1, - "uid": 110, + "uid": 106, "username": "member" }, "suggestions": 9, @@ -88,11 +88,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661829, - "source": "Translated Source /language0/project0/subdir0/sto\u2026", + "mtime": 1596817535, + "source": "Translated Source /language0/project0/store1.po 2\u2026", "translation_action_type": 1, "type": 1, - "uid": 110, + "uid": 11, "username": "member" }, "suggestions": 27, diff --git a/tests/data/snapshots/test_get_stats/admin/_xhr_stats_path=%2Flanguage0%2Fproject0%2F.response.json b/tests/data/snapshots/test_get_stats/admin/_xhr_stats_path=%2Flanguage0%2Fproject0%2F.response.json index 862d416579..df0022bb7b 100644 --- a/tests/data/snapshots/test_get_stats/admin/_xhr_stats_path=%2Flanguage0%2Fproject0%2F.response.json +++ b/tests/data/snapshots/test_get_stats/admin/_xhr_stats_path=%2Flanguage0%2Fproject0%2F.response.json @@ -15,7 +15,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661826, + "mtime": 1596817534, "source": "Translated Source /language0/project0/store0.po 2\u2026", "translation_action_type": 1, "type": 1, @@ -33,7 +33,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661827, + "mtime": 1596817535, "source": "Translated Source /language0/project0/store1.po 2\u2026", "translation_action_type": 1, "type": 1, @@ -51,7 +51,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661828, + "mtime": 1596817535, "source": "Translated Source /language0/project0/store2.po 2\u2026", "translation_action_type": 1, "type": 1, @@ -69,11 +69,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661829, + "mtime": 1596817535, "source": "Translated Source /language0/project0/subdir0/sto\u2026", "translation_action_type": 1, "type": 1, - "uid": 110, + "uid": 106, "username": "member" }, "suggestions": 9, @@ -88,11 +88,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661829, - "source": "Translated Source /language0/project0/subdir0/sto\u2026", + "mtime": 1596817535, + "source": "Translated Source /language0/project0/store1.po 2\u2026", "translation_action_type": 1, "type": 1, - "uid": 110, + "uid": 11, "username": "member" }, "suggestions": 27, diff --git a/tests/data/snapshots/test_get_stats/admin/_xhr_stats_path=%2Fprojects%2F&all=.response.json b/tests/data/snapshots/test_get_stats/admin/_xhr_stats_path=%2Fprojects%2F&all=.response.json index b4a78837c1..4c6356a54b 100644 --- a/tests/data/snapshots/test_get_stats/admin/_xhr_stats_path=%2Fprojects%2F&all=.response.json +++ b/tests/data/snapshots/test_get_stats/admin/_xhr_stats_path=%2Fprojects%2F&all=.response.json @@ -7,11 +7,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661826, - "source": "Translated Source /language0/disabled_project0/su\u2026", + "mtime": 1596817534, + "source": "Translated Source /language0/disabled_project0/st\u2026", "translation_action_type": 1, "type": 1, - "uid": 162, + "uid": 98, "username": "member" }, "suggestions": 15, @@ -26,11 +26,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661837, - "source": "Translated Source /language1/project0/subdir0/sub\u2026", + "mtime": 1596817538, + "source": "Translated Source /language1/project0/store2.po 2\u2026", "translation_action_type": 1, "type": 1, - "uid": 126, + "uid": 43, "username": "member" }, "suggestions": 54, @@ -45,11 +45,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661840, - "source": "Translated Source /language1/project1/subdir0/sto\u2026", + "mtime": 1596817539, + "source": "Translated Source /language1/project1/store2.po 3\u2026", "translation_action_type": 1, "type": 1, - "uid": 142, + "uid": 92, "username": "member" }, "suggestions": 54, @@ -69,11 +69,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661840, - "source": "Translated Source /language1/project1/subdir0/sto\u2026", + "mtime": 1596817539, + "source": "Translated Source /language1/project1/store2.po 3\u2026", "translation_action_type": 1, "type": 1, - "uid": 142, + "uid": 92, "username": "member" }, "suggestions": 123, diff --git a/tests/data/snapshots/test_get_stats/admin/_xhr_stats_path=%2Fprojects%2F.response.json b/tests/data/snapshots/test_get_stats/admin/_xhr_stats_path=%2Fprojects%2F.response.json index 1182eb9f5c..fb5aa9fb86 100644 --- a/tests/data/snapshots/test_get_stats/admin/_xhr_stats_path=%2Fprojects%2F.response.json +++ b/tests/data/snapshots/test_get_stats/admin/_xhr_stats_path=%2Fprojects%2F.response.json @@ -6,11 +6,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661837, - "source": "Translated Source /language1/project0/subdir0/sub\u2026", + "mtime": 1596817538, + "source": "Translated Source /language1/project0/store2.po 2\u2026", "translation_action_type": 1, "type": 1, - "uid": 126, + "uid": 43, "username": "member" }, "suggestions": 54, @@ -25,11 +25,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661840, - "source": "Translated Source /language1/project1/subdir0/sto\u2026", + "mtime": 1596817539, + "source": "Translated Source /language1/project1/store2.po 3\u2026", "translation_action_type": 1, "type": 1, - "uid": 142, + "uid": 92, "username": "member" }, "suggestions": 54, @@ -49,11 +49,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661840, - "source": "Translated Source /language1/project1/subdir0/sto\u2026", + "mtime": 1596817539, + "source": "Translated Source /language1/project1/store2.po 3\u2026", "translation_action_type": 1, "type": 1, - "uid": 142, + "uid": 92, "username": "member" }, "suggestions": 108, diff --git a/tests/data/snapshots/test_get_stats/admin/_xhr_stats_path=%2Fprojects%2Fproject0%2F&all=.response.json b/tests/data/snapshots/test_get_stats/admin/_xhr_stats_path=%2Fprojects%2Fproject0%2F&all=.response.json index d72d727a0d..d924e2206f 100644 --- a/tests/data/snapshots/test_get_stats/admin/_xhr_stats_path=%2Fprojects%2Fproject0%2F&all=.response.json +++ b/tests/data/snapshots/test_get_stats/admin/_xhr_stats_path=%2Fprojects%2Fproject0%2F&all=.response.json @@ -6,11 +6,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661829, - "source": "Translated Source /language0/project0/subdir0/sto\u2026", + "mtime": 1596817535, + "source": "Translated Source /language0/project0/store1.po 2\u2026", "translation_action_type": 1, "type": 1, - "uid": 110, + "uid": 11, "username": "member" }, "suggestions": 27, @@ -25,11 +25,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661837, - "source": "Translated Source /language1/project0/subdir0/sub\u2026", + "mtime": 1596817538, + "source": "Translated Source /language1/project0/store2.po 2\u2026", "translation_action_type": 1, "type": 1, - "uid": 126, + "uid": 43, "username": "member" }, "suggestions": 27, @@ -44,11 +44,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661837, - "source": "Translated Source /language1/project0/subdir0/sub\u2026", + "mtime": 1596817538, + "source": "Translated Source /language1/project0/store2.po 2\u2026", "translation_action_type": 1, "type": 1, - "uid": 126, + "uid": 43, "username": "member" }, "suggestions": 54, diff --git a/tests/data/snapshots/test_get_stats/admin/_xhr_stats_path=%2Fprojects%2Fproject0%2F.response.json b/tests/data/snapshots/test_get_stats/admin/_xhr_stats_path=%2Fprojects%2Fproject0%2F.response.json index d72d727a0d..d924e2206f 100644 --- a/tests/data/snapshots/test_get_stats/admin/_xhr_stats_path=%2Fprojects%2Fproject0%2F.response.json +++ b/tests/data/snapshots/test_get_stats/admin/_xhr_stats_path=%2Fprojects%2Fproject0%2F.response.json @@ -6,11 +6,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661829, - "source": "Translated Source /language0/project0/subdir0/sto\u2026", + "mtime": 1596817535, + "source": "Translated Source /language0/project0/store1.po 2\u2026", "translation_action_type": 1, "type": 1, - "uid": 110, + "uid": 11, "username": "member" }, "suggestions": 27, @@ -25,11 +25,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661837, - "source": "Translated Source /language1/project0/subdir0/sub\u2026", + "mtime": 1596817538, + "source": "Translated Source /language1/project0/store2.po 2\u2026", "translation_action_type": 1, "type": 1, - "uid": 126, + "uid": 43, "username": "member" }, "suggestions": 27, @@ -44,11 +44,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661837, - "source": "Translated Source /language1/project0/subdir0/sub\u2026", + "mtime": 1596817538, + "source": "Translated Source /language1/project0/store2.po 2\u2026", "translation_action_type": 1, "type": 1, - "uid": 126, + "uid": 43, "username": "member" }, "suggestions": 54, diff --git a/tests/data/snapshots/test_get_stats/member/_xhr_stats_path=%2Flanguage0%2F&all=.response.json b/tests/data/snapshots/test_get_stats/member/_xhr_stats_path=%2Flanguage0%2F&all=.response.json index 270f573df5..68ac3c2f52 100644 --- a/tests/data/snapshots/test_get_stats/member/_xhr_stats_path=%2Flanguage0%2F&all=.response.json +++ b/tests/data/snapshots/test_get_stats/member/_xhr_stats_path=%2Flanguage0%2F&all=.response.json @@ -6,11 +6,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661829, - "source": "Translated Source /language0/project0/subdir0/sto\u2026", + "mtime": 1596817535, + "source": "Translated Source /language0/project0/store1.po 2\u2026", "translation_action_type": 1, "type": 1, - "uid": 110, + "uid": 11, "username": "member" }, "suggestions": 27, @@ -25,7 +25,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661833, + "mtime": 1596817537, "source": "Translated Source /language0/project1/subdir0/sto\u2026", "translation_action_type": 1, "type": 1, @@ -49,7 +49,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661833, + "mtime": 1596817537, "source": "Translated Source /language0/project1/subdir0/sto\u2026", "translation_action_type": 1, "type": 1, diff --git a/tests/data/snapshots/test_get_stats/member/_xhr_stats_path=%2Flanguage0%2F.response.json b/tests/data/snapshots/test_get_stats/member/_xhr_stats_path=%2Flanguage0%2F.response.json index 270f573df5..68ac3c2f52 100644 --- a/tests/data/snapshots/test_get_stats/member/_xhr_stats_path=%2Flanguage0%2F.response.json +++ b/tests/data/snapshots/test_get_stats/member/_xhr_stats_path=%2Flanguage0%2F.response.json @@ -6,11 +6,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661829, - "source": "Translated Source /language0/project0/subdir0/sto\u2026", + "mtime": 1596817535, + "source": "Translated Source /language0/project0/store1.po 2\u2026", "translation_action_type": 1, "type": 1, - "uid": 110, + "uid": 11, "username": "member" }, "suggestions": 27, @@ -25,7 +25,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661833, + "mtime": 1596817537, "source": "Translated Source /language0/project1/subdir0/sto\u2026", "translation_action_type": 1, "type": 1, @@ -49,7 +49,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661833, + "mtime": 1596817537, "source": "Translated Source /language0/project1/subdir0/sto\u2026", "translation_action_type": 1, "type": 1, diff --git a/tests/data/snapshots/test_get_stats/member/_xhr_stats_path=%2Flanguage0%2Fproject0%2F&all=.response.json b/tests/data/snapshots/test_get_stats/member/_xhr_stats_path=%2Flanguage0%2Fproject0%2F&all=.response.json index a550ab3a9b..258d205aa7 100644 --- a/tests/data/snapshots/test_get_stats/member/_xhr_stats_path=%2Flanguage0%2Fproject0%2F&all=.response.json +++ b/tests/data/snapshots/test_get_stats/member/_xhr_stats_path=%2Flanguage0%2Fproject0%2F&all=.response.json @@ -11,7 +11,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661826, + "mtime": 1596817534, "source": "Translated Source /language0/project0/store0.po 2\u2026", "translation_action_type": 1, "type": 1, @@ -29,7 +29,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661827, + "mtime": 1596817535, "source": "Translated Source /language0/project0/store1.po 2\u2026", "translation_action_type": 1, "type": 1, @@ -47,7 +47,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661828, + "mtime": 1596817535, "source": "Translated Source /language0/project0/store2.po 2\u2026", "translation_action_type": 1, "type": 1, @@ -65,11 +65,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661829, + "mtime": 1596817535, "source": "Translated Source /language0/project0/subdir0/sto\u2026", "translation_action_type": 1, "type": 1, - "uid": 110, + "uid": 106, "username": "member" }, "suggestions": 9, @@ -84,11 +84,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661829, - "source": "Translated Source /language0/project0/subdir0/sto\u2026", + "mtime": 1596817535, + "source": "Translated Source /language0/project0/store1.po 2\u2026", "translation_action_type": 1, "type": 1, - "uid": 110, + "uid": 11, "username": "member" }, "suggestions": 27, diff --git a/tests/data/snapshots/test_get_stats/member/_xhr_stats_path=%2Flanguage0%2Fproject0%2F.response.json b/tests/data/snapshots/test_get_stats/member/_xhr_stats_path=%2Flanguage0%2Fproject0%2F.response.json index a550ab3a9b..258d205aa7 100644 --- a/tests/data/snapshots/test_get_stats/member/_xhr_stats_path=%2Flanguage0%2Fproject0%2F.response.json +++ b/tests/data/snapshots/test_get_stats/member/_xhr_stats_path=%2Flanguage0%2Fproject0%2F.response.json @@ -11,7 +11,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661826, + "mtime": 1596817534, "source": "Translated Source /language0/project0/store0.po 2\u2026", "translation_action_type": 1, "type": 1, @@ -29,7 +29,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661827, + "mtime": 1596817535, "source": "Translated Source /language0/project0/store1.po 2\u2026", "translation_action_type": 1, "type": 1, @@ -47,7 +47,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661828, + "mtime": 1596817535, "source": "Translated Source /language0/project0/store2.po 2\u2026", "translation_action_type": 1, "type": 1, @@ -65,11 +65,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661829, + "mtime": 1596817535, "source": "Translated Source /language0/project0/subdir0/sto\u2026", "translation_action_type": 1, "type": 1, - "uid": 110, + "uid": 106, "username": "member" }, "suggestions": 9, @@ -84,11 +84,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661829, - "source": "Translated Source /language0/project0/subdir0/sto\u2026", + "mtime": 1596817535, + "source": "Translated Source /language0/project0/store1.po 2\u2026", "translation_action_type": 1, "type": 1, - "uid": 110, + "uid": 11, "username": "member" }, "suggestions": 27, diff --git a/tests/data/snapshots/test_get_stats/member/_xhr_stats_path=%2Fprojects%2F&all=.response.json b/tests/data/snapshots/test_get_stats/member/_xhr_stats_path=%2Fprojects%2F&all=.response.json index 1182eb9f5c..fb5aa9fb86 100644 --- a/tests/data/snapshots/test_get_stats/member/_xhr_stats_path=%2Fprojects%2F&all=.response.json +++ b/tests/data/snapshots/test_get_stats/member/_xhr_stats_path=%2Fprojects%2F&all=.response.json @@ -6,11 +6,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661837, - "source": "Translated Source /language1/project0/subdir0/sub\u2026", + "mtime": 1596817538, + "source": "Translated Source /language1/project0/store2.po 2\u2026", "translation_action_type": 1, "type": 1, - "uid": 126, + "uid": 43, "username": "member" }, "suggestions": 54, @@ -25,11 +25,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661840, - "source": "Translated Source /language1/project1/subdir0/sto\u2026", + "mtime": 1596817539, + "source": "Translated Source /language1/project1/store2.po 3\u2026", "translation_action_type": 1, "type": 1, - "uid": 142, + "uid": 92, "username": "member" }, "suggestions": 54, @@ -49,11 +49,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661840, - "source": "Translated Source /language1/project1/subdir0/sto\u2026", + "mtime": 1596817539, + "source": "Translated Source /language1/project1/store2.po 3\u2026", "translation_action_type": 1, "type": 1, - "uid": 142, + "uid": 92, "username": "member" }, "suggestions": 108, diff --git a/tests/data/snapshots/test_get_stats/member/_xhr_stats_path=%2Fprojects%2F.response.json b/tests/data/snapshots/test_get_stats/member/_xhr_stats_path=%2Fprojects%2F.response.json index 1182eb9f5c..fb5aa9fb86 100644 --- a/tests/data/snapshots/test_get_stats/member/_xhr_stats_path=%2Fprojects%2F.response.json +++ b/tests/data/snapshots/test_get_stats/member/_xhr_stats_path=%2Fprojects%2F.response.json @@ -6,11 +6,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661837, - "source": "Translated Source /language1/project0/subdir0/sub\u2026", + "mtime": 1596817538, + "source": "Translated Source /language1/project0/store2.po 2\u2026", "translation_action_type": 1, "type": 1, - "uid": 126, + "uid": 43, "username": "member" }, "suggestions": 54, @@ -25,11 +25,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661840, - "source": "Translated Source /language1/project1/subdir0/sto\u2026", + "mtime": 1596817539, + "source": "Translated Source /language1/project1/store2.po 3\u2026", "translation_action_type": 1, "type": 1, - "uid": 142, + "uid": 92, "username": "member" }, "suggestions": 54, @@ -49,11 +49,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661840, - "source": "Translated Source /language1/project1/subdir0/sto\u2026", + "mtime": 1596817539, + "source": "Translated Source /language1/project1/store2.po 3\u2026", "translation_action_type": 1, "type": 1, - "uid": 142, + "uid": 92, "username": "member" }, "suggestions": 108, diff --git a/tests/data/snapshots/test_get_stats/member/_xhr_stats_path=%2Fprojects%2Fproject0%2F&all=.response.json b/tests/data/snapshots/test_get_stats/member/_xhr_stats_path=%2Fprojects%2Fproject0%2F&all=.response.json index d72d727a0d..d924e2206f 100644 --- a/tests/data/snapshots/test_get_stats/member/_xhr_stats_path=%2Fprojects%2Fproject0%2F&all=.response.json +++ b/tests/data/snapshots/test_get_stats/member/_xhr_stats_path=%2Fprojects%2Fproject0%2F&all=.response.json @@ -6,11 +6,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661829, - "source": "Translated Source /language0/project0/subdir0/sto\u2026", + "mtime": 1596817535, + "source": "Translated Source /language0/project0/store1.po 2\u2026", "translation_action_type": 1, "type": 1, - "uid": 110, + "uid": 11, "username": "member" }, "suggestions": 27, @@ -25,11 +25,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661837, - "source": "Translated Source /language1/project0/subdir0/sub\u2026", + "mtime": 1596817538, + "source": "Translated Source /language1/project0/store2.po 2\u2026", "translation_action_type": 1, "type": 1, - "uid": 126, + "uid": 43, "username": "member" }, "suggestions": 27, @@ -44,11 +44,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661837, - "source": "Translated Source /language1/project0/subdir0/sub\u2026", + "mtime": 1596817538, + "source": "Translated Source /language1/project0/store2.po 2\u2026", "translation_action_type": 1, "type": 1, - "uid": 126, + "uid": 43, "username": "member" }, "suggestions": 54, diff --git a/tests/data/snapshots/test_get_stats/member/_xhr_stats_path=%2Fprojects%2Fproject0%2F.response.json b/tests/data/snapshots/test_get_stats/member/_xhr_stats_path=%2Fprojects%2Fproject0%2F.response.json index d72d727a0d..d924e2206f 100644 --- a/tests/data/snapshots/test_get_stats/member/_xhr_stats_path=%2Fprojects%2Fproject0%2F.response.json +++ b/tests/data/snapshots/test_get_stats/member/_xhr_stats_path=%2Fprojects%2Fproject0%2F.response.json @@ -6,11 +6,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661829, - "source": "Translated Source /language0/project0/subdir0/sto\u2026", + "mtime": 1596817535, + "source": "Translated Source /language0/project0/store1.po 2\u2026", "translation_action_type": 1, "type": 1, - "uid": 110, + "uid": 11, "username": "member" }, "suggestions": 27, @@ -25,11 +25,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661837, - "source": "Translated Source /language1/project0/subdir0/sub\u2026", + "mtime": 1596817538, + "source": "Translated Source /language1/project0/store2.po 2\u2026", "translation_action_type": 1, "type": 1, - "uid": 126, + "uid": 43, "username": "member" }, "suggestions": 27, @@ -44,11 +44,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661837, - "source": "Translated Source /language1/project0/subdir0/sub\u2026", + "mtime": 1596817538, + "source": "Translated Source /language1/project0/store2.po 2\u2026", "translation_action_type": 1, "type": 1, - "uid": 126, + "uid": 43, "username": "member" }, "suggestions": 54, diff --git a/tests/data/snapshots/test_get_stats/nobody/_xhr_stats_path=%2Flanguage0%2F&all=.response.json b/tests/data/snapshots/test_get_stats/nobody/_xhr_stats_path=%2Flanguage0%2F&all=.response.json index 270f573df5..68ac3c2f52 100644 --- a/tests/data/snapshots/test_get_stats/nobody/_xhr_stats_path=%2Flanguage0%2F&all=.response.json +++ b/tests/data/snapshots/test_get_stats/nobody/_xhr_stats_path=%2Flanguage0%2F&all=.response.json @@ -6,11 +6,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661829, - "source": "Translated Source /language0/project0/subdir0/sto\u2026", + "mtime": 1596817535, + "source": "Translated Source /language0/project0/store1.po 2\u2026", "translation_action_type": 1, "type": 1, - "uid": 110, + "uid": 11, "username": "member" }, "suggestions": 27, @@ -25,7 +25,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661833, + "mtime": 1596817537, "source": "Translated Source /language0/project1/subdir0/sto\u2026", "translation_action_type": 1, "type": 1, @@ -49,7 +49,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661833, + "mtime": 1596817537, "source": "Translated Source /language0/project1/subdir0/sto\u2026", "translation_action_type": 1, "type": 1, diff --git a/tests/data/snapshots/test_get_stats/nobody/_xhr_stats_path=%2Flanguage0%2F.response.json b/tests/data/snapshots/test_get_stats/nobody/_xhr_stats_path=%2Flanguage0%2F.response.json index 270f573df5..68ac3c2f52 100644 --- a/tests/data/snapshots/test_get_stats/nobody/_xhr_stats_path=%2Flanguage0%2F.response.json +++ b/tests/data/snapshots/test_get_stats/nobody/_xhr_stats_path=%2Flanguage0%2F.response.json @@ -6,11 +6,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661829, - "source": "Translated Source /language0/project0/subdir0/sto\u2026", + "mtime": 1596817535, + "source": "Translated Source /language0/project0/store1.po 2\u2026", "translation_action_type": 1, "type": 1, - "uid": 110, + "uid": 11, "username": "member" }, "suggestions": 27, @@ -25,7 +25,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661833, + "mtime": 1596817537, "source": "Translated Source /language0/project1/subdir0/sto\u2026", "translation_action_type": 1, "type": 1, @@ -49,7 +49,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661833, + "mtime": 1596817537, "source": "Translated Source /language0/project1/subdir0/sto\u2026", "translation_action_type": 1, "type": 1, diff --git a/tests/data/snapshots/test_get_stats/nobody/_xhr_stats_path=%2Flanguage0%2Fproject0%2F&all=.response.json b/tests/data/snapshots/test_get_stats/nobody/_xhr_stats_path=%2Flanguage0%2Fproject0%2F&all=.response.json index a550ab3a9b..258d205aa7 100644 --- a/tests/data/snapshots/test_get_stats/nobody/_xhr_stats_path=%2Flanguage0%2Fproject0%2F&all=.response.json +++ b/tests/data/snapshots/test_get_stats/nobody/_xhr_stats_path=%2Flanguage0%2Fproject0%2F&all=.response.json @@ -11,7 +11,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661826, + "mtime": 1596817534, "source": "Translated Source /language0/project0/store0.po 2\u2026", "translation_action_type": 1, "type": 1, @@ -29,7 +29,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661827, + "mtime": 1596817535, "source": "Translated Source /language0/project0/store1.po 2\u2026", "translation_action_type": 1, "type": 1, @@ -47,7 +47,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661828, + "mtime": 1596817535, "source": "Translated Source /language0/project0/store2.po 2\u2026", "translation_action_type": 1, "type": 1, @@ -65,11 +65,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661829, + "mtime": 1596817535, "source": "Translated Source /language0/project0/subdir0/sto\u2026", "translation_action_type": 1, "type": 1, - "uid": 110, + "uid": 106, "username": "member" }, "suggestions": 9, @@ -84,11 +84,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661829, - "source": "Translated Source /language0/project0/subdir0/sto\u2026", + "mtime": 1596817535, + "source": "Translated Source /language0/project0/store1.po 2\u2026", "translation_action_type": 1, "type": 1, - "uid": 110, + "uid": 11, "username": "member" }, "suggestions": 27, diff --git a/tests/data/snapshots/test_get_stats/nobody/_xhr_stats_path=%2Flanguage0%2Fproject0%2F.response.json b/tests/data/snapshots/test_get_stats/nobody/_xhr_stats_path=%2Flanguage0%2Fproject0%2F.response.json index a550ab3a9b..258d205aa7 100644 --- a/tests/data/snapshots/test_get_stats/nobody/_xhr_stats_path=%2Flanguage0%2Fproject0%2F.response.json +++ b/tests/data/snapshots/test_get_stats/nobody/_xhr_stats_path=%2Flanguage0%2Fproject0%2F.response.json @@ -11,7 +11,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661826, + "mtime": 1596817534, "source": "Translated Source /language0/project0/store0.po 2\u2026", "translation_action_type": 1, "type": 1, @@ -29,7 +29,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661827, + "mtime": 1596817535, "source": "Translated Source /language0/project0/store1.po 2\u2026", "translation_action_type": 1, "type": 1, @@ -47,7 +47,7 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661828, + "mtime": 1596817535, "source": "Translated Source /language0/project0/store2.po 2\u2026", "translation_action_type": 1, "type": 1, @@ -65,11 +65,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661829, + "mtime": 1596817535, "source": "Translated Source /language0/project0/subdir0/sto\u2026", "translation_action_type": 1, "type": 1, - "uid": 110, + "uid": 106, "username": "member" }, "suggestions": 9, @@ -84,11 +84,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661829, - "source": "Translated Source /language0/project0/subdir0/sto\u2026", + "mtime": 1596817535, + "source": "Translated Source /language0/project0/store1.po 2\u2026", "translation_action_type": 1, "type": 1, - "uid": 110, + "uid": 11, "username": "member" }, "suggestions": 27, diff --git a/tests/data/snapshots/test_get_stats/nobody/_xhr_stats_path=%2Fprojects%2F&all=.response.json b/tests/data/snapshots/test_get_stats/nobody/_xhr_stats_path=%2Fprojects%2F&all=.response.json index 1182eb9f5c..fb5aa9fb86 100644 --- a/tests/data/snapshots/test_get_stats/nobody/_xhr_stats_path=%2Fprojects%2F&all=.response.json +++ b/tests/data/snapshots/test_get_stats/nobody/_xhr_stats_path=%2Fprojects%2F&all=.response.json @@ -6,11 +6,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661837, - "source": "Translated Source /language1/project0/subdir0/sub\u2026", + "mtime": 1596817538, + "source": "Translated Source /language1/project0/store2.po 2\u2026", "translation_action_type": 1, "type": 1, - "uid": 126, + "uid": 43, "username": "member" }, "suggestions": 54, @@ -25,11 +25,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661840, - "source": "Translated Source /language1/project1/subdir0/sto\u2026", + "mtime": 1596817539, + "source": "Translated Source /language1/project1/store2.po 3\u2026", "translation_action_type": 1, "type": 1, - "uid": 142, + "uid": 92, "username": "member" }, "suggestions": 54, @@ -49,11 +49,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661840, - "source": "Translated Source /language1/project1/subdir0/sto\u2026", + "mtime": 1596817539, + "source": "Translated Source /language1/project1/store2.po 3\u2026", "translation_action_type": 1, "type": 1, - "uid": 142, + "uid": 92, "username": "member" }, "suggestions": 108, diff --git a/tests/data/snapshots/test_get_stats/nobody/_xhr_stats_path=%2Fprojects%2F.response.json b/tests/data/snapshots/test_get_stats/nobody/_xhr_stats_path=%2Fprojects%2F.response.json index 1182eb9f5c..fb5aa9fb86 100644 --- a/tests/data/snapshots/test_get_stats/nobody/_xhr_stats_path=%2Fprojects%2F.response.json +++ b/tests/data/snapshots/test_get_stats/nobody/_xhr_stats_path=%2Fprojects%2F.response.json @@ -6,11 +6,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661837, - "source": "Translated Source /language1/project0/subdir0/sub\u2026", + "mtime": 1596817538, + "source": "Translated Source /language1/project0/store2.po 2\u2026", "translation_action_type": 1, "type": 1, - "uid": 126, + "uid": 43, "username": "member" }, "suggestions": 54, @@ -25,11 +25,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661840, - "source": "Translated Source /language1/project1/subdir0/sto\u2026", + "mtime": 1596817539, + "source": "Translated Source /language1/project1/store2.po 3\u2026", "translation_action_type": 1, "type": 1, - "uid": 142, + "uid": 92, "username": "member" }, "suggestions": 54, @@ -49,11 +49,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661840, - "source": "Translated Source /language1/project1/subdir0/sto\u2026", + "mtime": 1596817539, + "source": "Translated Source /language1/project1/store2.po 3\u2026", "translation_action_type": 1, "type": 1, - "uid": 142, + "uid": 92, "username": "member" }, "suggestions": 108, diff --git a/tests/data/snapshots/test_get_stats/nobody/_xhr_stats_path=%2Fprojects%2Fproject0%2F&all=.response.json b/tests/data/snapshots/test_get_stats/nobody/_xhr_stats_path=%2Fprojects%2Fproject0%2F&all=.response.json index d72d727a0d..d924e2206f 100644 --- a/tests/data/snapshots/test_get_stats/nobody/_xhr_stats_path=%2Fprojects%2Fproject0%2F&all=.response.json +++ b/tests/data/snapshots/test_get_stats/nobody/_xhr_stats_path=%2Fprojects%2Fproject0%2F&all=.response.json @@ -6,11 +6,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661829, - "source": "Translated Source /language0/project0/subdir0/sto\u2026", + "mtime": 1596817535, + "source": "Translated Source /language0/project0/store1.po 2\u2026", "translation_action_type": 1, "type": 1, - "uid": 110, + "uid": 11, "username": "member" }, "suggestions": 27, @@ -25,11 +25,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661837, - "source": "Translated Source /language1/project0/subdir0/sub\u2026", + "mtime": 1596817538, + "source": "Translated Source /language1/project0/store2.po 2\u2026", "translation_action_type": 1, "type": 1, - "uid": 126, + "uid": 43, "username": "member" }, "suggestions": 27, @@ -44,11 +44,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661837, - "source": "Translated Source /language1/project0/subdir0/sub\u2026", + "mtime": 1596817538, + "source": "Translated Source /language1/project0/store2.po 2\u2026", "translation_action_type": 1, "type": 1, - "uid": 126, + "uid": 43, "username": "member" }, "suggestions": 54, diff --git a/tests/data/snapshots/test_get_stats/nobody/_xhr_stats_path=%2Fprojects%2Fproject0%2F.response.json b/tests/data/snapshots/test_get_stats/nobody/_xhr_stats_path=%2Fprojects%2Fproject0%2F.response.json index d72d727a0d..d924e2206f 100644 --- a/tests/data/snapshots/test_get_stats/nobody/_xhr_stats_path=%2Fprojects%2Fproject0%2F.response.json +++ b/tests/data/snapshots/test_get_stats/nobody/_xhr_stats_path=%2Fprojects%2Fproject0%2F.response.json @@ -6,11 +6,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661829, - "source": "Translated Source /language0/project0/subdir0/sto\u2026", + "mtime": 1596817535, + "source": "Translated Source /language0/project0/store1.po 2\u2026", "translation_action_type": 1, "type": 1, - "uid": 110, + "uid": 11, "username": "member" }, "suggestions": 27, @@ -25,11 +25,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661837, - "source": "Translated Source /language1/project0/subdir0/sub\u2026", + "mtime": 1596817538, + "source": "Translated Source /language1/project0/store2.po 2\u2026", "translation_action_type": 1, "type": 1, - "uid": 126, + "uid": 43, "username": "member" }, "suggestions": 27, @@ -44,11 +44,11 @@ "lastaction": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661837, - "source": "Translated Source /language1/project0/subdir0/sub\u2026", + "mtime": 1596817538, + "source": "Translated Source /language1/project0/store2.po 2\u2026", "translation_action_type": 1, "type": 1, - "uid": 126, + "uid": 43, "username": "member" }, "suggestions": 54, diff --git a/tests/data/snapshots/test_stats_retrieval/_language0_project0_.json b/tests/data/snapshots/test_stats_retrieval/_language0_project0_.json index 079133389b..bfc45eaefd 100644 --- a/tests/data/snapshots/test_stats_retrieval/_language0_project0_.json +++ b/tests/data/snapshots/test_stats_retrieval/_language0_project0_.json @@ -5,14 +5,14 @@ "last_action": { "displayname": "Member", "email": "a4fae232e2bfebd9f4dc8d7cb6caecb2", - "mtime": 1578661829, - "source": "Translated Source /language0/project0/subdir0/sto\u2026", + "mtime": 1596817535, + "source": "Translated Source /language0/project0/store1.po 2\u2026", "translation_action_type": 1, "type": 1, - "uid": 110, + "uid": 11, "username": "member" }, - "last_updated": 1579871442, + "last_updated": 1598027139, "suggestions": 27, "total": 1320, "translated": 482