Merge lp:~henninge/launchpad/db-devel-translationmessage-pofile into lp:launchpad/db-devel

Proposed by Henning Eggers
Status: Merged
Approved by: Henning Eggers
Approved revision: no longer in the source branch.
Merged at revision: 9868
Proposed branch: lp:~henninge/launchpad/db-devel-translationmessage-pofile
Merge into: lp:launchpad/db-devel
Diff against target: 2742 lines (+1320/-1321)
8 files modified
database/sampledata/current-dev.sql (+653/-653)
database/sampledata/current.sql (+653/-653)
database/schema/comments.sql (+0/-2)
database/schema/patch-2208-23-0.sql (+10/-0)
lib/lp/translations/interfaces/translationmessage.py (+0/-4)
lib/lp/translations/model/translationmessage.py (+0/-2)
lib/lp/translations/tests/pofiletranslator.txt (+4/-6)
lib/lp/translations/tests/test_translationmessage.py (+0/-1)
To merge this branch: bzr merge lp:~henninge/launchpad/db-devel-translationmessage-pofile
Reviewer Review Type Date Requested Status
Jeroen T. Vermeulen (community) code Approve
Stuart Bishop (community) db Approve
Review via email: mp+37563@code.launchpad.net

Commit message

Remove TranslationMessage.pofile from model and database.

Description of the change

As a follow-up to the fix for bug 597539, this branch removes the TranslationMessage.pofile attribute from both model and database. The fact that so little code had to be changed to get the test suite passing on this branch (already done) shows that the previous branch was pretty thorough in removing all references to it.

To post a comment you must log in.
Revision history for this message
Henning Eggers (henninge) wrote :

The sampledata changes will create a lot of noise in the diff. Here are the
changes in other files.

=== modified file 'database/schema/comments.sql'
--- database/schema/comments.sql 2010-09-23 19:27:24 +0000
+++ database/schema/comments.sql 2010-10-04 22:56:09 +0000
@@ -941,8 +941,6 @@
941COMMENT ON TABLE TranslationMessage IS 'This table stores a concrete941COMMENT ON TABLE TranslationMessage IS 'This table stores a concrete
942translation for a POTMsgSet message. It knows who, when and where did it,942translation for a POTMsgSet message. It knows who, when and where did it,
943and whether it was reviewed by someone and when was it reviewed.';943and whether it was reviewed by someone and when was it reviewed.';
944COMMENT ON COLUMN TranslationMessage.pofile IS 'The translation file which
945this translation message is part of.';
946COMMENT ON COLUMN TranslationMessage.potmsgset IS 'The template message which944COMMENT ON COLUMN TranslationMessage.potmsgset IS 'The template message which
947this translation message is a translation of.';945this translation message is a translation of.';
948COMMENT ON COLUMN TranslationMessage.date_created IS 'The date we saw this946COMMENT ON COLUMN TranslationMessage.date_created IS 'The date we saw this
949947
=== added file 'database/schema/patch-2208-99-0.sql'
--- database/schema/patch-2208-99-0.sql 1970-01-01 00:00:00 +0000
+++ database/schema/patch-2208-99-0.sql 2010-10-04 22:56:09 +0000
@@ -0,0 +1,15 @@
1-- Copyright 2010 Canonical Ltd. This software is licensed under the
2-- GNU Affero General Public License version 3 (see the file LICENSE).
3
4SET client_min_messages=ERROR;
5
6DROP INDEX translationmessage__pofile__idx;
7
8ALTER TABLE TranslationMessage
9DROP CONSTRAINT translationmessage__pofile__fk;
10
11ALTER TABLE TranslationMessage
12DROP COLUMN pofile;
13
14INSERT INTO LaunchpadDatabaseRevision VALUES (2208, 99, 0);
15
016
=== modified file 'lib/lp/translations/interfaces/translationmessage.py'
--- lib/lp/translations/interfaces/translationmessage.py 2010-09-03 15:20:05 +0000
+++ lib/lp/translations/interfaces/translationmessage.py 2010-10-04 22:56:09 +0000
@@ -103,10 +103,6 @@
103 title=_("The ID for this translation message"),103 title=_("The ID for this translation message"),
104 readonly=True, required=True)104 readonly=True, required=True)
105105
106 pofile = Object(
107 title=_("The translation file from where this translation comes"),
108 readonly=False, required=False, schema=IPOFile)
109
110 browser_pofile = Object(106 browser_pofile = Object(
111 title=_("The translation file from where this translation comes"),107 title=_("The translation file from where this translation comes"),
112 readonly=False, required=False, schema=IPOFile)108 readonly=False, required=False, schema=IPOFile)
113109
=== modified file 'lib/lp/translations/model/translationmessage.py'
--- lib/lp/translations/model/translationmessage.py 2010-09-03 16:01:01 +0000
+++ lib/lp/translations/model/translationmessage.py 2010-10-04 22:56:09 +0000
@@ -123,7 +123,6 @@
123 'This translation message already exists in the database.')123 'This translation message already exists in the database.')
124124
125 self.id = None125 self.id = None
126 self.pofile = None
127 self.browser_pofile = pofile126 self.browser_pofile = pofile
128 self.potemplate = pofile.potemplate127 self.potemplate = pofile.potemplate
129 self.language = pofile.language128 self.language = pofile.language
@@ -236,7 +235,6 @@
236235
237 _table = 'TranslationMessage'236 _table = 'TranslationMessage'
238237
239 pofile = ForeignKey(foreignKey='POFile', dbName='pofile', notNull=False)
240 browser_pofile = None238 browser_pofile = None
241 potemplate = ForeignKey(239 potemplate = ForeignKey(
242 foreignKey='POTemplate', dbName='potemplate', notNull=False,240 foreignKey='POTemplate', dbName='potemplate', notNull=False,
243241
=== modified file 'lib/lp/translations/tests/pofiletranslator.txt'
--- lib/lp/translations/tests/pofiletranslator.txt 2010-09-03 14:53:09 +0000
+++ lib/lp/translations/tests/pofiletranslator.txt 2010-10-05 07:03:37 +0000
@@ -35,10 +35,9 @@
3535
36 >>> cur.execute("""36 >>> cur.execute("""
37 ... INSERT INTO TranslationMessage(37 ... INSERT INTO TranslationMessage(
38 ... pofile, potmsgset, msgstr1, origin, submitter, language38 ... potmsgset, msgstr1, origin, submitter, language
39 ... ) VALUES (39 ... ) VALUES (
40 ... %(pofile_id)s, %(potmsgset_id)s, 1, 1, %(stub_id)s,40 ... %(potmsgset_id)s, 1, 1, %(stub_id)s, %(language_id)s)
41 ... %(language_id)s)
42 ... """, vars())41 ... """, vars())
43 >>> posubmission_id, date_touched = pofiletranslator(stub_id, pofile_id)42 >>> posubmission_id, date_touched = pofiletranslator(stub_id, pofile_id)
4443
@@ -59,10 +58,9 @@
5958
60 >>> cur.execute("""59 >>> cur.execute("""
61 ... INSERT INTO TranslationMessage(60 ... INSERT INTO TranslationMessage(
62 ... pofile, potmsgset, msgstr1, origin, submitter, language61 ... potmsgset, msgstr1, origin, submitter, language
63 ... ) VALUES (62 ... ) VALUES (
64 ... %(pofile_id)s, %(potmsgset_id)s, 2, 1, %(stub_id)s,63 ... %(potmsgset_id)s, 2, 1, %(stub_id)s, %(language_id)s)
65 ... %(language_id)s)
66 ... """, vars())64 ... """, vars())
67 >>> new_posubmission_id, new_date_touched = pofiletranslator(65 >>> new_posubmission_id, new_date_touched = pofiletranslator(
68 ... stub_id, pofile_id)66 ... stub_id, pofile_id)
Revision history for this message
Stuart Bishop (stub) wrote :

The DB patch is fine - patch-2208-21-0.sql.

The sampledata will need to be rebuilt with PG 8.4.

review: Approve (db)
Revision history for this message
Stuart Bishop (stub) wrote :

It could be a single statement though - the index and the constraint are dropped implicitly when you drop the column.

Revision history for this message
Henning Eggers (henninge) :
Revision history for this message
Henning Eggers (henninge) wrote :

Interesting. If I don't put anything in the mail body, the attachment is not
displayed, either. Is that a bug?

=== renamed file 'database/schema/patch-2208-99-0.sql' => 'database/schema/patch-2208-21-0.sql'
--- database/schema/patch-2208-99-0.sql 2010-10-04 22:56:09 +0000
+++ database/schema/patch-2208-21-0.sql 2010-10-05 08:38:32 +0000
@@ -3,13 +3,8 @@
33
4SET client_min_messages=ERROR;4SET client_min_messages=ERROR;
55
6DROP INDEX translationmessage__pofile__idx;
7
8ALTER TABLE TranslationMessage
9DROP CONSTRAINT translationmessage__pofile__fk;
10
11ALTER TABLE TranslationMessage6ALTER TABLE TranslationMessage
12DROP COLUMN pofile;7DROP COLUMN pofile;
138
14INSERT INTO LaunchpadDatabaseRevision VALUES (2208, 99, 0);9INSERT INTO LaunchpadDatabaseRevision VALUES (2208, 21, 0);
1510
Revision history for this message
Jeroen T. Vermeulen (jtv) wrote :

Code changes look fine, assuming the tests still pass.

review: Approve (code)
Revision history for this message
Stuart Bishop (stub) wrote :

New patch number patch-2208-23-0.sql.

Sorry about losing your number :)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'database/sampledata/current-dev.sql'
--- database/sampledata/current-dev.sql 2010-10-05 12:42:34 +0000
+++ database/sampledata/current-dev.sql 2010-10-06 13:27:49 +0000
@@ -8952,661 +8952,661 @@
89528952
8953ALTER TABLE translationmessage DISABLE TRIGGER ALL;8953ALTER TABLE translationmessage DISABLE TRIGGER ALL;
89548954
8955INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (1, NULL, 1, '2005-04-07 13:19:17.601068', 13, '2005-04-07 13:19:17.601068', 13, 1, NULL, NULL, NULL, '', 1, 1, true, false, true, false, false, NULL, NULL, 1, 387, NULL);8955INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (1, 1, '2005-04-07 13:19:17.601068', 13, '2005-04-07 13:19:17.601068', 13, 1, NULL, NULL, NULL, '', 1, 1, true, false, true, false, false, NULL, NULL, 1, 387, NULL);
8956INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (2, NULL, 2, '2005-04-07 13:19:17.601068', 13, '2005-04-07 13:19:17.601068', 13, 2, NULL, NULL, NULL, '', 1, 1, true, false, true, false, false, NULL, NULL, 1, 387, NULL);8956INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (2, 2, '2005-04-07 13:19:17.601068', 13, '2005-04-07 13:19:17.601068', 13, 2, NULL, NULL, NULL, '', 1, 1, true, false, true, false, false, NULL, NULL, 1, 387, NULL);
8957INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (3, NULL, 3, '2005-04-07 13:19:17.601068', 13, '2007-01-04 11:02:02.844658', 13, 3, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 1, 387, NULL);8957INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (3, 3, '2005-04-07 13:19:17.601068', 13, '2007-01-04 11:02:02.844658', 13, 3, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 1, 387, NULL);
8958INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (4, NULL, 5, '2005-04-07 13:19:17.601068', 13, '2005-04-07 13:19:17.601068', 13, 4, NULL, NULL, NULL, '', 1, 1, true, false, true, false, false, NULL, NULL, 1, 387, NULL);8958INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (4, 5, '2005-04-07 13:19:17.601068', 13, '2005-04-07 13:19:17.601068', 13, 4, NULL, NULL, NULL, '', 1, 1, true, false, true, false, false, NULL, NULL, 1, 387, NULL);
8959INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (5, NULL, 14, '2005-04-07 13:19:17.601068', 13, '2005-04-07 13:19:17.601068', 13, 5, NULL, NULL, NULL, ' This is an example of commenttext for a multiline msgset', 1, 1, true, false, true, false, false, NULL, NULL, 1, 387, NULL);8959INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (5, 14, '2005-04-07 13:19:17.601068', 13, '2005-04-07 13:19:17.601068', 13, 5, NULL, NULL, NULL, ' This is an example of commenttext for a multiline msgset', 1, 1, true, false, true, false, false, NULL, NULL, 1, 387, NULL);
8960INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (6, NULL, 16, '2005-04-07 13:19:17.601068', 13, '2005-04-07 13:19:17.601068', 13, 8, 9, NULL, NULL, '', 1, 1, true, false, true, false, false, NULL, NULL, 1, 387, NULL);8960INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (6, 16, '2005-04-07 13:19:17.601068', 13, '2005-04-07 13:19:17.601068', 13, 8, 9, NULL, NULL, '', 1, 1, true, false, true, false, false, NULL, NULL, 1, 387, NULL);
8961INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (8, NULL, 18, '2005-04-07 13:19:17.601068', 13, '2005-04-07 13:19:17.601068', 13, 11, NULL, NULL, NULL, ' start po-group: common8961INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (8, 18, '2005-04-07 13:19:17.601068', 13, '2005-04-07 13:19:17.601068', 13, 11, NULL, NULL, NULL, ' start po-group: common
8962 start po-group: common', 1, 1, true, false, true, false, false, NULL, NULL, 1, 387, NULL);8962 start po-group: common', 1, 1, true, false, true, false, false, NULL, NULL, 1, 387, NULL);
8963INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (9, NULL, 23, '2005-04-07 13:19:17.601068', 13, '2005-04-07 13:19:17.601068', 13, 12, NULL, NULL, NULL, '', 1, 0, true, false, true, true, false, NULL, NULL, 1, 387, NULL);8963INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (9, 23, '2005-04-07 13:19:17.601068', 13, '2005-04-07 13:19:17.601068', 13, 12, NULL, NULL, NULL, '', 1, 0, true, false, true, true, false, NULL, NULL, 1, 387, NULL);
8964INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (10, NULL, 67, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 13, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);8964INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (10, 67, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 13, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
8965INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (11, NULL, 68, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 14, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);8965INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (11, 68, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 14, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
8966INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (12, NULL, 69, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 15, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);8966INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (12, 69, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 15, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
8967INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (13, NULL, 70, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 16, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);8967INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (13, 70, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 16, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
8968INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (14, NULL, 71, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 17, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);8968INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (14, 71, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 17, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
8969INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (15, NULL, 72, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 18, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);8969INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (15, 72, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 18, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
8970INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (16, NULL, 73, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 19, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);8970INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (16, 73, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 19, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
8971INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (17, NULL, 74, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 20, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);8971INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (17, 74, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 20, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
8972INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (18, NULL, 75, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 21, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);8972INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (18, 75, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 21, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
8973INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (19, NULL, 76, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 22, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);8973INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (19, 76, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 22, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
8974INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (20, NULL, 77, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 23, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);8974INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (20, 77, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 23, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
8975INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (21, NULL, 78, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 24, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);8975INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (21, 78, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 24, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
8976INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (22, NULL, 79, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 25, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);8976INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (22, 79, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 25, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
8977INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (23, NULL, 80, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 26, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);8977INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (23, 80, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 26, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
8978INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (24, NULL, 81, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 27, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);8978INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (24, 81, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 27, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
8979INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (25, NULL, 82, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 28, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);8979INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (25, 82, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 28, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
8980INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (26, NULL, 83, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 29, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);8980INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (26, 83, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 29, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
8981INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (27, NULL, 84, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 30, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);8981INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (27, 84, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 30, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
8982INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (28, NULL, 85, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 31, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);8982INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (28, 85, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 31, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
8983INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (29, NULL, 86, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 32, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);8983INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (29, 86, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 32, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
8984INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (30, NULL, 87, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 33, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);8984INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (30, 87, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 33, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
8985INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (31, NULL, 88, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 34, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);8985INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (31, 88, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 34, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
8986INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (32, NULL, 89, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 35, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);8986INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (32, 89, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 35, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
8987INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (33, NULL, 90, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 36, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);8987INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (33, 90, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 36, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
8988INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (34, NULL, 91, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 37, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);8988INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (34, 91, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 37, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
8989INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (35, NULL, 92, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 38, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);8989INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (35, 92, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 38, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
8990INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (36, NULL, 93, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 39, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);8990INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (36, 93, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 39, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
8991INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (37, NULL, 94, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 40, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);8991INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (37, 94, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 40, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
8992INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (38, NULL, 95, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 41, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);8992INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (38, 95, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 41, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
8993INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (39, NULL, 96, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 42, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);8993INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (39, 96, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 42, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
8994INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (40, NULL, 97, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 43, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);8994INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (40, 97, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 43, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
8995INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (41, NULL, 98, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 44, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);8995INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (41, 98, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 44, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
8996INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (42, NULL, 99, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 45, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);8996INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (42, 99, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 45, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
8997INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (43, NULL, 100, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 46, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);8997INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (43, 100, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 46, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
8998INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (44, NULL, 101, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 47, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);8998INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (44, 101, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 47, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
8999INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (45, NULL, 102, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 48, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);8999INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (45, 102, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 48, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
9000INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (46, NULL, 103, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 49, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);9000INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (46, 103, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 49, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
9001INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (47, NULL, 104, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 50, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);9001INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (47, 104, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 50, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
9002INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (48, NULL, 105, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 51, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);9002INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (48, 105, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 51, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
9003INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (49, NULL, 106, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 52, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);9003INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (49, 106, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 52, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
9004INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (50, NULL, 107, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 53, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);9004INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (50, 107, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 53, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
9005INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (51, NULL, 108, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 54, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);9005INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (51, 108, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 54, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
9006INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (52, NULL, 109, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 55, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);9006INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (52, 109, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 55, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
9007INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (53, NULL, 110, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 56, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);9007INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (53, 110, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 56, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
9008INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (54, NULL, 111, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 57, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);9008INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (54, 111, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 57, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
9009INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (55, NULL, 112, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 58, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);9009INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (55, 112, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 58, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
9010INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (56, NULL, 113, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 59, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);9010INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (56, 113, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 59, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
9011INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (57, NULL, 114, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 60, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);9011INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (57, 114, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 60, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
9012INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (58, NULL, 115, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 61, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);9012INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (58, 115, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 61, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
9013INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (59, NULL, 116, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 62, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);9013INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (59, 116, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 62, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
9014INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (60, NULL, 117, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 63, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);9014INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (60, 117, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 63, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
9015INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (61, NULL, 118, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 64, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);9015INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (61, 118, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 64, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
9016INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (62, NULL, 119, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 65, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);9016INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (62, 119, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 65, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
9017INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (63, NULL, 120, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 66, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);9017INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (63, 120, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 66, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
9018INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (64, NULL, 121, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 67, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);9018INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (64, 121, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 67, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
9019INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (65, NULL, 122, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 68, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);9019INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (65, 122, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 68, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
9020INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (66, NULL, 123, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 69, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);9020INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (66, 123, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 69, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
9021INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (67, NULL, 124, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 70, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);9021INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (67, 124, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 70, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
9022INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (68, NULL, 125, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 71, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);9022INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (68, 125, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 71, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
9023INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (69, NULL, 126, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 72, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);9023INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (69, 126, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 72, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
9024INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (70, NULL, 127, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 73, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);9024INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (70, 127, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 73, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
9025INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (71, NULL, 128, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 74, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);9025INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (71, 128, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 74, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
9026INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (72, NULL, 129, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 75, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);9026INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (72, 129, '2005-05-06 20:09:31.825695', 33, '2005-05-06 20:09:31.825695', 33, 75, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 360, NULL);
9027INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (73, NULL, 67, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 76, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9027INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (73, 67, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 76, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9028INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (74, NULL, 68, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 77, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9028INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (74, 68, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 77, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9029INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (75, NULL, 69, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 78, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9029INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (75, 69, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 78, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9030INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (76, NULL, 70, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 79, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9030INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (76, 70, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 79, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9031INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (77, NULL, 71, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 80, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9031INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (77, 71, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 80, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9032INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (78, NULL, 72, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 81, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9032INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (78, 72, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 81, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9033INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (79, NULL, 73, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 82, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9033INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (79, 73, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 82, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9034INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (80, NULL, 74, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 83, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9034INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (80, 74, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 83, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9035INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (81, NULL, 75, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 84, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9035INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (81, 75, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 84, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9036INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (82, NULL, 76, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 85, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9036INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (82, 76, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 85, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9037INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (83, NULL, 77, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 86, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9037INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (83, 77, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 86, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9038INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (84, NULL, 78, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 87, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9038INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (84, 78, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 87, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9039INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (85, NULL, 79, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 88, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9039INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (85, 79, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 88, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9040INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (86, NULL, 80, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 89, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9040INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (86, 80, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 89, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9041INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (87, NULL, 81, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 90, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9041INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (87, 81, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 90, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9042INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (88, NULL, 82, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 91, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9042INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (88, 82, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 91, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9043INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (89, NULL, 83, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 92, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9043INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (89, 83, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 92, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9044INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (90, NULL, 84, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 93, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9044INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (90, 84, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 93, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9045INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (91, NULL, 85, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 94, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9045INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (91, 85, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 94, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9046INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (92, NULL, 86, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 95, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9046INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (92, 86, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 95, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9047INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (93, NULL, 87, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 96, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9047INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (93, 87, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 96, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9048INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (94, NULL, 88, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 97, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9048INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (94, 88, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 97, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9049INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (95, NULL, 89, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 98, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9049INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (95, 89, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 98, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9050INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (96, NULL, 90, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 99, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9050INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (96, 90, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 99, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9051INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (97, NULL, 91, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 100, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9051INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (97, 91, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 100, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9052INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (98, NULL, 92, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 101, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9052INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (98, 92, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 101, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9053INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (99, NULL, 93, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 102, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9053INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (99, 93, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 102, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9054INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (100, NULL, 94, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 103, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9054INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (100, 94, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 103, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9055INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (101, NULL, 95, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 104, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9055INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (101, 95, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 104, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9056INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (103, NULL, 97, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 106, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9056INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (103, 97, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 106, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9057INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (104, NULL, 98, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 107, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9057INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (104, 98, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 107, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9058INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (105, NULL, 99, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 108, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9058INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (105, 99, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 108, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9059INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (106, NULL, 100, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 109, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9059INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (106, 100, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 109, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9060INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (107, NULL, 101, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 110, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9060INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (107, 101, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 110, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9061INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (108, NULL, 102, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 111, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9061INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (108, 102, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 111, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9062INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (109, NULL, 103, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 112, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9062INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (109, 103, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 112, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9063INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (110, NULL, 104, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 113, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9063INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (110, 104, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 113, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9064INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (111, NULL, 105, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 114, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9064INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (111, 105, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 114, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9065INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (112, NULL, 106, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 115, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9065INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (112, 106, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 115, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9066INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (113, NULL, 107, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 116, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9066INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (113, 107, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 116, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9067INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (114, NULL, 108, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 117, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9067INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (114, 108, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 117, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9068INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (115, NULL, 109, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 118, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9068INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (115, 109, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 118, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9069INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (116, NULL, 110, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 119, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9069INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (116, 110, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 119, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9070INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (117, NULL, 111, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 120, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9070INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (117, 111, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 120, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9071INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (118, NULL, 112, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 121, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9071INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (118, 112, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 121, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9072INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (119, NULL, 113, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 122, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9072INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (119, 113, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 122, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9073INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (120, NULL, 114, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 123, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9073INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (120, 114, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 123, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9074INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (121, NULL, 115, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 124, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9074INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (121, 115, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 124, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9075INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (122, NULL, 116, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 125, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9075INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (122, 116, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 125, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9076INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (123, NULL, 117, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 126, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9076INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (123, 117, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 126, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9077INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (124, NULL, 118, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 127, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9077INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (124, 118, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 127, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9078INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (125, NULL, 119, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 128, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9078INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (125, 119, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 128, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9079INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (126, NULL, 120, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 129, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9079INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (126, 120, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 129, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9080INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (127, NULL, 121, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 130, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9080INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (127, 121, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 130, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9081INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (128, NULL, 122, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 131, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9081INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (128, 122, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 131, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9082INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (129, NULL, 123, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 105, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9082INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (129, 123, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 105, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9083INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (130, NULL, 124, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 132, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9083INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (130, 124, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 132, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9084INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (131, NULL, 125, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 133, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9084INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (131, 125, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 133, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9085INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (132, NULL, 126, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 134, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9085INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (132, 126, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 134, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9086INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (133, NULL, 127, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 135, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9086INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (133, 127, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 135, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9087INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (134, NULL, 128, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 136, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9087INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (134, 128, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 136, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9088INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (135, NULL, 129, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 137, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);9088INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (135, 129, '2005-05-06 20:09:51.386766', 34, '2005-05-06 20:09:51.386766', 34, 137, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 68, NULL);
9089INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (136, NULL, 67, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 138, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9089INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (136, 67, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 138, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9090INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (137, NULL, 68, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 139, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9090INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (137, 68, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 139, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9091INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (138, NULL, 69, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 140, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9091INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (138, 69, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 140, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9092INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (139, NULL, 70, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 141, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9092INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (139, 70, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 141, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9093INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (140, NULL, 71, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 142, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9093INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (140, 71, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 142, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9094INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (141, NULL, 72, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 143, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9094INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (141, 72, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 143, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9095INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (142, NULL, 73, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 144, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9095INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (142, 73, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 144, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9096INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (143, NULL, 74, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 145, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9096INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (143, 74, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 145, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9097INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (144, NULL, 75, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 146, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9097INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (144, 75, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 146, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9098INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (145, NULL, 76, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 147, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9098INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (145, 76, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 147, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9099INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (146, NULL, 77, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 148, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9099INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (146, 77, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 148, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9100INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (147, NULL, 78, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 149, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9100INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (147, 78, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 149, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9101INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (148, NULL, 79, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 150, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9101INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (148, 79, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 150, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9102INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (149, NULL, 80, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 151, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9102INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (149, 80, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 151, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9103INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (150, NULL, 81, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 152, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9103INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (150, 81, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 152, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9104INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (151, NULL, 82, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 153, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9104INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (151, 82, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 153, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9105INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (152, NULL, 83, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 154, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9105INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (152, 83, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 154, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9106INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (153, NULL, 84, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 155, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9106INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (153, 84, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 155, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9107INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (154, NULL, 85, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 156, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9107INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (154, 85, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 156, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9108INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (155, NULL, 86, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 157, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9108INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (155, 86, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 157, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9109INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (156, NULL, 87, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 158, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9109INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (156, 87, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 158, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9110INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (157, NULL, 88, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 159, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9110INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (157, 88, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 159, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9111INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (158, NULL, 89, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 160, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9111INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (158, 89, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 160, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9112INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (159, NULL, 90, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 161, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9112INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (159, 90, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 161, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9113INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (160, NULL, 91, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 162, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9113INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (160, 91, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 162, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9114INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (161, NULL, 92, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 163, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9114INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (161, 92, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 163, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9115INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (162, NULL, 93, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 164, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9115INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (162, 93, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 164, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9116INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (163, NULL, 94, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 165, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9116INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (163, 94, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 165, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9117INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (164, NULL, 95, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 166, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9117INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (164, 95, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 166, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9118INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (165, NULL, 96, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 167, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9118INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (165, 96, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 167, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9119INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (166, NULL, 97, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 168, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9119INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (166, 97, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 168, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9120INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (167, NULL, 98, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 169, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9120INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (167, 98, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 169, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9121INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (168, NULL, 99, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 170, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9121INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (168, 99, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 170, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9122INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (169, NULL, 100, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 171, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9122INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (169, 100, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 171, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9123INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (170, NULL, 101, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 172, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9123INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (170, 101, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 172, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9124INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (171, NULL, 102, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 173, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9124INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (171, 102, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 173, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9125INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (172, NULL, 103, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 174, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9125INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (172, 103, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 174, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9126INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (173, NULL, 104, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 175, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9126INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (173, 104, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 175, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9127INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (174, NULL, 105, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 176, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9127INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (174, 105, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 176, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9128INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (175, NULL, 106, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 177, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9128INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (175, 106, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 177, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9129INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (176, NULL, 107, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 178, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9129INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (176, 107, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 178, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9130INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (177, NULL, 108, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 179, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9130INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (177, 108, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 179, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9131INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (178, NULL, 109, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 180, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9131INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (178, 109, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 180, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9132INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (179, NULL, 110, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 181, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9132INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (179, 110, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 181, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9133INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (180, NULL, 111, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 182, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9133INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (180, 111, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 182, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9134INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (181, NULL, 112, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 183, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9134INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (181, 112, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 183, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9135INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (182, NULL, 113, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 184, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9135INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (182, 113, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 184, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9136INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (183, NULL, 114, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 185, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9136INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (183, 114, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 185, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9137INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (184, NULL, 115, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 186, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9137INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (184, 115, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 186, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9138INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (185, NULL, 116, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 187, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9138INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (185, 116, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 187, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9139INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (186, NULL, 117, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 188, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9139INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (186, 117, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 188, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9140INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (187, NULL, 118, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 189, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9140INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (187, 118, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 189, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9141INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (188, NULL, 119, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 190, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9141INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (188, 119, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 190, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9142INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (189, NULL, 120, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 191, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9142INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (189, 120, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 191, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9143INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (190, NULL, 121, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 192, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9143INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (190, 121, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 192, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9144INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (191, NULL, 122, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 193, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9144INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (191, 122, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 193, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9145INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (192, NULL, 123, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 194, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9145INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (192, 123, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 194, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9146INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (193, NULL, 124, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 195, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9146INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (193, 124, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 195, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9147INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (194, NULL, 125, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 196, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9147INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (194, 125, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 196, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9148INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (195, NULL, 126, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 197, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9148INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (195, 126, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 197, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9149INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (196, NULL, 127, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 198, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9149INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (196, 127, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 198, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9150INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (197, NULL, 128, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 199, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9150INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (197, 128, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 199, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9151INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (198, NULL, 129, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 200, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);9151INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (198, 129, '2005-05-06 20:10:18.431259', 35, '2005-05-06 20:10:18.431259', 35, 200, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 302, NULL);
9152INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (199, NULL, 67, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 201, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);9152INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (199, 67, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 201, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);
9153INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (200, NULL, 68, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 202, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);9153INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (200, 68, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 202, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);
9154INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (201, NULL, 69, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 203, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);9154INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (201, 69, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 203, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);
9155INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (203, NULL, 71, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 205, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);9155INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (203, 71, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 205, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);
9156INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (204, NULL, 72, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 206, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);9156INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (204, 72, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 206, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);
9157INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (205, NULL, 73, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 207, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);9157INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (205, 73, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 207, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);
9158INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (206, NULL, 74, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 208, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);9158INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (206, 74, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 208, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);
9159INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (207, NULL, 75, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 209, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);9159INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (207, 75, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 209, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);
9160INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (208, NULL, 76, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 210, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);9160INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (208, 76, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 210, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);
9161INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (232, NULL, 100, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 234, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);9161INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (232, 100, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 234, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);
9162INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (233, NULL, 101, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 235, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);9162INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (233, 101, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 235, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);
9163INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (234, NULL, 102, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 236, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);9163INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (234, 102, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 236, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);
9164INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (235, NULL, 103, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 237, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);9164INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (235, 103, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 237, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);
9165INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (236, NULL, 104, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 238, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);9165INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (236, 104, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 238, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);
9166INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (237, NULL, 105, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 239, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);9166INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (237, 105, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 239, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);
9167INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (238, NULL, 106, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 240, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);9167INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (238, 106, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 240, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);
9168INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (239, NULL, 107, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 241, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);9168INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (239, 107, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 241, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);
9169INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (240, NULL, 108, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 242, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);9169INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (240, 108, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 242, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);
9170INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (241, NULL, 109, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 243, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);9170INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (241, 109, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 243, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);
9171INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (242, NULL, 110, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 244, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);9171INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (242, 110, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 244, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);
9172INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (243, NULL, 111, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 245, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);9172INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (243, 111, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 245, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);
9173INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (244, NULL, 112, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 246, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);9173INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (244, 112, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 246, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);
9174INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (245, NULL, 113, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 247, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);9174INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (245, 113, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 247, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);
9175INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (246, NULL, 114, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 248, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);9175INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (246, 114, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 248, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);
9176INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (247, NULL, 115, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 249, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);9176INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (247, 115, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 249, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);
9177INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (248, NULL, 116, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 250, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);9177INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (248, 116, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 250, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);
9178INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (249, NULL, 117, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 251, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);9178INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (249, 117, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 251, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);
9179INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (250, NULL, 118, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 252, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);9179INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (250, 118, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 252, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);
9180INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (251, NULL, 119, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 253, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);9180INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (251, 119, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 253, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);
9181INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (252, NULL, 120, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 254, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);9181INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (252, 120, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 254, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);
9182INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (253, NULL, 121, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 255, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);9182INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (253, 121, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 255, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);
9183INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (254, NULL, 122, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 256, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);9183INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (254, 122, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 256, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);
9184INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (255, NULL, 123, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 257, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);9184INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (255, 123, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 257, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);
9185INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (256, NULL, 124, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 258, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);9185INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (256, 124, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 258, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);
9186INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (257, NULL, 125, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 259, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);9186INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (257, 125, '2005-05-06 20:10:41.732277', 36, '2005-05-06 20:10:41.732277', 36, 259, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 98, NULL);
9187INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (262, NULL, 67, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 264, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9187INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (262, 67, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 264, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9188INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (263, NULL, 68, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 265, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9188INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (263, 68, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 265, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9189INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (264, NULL, 69, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 266, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9189INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (264, 69, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 266, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9190INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (265, NULL, 70, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 267, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9190INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (265, 70, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 267, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9191INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (266, NULL, 71, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 268, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9191INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (266, 71, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 268, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9192INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (267, NULL, 72, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 269, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9192INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (267, 72, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 269, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9193INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (268, NULL, 73, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 270, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9193INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (268, 73, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 270, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9194INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (269, NULL, 74, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 271, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9194INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (269, 74, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 271, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9195INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (270, NULL, 75, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 272, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9195INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (270, 75, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 272, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9196INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (271, NULL, 76, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 273, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9196INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (271, 76, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 273, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9197INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (272, NULL, 77, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 274, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9197INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (272, 77, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 274, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9198INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (273, NULL, 78, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 275, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9198INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (273, 78, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 275, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9199INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (274, NULL, 79, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 276, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9199INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (274, 79, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 276, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9200INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (275, NULL, 80, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 277, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9200INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (275, 80, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 277, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9201INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (276, NULL, 81, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 278, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9201INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (276, 81, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 278, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9202INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (277, NULL, 82, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 279, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9202INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (277, 82, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 279, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9203INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (278, NULL, 83, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 280, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9203INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (278, 83, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 280, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9204INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (279, NULL, 84, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 281, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9204INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (279, 84, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 281, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9205INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (280, NULL, 85, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 282, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9205INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (280, 85, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 282, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9206INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (281, NULL, 86, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 283, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9206INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (281, 86, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 283, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9207INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (282, NULL, 87, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 284, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9207INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (282, 87, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 284, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9208INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (283, NULL, 88, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 285, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9208INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (283, 88, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 285, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9209INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (284, NULL, 89, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 286, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9209INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (284, 89, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 286, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9210INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (285, NULL, 90, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 287, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9210INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (285, 90, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 287, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9211INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (286, NULL, 91, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 288, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9211INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (286, 91, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 288, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9212INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (287, NULL, 92, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 289, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9212INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (287, 92, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 289, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9213INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (288, NULL, 93, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 290, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9213INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (288, 93, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 290, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9214INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (289, NULL, 94, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 291, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9214INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (289, 94, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 291, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9215INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (290, NULL, 95, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 292, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9215INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (290, 95, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 292, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9216INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (291, NULL, 96, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 293, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9216INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (291, 96, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 293, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9217INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (292, NULL, 97, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 294, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9217INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (292, 97, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 294, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9218INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (293, NULL, 98, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 295, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9218INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (293, 98, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 295, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9219INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (294, NULL, 99, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 296, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9219INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (294, 99, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 296, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9220INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (295, NULL, 100, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 297, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9220INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (295, 100, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 297, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9221INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (296, NULL, 101, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 298, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9221INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (296, 101, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 298, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9222INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (297, NULL, 102, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 299, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9222INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (297, 102, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 299, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9223INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (298, NULL, 103, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 300, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9223INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (298, 103, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 300, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9224INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (299, NULL, 104, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 301, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9224INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (299, 104, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 301, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9225INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (300, NULL, 105, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 302, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9225INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (300, 105, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 302, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9226INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (301, NULL, 106, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 303, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9226INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (301, 106, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 303, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9227INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (302, NULL, 107, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 304, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9227INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (302, 107, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 304, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9228INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (303, NULL, 108, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 305, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9228INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (303, 108, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 305, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9229INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (304, NULL, 109, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 306, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9229INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (304, 109, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 306, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9230INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (305, NULL, 110, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 307, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9230INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (305, 110, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 307, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9231INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (306, NULL, 111, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 308, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9231INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (306, 111, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 308, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9232INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (307, NULL, 112, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 309, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9232INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (307, 112, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 309, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9233INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (308, NULL, 113, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 310, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9233INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (308, 113, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 310, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9234INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (309, NULL, 114, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 311, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9234INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (309, 114, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 311, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9235INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (310, NULL, 115, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 312, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9235INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (310, 115, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 312, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9236INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (311, NULL, 116, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 313, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9236INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (311, 116, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 313, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9237INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (312, NULL, 117, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 314, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9237INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (312, 117, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 314, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9238INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (313, NULL, 118, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 315, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9238INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (313, 118, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 315, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9239INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (314, NULL, 119, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 316, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9239INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (314, 119, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 316, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9240INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (315, NULL, 120, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 317, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9240INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (315, 120, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 317, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9241INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (316, NULL, 121, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 318, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9241INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (316, 121, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 318, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9242INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (317, NULL, 122, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 319, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9242INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (317, 122, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 319, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9243INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (318, NULL, 123, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 320, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9243INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (318, 123, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 320, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9244INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (319, NULL, 124, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 321, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9244INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (319, 124, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 321, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9245INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (320, NULL, 125, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 322, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9245INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (320, 125, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 322, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9246INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (321, NULL, 126, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 323, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9246INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (321, 126, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 323, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9247INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (322, NULL, 127, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 324, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9247INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (322, 127, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 324, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9248INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (323, NULL, 128, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 325, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9248INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (323, 128, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 325, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9249INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (324, NULL, 129, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 326, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);9249INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (324, 129, '2005-05-06 20:11:16.591589', 37, '2005-05-06 20:11:16.591589', 37, 326, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 560, NULL);
9250INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (325, NULL, 67, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 327, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9250INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (325, 67, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 327, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9251INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (326, NULL, 68, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 328, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9251INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (326, 68, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 328, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9252INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (327, NULL, 69, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 329, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9252INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (327, 69, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 329, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9253INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (328, NULL, 70, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 330, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9253INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (328, 70, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 330, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9254INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (329, NULL, 71, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 331, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9254INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (329, 71, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 331, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9255INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (330, NULL, 72, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 332, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9255INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (330, 72, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 332, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9256INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (331, NULL, 73, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 333, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9256INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (331, 73, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 333, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9257INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (332, NULL, 74, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 334, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9257INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (332, 74, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 334, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9258INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (333, NULL, 75, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 335, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9258INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (333, 75, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 335, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9259INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (334, NULL, 76, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 336, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9259INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (334, 76, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 336, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9260INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (335, NULL, 77, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 337, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9260INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (335, 77, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 337, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9261INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (336, NULL, 78, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 338, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9261INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (336, 78, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 338, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9262INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (337, NULL, 79, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 339, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9262INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (337, 79, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 339, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9263INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (338, NULL, 80, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 340, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9263INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (338, 80, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 340, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9264INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (339, NULL, 81, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 341, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9264INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (339, 81, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 341, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9265INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (340, NULL, 82, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 342, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9265INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (340, 82, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 342, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9266INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (341, NULL, 83, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 343, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9266INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (341, 83, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 343, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9267INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (342, NULL, 84, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 344, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9267INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (342, 84, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 344, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9268INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (343, NULL, 85, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 345, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9268INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (343, 85, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 345, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9269INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (344, NULL, 86, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 346, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9269INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (344, 86, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 346, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9270INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (345, NULL, 87, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 347, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9270INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (345, 87, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 347, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9271INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (346, NULL, 88, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 348, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9271INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (346, 88, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 348, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9272INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (347, NULL, 89, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 349, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9272INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (347, 89, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 349, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9273INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (348, NULL, 90, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 350, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9273INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (348, 90, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 350, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9274INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (349, NULL, 91, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 351, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9274INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (349, 91, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 351, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9275INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (350, NULL, 92, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 352, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9275INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (350, 92, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 352, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9276INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (351, NULL, 93, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 353, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9276INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (351, 93, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 353, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9277INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (352, NULL, 94, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 354, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9277INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (352, 94, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 354, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9278INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (353, NULL, 95, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 355, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9278INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (353, 95, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 355, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9279INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (354, NULL, 96, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 356, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9279INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (354, 96, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 356, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9280INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (355, NULL, 97, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 357, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9280INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (355, 97, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 357, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9281INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (356, NULL, 98, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 358, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9281INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (356, 98, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 358, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9282INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (357, NULL, 99, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 359, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9282INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (357, 99, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 359, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9283INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (358, NULL, 100, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 360, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9283INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (358, 100, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 360, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9284INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (359, NULL, 101, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 361, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9284INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (359, 101, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 361, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9285INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (360, NULL, 102, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 362, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9285INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (360, 102, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 362, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9286INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (361, NULL, 103, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 363, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9286INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (361, 103, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 363, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9287INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (362, NULL, 104, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 364, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9287INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (362, 104, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 364, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9288INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (363, NULL, 105, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 365, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9288INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (363, 105, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 365, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9289INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (364, NULL, 106, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 366, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9289INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (364, 106, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 366, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9290INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (365, NULL, 107, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 367, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9290INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (365, 107, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 367, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9291INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (366, NULL, 108, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 368, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9291INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (366, 108, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 368, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9292INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (367, NULL, 109, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 369, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9292INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (367, 109, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 369, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9293INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (368, NULL, 110, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 370, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9293INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (368, 110, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 370, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9294INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (369, NULL, 111, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 371, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9294INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (369, 111, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 371, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9295INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (370, NULL, 112, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 372, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9295INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (370, 112, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 372, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9296INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (371, NULL, 113, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 373, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9296INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (371, 113, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 373, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9297INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (372, NULL, 114, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 374, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9297INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (372, 114, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 374, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9298INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (373, NULL, 115, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 375, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9298INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (373, 115, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 375, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9299INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (374, NULL, 116, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 376, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9299INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (374, 116, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 376, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9300INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (375, NULL, 117, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 377, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9300INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (375, 117, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 377, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9301INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (376, NULL, 118, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 378, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9301INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (376, 118, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 378, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9302INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (377, NULL, 119, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 379, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9302INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (377, 119, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 379, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9303INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (378, NULL, 120, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 380, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9303INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (378, 120, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 380, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9304INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (379, NULL, 121, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 381, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9304INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (379, 121, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 381, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9305INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (380, NULL, 122, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 382, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9305INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (380, 122, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 382, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9306INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (381, NULL, 123, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 383, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9306INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (381, 123, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 383, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9307INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (382, NULL, 124, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 384, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9307INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (382, 124, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 384, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9308INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (383, NULL, 125, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 385, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9308INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (383, 125, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 385, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9309INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (384, NULL, 126, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 386, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9309INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (384, 126, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 386, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9310INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (385, NULL, 127, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 387, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9310INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (385, 127, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 387, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9311INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (386, NULL, 128, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 388, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9311INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (386, 128, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 388, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9312INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (387, NULL, 129, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 389, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);9312INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (387, 129, '2005-05-06 20:11:41.773683', 38, '2005-05-06 20:11:41.773683', 38, 389, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 143, NULL);
9313INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (388, NULL, 67, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 390, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);9313INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (388, 67, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 390, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);
9314INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (389, NULL, 68, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 391, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);9314INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (389, 68, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 391, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);
9315INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (390, NULL, 69, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 392, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);9315INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (390, 69, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 392, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);
9316INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (391, NULL, 70, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 393, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);9316INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (391, 70, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 393, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);
9317INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (392, NULL, 71, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 394, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);9317INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (392, 71, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 394, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);
9318INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (393, NULL, 72, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 395, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);9318INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (393, 72, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 395, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);
9319INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (394, NULL, 73, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 396, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);9319INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (394, 73, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 396, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);
9320INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (395, NULL, 74, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 397, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);9320INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (395, 74, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 397, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);
9321INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (396, NULL, 75, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 398, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);9321INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (396, 75, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 398, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);
9322INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (397, NULL, 76, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 399, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);9322INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (397, 76, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 399, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);
9323INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (398, NULL, 77, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 400, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);9323INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (398, 77, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 400, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);
9324INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (399, NULL, 78, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 401, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);9324INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (399, 78, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 401, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);
9325INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (400, NULL, 79, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 402, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);9325INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (400, 79, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 402, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);
9326INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (401, NULL, 80, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 403, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);9326INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (401, 80, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 403, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);
9327INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (402, NULL, 81, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 404, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);9327INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (402, 81, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 404, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);
9328INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (403, NULL, 82, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 405, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);9328INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (403, 82, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 405, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);
9329INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (404, NULL, 83, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 406, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);9329INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (404, 83, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 406, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);
9330INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (405, NULL, 84, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 407, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);9330INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (405, 84, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 407, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);
9331INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (406, NULL, 85, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 408, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);9331INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (406, 85, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 408, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);
9332INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (407, NULL, 86, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 409, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);9332INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (407, 86, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 409, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);
9333INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (408, NULL, 87, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 410, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);9333INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (408, 87, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 410, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);
9334INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (409, NULL, 88, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 411, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);9334INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (409, 88, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 411, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);
9335INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (410, NULL, 89, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 412, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);9335INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (410, 89, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 412, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);
9336INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (411, NULL, 90, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 413, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);9336INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (411, 90, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 413, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);
9337INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (412, NULL, 91, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 414, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);9337INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (412, 91, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 414, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);
9338INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (413, NULL, 92, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 415, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);9338INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (413, 92, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 415, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);
9339INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (414, NULL, 93, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 416, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);9339INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (414, 93, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 416, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);
9340INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (415, NULL, 94, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 417, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);9340INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (415, 94, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 417, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);
9341INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (416, NULL, 95, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 418, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);9341INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (416, 95, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 418, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);
9342INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (417, NULL, 96, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 419, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);9342INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (417, 96, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 419, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);
9343INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (418, NULL, 97, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 420, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);9343INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (418, 97, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 420, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);
9344INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (419, NULL, 98, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 421, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);9344INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (419, 98, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 421, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);
9345INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (420, NULL, 99, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 422, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);9345INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (420, 99, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 422, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);
9346INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (421, NULL, 100, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 423, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);9346INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (421, 100, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 423, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);
9347INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (422, NULL, 101, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 424, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);9347INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (422, 101, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 424, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);
9348INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (423, NULL, 102, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 425, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);9348INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (423, 102, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 425, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);
9349INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (424, NULL, 103, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 426, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);9349INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (424, 103, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 426, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);
9350INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (425, NULL, 104, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 427, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);9350INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (425, 104, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 427, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);
9351INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (426, NULL, 105, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 428, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);9351INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (426, 105, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 428, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);
9352INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (427, NULL, 106, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 429, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);9352INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (427, 106, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 429, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);
9353INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (428, NULL, 107, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 430, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);9353INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (428, 107, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 430, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);
9354INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (429, NULL, 108, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 431, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);9354INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (429, 108, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 431, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);
9355INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (431, NULL, 110, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 433, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);9355INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (431, 110, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 433, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);
9356INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (432, NULL, 111, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 434, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);9356INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (432, 111, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 434, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);
9357INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (433, NULL, 112, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 435, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);9357INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (433, 112, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 435, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);
9358INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (434, NULL, 113, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 436, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);9358INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (434, 113, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 436, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);
9359INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (435, NULL, 114, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 437, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);9359INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (435, 114, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 437, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);
9360INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (436, NULL, 115, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 438, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);9360INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (436, 115, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 438, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);
9361INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (437, NULL, 116, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 439, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);9361INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (437, 116, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 439, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);
9362INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (438, NULL, 117, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 440, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);9362INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (438, 117, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 440, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);
9363INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (439, NULL, 118, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 441, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);9363INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (439, 118, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 441, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);
9364INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (440, NULL, 119, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 442, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);9364INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (440, 119, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 442, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);
9365INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (441, NULL, 120, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 443, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);9365INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (441, 120, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 443, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);
9366INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (443, NULL, 122, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 445, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);9366INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (443, 122, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 445, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);
9367INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (444, NULL, 123, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 446, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);9367INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (444, 123, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 446, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);
9368INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (445, NULL, 124, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 447, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);9368INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (445, 124, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 447, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);
9369INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (446, NULL, 125, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 448, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);9369INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (446, 125, '2005-05-06 20:12:08.283113', 39, '2005-05-06 20:12:08.283113', 39, 448, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 132, NULL);
9370INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (451, NULL, 67, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 453, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);9370INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (451, 67, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 453, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);
9371INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (452, NULL, 68, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 454, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);9371INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (452, 68, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 454, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);
9372INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (453, NULL, 69, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 455, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);9372INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (453, 69, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 455, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);
9373INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (454, NULL, 70, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 456, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);9373INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (454, 70, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 456, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);
9374INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (455, NULL, 71, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 457, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);9374INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (455, 71, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 457, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);
9375INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (456, NULL, 72, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 458, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);9375INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (456, 72, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 458, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);
9376INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (457, NULL, 73, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 459, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);9376INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (457, 73, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 459, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);
9377INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (458, NULL, 74, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 460, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);9377INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (458, 74, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 460, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);
9378INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (459, NULL, 75, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 461, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);9378INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (459, 75, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 461, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);
9379INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (460, NULL, 77, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 462, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);9379INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (460, 77, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 462, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);
9380INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (461, NULL, 78, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 463, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);9380INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (461, 78, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 463, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);
9381INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (462, NULL, 79, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 464, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);9381INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (462, 79, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 464, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);
9382INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (463, NULL, 80, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 465, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);9382INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (463, 80, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 465, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);
9383INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (464, NULL, 83, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 466, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);9383INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (464, 83, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 466, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);
9384INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (465, NULL, 87, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 467, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);9384INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (465, 87, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 467, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);
9385INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (466, NULL, 88, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 468, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);9385INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (466, 88, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 468, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);
9386INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (467, NULL, 89, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 469, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);9386INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (467, 89, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 469, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);
9387INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (468, NULL, 90, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 470, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);9387INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (468, 90, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 470, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);
9388INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (469, NULL, 91, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 471, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);9388INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (469, 91, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 471, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);
9389INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (470, NULL, 92, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 472, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);9389INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (470, 92, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 472, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);
9390INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (471, NULL, 94, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 473, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);9390INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (471, 94, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 473, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);
9391INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (472, NULL, 95, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 474, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);9391INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (472, 95, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 474, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);
9392INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (473, NULL, 96, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 475, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);9392INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (473, 96, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 475, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);
9393INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (474, NULL, 97, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 476, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);9393INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (474, 97, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 476, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);
9394INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (475, NULL, 98, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 477, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);9394INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (475, 98, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 477, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);
9395INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (476, NULL, 99, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 478, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);9395INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (476, 99, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 478, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);
9396INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (477, NULL, 100, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 479, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);9396INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (477, 100, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 479, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);
9397INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (478, NULL, 101, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 480, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);9397INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (478, 101, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 480, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);
9398INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (479, NULL, 102, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 481, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);9398INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (479, 102, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 481, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);
9399INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (480, NULL, 103, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 482, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);9399INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (480, 103, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 482, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);
9400INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (481, NULL, 104, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 483, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);9400INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (481, 104, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 483, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);
9401INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (482, NULL, 106, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 484, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);9401INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (482, 106, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 484, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);
9402INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (483, NULL, 107, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 485, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);9402INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (483, 107, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 485, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);
9403INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (484, NULL, 108, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 486, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);9403INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (484, 108, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 486, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);
9404INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (485, NULL, 109, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 487, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);9404INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (485, 109, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 487, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);
9405INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (486, NULL, 110, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 488, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);9405INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (486, 110, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 488, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);
9406INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (487, NULL, 111, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 489, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);9406INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (487, 111, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 489, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);
9407INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (488, NULL, 112, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 490, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);9407INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (488, 112, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 490, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);
9408INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (489, NULL, 113, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 491, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);9408INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (489, 113, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 491, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);
9409INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (490, NULL, 114, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 492, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);9409INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (490, 114, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 492, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);
9410INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (491, NULL, 115, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 493, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);9410INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (491, 115, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 493, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);
9411INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (492, NULL, 116, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 494, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);9411INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (492, 116, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 494, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);
9412INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (493, NULL, 118, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 495, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);9412INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (493, 118, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 495, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);
9413INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (494, NULL, 119, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 496, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);9413INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (494, 119, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 496, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);
9414INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (495, NULL, 120, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 497, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);9414INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (495, 120, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 497, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);
9415INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (496, NULL, 122, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 498, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);9415INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (496, 122, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 498, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);
9416INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (497, NULL, 123, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 499, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);9416INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (497, 123, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 499, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);
9417INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (498, NULL, 124, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 500, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);9417INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (498, 124, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 500, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);
9418INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (499, NULL, 125, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 501, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);9418INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (499, 125, '2005-05-06 20:12:35.976807', 40, '2005-05-06 20:12:35.976807', 40, 501, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 527, NULL);
9419INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (500, NULL, 67, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 264, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);9419INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (500, 67, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 264, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);
9420INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (501, NULL, 68, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 265, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);9420INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (501, 68, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 265, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);
9421INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (502, NULL, 69, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 266, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);9421INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (502, 69, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 266, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);
9422INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (503, NULL, 70, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 267, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);9422INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (503, 70, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 267, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);
9423INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (504, NULL, 71, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 268, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);9423INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (504, 71, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 268, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);
9424INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (505, NULL, 72, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 269, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);9424INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (505, 72, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 269, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);
9425INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (506, NULL, 73, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 270, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);9425INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (506, 73, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 270, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);
9426INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (507, NULL, 74, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 271, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);9426INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (507, 74, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 271, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);
9427INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (508, NULL, 75, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 272, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);9427INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (508, 75, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 272, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);
9428INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (510, NULL, 77, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 274, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);9428INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (510, 77, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 274, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);
9429INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (511, NULL, 78, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 275, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);9429INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (511, 78, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 275, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);
9430INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (512, NULL, 79, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 276, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);9430INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (512, 79, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 276, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);
9431INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (513, NULL, 80, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 277, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);9431INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (513, 80, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 277, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);
9432INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (515, NULL, 82, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 279, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);9432INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (515, 82, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 279, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);
9433INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (516, NULL, 83, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 280, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);9433INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (516, 83, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 280, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);
9434INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (517, NULL, 84, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 281, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);9434INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (517, 84, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 281, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);
9435INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (518, NULL, 85, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 282, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);9435INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (518, 85, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 282, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);
9436INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (519, NULL, 86, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 283, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);9436INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (519, 86, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 283, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);
9437INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (520, NULL, 87, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 284, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);9437INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (520, 87, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 284, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);
9438INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (521, NULL, 88, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 503, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);9438INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (521, 88, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 503, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);
9439INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (522, NULL, 89, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 504, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);9439INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (522, 89, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 504, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);
9440INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (523, NULL, 90, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 505, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);9440INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (523, 90, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 505, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);
9441INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (524, NULL, 91, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 506, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);9441INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (524, 91, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 506, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);
9442INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (525, NULL, 92, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 507, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);9442INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (525, 92, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 507, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);
9443INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (527, NULL, 95, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 292, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);9443INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (527, 95, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 292, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);
9444INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (528, NULL, 96, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 509, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);9444INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (528, 96, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 509, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);
9445INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (529, NULL, 97, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 294, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);9445INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (529, 97, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 294, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);
9446INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (530, NULL, 98, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 295, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);9446INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (530, 98, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 295, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);
9447INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (531, NULL, 99, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 510, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);9447INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (531, 99, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 510, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);
9448INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (532, NULL, 100, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 511, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);9448INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (532, 100, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 511, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);
9449INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (533, NULL, 101, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 512, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);9449INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (533, 101, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 512, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);
9450INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (534, NULL, 102, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 513, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);9450INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (534, 102, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 513, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);
9451INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (535, NULL, 103, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 514, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);9451INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (535, 103, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 514, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);
9452INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (536, NULL, 104, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 515, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);9452INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (536, 104, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 515, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);
9453INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (537, NULL, 105, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 516, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);9453INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (537, 105, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 516, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);
9454INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (538, NULL, 106, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 517, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);9454INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (538, 106, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 517, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);
9455INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (539, NULL, 107, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 304, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);9455INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (539, 107, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 304, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);
9456INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (540, NULL, 108, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 518, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);9456INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (540, 108, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 518, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);
9457INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (541, NULL, 109, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 519, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);9457INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (541, 109, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 519, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);
9458INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (542, NULL, 110, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 307, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);9458INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (542, 110, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 307, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);
9459INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (543, NULL, 111, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 520, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);9459INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (543, 111, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 520, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);
9460INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (544, NULL, 112, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 521, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);9460INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (544, 112, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 521, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);
9461INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (545, NULL, 113, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 522, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);9461INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (545, 113, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 522, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);
9462INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (546, NULL, 114, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 523, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);9462INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (546, 114, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 523, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);
9463INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (547, NULL, 115, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 524, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);9463INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (547, 115, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 524, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);
9464INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (548, NULL, 116, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 525, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);9464INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (548, 116, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 525, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);
9465INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (549, NULL, 117, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 526, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);9465INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (549, 117, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 526, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);
9466INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (550, NULL, 118, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 527, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);9466INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (550, 118, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 527, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);
9467INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (551, NULL, 119, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 528, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);9467INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (551, 119, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 528, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);
9468INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (552, NULL, 120, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 529, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);9468INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (552, 120, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 529, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);
9469INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (554, NULL, 122, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 319, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);9469INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (554, 122, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 319, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);
9470INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (555, NULL, 123, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 531, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);9470INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (555, 123, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 531, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);
9471INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (556, NULL, 124, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 321, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);9471INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (556, 124, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 321, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);
9472INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (557, NULL, 125, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 322, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);9472INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (557, 125, '2005-05-06 20:13:10.405056', 41, '2005-05-06 20:13:10.405056', 41, 322, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 2, 387, NULL);
9473INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (562, NULL, 130, '2005-05-06 21:12:13.908028', 13, '2005-05-06 21:12:13.908028', 13, 1, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 4, 387, NULL);9473INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (562, 130, '2005-05-06 21:12:13.908028', 13, '2005-05-06 21:12:13.908028', 13, 1, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 4, 387, NULL);
9474INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (563, NULL, 131, '2005-05-06 21:12:13.908028', 13, '2005-05-06 21:12:13.908028', 13, 2, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 4, 387, NULL);9474INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (563, 131, '2005-05-06 21:12:13.908028', 13, '2005-05-06 21:12:13.908028', 13, 2, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 4, 387, NULL);
9475INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (565, NULL, 143, '2005-05-06 21:12:13.908028', 13, '2005-05-06 21:12:13.908028', 13, 5, NULL, NULL, NULL, ' This is an example of commenttext for a multiline msgset', 1, 0, true, false, true, false, false, NULL, NULL, 4, 387, NULL);9475INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (565, 143, '2005-05-06 21:12:13.908028', 13, '2005-05-06 21:12:13.908028', 13, 5, NULL, NULL, NULL, ' This is an example of commenttext for a multiline msgset', 1, 0, true, false, true, false, false, NULL, NULL, 4, 387, NULL);
9476INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (566, NULL, 144, '2005-05-06 21:12:13.908028', 13, '2005-05-06 21:12:13.908028', 13, 6, 7, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 4, 387, NULL);9476INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (566, 144, '2005-05-06 21:12:13.908028', 13, '2005-05-06 21:12:13.908028', 13, 6, 7, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 4, 387, NULL);
9477INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (567, NULL, 145, '2005-05-06 21:12:13.908028', 13, '2005-05-06 21:12:13.908028', 13, 8, 9, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 4, 387, NULL);9477INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (567, 145, '2005-05-06 21:12:13.908028', 13, '2005-05-06 21:12:13.908028', 13, 8, 9, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 4, 387, NULL);
9478INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (569, NULL, 147, '2005-05-06 21:12:13.908028', 13, '2005-05-06 21:12:13.908028', 13, 11, NULL, NULL, NULL, ' start po-group: common9478INSERT INTO translationmessage (id, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (569, 147, '2005-05-06 21:12:13.908028', 13, '2005-05-06 21:12:13.908028', 13, 11, NULL, NULL, NULL, ' start po-group: common
9479 start po-group: common', 1, 0, true, false, true, false, false, NULL, NULL, 4, 387, NULL);9479 start po-group: common', 1, 0, true, false, true, false, false, NULL, NULL, 4, 387, NULL);
9480INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (570, NULL, 161, '2005-05-06 21:12:13.908028', 13, '2005-05-06 21:12:13.908028', 13, 12, NULL, NULL, NULL, '', 1, 0, true, false, true, true, false, NULL, NULL, 4, 387, NULL);
9481INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (571, NULL, 152, '2005-05-06 21:12:18.833057', 42, '2005-05-06 21:12:18.833057', 42, 536, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 5, 132, NULL);
9482INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (572, NULL, 153, '2005-05-06 21:12:18.833057', 42, '2005-05-06 21:12:18.833057', 42, 537, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 5, 132, NULL);
9483INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (573, NULL, 154, '2005-05-06 21:12:18.833057', 42, '2005-05-06 21:12:18.833057', 42, 538, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 5, 132, NULL);
9484INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (574, NULL, 155, '2005-05-06 21:12:18.833057', 42, '2005-05-06 21:12:18.833057', 42, 539, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 5, 132, NULL);
9485INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (575, NULL, 156, '2005-05-06 21:12:18.833057', 42, '2005-05-06 21:12:18.833057', 42, 540, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 5, 132, NULL);
9486INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (576, NULL, 157, '2005-05-06 21:12:18.833057', 42, '2005-05-06 21:12:18.833057', 42, 541, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 5, 132, NULL);
9487INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (577, NULL, 158, '2005-05-06 21:12:18.833057', 42, '2005-05-06 21:12:18.833057', 42, 542, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 5, 132, NULL);
9488INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (578, NULL, 159, '2005-05-06 21:12:18.833057', 42, '2005-05-06 21:12:18.833057', 42, 543, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 5, 132, NULL);
9489INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (579, NULL, 160, '2005-05-06 21:12:18.833057', 42, '2005-05-06 21:12:18.833057', 42, 544, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 5, 132, NULL);
9490INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (580, NULL, 152, '2005-05-06 21:12:20.874654', 43, '2005-05-06 21:12:20.874654', 43, 545, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 5, 521, NULL);
9491INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (581, NULL, 153, '2005-05-06 21:12:20.874654', 43, '2005-05-06 21:12:20.874654', 43, 546, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 5, 521, NULL);
9492INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (582, NULL, 154, '2005-05-06 21:12:20.874654', 43, '2005-05-06 21:12:20.874654', 43, 547, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 5, 521, NULL);
9493INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_current, is_fuzzy, is_imported, was_obsolete_in_last_import, was_fuzzy_in_last_import, msgstr4, msgstr5, potemplate, language, variant) VALUES (583, NULL, 155, '2005-05-06 21:12:20.874654', 43, '2005-05-06 21:12:20.874654', 43, 548, NULL, NULL, NULL, '', 1, 0, true, false, true, false, false, NULL, NULL, 5, 521, NULL);
9494INSERT INTO translationmessage (id, pofile, potmsgset, date_created, submitter, date_reviewed, reviewer, msgstr0, msgstr1, msgstr2, msgstr3, comment, origin, validation_status, is_cu

Subscribers

People subscribed via source and target branches

to status/vote changes: