[kune-commits] r950 - in trunk/src/main: java/org/ourproject/kune/docs/client/ctx/admin java/org/ourproject/kune/platf/client/dto java/org/ourproject/kune/platf/server/domain java/org/ourproject/kune/platf/server/init java/org/ourproject/kune/workspace/client/editor java/org/ourproject/kune/workspace/client/title resources/db

vjrj vjrj at ourproject.org
Wed Nov 12 05:32:17 CET 2008


Author: vjrj
Date: 2008-11-12 05:32:06 +0100 (Wed, 12 Nov 2008)
New Revision: 950

Added:
   trunk/src/main/resources/db/lang-dateformat.txt
   trunk/src/main/resources/db/lang-dateformatshort.txt
   trunk/src/main/resources/db/update-0012-i18n.sql
   trunk/src/main/resources/db/update-0013-i18n.sql
Removed:
   trunk/src/main/resources/db/init-data.sql
Modified:
   trunk/src/main/java/org/ourproject/kune/docs/client/ctx/admin/DocContextPropEditorPanel.java
   trunk/src/main/java/org/ourproject/kune/docs/client/ctx/admin/DocContextPropEditorPresenter.java
   trunk/src/main/java/org/ourproject/kune/docs/client/ctx/admin/DocContextPropEditorView.java
   trunk/src/main/java/org/ourproject/kune/platf/client/dto/I18nCountryDTO.java
   trunk/src/main/java/org/ourproject/kune/platf/client/dto/I18nLanguageDTO.java
   trunk/src/main/java/org/ourproject/kune/platf/server/domain/I18nCountry.java
   trunk/src/main/java/org/ourproject/kune/platf/server/domain/I18nLanguage.java
   trunk/src/main/java/org/ourproject/kune/platf/server/init/DatabaseInitializer.java
   trunk/src/main/java/org/ourproject/kune/workspace/client/editor/TextEditorPresenter.java
   trunk/src/main/java/org/ourproject/kune/workspace/client/title/EntityTitlePresenter.java
   trunk/src/main/resources/db/init-data-languages.sql
   trunk/src/main/resources/db/liquibase_changelog.xml
   trunk/src/main/resources/db/update-0008-i18n.sql
Log:
Complete - task Per language Date format

Doc Editor Cancel bug fix (regression)

Drop kune_dev database recommended

Modified: trunk/src/main/java/org/ourproject/kune/docs/client/ctx/admin/DocContextPropEditorPanel.java
===================================================================
--- trunk/src/main/java/org/ourproject/kune/docs/client/ctx/admin/DocContextPropEditorPanel.java	2008-11-11 13:33:36 UTC (rev 949)
+++ trunk/src/main/java/org/ourproject/kune/docs/client/ctx/admin/DocContextPropEditorPanel.java	2008-11-12 04:32:06 UTC (rev 950)
@@ -36,6 +36,7 @@
 import com.google.gwt.user.client.ui.VerticalPanel;
 import com.gwtext.client.data.Record;
 import com.gwtext.client.widgets.form.ComboBox;
+import com.gwtext.client.widgets.form.DateField;
 import com.gwtext.client.widgets.form.Field;
 import com.gwtext.client.widgets.form.FormPanel;
 import com.gwtext.client.widgets.form.TextArea;
@@ -46,16 +47,19 @@
 
     private static final int FORMS_WIDTH = 150;
     public static final String TAGS_PROP = "k-dcpep-tagsp-dis";
-    public static final String LANG_PROP = "k-dcpep-tagsp-dis";
+    public static final String LANG_PROP = "k-dcpep-langsp-dis";
+    public static final String PUBLI_PROP = "k-dcpep-publisp-dis";
 
     private final DocContextPropEditorPresenter presenter;
     private final WorkspaceSkeleton ws;
     private final I18nTranslationService i18n;
-    private TextArea tagsField;
-    private ContextPropertyPanel tagsComponent;
     private final Provider<LanguageSelector> langSelectorProv;
-    private ContextPropertyPanel langComponent;
     private final VerticalPanel vp;
+    private ContextPropertyPanel tagsComponent;
+    private ContextPropertyPanel langComponent;
+    private ContextPropertyPanel publishedOnComponent;
+    private TextArea tagsField;
+    private DateField publishedOnField;
 
     public DocContextPropEditorPanel(final DocContextPropEditorPresenter presenter, final I18nTranslationService i18n,
             WorkspaceSkeleton ws, Provider<LanguageSelector> langSelectorProv) {
@@ -67,10 +71,7 @@
         vp = new VerticalPanel();
         super.add(vp);
         // authors_item = i18n.t("Authors");
-        // publication_item = i18n.t("Publication");
         // perms_item = i18n.t("Permissions");
-        // language_item = i18n.t("Language");
-        // tags_item = i18n.t("Tags");
     }
 
     public void attach() {
@@ -104,9 +105,9 @@
     }
 
     public void removePublishedOnComponent() {
-        // if (options.containsItem(publication_item)) {
-        // removeComponent(publication_item);
-        // }
+        if (publishedOnComponent != null) {
+            publishedOnComponent.removeFromParent();
+        }
     }
 
     public void removeTagsComponent() {
@@ -179,15 +180,13 @@
         langSelectorProv.get().setLanguage(language);
     }
 
-    public void setPublishedOn(final Date publishedOn) {
-        // if (publishedOnField == null) {
-        // publishedOnComponent = createPublicationComponent();
-        // }
-        // if (!options.containsItem(publication_item)) {
-        // addComponent(publication_item, i18n.t("Date of publication of this
-        // work"), publishedOnComponent);
-        // }
-        // // publishedOnField.setValue(publishedOn);
+    public void setPublishedOn(final Date publishedOn, String dateFormat) {
+        if (publishedOnField == null) {
+            publishedOnComponent = createPublicationComponent();
+        }
+        addComponent(publishedOnComponent);
+        publishedOnField.setValue(publishedOn);
+        publishedOnField.setFormat(dateFormat);
     }
 
     public void setTags(final String tags) {
@@ -210,27 +209,22 @@
         return form;
     }
 
-    // private VerticalPanel createPublicationComponent() {
-    // // final FormPanel form = createDefaultForm();
-    // //
-    // // publishedOnField = new DateField();
-    // // publishedOnField.setWidth("140");
-    // // publishedOnField.setFormat("Y-m-d");
-    // //
-    // // publishedOnField.addListener(new FieldListenerAdapter() {
-    // // public void onChange(final Field field, final Object newVal, final
-    // // Object oldVal) {
-    // // presenter.setPublishedOn((Date) newVal);
-    // // }
-    // // });
-    // //
-    // // form.add(publishedOnField);
-    // //
-    // // final VerticalPanel vp = new VerticalPanel();
-    // // vp.add(form);
-    // // return vp;
-    // //// }
-    //
+    private ContextPropertyPanel createPublicationComponent() {
+        final FormPanel form = createDefaultForm();
+
+        publishedOnField = new DateField();
+        publishedOnField.setWidth("140");
+
+        publishedOnField.addListener(new FieldListenerAdapter() {
+            @Override
+            public void onChange(final Field field, final Object newVal, final Object oldVal) {
+                presenter.setPublishedOn((Date) newVal);
+            }
+        });
+        form.add(publishedOnField);
+        return new ContextPropertyPanel(i18n.t("Publication"), i18n.t("Date of publication"), true, PUBLI_PROP, form);
+    }
+
     private ContextPropertyPanel createTagsComponent() {
         final FormPanel form = createDefaultForm();
         tagsField = new TextArea();
@@ -243,9 +237,8 @@
             }
         });
         form.add(tagsField);
-        ContextPropertyPanel propertyPanel = new ContextPropertyPanel(i18n.t("Tags"),
-                i18n.t("Keywords or terms associated with this work"), true, TAGS_PROP, form);
-        return propertyPanel;
+        return new ContextPropertyPanel(i18n.t("Tags"), i18n.t("Keywords or terms associated with this work"), true,
+                TAGS_PROP, form);
     }
 
     // private void removeComponent(final String header) {

Modified: trunk/src/main/java/org/ourproject/kune/docs/client/ctx/admin/DocContextPropEditorPresenter.java
===================================================================
--- trunk/src/main/java/org/ourproject/kune/docs/client/ctx/admin/DocContextPropEditorPresenter.java	2008-11-11 13:33:36 UTC (rev 949)
+++ trunk/src/main/java/org/ourproject/kune/docs/client/ctx/admin/DocContextPropEditorPresenter.java	2008-11-12 04:32:06 UTC (rev 950)
@@ -134,23 +134,35 @@
         final String tags = content.getTags();
         final List<UserSimpleDTO> authors = content.getAuthors();
 
+        if (language != null) {
+            view.setLanguage(language);
+        } else {
+            view.removeLangComponent();
+        }
         if (tags != null) {
             view.setTags(tags);
         } else {
             view.removeTagsComponent();
         }
-        if (language != null) {
-            view.setLanguage(language);
-        } else {
-            view.removeLangComponent();
-        }
         if (authors != null) {
             view.setAuthors(authors);
         } else {
             view.removeAuthorsComponent();
         }
         if (publishedOn != null) {
-            view.setPublishedOn(publishedOn);
+            String dateFormat = session.getCurrentLanguage().getDateFormatShort();
+            if (dateFormat != null) {
+                dateFormat = dateFormat.replace("yyyy", "Y");
+                dateFormat = dateFormat.replace("yy", "y");
+                dateFormat = dateFormat.replace("MM", "m");
+                dateFormat = dateFormat.replace("M", "n");
+                dateFormat = dateFormat.replace("dd", "xxx");
+                dateFormat = dateFormat.replace("d", "j");
+                dateFormat = dateFormat.replace("xxx", "d");
+                view.setPublishedOn(publishedOn, dateFormat);
+            } else {
+                view.setPublishedOn(publishedOn, "M/d/yy def");
+            }
         } else {
             view.removePublishedOnComponent();
         }

Modified: trunk/src/main/java/org/ourproject/kune/docs/client/ctx/admin/DocContextPropEditorView.java
===================================================================
--- trunk/src/main/java/org/ourproject/kune/docs/client/ctx/admin/DocContextPropEditorView.java	2008-11-11 13:33:36 UTC (rev 949)
+++ trunk/src/main/java/org/ourproject/kune/docs/client/ctx/admin/DocContextPropEditorView.java	2008-11-12 04:32:06 UTC (rev 950)
@@ -51,7 +51,7 @@
 
     void setLanguage(I18nLanguageDTO language);
 
-    void setPublishedOn(Date publishedOn);
+    void setPublishedOn(Date publishedOn, String dateFormat);
 
     void setTags(String tags);
 

Modified: trunk/src/main/java/org/ourproject/kune/platf/client/dto/I18nCountryDTO.java
===================================================================
--- trunk/src/main/java/org/ourproject/kune/platf/client/dto/I18nCountryDTO.java	2008-11-11 13:33:36 UTC (rev 949)
+++ trunk/src/main/java/org/ourproject/kune/platf/client/dto/I18nCountryDTO.java	2008-11-12 04:32:06 UTC (rev 950)
@@ -25,19 +25,28 @@
 
     private String code;
     private String englishName;
+    private String dateFormat;
 
     public String getCode() {
         return code;
     }
 
-    public void setCode(final String code) {
-        this.code = code;
+    public String getDateFormat() {
+        return dateFormat;
     }
 
     public String getEnglishName() {
         return englishName;
     }
 
+    public void setCode(final String code) {
+        this.code = code;
+    }
+
+    public void setDateFormat(String dateFormat) {
+        this.dateFormat = dateFormat;
+    }
+
     public void setEnglishName(final String englishName) {
         this.englishName = englishName;
     }

Modified: trunk/src/main/java/org/ourproject/kune/platf/client/dto/I18nLanguageDTO.java
===================================================================
--- trunk/src/main/java/org/ourproject/kune/platf/client/dto/I18nLanguageDTO.java	2008-11-11 13:33:36 UTC (rev 949)
+++ trunk/src/main/java/org/ourproject/kune/platf/client/dto/I18nLanguageDTO.java	2008-11-12 04:32:06 UTC (rev 950)
@@ -28,11 +28,25 @@
     private String nativeName;
     private String direction;
     private String pluralization;
+    private String dateFormat;
+    private String dateFormatShort;
 
     public String getCode() {
         return code;
     }
 
+    public String getDateFormat() {
+        return dateFormat;
+    }
+
+    public String getDateFormatShort() {
+        return dateFormatShort;
+    }
+
+    public String getDirection() {
+        return direction;
+    }
+
     public String getEnglishName() {
         return englishName;
     }
@@ -41,10 +55,6 @@
         return nativeName;
     }
 
-    public String getDirection() {
-        return direction;
-    }
-
     public String getPluralization() {
         return pluralization;
     }
@@ -53,6 +63,18 @@
         this.code = code;
     }
 
+    public void setDateFormat(String dateFormat) {
+        this.dateFormat = dateFormat;
+    }
+
+    public void setDateFormatShort(String dateFormatShort) {
+        this.dateFormatShort = dateFormatShort;
+    }
+
+    public void setDirection(final String direction) {
+        this.direction = direction;
+    }
+
     public void setEnglishName(final String englishName) {
         this.englishName = englishName;
     }
@@ -61,10 +83,6 @@
         this.nativeName = nativeName;
     }
 
-    public void setDirection(final String direction) {
-        this.direction = direction;
-    }
-
     public void setPluralization(final String pluralization) {
         this.pluralization = pluralization;
     }

Modified: trunk/src/main/java/org/ourproject/kune/platf/server/domain/I18nCountry.java
===================================================================
--- trunk/src/main/java/org/ourproject/kune/platf/server/domain/I18nCountry.java	2008-11-11 13:33:36 UTC (rev 949)
+++ trunk/src/main/java/org/ourproject/kune/platf/server/domain/I18nCountry.java	2008-11-12 04:32:06 UTC (rev 950)
@@ -34,6 +34,10 @@
 
 /**
  * GlobalizeCountries generated by hbm2java from original rails globalize schema
+ * 
+ * More info: http://en.wikipedia.org/wiki/Date_and_time_notation_by_country
+ * http://en.wikipedia.org/wiki/Common_Locale_Data_Repository
+ * 
  */
 @Entity
 @Indexed
@@ -92,94 +96,94 @@
         this.numberGroupingScheme = numberGroupingScheme;
     }
 
-    public Long getId() {
-        return this.id;
+    @Finder(query = "FROM I18nCountry WHERE code = :country")
+    public I18nCountry findByCode(@Named("country") final String country) {
+        return null;
     }
 
-    public void setId(final Long id) {
-        this.id = id;
+    @Finder(query = "FROM I18nCountry ORDER BY english_name")
+    public List<I18nCountry> getAll() {
+        return null;
     }
 
     public String getCode() {
         return this.code;
     }
 
-    public void setCode(final String code) {
-        this.code = code;
+    public String getCurrencyCode() {
+        return this.currencyCode;
     }
 
-    public String getEnglishName() {
-        return this.englishName;
+    public String getCurrencyDecimalSep() {
+        return this.currencyDecimalSep;
     }
 
-    public void setEnglishName(final String englishName) {
-        this.englishName = englishName;
+    public String getCurrencyFormat() {
+        return this.currencyFormat;
     }
 
     public String getDateFormat() {
         return this.dateFormat;
     }
 
-    public void setDateFormat(final String dateFormat) {
-        this.dateFormat = dateFormat;
+    public String getDecimalSep() {
+        return this.decimalSep;
     }
 
-    public String getCurrencyFormat() {
-        return this.currencyFormat;
+    public String getEnglishName() {
+        return this.englishName;
     }
 
-    public void setCurrencyFormat(final String currencyFormat) {
-        this.currencyFormat = currencyFormat;
+    public Long getId() {
+        return this.id;
     }
 
-    public String getCurrencyCode() {
-        return this.currencyCode;
+    public String getNumberGroupingScheme() {
+        return this.numberGroupingScheme;
     }
 
+    public String getThousandsSep() {
+        return this.thousandsSep;
+    }
+
+    public void setCode(final String code) {
+        this.code = code;
+    }
+
     public void setCurrencyCode(final String currencyCode) {
         this.currencyCode = currencyCode;
     }
 
-    public String getThousandsSep() {
-        return this.thousandsSep;
+    public void setCurrencyDecimalSep(final String currencyDecimalSep) {
+        this.currencyDecimalSep = currencyDecimalSep;
     }
 
-    public void setThousandsSep(final String thousandsSep) {
-        this.thousandsSep = thousandsSep;
+    public void setCurrencyFormat(final String currencyFormat) {
+        this.currencyFormat = currencyFormat;
     }
 
-    public String getDecimalSep() {
-        return this.decimalSep;
+    public void setDateFormat(final String dateFormat) {
+        this.dateFormat = dateFormat;
     }
 
     public void setDecimalSep(final String decimalSep) {
         this.decimalSep = decimalSep;
     }
 
-    public String getCurrencyDecimalSep() {
-        return this.currencyDecimalSep;
+    public void setEnglishName(final String englishName) {
+        this.englishName = englishName;
     }
 
-    public void setCurrencyDecimalSep(final String currencyDecimalSep) {
-        this.currencyDecimalSep = currencyDecimalSep;
+    public void setId(final Long id) {
+        this.id = id;
     }
 
-    public String getNumberGroupingScheme() {
-        return this.numberGroupingScheme;
-    }
-
     public void setNumberGroupingScheme(final String numberGroupingScheme) {
         this.numberGroupingScheme = numberGroupingScheme;
     }
 
-    @Finder(query = "FROM I18nCountry ORDER BY english_name")
-    public List<I18nCountry> getAll() {
-        return null;
+    public void setThousandsSep(final String thousandsSep) {
+        this.thousandsSep = thousandsSep;
     }
 
-    @Finder(query = "FROM I18nCountry WHERE code = :country")
-    public I18nCountry findByCode(@Named("country") final String country) {
-        return null;
-    }
-
 }

Modified: trunk/src/main/java/org/ourproject/kune/platf/server/domain/I18nLanguage.java
===================================================================
--- trunk/src/main/java/org/ourproject/kune/platf/server/domain/I18nLanguage.java	2008-11-11 13:33:36 UTC (rev 949)
+++ trunk/src/main/java/org/ourproject/kune/platf/server/domain/I18nLanguage.java	2008-11-12 04:32:06 UTC (rev 950)
@@ -101,8 +101,14 @@
     @Column(name = "scope", length = 1)
     private String scope;
 
+    @Column(name = "date_format")
+    private String dateFormat;
+
+    @Column(name = "date_format_short")
+    private String dateFormatShort;
+
     public I18nLanguage() {
-        this(null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
+        this(null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
     }
 
     // Only for tests
@@ -118,7 +124,7 @@
             final String englishNameLocale, final String englishNameModifier, final String iso6391,
             final String iso6392, final String iso6393, final Boolean macroLanguage, final String nativeName,
             final String nativeNameLocale, final String nativeNameModifier, final String pluralization,
-            final String rfc3066, final String scope) {
+            final String rfc3066, final String scope, final String dateFormat) {
         this.id = id;
         this.iso6391 = iso6391;
         this.iso6392 = iso6392;
@@ -135,6 +141,7 @@
         this.pluralization = pluralization;
         this.scope = scope;
         this.code = code;
+        this.dateFormat = dateFormat;
     }
 
     @Finder(query = "FROM I18nLanguage l WHERE code = :language")
@@ -151,6 +158,14 @@
         return code;
     }
 
+    public String getDateFormat() {
+        return dateFormat;
+    }
+
+    public String getDateFormatShort() {
+        return dateFormatShort;
+    }
+
     public String getDirection() {
         return this.direction;
     }
@@ -216,6 +231,14 @@
         this.code = code;
     }
 
+    public void setDateFormat(String dateFormat) {
+        this.dateFormat = dateFormat;
+    }
+
+    public void setDateFormatShort(String dateFormatShort) {
+        this.dateFormatShort = dateFormatShort;
+    }
+
     public void setDirection(final String direction) {
         this.direction = direction;
     }

Modified: trunk/src/main/java/org/ourproject/kune/platf/server/init/DatabaseInitializer.java
===================================================================
--- trunk/src/main/java/org/ourproject/kune/platf/server/init/DatabaseInitializer.java	2008-11-11 13:33:36 UTC (rev 949)
+++ trunk/src/main/java/org/ourproject/kune/platf/server/init/DatabaseInitializer.java	2008-11-12 04:32:06 UTC (rev 950)
@@ -54,9 +54,9 @@
 
     public void createOthers() {
         final I18nLanguage english = new I18nLanguage(new Long(1819), "en", "ltr", "English", "", "", "en", "eng",
-                "eng", false, "", "", "", "c == 1 ? 1 : 2", null, "L");
+                "eng", false, "", "", "", "c == 1 ? 1 : 2", null, "L", "MMM d\\, yyyy");
         final I18nLanguage spanish = new I18nLanguage(new Long(5889), "es", "ltr", "Spanish", "", "", "es", "spa",
-                "spa", true, "Español", "", "", "c == 1 ? 1 : 2", null, "L");
+                "spa", true, "Español", "", "", "c == 1 ? 1 : 2", null, "L", "dd/MM/yyyy");
         languageManager.persist(english);
         languageManager.persist(spanish);
         final I18nCountry gb = new I18nCountry(new Long(75), "GB", "GBP", ".", "£%n", "", ".", "United Kingdom",

Modified: trunk/src/main/java/org/ourproject/kune/workspace/client/editor/TextEditorPresenter.java
===================================================================
--- trunk/src/main/java/org/ourproject/kune/workspace/client/editor/TextEditorPresenter.java	2008-11-11 13:33:36 UTC (rev 949)
+++ trunk/src/main/java/org/ourproject/kune/workspace/client/editor/TextEditorPresenter.java	2008-11-12 04:32:06 UTC (rev 950)
@@ -48,6 +48,7 @@
     private final boolean autoSave;
     private boolean saveAndCloseConfirmed;
     private Listener<String> onSave;
+    private Listener0 onEditCancelled;
     private final ActionToolbar<StateToken> toolbar;
     private ActionToolbarButtonDescriptor<StateToken> save;
     private ActionToolbarButtonDescriptor<StateToken> close;
@@ -77,6 +78,7 @@
 
     public void editContent(final String content, final Listener<String> onSave, final Listener0 onEditCancelled) {
         this.onSave = onSave;
+        this.onEditCancelled = onEditCancelled;
         toolbar.attach();
         view.attach();
         setContent(content);
@@ -151,6 +153,7 @@
         reset();
         view.detach();
         toolbar.detach();
+        onEditCancelled.onEvent();
     }
 
     protected void onEditHTML() {

Modified: trunk/src/main/java/org/ourproject/kune/workspace/client/title/EntityTitlePresenter.java
===================================================================
--- trunk/src/main/java/org/ourproject/kune/workspace/client/title/EntityTitlePresenter.java	2008-11-11 13:33:36 UTC (rev 949)
+++ trunk/src/main/java/org/ourproject/kune/workspace/client/title/EntityTitlePresenter.java	2008-11-12 04:32:06 UTC (rev 950)
@@ -88,7 +88,16 @@
     }
 
     public void setContentDate(final Date publishedOn) {
-        final DateTimeFormat fmt = DateTimeFormat.getFormat("MM/dd/yyyy, Z");
+        String dateFormat = session.getCurrentLanguage().getDateFormat();
+        final DateTimeFormat fmt;
+        if (dateFormat == null) {
+            fmt = DateTimeFormat.getFormat("M/d/yyyy h:mm vvvv");
+        } else {
+            String abrevMonthInEnglish = DateTimeFormat.getFormat("MMM").format(publishedOn);
+            String monthToTranslate = abrevMonthInEnglish + " [%NT abbreviated month]";
+            dateFormat = dateFormat.replaceFirst("MMM", "'" + i18n.t(monthToTranslate) + "'");
+            fmt = DateTimeFormat.getFormat(dateFormat + " h:mm vvvv");
+        }
         view.setContentDate(i18n.t("Published on: [%s]", fmt.format(publishedOn)));
     }
 

Modified: trunk/src/main/resources/db/init-data-languages.sql
===================================================================
--- trunk/src/main/resources/db/init-data-languages.sql	2008-11-11 13:33:36 UTC (rev 949)
+++ trunk/src/main/resources/db/init-data-languages.sql	2008-11-12 04:32:06 UTC (rev 950)
@@ -1,186 +1,186 @@
-INSERT INTO `globalize_languages` VALUES (  15,'aa','ltr','Afar','','','aa','aar','aar','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (  33,'ab','ltr','Abkhazian','','','ab','abk','abk','\0','аҧсуа бызшәа','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES ( 114,'af','ltr','Afrikaans','','','af','afr','afr','\0','Afrikaans','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES ( 191,'ak','ltr','Akan','','','ak','aka','aka','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES ( 247,'am','ltr','Amharic','','','am','amh','amh','\0','አማርኛ','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES ( 340,'ar','rtl','Arabic','','','ar','ara','ara','\0','العربية','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES ( 346,'an','ltr','Aragonese','','','an','arg','arg','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES ( 376,'as','ltr','Assamese','','','as','asm','asm','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES ( 438,'av','ltr','Avaric','','','av','ava','ava','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES ( 441,'ae','ltr','Avestan','','','ae','ave','ave','\0','','','','',NULL,'A');
-INSERT INTO `globalize_languages` VALUES ( 483,'ay','ltr','Aymara','','','ay','aym','aym','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES ( 496,'az','ltr','Azerbaijani','','','az','aze','aze','\0','azərbaycan','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES ( 512,'ba','ltr','Bashkir','','','ba','bak','bak','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES ( 514,'bm','ltr','Bambara','','','bm','bam','bam','\0','Bamanankan','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES ( 614,'be','ltr','Belarusian','','','be','bel','bel','\0','Беларуская','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES ( 616,'bn','ltr','Bengali','','','bn','ben','ben','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES ( 721,'bi','ltr','Bislama','','','bi','bis','bis','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES ( 860,'bo','ltr','Tibetan','','','bo','bod','bod','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES ( 875,'bs','ltr','Bosnian','','','bs','bos','bos','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES ( 936,'br','ltr','Breton','','','br','bre','bre','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (1020,'bg','ltr','Bulgarian','','','bg','bul','bul','\0','Български','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (1177,'ca','ltr','Catalan','','','ca','cat','cat','\0','Català','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (1233,'cs','ltr','Czech','','','cs','ces','ces','\0','čeština','','','c%10==1 && c%100!=11 ? 1 : c%10>=2 && c%10<=4 && (c%100<10 || c%100>=20) ? 2 : 3',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (1242,'ch','ltr','Chamorro','','','ch','cha','cha','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (1246,'ce','ltr','Chechen','','','ce','che','che','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (1261,'cu','ltr','Slavic','','Church','cu','chu','chu','\0','','','','',NULL,'A');
-INSERT INTO `globalize_languages` VALUES (1262,'cv','ltr','Chuvash','','','cv','chv','chv','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (1372,'kw','ltr','Cornish','','','kw','cor','cor','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (1373,'co','ltr','Corsican','','','co','cos','cos','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (1397,'cr','ltr','Cree','','','cr','cre','cre','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (1481,'cy','ltr','Welsh','','','cy','cym','cym','\0','Cymraeg','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (1499,'da','ltr','Danish','','','da','dan','dan','\0','Dansk','','','c == 1 ? 1 : 2',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (1556,'de','ltr','German','','','de','deu','deu','\0','Deutsch','','','c == 1 ? 1 : 2',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (1607,'dv','ltr','Divehi','','','dv','div','div','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (1760,'dz','ltr','Dzongkha','','','dz','dzo','dzo','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (1793,'el','ltr','Greek','','Modern (1453-)','el','ell','ell','\0','Ελληνικά','','','c == 1 ? 1 : 2',NULL,'L');
-/* INSERT INTO `globalize_languages` VALUES (1819,'en','ltr','English','','','en','eng','eng','\0','','','','c == 1 ? 1 : 2','',NULL'); */
-INSERT INTO `globalize_languages` VALUES (1831,'eo','ltr','Esperanto','','','eo','epo','epo','\0','','','','c == 1 ? 1 : 2',NULL,'C');
-INSERT INTO `globalize_languages` VALUES (1851,'et','ltr','Estonian','','','et','est','est','\0','Eesti','','','c == 1 ? 1 : 2',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (1865,'eu','ltr','Basque','','','eu','eus','eus','\0','euskera','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (1869,'ee','ltr','Ewe','','','ee','ewe','ewe','\0','Ɛʋɛ','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (1886,'fo','ltr','Faroese','','','fo','fao','fao','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (1889,'fa','ltr','Persian','','','fa','fas','fas','\0','فارسی','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (1901,'fj','ltr','Fijian','','','fj','fij','fij','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (1903,'fi','ltr','Finnish','','','fi','fin','fin','\0','suomi','','','c == 1 ? 1 : 2',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (1930,'fr','ltr','French','','','fr','fra','fra','\0','Français','','','c == 1 ? 1 : 2',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (1942,'fy','ltr','Frisian','','','fy','fry','fry','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (1954,'ff','ltr','Fulah','','','ff','ful','ful','\0','Fulfulde, Pulaar, Pular','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (2112,'gd','ltr','Gaelic','Scots','','gd','gla','gla','\0','','','','c==1 ? 1 : c==2 ? 2 : 3',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (2115,'ga','ltr','Irish','','','ga','gle','gle','\0','Gaeilge','','','c==1 ? 1 : c==2 ? 2 : 3',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (2116,'gl','ltr','Gallegan','','','gl','glg','glg','\0','Galego','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (2125,'gv','ltr','Manx','','','gv','glv','glv','\0','','','','',NULL,'E');
-INSERT INTO `globalize_languages` VALUES (2194,'gn','ltr','Guarani','','','gn','grn','grn','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (2226,'gu','ltr','Gujarati','','','gu','guj','guj','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (2304,'ht','ltr','Haitian; Haitian Creole','','','ht','hat','hat','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (2305,'ha','ltr','Hausa','','','ha','hau','hau','\0','Hausa','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (2315,'sh','ltr','Serbo-Croatian','','','sh','','hbs','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (2323,'he','rtl','Hebrew','','','he','heb','heb','\0','עברית','','','c == 1 ? 1 : 2',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (2329,'hz','ltr','Herero','','','hz','her','her','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (2343,'hi','ltr','Hindi','','','hi','hin','hin','\0','हिंदी','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (2370,'ho','ltr','Hiri Motu','','','ho','hmo','hmo','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (2418,'hr','ltr','Croatian','','','hr','hrv','hrv','\0','Hrvatski','','','c%10==1 && c%100!=11 ? 1 : c%10>=2 && c%10<=4 && (c%100<10 || c%100>=20) ? 2 : 3',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (2443,'hu','ltr','Hungarian','','','hu','hun','hun','\0','Magyar','','','c = 1',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (2466,'hy','ltr','Armenian','','','hy','hye','hye','\0','Հայերեն','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (2480,'ig','ltr','Igbo','','','ig','ibo','ibo','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (2494,'io','ltr','Ido','','','io','ido','ido','\0','','','','',NULL,'C');
-INSERT INTO `globalize_languages` VALUES (2519,'ii','ltr','Yi','','Sichuan','ii','iii','iii','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (2532,'iu','ltr','Inuktitut','','','iu','iku','iku','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (2539,'ie','ltr','Interlingue','','','ie','ile','ile','\0','','','','',NULL,'C');
-INSERT INTO `globalize_languages` VALUES (2556,'ia','ltr','Interlingua','International Auxiliary Language Association','','ia','ina','ina','\0','','','','',NULL,'C');
-INSERT INTO `globalize_languages` VALUES (2558,'id','ltr','Indonesian','','','id','ind','ind','\0','Bahasa indonesia','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (2574,'ik','ltr','Inupiaq','','','ik','ipk','ipk','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (2593,'is','ltr','Icelandic','','','is','isl','isl','\0','Íslenska','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (2600,'it','ltr','Italian','','','it','ita','ita','\0','italiano','','','c == 1 ? 1 : 2',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (2652,'jv','ltr','Javanese','','','jv','jav','jav','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (2723,'ja','ltr','Japanese','','','ja','jpn','jpn','\0','日本語','','','c = 1',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (2763,'kl','ltr','Kalaallisut','','','kl','kal','kal','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (2765,'kn','ltr','Kannada','','','kn','kan','kan','\0','ಕನ್ನಡ','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (2769,'ks','ltr','Kashmiri','','','ks','kas','kas','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (2770,'ka','ltr','Georgian','','','ka','kat','kat','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (2771,'kr','ltr','Kanuri','','','kr','kau','kau','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (2776,'kk','ltr','Kazakh','','','kk','kaz','kaz','\0','Қазақ','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (2939,'km','ltr','Khmer','','','km','khm','khm','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (2963,'ki','ltr','Kikuyu','','','ki','kik','kik','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (2966,'rw','ltr','Kinyarwanda','','','rw','kin','kin','\0','Kinyarwanda','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (2970,'ky','ltr','Kirghiz','','','ky','kir','kir','\0','Кыргыз','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (3117,'kv','ltr','Komi','','','kv','kom','kom','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (3118,'kg','ltr','Kongo','','','kg','kon','kon','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (3122,'ko','ltr','Korean','','','ko','kor','kor','\0','한국어','','','c = 1',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (3260,'kj','ltr','Kuanyama','','','kj','kua','kua','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (3276,'ku','ltr','Kurdish','','','ku','kur','kur','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (3428,'lo','ltr','Lao','','','lo','lao','lao','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (3433,'la','ltr','Latin','','','la','lat','lat','\0','','','','',NULL,'A');
-INSERT INTO `globalize_languages` VALUES (3435,'lv','ltr','Latvian','','','lv','lav','lav','\0','Latviešu','','','c%10==1 && c%100!=11 ? 1 : c != 0 ? 2 : 3',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (3546,'li','ltr','Limburgish','','Limburger','li','lim','lim','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (3547,'ln','ltr','Lingala','','','ln','lin','lin','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (3553,'lt','ltr','Lithuanian','','','lt','lit','lit','\0','Lietuviškai','','','c%10==1 && c%100!=11 ? 1 : c%10>=2 && (c%100<10 || c%100>=20) ? 2 : 3',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (3687,'lb','ltr','Letzeburgesch','','','lb','ltz','ltz','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (3689,'lu','ltr','Luba-Katanga','','','lu','lub','lub','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (3694,'lg','ltr','Ganda','','','lg','lug','lug','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (3732,'mh','ltr','Marshall','','','mh','mah','mah','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (3736,'ml','ltr','Malayalam','','','ml','mal','mal','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (3740,'mr','ltr','Marathi','','','mr','mar','mar','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (3981,'mk','ltr','Macedonian','','','mk','mkd','mkd','\0','Македонски','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (4009,'mg','ltr','Malagasy','','','mg','mlg','mlg','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (4022,'mt','ltr','Maltese','','','mt','mlt','mlt','\0','Malti','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (4091,'mo','ltr','Moldavian','','','mo','mol','mol','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (4093,'mn','ltr','Mongolian','','','mn','mon','mon','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (4166,'mi','ltr','Maori','','','mi','mri','mri','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (4184,'ms','ltr','Malay','generic','','ms','msa','msa','\0','Bahasa melayu','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (4338,'my','ltr','Burmese','','','my','mya','mya','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (4406,'na','ltr','Nauru','','','na','nau','nau','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (4407,'nv','ltr','Navajo','','','nv','nav','nav','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (4423,'nr','ltr','Ndebele','','South','nr','nbl','nbl','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (4463,'nd','ltr','Ndebele','','North','nd','nde','nde','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (4473,'ng','ltr','Ndonga','','','ng','ndo','ndo','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (4499,'ne','ltr','Nepali','','','ne','nep','nep','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (4628,'nl','ltr','Dutch','','','nl','nld','nld','\0','Nederlands','','','c == 1 ? 1 : 2',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (4682,'nn','ltr','Norwegian Nynorsk','','','nn','nno','nno','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (4695,'nb','ltr','Norwegian Bokmål','','','nb','nob','nob','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (4709,'no','ltr','Norwegian','','','no','nor','nor','\0','Norsk','','','c == 1 ? 1 : 2',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (4821,'ny','ltr','Chichewa; Nyanja','','','ny','nya','nya','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (4867,'oc','ltr','Occitan','post 1500','','oc','oci','oci','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (4891,'oj','ltr','Ojibwa','','','oj','oji','oji','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (4965,'or','ltr','Oriya','','','or','ori','ori','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (4967,'om','ltr','Oromo','','','om','orm','orm','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (4984,'os','ltr','Ossetian; Ossetic','','','os','oss','oss','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (5031,'pa','ltr','Panjabi','','','pa','pan','pan','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (5176,'pi','ltr','Pali','','','pi','pli','pli','\0','','','','',NULL,'A');
-INSERT INTO `globalize_languages` VALUES (5244,'pl','ltr','Polish','','','pl','pol','pol','\0','Polski','','','c==1 ? 1 : c%10>=2 && c%10<=4 && (c%100<10 || c%100>=20) ? 2 : 3',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (5250,'pt','ltr','Portuguese','','','pt','por','por','\0','português','','','c == 1 ? 1 : 2',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (5343,'ps','ltr','Pushto','','','ps','pus','pus','\0','پښتو','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (5368,'qu','ltr','Quechua','','','qu','que','que','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (5525,'rm','ltr','Raeto-Romance','','','rm','roh','roh','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (5528,'ro','ltr','Romanian','','','ro','ron','ron','\0','Română','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (5552,'rn','ltr','Rundi','','','rn','run','run','\0','Kirundi','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (5556,'ru','ltr','Russian','','','ru','rus','rus','\0','Pyccĸий','','','c%10==1 && c%100!=11 ? 1 : c%10>=2 && c%10<=4 && (c%100<10 || c%100>=20) ? 2 : 3',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (5576,'sg','ltr','Sango','','','sg','sag','sag','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (5581,'sa','ltr','Sanskrit','','','sa','san','san','\0','','','','',NULL,'A');
-INSERT INTO `globalize_languages` VALUES (5738,'si','ltr','Sinhalese','','','si','sin','sin','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (5800,'sk','ltr','Slovak','','','sk','slk','slk','\0','Slovenčina','','','c%10==1 && c%100!=11 ? 1 : c%10>=2 && c%10<=4 && (c%100<10 || c%100>=20) ? 2 : 3',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (5810,'sl','ltr','Slovenian','','','sl','slv','slv','\0','Slovenščina','','','c%100==1 ? 1 : c%100==2 ? 2 : c%100==3 || c%100==4 ? 3 : 4',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (5819,'se','ltr','Northern Sami','','','se','sme','sme','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (5828,'sm','ltr','Samoan','','','sm','smo','smo','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (5840,'sn','ltr','Shona','','','sn','sna','sna','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (5843,'sd','ltr','Sindhi','','','sd','snd','snd','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (5876,'so','ltr','Somali','','','so','som','som','\0','Somali','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (5882,'st','ltr','Sotho','','Southern','st','sot','sot','\0','','','','',NULL,'L');
-/* INSERT INTO `globalize_languages` VALUES (5889,'es','ltr','Spanish','','','es','spa','spa','\0','Español','','','c == 1 ? 1 : 2','',NULL'); */
-INSERT INTO `globalize_languages` VALUES (5910,'sq','ltr','Albanian','','','sq','sqi','sqi','\0','shqip','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (5921,'sc','ltr','Sardinian','','','sc','srd','srd','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (5933,'sr','ltr','Serbian','','','sr','srp','srp','\0','Srpski','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (5964,'ss','ltr','Swati','','','ss','ssw','ssw','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (6002,'su','ltr','Sundanese','','','su','sun','sun','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (6021,'sw','ltr','Swahili','generic','','sw','swa','swa','\0','Kiswahili','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (6024,'sv','ltr','Swedish','','','sv','swe','swe','\0','svenska','','','c == 1 ? 1 : 2',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (6086,'ty','ltr','Tahitian','','','ty','tah','tah','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (6090,'ta','ltr','Tamil','','','ta','tam','tam','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (6097,'tt','ltr','Tatar','','','tt','tat','tat','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (6182,'te','ltr','Telugu','','','te','tel','tel','\0','తెలుగు','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (6210,'tg','ltr','Tajik','','','tg','tgk','tgk','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (6211,'tl','ltr','Tagalog','','','tl','tgl','tgl','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (6223,'th','ltr','Thai','','','th','tha','tha','\0','ภาษาไทย','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (6260,'ti','ltr','Tigrinya','','','ti','tir','tir','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (6383,'to','ltr','Tonga','Tonga Islands','','to','ton','ton','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (6466,'tn','ltr','Tswana','','','tn','tsn','tsn','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (6467,'ts','ltr','Tsonga','','','ts','tso','tso','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (6513,'tk','ltr','Turkmen','','','tk','tuk','tuk','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (6519,'tr','ltr','Turkish','','','tr','tur','tur','\0','Tϋrkçe','','','c = 1',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (6546,'tw','ltr','Twi','','','tw','twi','twi','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (6630,'ug','ltr','Uighur','','','ug','uig','uig','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (6640,'uk','ltr','Ukrainian','','','uk','ukr','ukr','\0','Українська','','','c%10==1 && c%100!=11 ? 1 : c%10>=2 && c%10<=4 && (c%100<10 || c%100>=20) ? 2 : 3',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (6679,'ur','ltr','Urdu','','','ur','urd','urd','\0','اردو','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (6719,'uz','ltr','Uzbek','','','uz','uzb','uzb','\0',"o'zbek",'','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (6744,'ve','ltr','Venda','','','ve','ven','ven','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (6751,'vi','ltr','Vietnamese','','','vi','vie','vie','\0','Tiếng Việt','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (6800,'vo','ltr','Volapük','','','vo','vol','vol','\0','','','','',NULL,'C');
-INSERT INTO `globalize_languages` VALUES (6911,'wa','ltr','Walloon','','','wa','wln','wln','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (6952,'wo','ltr','Wolof','','','wo','wol','wol','\0','Wolof','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (7078,'xh','ltr','Xhosa','','','xh','xho','xho','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (7324,'yi','ltr','Yiddish','','','yi','yid','yid','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (7481,'za','ltr','Zhuang','','','za','zha','zha','\0','','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (7484,'zh','ltr','Chinese','','','zh','zho','zho','\0','中文','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (7594,'zu','ltr','Zulu','','','zu','zul','zul','\0','isiZulu','','','',NULL,'L');
-INSERT INTO `globalize_languages` VALUES (7595,'zh-Hant','ltr','Traditional Chinese','','','',NULL,NULL,'\0','','','','','zh-Hant','L');
-INSERT INTO `globalize_languages` VALUES (7596,'zh-Hans','ltr','Simplified Chinese','','','',NULL,NULL,'\0','','','','','zh-Hans','L');
+INSERT INTO `globalize_languages` VALUES (  15,'aa','','','ltr','Afar','','','aa','aar','aar','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (  33,'ab','','','ltr','Abkhazian','','','ab','abk','abk','\0','аҧсуа бызшәа','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES ( 114,'af','','','ltr','Afrikaans','','','af','afr','afr','\0','Afrikaans','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES ( 191,'ak','','','ltr','Akan','','','ak','aka','aka','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES ( 247,'am','','','ltr','Amharic','','','am','amh','amh','\0','አማርኛ','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES ( 340,'ar','','','rtl','Arabic','','','ar','ara','ara','\0','العربية','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES ( 346,'an','','','ltr','Aragonese','','','an','arg','arg','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES ( 376,'as','','','ltr','Assamese','','','as','asm','asm','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES ( 438,'av','','','ltr','Avaric','','','av','ava','ava','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES ( 441,'ae','','','ltr','Avestan','','','ae','ave','ave','\0','','','','',NULL,'A');
+INSERT INTO `globalize_languages` VALUES ( 483,'ay','','','ltr','Aymara','','','ay','aym','aym','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES ( 496,'az','','','ltr','Azerbaijani','','','az','aze','aze','\0','azərbaycan','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES ( 512,'ba','','','ltr','Bashkir','','','ba','bak','bak','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES ( 514,'bm','','','ltr','Bambara','','','bm','bam','bam','\0','Bamanankan','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES ( 614,'be','','','ltr','Belarusian','','','be','bel','bel','\0','Беларуская','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES ( 616,'bn','','','ltr','Bengali','','','bn','ben','ben','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES ( 721,'bi','','','ltr','Bislama','','','bi','bis','bis','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES ( 860,'bo','','','ltr','Tibetan','','','bo','bod','bod','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES ( 875,'bs','','','ltr','Bosnian','','','bs','bos','bos','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES ( 936,'br','','','ltr','Breton','','','br','bre','bre','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (1020,'bg','','','ltr','Bulgarian','','','bg','bul','bul','\0','Български','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (1177,'ca','','','ltr','Catalan','','','ca','cat','cat','\0','Català','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (1233,'cs','','','ltr','Czech','','','cs','ces','ces','\0','čeština','','','c%10==1 && c%100!=11 ? 1 : c%10>=2 && c%10<=4 && (c%100<10 || c%100>=20) ? 2 : 3',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (1242,'ch','','','ltr','Chamorro','','','ch','cha','cha','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (1246,'ce','','','ltr','Chechen','','','ce','che','che','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (1261,'cu','','','ltr','Slavic','','Church','cu','chu','chu','\0','','','','',NULL,'A');
+INSERT INTO `globalize_languages` VALUES (1262,'cv','','','ltr','Chuvash','','','cv','chv','chv','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (1372,'kw','','','ltr','Cornish','','','kw','cor','cor','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (1373,'co','','','ltr','Corsican','','','co','cos','cos','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (1397,'cr','','','ltr','Cree','','','cr','cre','cre','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (1481,'cy','','','ltr','Welsh','','','cy','cym','cym','\0','Cymraeg','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (1499,'da','','','ltr','Danish','','','da','dan','dan','\0','Dansk','','','c == 1 ? 1 : 2',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (1556,'de','','','ltr','German','','','de','deu','deu','\0','Deutsch','','','c == 1 ? 1 : 2',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (1607,'dv','','','ltr','Divehi','','','dv','div','div','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (1760,'dz','','','ltr','Dzongkha','','','dz','dzo','dzo','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (1793,'el','','','ltr','Greek','','Modern (1453-)','el','ell','ell','\0','Ελληνικά','','','c == 1 ? 1 : 2',NULL,'L');
+/* INSERT INTO `globalize_languages` VALUES (1819,'en','','','ltr','English','','','en','eng','eng','\0','','','','c == 1 ? 1 : 2','',NULL'); */
+INSERT INTO `globalize_languages` VALUES (1831,'eo','','','ltr','Esperanto','','','eo','epo','epo','\0','','','','c == 1 ? 1 : 2',NULL,'C');
+INSERT INTO `globalize_languages` VALUES (1851,'et','','','ltr','Estonian','','','et','est','est','\0','Eesti','','','c == 1 ? 1 : 2',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (1865,'eu','','','ltr','Basque','','','eu','eus','eus','\0','euskera','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (1869,'ee','','','ltr','Ewe','','','ee','ewe','ewe','\0','Ɛʋɛ','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (1886,'fo','','','ltr','Faroese','','','fo','fao','fao','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (1889,'fa','','','rtl','Persian','','','fa','fas','fas','\0','فارسی','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (1901,'fj','','','ltr','Fijian','','','fj','fij','fij','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (1903,'fi','','','ltr','Finnish','','','fi','fin','fin','\0','suomi','','','c == 1 ? 1 : 2',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (1930,'fr','','','ltr','French','','','fr','fra','fra','\0','Français','','','c == 1 ? 1 : 2',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (1942,'fy','','','ltr','Frisian','','','fy','fry','fry','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (1954,'ff','','','ltr','Fulah','','','ff','ful','ful','\0','Fulfulde, Pulaar, Pular','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (2112,'gd','','','ltr','Gaelic','Scots','','gd','gla','gla','\0','','','','c==1 ? 1 : c==2 ? 2 : 3',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (2115,'ga','','','ltr','Irish','','','ga','gle','gle','\0','Gaeilge','','','c==1 ? 1 : c==2 ? 2 : 3',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (2116,'gl','','','ltr','Gallegan','','','gl','glg','glg','\0','Galego','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (2125,'gv','','','ltr','Manx','','','gv','glv','glv','\0','','','','',NULL,'E');
+INSERT INTO `globalize_languages` VALUES (2194,'gn','','','ltr','Guarani','','','gn','grn','grn','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (2226,'gu','','','ltr','Gujarati','','','gu','guj','guj','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (2304,'ht','','','ltr','Haitian; Haitian Creole','','','ht','hat','hat','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (2305,'ha','','','ltr','Hausa','','','ha','hau','hau','\0','Hausa','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (2315,'sh','','','ltr','Serbo-Croatian','','','sh','','hbs','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (2323,'he','','','rtl','Hebrew','','','he','heb','heb','\0','עברית','','','c == 1 ? 1 : 2',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (2329,'hz','','','ltr','Herero','','','hz','her','her','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (2343,'hi','','','ltr','Hindi','','','hi','hin','hin','\0','हिंदी','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (2370,'ho','','','ltr','Hiri Motu','','','ho','hmo','hmo','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (2418,'hr','','','ltr','Croatian','','','hr','hrv','hrv','\0','Hrvatski','','','c%10==1 && c%100!=11 ? 1 : c%10>=2 && c%10<=4 && (c%100<10 || c%100>=20) ? 2 : 3',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (2443,'hu','','','ltr','Hungarian','','','hu','hun','hun','\0','Magyar','','','c = 1',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (2466,'hy','','','ltr','Armenian','','','hy','hye','hye','\0','Հայերեն','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (2480,'ig','','','ltr','Igbo','','','ig','ibo','ibo','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (2494,'io','','','ltr','Ido','','','io','ido','ido','\0','','','','',NULL,'C');
+INSERT INTO `globalize_languages` VALUES (2519,'ii','','','ltr','Yi','','Sichuan','ii','iii','iii','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (2532,'iu','','','ltr','Inuktitut','','','iu','iku','iku','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (2539,'ie','','','ltr','Interlingue','','','ie','ile','ile','\0','','','','',NULL,'C');
+INSERT INTO `globalize_languages` VALUES (2556,'ia','','','ltr','Interlingua','International Auxiliary Language Association','','ia','ina','ina','\0','','','','',NULL,'C');
+INSERT INTO `globalize_languages` VALUES (2558,'id','','','ltr','Indonesian','','','id','ind','ind','\0','Bahasa indonesia','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (2574,'ik','','','ltr','Inupiaq','','','ik','ipk','ipk','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (2593,'is','','','ltr','Icelandic','','','is','isl','isl','\0','Íslenska','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (2600,'it','','','ltr','Italian','','','it','ita','ita','\0','italiano','','','c == 1 ? 1 : 2',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (2652,'jv','','','ltr','Javanese','','','jv','jav','jav','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (2723,'ja','','','ltr','Japanese','','','ja','jpn','jpn','\0','日本語','','','c = 1',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (2763,'kl','','','ltr','Kalaallisut','','','kl','kal','kal','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (2765,'kn','','','ltr','Kannada','','','kn','kan','kan','\0','ಕನ್ನಡ','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (2769,'ks','','','ltr','Kashmiri','','','ks','kas','kas','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (2770,'ka','','','ltr','Georgian','','','ka','kat','kat','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (2771,'kr','','','ltr','Kanuri','','','kr','kau','kau','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (2776,'kk','','','ltr','Kazakh','','','kk','kaz','kaz','\0','Қазақ','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (2939,'km','','','ltr','Khmer','','','km','khm','khm','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (2963,'ki','','','ltr','Kikuyu','','','ki','kik','kik','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (2966,'rw','','','ltr','Kinyarwanda','','','rw','kin','kin','\0','Kinyarwanda','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (2970,'ky','','','ltr','Kirghiz','','','ky','kir','kir','\0','Кыргыз','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (3117,'kv','','','ltr','Komi','','','kv','kom','kom','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (3118,'kg','','','ltr','Kongo','','','kg','kon','kon','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (3122,'ko','','','ltr','Korean','','','ko','kor','kor','\0','한국어','','','c = 1',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (3260,'kj','','','ltr','Kuanyama','','','kj','kua','kua','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (3276,'ku','','','ltr','Kurdish','','','ku','kur','kur','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (3428,'lo','','','ltr','Lao','','','lo','lao','lao','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (3433,'la','','','ltr','Latin','','','la','lat','lat','\0','','','','',NULL,'A');
+INSERT INTO `globalize_languages` VALUES (3435,'lv','','','ltr','Latvian','','','lv','lav','lav','\0','Latviešu','','','c%10==1 && c%100!=11 ? 1 : c != 0 ? 2 : 3',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (3546,'li','','','ltr','Limburgish','','Limburger','li','lim','lim','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (3547,'ln','','','ltr','Lingala','','','ln','lin','lin','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (3553,'lt','','','ltr','Lithuanian','','','lt','lit','lit','\0','Lietuviškai','','','c%10==1 && c%100!=11 ? 1 : c%10>=2 && (c%100<10 || c%100>=20) ? 2 : 3',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (3687,'lb','','','ltr','Letzeburgesch','','','lb','ltz','ltz','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (3689,'lu','','','ltr','Luba-Katanga','','','lu','lub','lub','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (3694,'lg','','','ltr','Ganda','','','lg','lug','lug','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (3732,'mh','','','ltr','Marshall','','','mh','mah','mah','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (3736,'ml','','','ltr','Malayalam','','','ml','mal','mal','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (3740,'mr','','','ltr','Marathi','','','mr','mar','mar','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (3981,'mk','','','ltr','Macedonian','','','mk','mkd','mkd','\0','Македонски','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (4009,'mg','','','ltr','Malagasy','','','mg','mlg','mlg','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (4022,'mt','','','ltr','Maltese','','','mt','mlt','mlt','\0','Malti','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (4091,'mo','','','ltr','Moldavian','','','mo','mol','mol','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (4093,'mn','','','ltr','Mongolian','','','mn','mon','mon','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (4166,'mi','','','ltr','Maori','','','mi','mri','mri','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (4184,'ms','','','ltr','Malay','generic','','ms','msa','msa','\0','Bahasa melayu','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (4338,'my','','','ltr','Burmese','','','my','mya','mya','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (4406,'na','','','ltr','Nauru','','','na','nau','nau','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (4407,'nv','','','ltr','Navajo','','','nv','nav','nav','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (4423,'nr','','','ltr','Ndebele','','South','nr','nbl','nbl','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (4463,'nd','','','ltr','Ndebele','','North','nd','nde','nde','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (4473,'ng','','','ltr','Ndonga','','','ng','ndo','ndo','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (4499,'ne','','','ltr','Nepali','','','ne','nep','nep','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (4628,'nl','','','ltr','Dutch','','','nl','nld','nld','\0','Nederlands','','','c == 1 ? 1 : 2',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (4682,'nn','','','ltr','Norwegian Nynorsk','','','nn','nno','nno','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (4695,'nb','','','ltr','Norwegian Bokmål','','','nb','nob','nob','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (4709,'no','','','ltr','Norwegian','','','no','nor','nor','\0','Norsk','','','c == 1 ? 1 : 2',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (4821,'ny','','','ltr','Chichewa; Nyanja','','','ny','nya','nya','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (4867,'oc','','','ltr','Occitan','post 1500','','oc','oci','oci','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (4891,'oj','','','ltr','Ojibwa','','','oj','oji','oji','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (4965,'or','','','ltr','Oriya','','','or','ori','ori','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (4967,'om','','','ltr','Oromo','','','om','orm','orm','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (4984,'os','','','ltr','Ossetian; Ossetic','','','os','oss','oss','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (5031,'pa','','','ltr','Panjabi','','','pa','pan','pan','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (5176,'pi','','','ltr','Pali','','','pi','pli','pli','\0','','','','',NULL,'A');
+INSERT INTO `globalize_languages` VALUES (5244,'pl','','','ltr','Polish','','','pl','pol','pol','\0','Polski','','','c==1 ? 1 : c%10>=2 && c%10<=4 && (c%100<10 || c%100>=20) ? 2 : 3',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (5250,'pt','','','ltr','Portuguese','','','pt','por','por','\0','português','','','c == 1 ? 1 : 2',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (5343,'ps','','','rtl','Pushto','','','ps','pus','pus','\0','پښتو','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (5368,'qu','','','ltr','Quechua','','','qu','que','que','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (5525,'rm','','','ltr','Raeto-Romance','','','rm','roh','roh','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (5528,'ro','','','ltr','Romanian','','','ro','ron','ron','\0','Română','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (5552,'rn','','','ltr','Rundi','','','rn','run','run','\0','Kirundi','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (5556,'ru','','','ltr','Russian','','','ru','rus','rus','\0','Pyccĸий','','','c%10==1 && c%100!=11 ? 1 : c%10>=2 && c%10<=4 && (c%100<10 || c%100>=20) ? 2 : 3',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (5576,'sg','','','ltr','Sango','','','sg','sag','sag','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (5581,'sa','','','ltr','Sanskrit','','','sa','san','san','\0','','','','',NULL,'A');
+INSERT INTO `globalize_languages` VALUES (5738,'si','','','ltr','Sinhalese','','','si','sin','sin','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (5800,'sk','','','ltr','Slovak','','','sk','slk','slk','\0','Slovenčina','','','c%10==1 && c%100!=11 ? 1 : c%10>=2 && c%10<=4 && (c%100<10 || c%100>=20) ? 2 : 3',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (5810,'sl','','','ltr','Slovenian','','','sl','slv','slv','\0','Slovenščina','','','c%100==1 ? 1 : c%100==2 ? 2 : c%100==3 || c%100==4 ? 3 : 4',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (5819,'se','','','ltr','Northern Sami','','','se','sme','sme','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (5828,'sm','','','ltr','Samoan','','','sm','smo','smo','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (5840,'sn','','','ltr','Shona','','','sn','sna','sna','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (5843,'sd','','','ltr','Sindhi','','','sd','snd','snd','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (5876,'so','','','ltr','Somali','','','so','som','som','\0','Somali','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (5882,'st','','','ltr','Sotho','','Southern','st','sot','sot','\0','','','','',NULL,'L');
+/* INSERT INTO `globalize_languages` VALUES (5889,'es','','','ltr','Spanish','','','es','spa','spa','\0','Español','','','c == 1 ? 1 : 2','',NULL'); */
+INSERT INTO `globalize_languages` VALUES (5910,'sq','','','ltr','Albanian','','','sq','sqi','sqi','\0','shqip','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (5921,'sc','','','ltr','Sardinian','','','sc','srd','srd','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (5933,'sr','','','ltr','Serbian','','','sr','srp','srp','\0','Srpski','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (5964,'ss','','','ltr','Swati','','','ss','ssw','ssw','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (6002,'su','','','ltr','Sundanese','','','su','sun','sun','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (6021,'sw','','','ltr','Swahili','generic','','sw','swa','swa','\0','Kiswahili','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (6024,'sv','','','ltr','Swedish','','','sv','swe','swe','\0','svenska','','','c == 1 ? 1 : 2',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (6086,'ty','','','ltr','Tahitian','','','ty','tah','tah','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (6090,'ta','','','ltr','Tamil','','','ta','tam','tam','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (6097,'tt','','','ltr','Tatar','','','tt','tat','tat','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (6182,'te','','','ltr','Telugu','','','te','tel','tel','\0','తెలుగు','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (6210,'tg','','','ltr','Tajik','','','tg','tgk','tgk','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (6211,'tl','','','ltr','Tagalog','','','tl','tgl','tgl','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (6223,'th','','','ltr','Thai','','','th','tha','tha','\0','ภาษาไทย','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (6260,'ti','','','ltr','Tigrinya','','','ti','tir','tir','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (6383,'to','','','ltr','Tonga','Tonga Islands','','to','ton','ton','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (6466,'tn','','','ltr','Tswana','','','tn','tsn','tsn','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (6467,'ts','','','ltr','Tsonga','','','ts','tso','tso','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (6513,'tk','','','ltr','Turkmen','','','tk','tuk','tuk','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (6519,'tr','','','ltr','Turkish','','','tr','tur','tur','\0','Tϋrkçe','','','c = 1',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (6546,'tw','','','ltr','Twi','','','tw','twi','twi','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (6630,'ug','','','ltr','Uighur','','','ug','uig','uig','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (6640,'uk','','','ltr','Ukrainian','','','uk','ukr','ukr','\0','Українська','','','c%10==1 && c%100!=11 ? 1 : c%10>=2 && c%10<=4 && (c%100<10 || c%100>=20) ? 2 : 3',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (6679,'ur','','','rtl','Urdu','','','ur','urd','urd','\0','اردو','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (6719,'uz','','','ltr','Uzbek','','','uz','uzb','uzb','\0',"o'zbek",'','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (6744,'ve','','','ltr','Venda','','','ve','ven','ven','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (6751,'vi','','','ltr','Vietnamese','','','vi','vie','vie','\0','Tiếng Việt','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (6800,'vo','','','ltr','Volapük','','','vo','vol','vol','\0','','','','',NULL,'C');
+INSERT INTO `globalize_languages` VALUES (6911,'wa','','','ltr','Walloon','','','wa','wln','wln','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (6952,'wo','','','ltr','Wolof','','','wo','wol','wol','\0','Wolof','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (7078,'xh','','','ltr','Xhosa','','','xh','xho','xho','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (7324,'yi','','','ltr','Yiddish','','','yi','yid','yid','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (7481,'za','','','ltr','Zhuang','','','za','zha','zha','\0','','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (7484,'zh','','','ltr','Chinese','','','zh','zho','zho','\0','中文','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (7594,'zu','','','ltr','Zulu','','','zu','zul','zul','\0','isiZulu','','','',NULL,'L');
+INSERT INTO `globalize_languages` VALUES (7595,'zh-Hant','','','ltr','Traditional Chinese','','','',NULL,NULL,'\0','','','','','zh-Hant','L');
+INSERT INTO `globalize_languages` VALUES (7596,'zh-Hans','','','ltr','Simplified Chinese','','','',NULL,NULL,'\0','','','','','zh-Hans','L');

Deleted: trunk/src/main/resources/db/init-data.sql
===================================================================
--- trunk/src/main/resources/db/init-data.sql	2008-11-11 13:33:36 UTC (rev 949)
+++ trunk/src/main/resources/db/init-data.sql	2008-11-12 04:32:06 UTC (rev 950)
@@ -1,3849 +0,0 @@
-INSERT INTO `globalize_countries` VALUES (1,'AD','EUR','','','','','Andorra','western','');
-INSERT INTO `globalize_countries` VALUES (2,'AE','AED','.','','','.','United Arab Emirates','western',',');
-INSERT INTO `globalize_countries` VALUES (3,'AF','AFA','','','','','Afghanistan','western','');
-INSERT INTO `globalize_countries` VALUES (4,'AG','XCD','','','','','Antigua and Barbuda','western','');
-INSERT INTO `globalize_countries` VALUES (5,'AI','XCD','','','','','Anguilla','western','');
-INSERT INTO `globalize_countries` VALUES (6,'AL','ALL',',','','',',','Albania','western','.');
-INSERT INTO `globalize_countries` VALUES (7,'AM','AMD','','','','','Armenia','western','');
-INSERT INTO `globalize_countries` VALUES (8,'AN','ANG','','','','','Netherlands Antilles','western','');
-INSERT INTO `globalize_countries` VALUES (9,'AO','AON','','','','','Angola','western','');
-INSERT INTO `globalize_countries` VALUES (10,'AQ','NOK','','','','','Antarctica','western','');
-INSERT INTO `globalize_countries` VALUES (11,'AR','ARA',',','','',',','Argentina','western','.');
-INSERT INTO `globalize_countries` VALUES (12,'AS','USD','','','','','American Samoa','western','');
-INSERT INTO `globalize_countries` VALUES (13,'AT','EUR',',','€ %n','',',','Austria','western','');
-INSERT INTO `globalize_countries` VALUES (14,'AU','AUD','.','','','.','Australia','western',',');
-INSERT INTO `globalize_countries` VALUES (15,'AW','AWG','','','','','Aruba','western','');
-INSERT INTO `globalize_countries` VALUES (16,'AZ','AZM','.','','','.','Azerbaijan','western','');
-INSERT INTO `globalize_countries` VALUES (17,'BA','BAM',',','','',',','Bosnia and Herzegovina','western','');
-INSERT INTO `globalize_countries` VALUES (18,'BB','BBD','','','','','Barbados','western','');
-INSERT INTO `globalize_countries` VALUES (19,'BD','BDT','.','','','.','Bangladesh','western',',');
-INSERT INTO `globalize_countries` VALUES (20,'BE','EUR',',','%n €','',',','Belgium','western','.');
-INSERT INTO `globalize_countries` VALUES (21,'BF','XAF','','','','','Burkina Faso','western','');
-INSERT INTO `globalize_countries` VALUES (22,'BG','BGL',',','','',',','Bulgaria','western',' ');
-INSERT INTO `globalize_countries` VALUES (23,'BH','BHD','.','','','.','Bahrain','western',',');
-INSERT INTO `globalize_countries` VALUES (24,'BI','BIF','','','','','Burundi','western','');
-INSERT INTO `globalize_countries` VALUES (25,'BJ','XAF','','','','','Benin','western','');
-INSERT INTO `globalize_countries` VALUES (26,'BM','BMD','','','','','Bermuda','western','');
-INSERT INTO `globalize_countries` VALUES (27,'BN','BND','','','','','Brunei Darussalam','western','');
-INSERT INTO `globalize_countries` VALUES (28,'BO','BOB',',','','',',','Bolivia','western','.');
-INSERT INTO `globalize_countries` VALUES (29,'BR','BRR',',','R$%n','',',','Brazil','western','.');
-INSERT INTO `globalize_countries` VALUES (30,'BS','BSD','','','','','Bahamas','western','');
-INSERT INTO `globalize_countries` VALUES (31,'BT','BTN','','','','','Bhutan','western','');
-INSERT INTO `globalize_countries` VALUES (32,'BV','NOK','','','','','Bouvet Island','western','');
-INSERT INTO `globalize_countries` VALUES (33,'BW','BWP','.','','','.','Botswana','western',',');
-INSERT INTO `globalize_countries` VALUES (34,'BY','BYR','.','','','.','Belarus','western','');
-INSERT INTO `globalize_countries` VALUES (35,'BZ','BZD','','','','','Belize','western','');
-INSERT INTO `globalize_countries` VALUES (36,'CA','CAD','.','','','.','Canada','western',',');
-INSERT INTO `globalize_countries` VALUES (37,'CC','AUD','','','','','Cocos  Islands','western','');
-INSERT INTO `globalize_countries` VALUES (38,'CD','','','','','','Congo','western','');
-INSERT INTO `globalize_countries` VALUES (39,'CF','XAF','','','','','Central African Republic','western','');
-INSERT INTO `globalize_countries` VALUES (40,'CG','XAF','','','','','Congo','western','');
-INSERT INTO `globalize_countries` VALUES (41,'CH','CHF','.','SFr. %n','',',','Switzerland','western',"'");
-INSERT INTO `globalize_countries` VALUES (42,'CI','XAF','','','','',"Cote D'Ivoire",'western','');
-INSERT INTO `globalize_countries` VALUES (43,'CK','NZD','','','','','Cook Islands','western','');
-INSERT INTO `globalize_countries` VALUES (44,'CL','CLF',',','','',',','Chile','western','.');
-INSERT INTO `globalize_countries` VALUES (45,'CM','XAF','','','','','Cameroon','western','');
-INSERT INTO `globalize_countries` VALUES (46,'CN','CNY','.','Y%n','','.','China','western',',');
-INSERT INTO `globalize_countries` VALUES (47,'CO','COP',',','','',',','Colombia','western','.');
-INSERT INTO `globalize_countries` VALUES (48,'CR','CRC','.','','','.','Costa Rica','western',',');
-INSERT INTO `globalize_countries` VALUES (49,'CS','CSD','','','','','Serbia and Montenegro','western','');
-INSERT INTO `globalize_countries` VALUES (50,'CU','CUP','','','','','Cuba','western','');
-INSERT INTO `globalize_countries` VALUES (51,'CV','CVE','','','','','Cape Verde','western','');
-INSERT INTO `globalize_countries` VALUES (52,'CX','AUD','','','','','Christmas Island','western','');
-INSERT INTO `globalize_countries` VALUES (53,'CY','CYP','','','','','Cyprus','western','');
-INSERT INTO `globalize_countries` VALUES (54,'CZ','CZK',',','','',',','Czech Republic','western',' ');
-INSERT INTO `globalize_countries` VALUES (55,'DE','EUR',',','%n €','',',','Germany','western','.');
-INSERT INTO `globalize_countries` VALUES (56,'DJ','DJF','','','','','Djibouti','western','');
-INSERT INTO `globalize_countries` VALUES (57,'DK','DKK',',','','',',','Denmark','western','.');
-INSERT INTO `globalize_countries` VALUES (58,'DM','XCD','','','','','Dominica','western','');
-INSERT INTO `globalize_countries` VALUES (59,'DO','DOP','.','','','.','Dominican Republic','western',',');
-INSERT INTO `globalize_countries` VALUES (60,'DZ','DZD','.','','','.','Algeria','western',',');
-INSERT INTO `globalize_countries` VALUES (61,'EC','USD',',','','',',','Ecuador','western','.');
-INSERT INTO `globalize_countries` VALUES (62,'EE','EEK',',','','',',','Estonia','western',' ');
-INSERT INTO `globalize_countries` VALUES (63,'EG','EGP','.','','','.','Egypt','western',',');
-INSERT INTO `globalize_countries` VALUES (64,'EH','MAD','','','','','Western Sahara','western','');
-INSERT INTO `globalize_countries` VALUES (65,'ER','ERN','.','','','.','Eritrea','western',',');
-INSERT INTO `globalize_countries` VALUES (66,'ES','EUR',',','%n €','',',','Spain','western','.');
-INSERT INTO `globalize_countries` VALUES (67,'ET','ETB','.','','','.','Ethiopia','western',',');
-INSERT INTO `globalize_countries` VALUES (68,'FI','EUR',',','','',',','Finland','western',' ');
-INSERT INTO `globalize_countries` VALUES (69,'FJ','FJD','','','','','Fiji','western','');
-INSERT INTO `globalize_countries` VALUES (70,'FK','FKP','','','','','Falkland Islands','western','');
-INSERT INTO `globalize_countries` VALUES (71,'FM','USD','','','','','Micronesia','western','');
-INSERT INTO `globalize_countries` VALUES (72,'FO','DKK',',','','',',','Faeroe Islands','western','.');
-INSERT INTO `globalize_countries` VALUES (73,'FR','EUR',',','%n €','',',','France','western','');
-INSERT INTO `globalize_countries` VALUES (74,'GA','XAF','','','','','Gabon','western','');
-INSERT INTO `globalize_countries` VALUES (75,'GB','GBP','.','£%n','','.','United Kingdom','western',',');
-INSERT INTO `globalize_countries` VALUES (76,'GD','XCD','','','','','Grenada','western','');
-INSERT INTO `globalize_countries` VALUES (77,'GE','GEL',',','','',',','Georgia','western','.');
-INSERT INTO `globalize_countries` VALUES (78,'GF','EUR','','','','','French Guiana','western','');
-INSERT INTO `globalize_countries` VALUES (79,'GH','GHC','','','','','Ghana','western','');
-INSERT INTO `globalize_countries` VALUES (80,'GI','GIP','','','','','Gibraltar','western','');
-INSERT INTO `globalize_countries` VALUES (81,'GL','DKK',',','','',',','Greenland','western','.');
-INSERT INTO `globalize_countries` VALUES (82,'GM','GMD','','','','','Gambia','western','');
-INSERT INTO `globalize_countries` VALUES (83,'GN','GNS','','','','','Guinea','western','');
-INSERT INTO `globalize_countries` VALUES (84,'GP','EUR','','','','','Guadaloupe','western','');
-INSERT INTO `globalize_countries` VALUES (85,'GQ','XAF','','','','','Equatorial Guinea','western','');
-INSERT INTO `globalize_countries` VALUES (86,'GR','EUR',',','','',',','Greece','western','.');
-INSERT INTO `globalize_countries` VALUES (87,'GS','GBP','','','','','South Georgia and the South Sandwich Islands','western','');
-INSERT INTO `globalize_countries` VALUES (88,'GT','GTQ','.','','','.','Guatemala','western',',');
-INSERT INTO `globalize_countries` VALUES (89,'GU','USD','','','','','Guam','western','');
-INSERT INTO `globalize_countries` VALUES (90,'GW','GWP','','','','','Guinea-Bissau','western','');
-INSERT INTO `globalize_countries` VALUES (91,'GY','GYD','','','','','Guyana','western','');
-INSERT INTO `globalize_countries` VALUES (92,'HK','HKD','.','HK$%n','','.','Hong Kong','western',',');
-INSERT INTO `globalize_countries` VALUES (93,'HM','AUD','','','','','Heard and McDonald Islands','western','');
-INSERT INTO `globalize_countries` VALUES (94,'HN','HNL','.','','','.','Honduras','western',',');
-INSERT INTO `globalize_countries` VALUES (95,'HR','HRK',',','','',',','Hrvatska','western','');
-INSERT INTO `globalize_countries` VALUES (96,'HT','HTG','','','','','Haiti','western','');
-INSERT INTO `globalize_countries` VALUES (97,'HU','HUF',',','','',',','Hungary','western','.');
-INSERT INTO `globalize_countries` VALUES (98,'ID','IDR',',','','',',','Indonesia','western','.');
-INSERT INTO `globalize_countries` VALUES (99,'IE','EUR','.','','','.','Ireland','western',',');
-INSERT INTO `globalize_countries` VALUES (100,'IL','ILS','.','%n ₪','','.','Israel','western',',');
-INSERT INTO `globalize_countries` VALUES (101,'IN','INR','.','Rs.%n','','.','India','indian',',');
-INSERT INTO `globalize_countries` VALUES (102,'IO','GBP','','','','','British Indian Ocean Territory','western','');
-INSERT INTO `globalize_countries` VALUES (103,'IQ','IQD','.','','','.','Iraq','western',',');
-INSERT INTO `globalize_countries` VALUES (104,'IR','IRR','٫','','','٫','Iran','western','٬');
-INSERT INTO `globalize_countries` VALUES (105,'IS','ISK',',','','',',','Iceland','western','.');
-INSERT INTO `globalize_countries` VALUES (106,'IT','EUR',',','€ %n','',',','Italy','western','.');
-INSERT INTO `globalize_countries` VALUES (107,'JM','JMD','','','','','Jamaica','western','');
-INSERT INTO `globalize_countries` VALUES (108,'JO','JOD','.','','','.','Jordan','western',',');
-INSERT INTO `globalize_countries` VALUES (109,'JP','JPY','.','¥%n','','.','Japan','western',',');
-INSERT INTO `globalize_countries` VALUES (110,'KE','KES','','','','','Kenya','western','');
-INSERT INTO `globalize_countries` VALUES (111,'KG','KGS','','','','','Kyrgyz Republic','western','');
-INSERT INTO `globalize_countries` VALUES (112,'KH','KHR','','','','','Cambodia','western','');
-INSERT INTO `globalize_countries` VALUES (113,'KI','AUD','','','','','Kiribati','western','');
-INSERT INTO `globalize_countries` VALUES (114,'KM','KMF','','','','','Comoros','western','');
-INSERT INTO `globalize_countries` VALUES (115,'KN','XCD','','','','','St. Kitts and Nevis','western','');
-INSERT INTO `globalize_countries` VALUES (116,'KP','KPW','','','','','Korea','western','');
-INSERT INTO `globalize_countries` VALUES (117,'KR','KRW','.','','','.','Korea','western',',');
-INSERT INTO `globalize_countries` VALUES (118,'KW','KWD','.','','','.','Kuwait','western',',');
-INSERT INTO `globalize_countries` VALUES (119,'KY','KYD','','','','','Cayman Islands','western','');
-INSERT INTO `globalize_countries` VALUES (120,'KZ','KZT','','','','','Kazakhstan','western','');
-INSERT INTO `globalize_countries` VALUES (121,'LA','LAK','.','','','.',"Lao People's Democratic Republic",'western',',');
-INSERT INTO `globalize_countries` VALUES (122,'LB','LBP','.','','','.','Lebanon','western',',');
-INSERT INTO `globalize_countries` VALUES (123,'LC','XCD','','','','','St. Lucia','western','');
-INSERT INTO `globalize_countries` VALUES (124,'LI','CHF','','','','','Liechtenstein','western','');
-INSERT INTO `globalize_countries` VALUES (125,'LK','LKR','','','','','Sri Lanka','western','');
-INSERT INTO `globalize_countries` VALUES (126,'LR','LRD','','','','','Liberia','western','');
-INSERT INTO `globalize_countries` VALUES (127,'LS','LSL','','','','','Lesotho','western','');
-INSERT INTO `globalize_countries` VALUES (128,'LT','LTL',',','','',',','Lithuania','western','.');
-INSERT INTO `globalize_countries` VALUES (129,'LU','EUR',',','','',',','Luxembourg','western','.');
-INSERT INTO `globalize_countries` VALUES (130,'LV','LVL',',','','',',','Latvia','western',' ');
-INSERT INTO `globalize_countries` VALUES (131,'LY','LYD','.','','','.','Libyan Arab Jamahiriya','western',',');
-INSERT INTO `globalize_countries` VALUES (132,'MA','MAD','.','','','.','Morocco','western',',');
-INSERT INTO `globalize_countries` VALUES (133,'MC','EUR','','','','','Monaco','western','');
-INSERT INTO `globalize_countries` VALUES (134,'MD','MDL','','','','','Moldova','western','');
-INSERT INTO `globalize_countries` VALUES (135,'MG','MGF','','','','','Madagascar','western','');
-INSERT INTO `globalize_countries` VALUES (136,'MH','USD','','','','','Marshall Islands','western','');
-INSERT INTO `globalize_countries` VALUES (137,'MK','MKD',',','','',',','Macedonia','western','');
-INSERT INTO `globalize_countries` VALUES (138,'ML','XAF','','','','','Mali','western','');
-INSERT INTO `globalize_countries` VALUES (139,'MM','','','','','','Myanmar','western','');
-INSERT INTO `globalize_countries` VALUES (140,'MN','MNT','.','','','.','Mongolia','western','');
-INSERT INTO `globalize_countries` VALUES (141,'MO','MOP','','','','','Macao','western','');
-INSERT INTO `globalize_countries` VALUES (142,'MP','USD','','','','','Northern Mariana Islands','western','');
-INSERT INTO `globalize_countries` VALUES (143,'MQ','EUR','','','','','Martinique','western','');
-INSERT INTO `globalize_countries` VALUES (144,'MR','MRO','','','','','Mauritania','western','');
-INSERT INTO `globalize_countries` VALUES (145,'MS','XCD','','','','','Montserrat','western','');
-INSERT INTO `globalize_countries` VALUES (146,'MT','MTL','.','','','.','Malta','western',',');
-INSERT INTO `globalize_countries` VALUES (147,'MU','MUR','','','','','Mauritius','western','');
-INSERT INTO `globalize_countries` VALUES (148,'MV','MVR','','','','','Maldives','western','');
-INSERT INTO `globalize_countries` VALUES (149,'MW','MWK','','','','','Malawi','western','');
-INSERT INTO `globalize_countries` VALUES (150,'MX','MXN','.','','','.','Mexico','western',',');
-INSERT INTO `globalize_countries` VALUES (151,'MY','MYR','.','','','.','Malaysia','western',',');
-INSERT INTO `globalize_countries` VALUES (152,'MZ','MZM','','','','','Mozambique','western','');
-INSERT INTO `globalize_countries` VALUES (153,'NA','NAD','','','','','Namibia','western','');
-INSERT INTO `globalize_countries` VALUES (154,'NC','XPF','','','','','New Caledonia','western','');
-INSERT INTO `globalize_countries` VALUES (155,'NE','XOF','','','','','Niger','western','');
-INSERT INTO `globalize_countries` VALUES (156,'NF','AUD','','','','','Norfolk Island','western','');
-INSERT INTO `globalize_countries` VALUES (157,'NG','NGN','','','','','Nigeria','western','');
-INSERT INTO `globalize_countries` VALUES (158,'NI','NIC','.','','','.','Nicaragua','western',',');
-INSERT INTO `globalize_countries` VALUES (159,'NL','EUR',',','€ %n','',',','Netherlands','western','');
-INSERT INTO `globalize_countries` VALUES (160,'NO','NOK',',','kr %n','',',','Norway','western',' ');
-INSERT INTO `globalize_countries` VALUES (161,'NP','NPR','.','','','.','Nepal','western',',');
-INSERT INTO `globalize_countries` VALUES (162,'NR','AUD','','','','','Nauru','western','');
-INSERT INTO `globalize_countries` VALUES (163,'NU','NZD','','','','','Niue','western','');
-INSERT INTO `globalize_countries` VALUES (164,'NZ','NZD','.','','','.','New Zealand','western',',');
-INSERT INTO `globalize_countries` VALUES (165,'OM','OMR','.','','','.','Oman','western',',');
-INSERT INTO `globalize_countries` VALUES (166,'PA','PAB','.','','','.','Panama','western',',');
-INSERT INTO `globalize_countries` VALUES (167,'PE','PEI','.','','','.','Peru','western',',');
-INSERT INTO `globalize_countries` VALUES (168,'PF','XPF','','','','','French Polynesia','western','');
-INSERT INTO `globalize_countries` VALUES (169,'PG','PGK','','','','','Papua New Guinea','western','');
-INSERT INTO `globalize_countries` VALUES (170,'PH','PHP','.','','','.','Philippines','western',',');
-INSERT INTO `globalize_countries` VALUES (171,'PK','PKR','.','','','.','Pakistan','western',',');
-INSERT INTO `globalize_countries` VALUES (172,'PL','PLN',',','','',',','Poland','western','.');
-INSERT INTO `globalize_countries` VALUES (173,'PM','EUR','','','','','St. Pierre and Miquelon','western','');
-INSERT INTO `globalize_countries` VALUES (174,'PN','NZD','','','','','Pitcairn Island','western','');
-INSERT INTO `globalize_countries` VALUES (175,'PR','USD','.','','','.','Puerto Rico','western',',');
-INSERT INTO `globalize_countries` VALUES (176,'PS','','','','','','Palestinian Territory','western','');
-INSERT INTO `globalize_countries` VALUES (177,'PT','EUR','$','%n €','','$','Portugal','western','.');
-INSERT INTO `globalize_countries` VALUES (178,'PW','USD','','','','','Palau','western','');
-INSERT INTO `globalize_countries` VALUES (179,'PY','PYG',',','','',',','Paraguay','western','.');
-INSERT INTO `globalize_countries` VALUES (180,'QA','QAR','.','','','.','Qatar','western',',');
-INSERT INTO `globalize_countries` VALUES (181,'RE','EUR','','','','','Reunion','western','');
-INSERT INTO `globalize_countries` VALUES (182,'RO','ROL',',','','',',','Romania','western','.');
-INSERT INTO `globalize_countries` VALUES (183,'RU','RUB','.','','','.','Russian Federation','western','');
-INSERT INTO `globalize_countries` VALUES (184,'RW','RWF','','','','','Rwanda','western','');
-INSERT INTO `globalize_countries` VALUES (185,'SA','SAR','.','','','.','Saudi Arabia','western','');
-INSERT INTO `globalize_countries` VALUES (186,'SB','SBD','','','','','Solomon Islands','western','');
-INSERT INTO `globalize_countries` VALUES (187,'SC','SCR','','','','','Seychelles','western','');
-INSERT INTO `globalize_countries` VALUES (188,'SD','SDP','.','','','.','Sudan','western',',');
-INSERT INTO `globalize_countries` VALUES (189,'SE','SEK',',','%n kr','',',','Sweden','western','');
-INSERT INTO `globalize_countries` VALUES (190,'SG','SGD','.','','','.','Singapore','western',',');
-INSERT INTO `globalize_countries` VALUES (191,'SH','SHP','','','','','St. Helena','western','');
-INSERT INTO `globalize_countries` VALUES (192,'SI','SIT',',','','',',','Slovenia','western','');
-INSERT INTO `globalize_countries` VALUES (193,'SJ','NOK','','','','','Svalbard & Jan Mayen Islands','western','');
-INSERT INTO `globalize_countries` VALUES (194,'SK','SKK',',','','',',','Slovakia','western',' ');
-INSERT INTO `globalize_countries` VALUES (195,'SL','SLL','','','','','Sierra Leone','western','');
-INSERT INTO `globalize_countries` VALUES (196,'SM','EUR','','','','','San Marino','western','');
-INSERT INTO `globalize_countries` VALUES (197,'SN','XOF','','','','','Senegal','western','');
-INSERT INTO `globalize_countries` VALUES (198,'SO','SOS','','','','','Somalia','western','');
-INSERT INTO `globalize_countries` VALUES (199,'SR','SRG','','','','','Suriname','western','');
-INSERT INTO `globalize_countries` VALUES (200,'ST','STD','','','','','Sao Tome and Principe','western','');
-INSERT INTO `globalize_countries` VALUES (201,'SV','SVC','.','','','.','El Salvador','western',',');
-INSERT INTO `globalize_countries` VALUES (202,'SY','SYP','.','','','.','Syrian Arab Republic','western',',');
-INSERT INTO `globalize_countries` VALUES (203,'SZ','SZL','','','','','Swaziland','western','');
-INSERT INTO `globalize_countries` VALUES (204,'TC','USD','','','','','Turks and Caicos Islands','western','');
-INSERT INTO `globalize_countries` VALUES (205,'TD','XAF','','','','','Chad','western','');
-INSERT INTO `globalize_countries` VALUES (206,'TF','EUR','','','','','French Southern Territories','western','');
-INSERT INTO `globalize_countries` VALUES (207,'TG','XAF','','','','','Togo','western','');
-INSERT INTO `globalize_countries` VALUES (208,'TH','THB','.','','','.','Thailand','western',',');
-INSERT INTO `globalize_countries` VALUES (209,'TJ','TJR','.','','','.','Tajikistan','western','');
-INSERT INTO `globalize_countries` VALUES (210,'TK','NZD','','','','','Tokelau','western','');
-INSERT INTO `globalize_countries` VALUES (211,'TL','','','','','','Timor-Leste','western','');
-INSERT INTO `globalize_countries` VALUES (212,'TM','TMM','','','','','Turkmenistan','western','');
-INSERT INTO `globalize_countries` VALUES (213,'TN','TND','.','','','.','Tunisia','western',',');
-INSERT INTO `globalize_countries` VALUES (214,'TO','TOP','','','','','Tonga','western','');
-INSERT INTO `globalize_countries` VALUES (215,'TR','TRL',',','','',',','Turkey','western','.');
-INSERT INTO `globalize_countries` VALUES (216,'TT','TTD','','','','','Trinidad and Tobago','western','');
-INSERT INTO `globalize_countries` VALUES (217,'TV','AUD','','','','','Tuvalu','western','');
-INSERT INTO `globalize_countries` VALUES (218,'TW','TWD','.','NT$%n','','.','Taiwan','western',',');
-INSERT INTO `globalize_countries` VALUES (219,'TZ','TZS','','','','','Tanzania','western','');
-INSERT INTO `globalize_countries` VALUES (220,'UA','UAH','.','','','.','Ukraine','western','');
-INSERT INTO `globalize_countries` VALUES (221,'UG','UGS','.','','','.','Uganda','western',',');
-INSERT INTO `globalize_countries` VALUES (222,'UM','USD','','','','','United States Minor Outlying Islands','western','');
-INSERT INTO `globalize_countries` VALUES (223,'US','USD','.','','','.','United States of America','western',',');
-INSERT INTO `globalize_countries` VALUES (224,'UY','UYU',',','','',',','Uruguay','western','.');
-INSERT INTO `globalize_countries` VALUES (225,'UZ','UZS','.','','','.','Uzbekistan','western',',');
-INSERT INTO `globalize_countries` VALUES (226,'VA','EUR','','','','','Holy See','western','');
-INSERT INTO `globalize_countries` VALUES (227,'VC','XCD','','','','','St. Vincent and the Grenadines','western','');
-INSERT INTO `globalize_countries` VALUES (228,'VE','VEB',',','','',',','Venezuela','western','.');
-INSERT INTO `globalize_countries` VALUES (229,'VG','USD','','','','','British Virgin Islands','western','');
-INSERT INTO `globalize_countries` VALUES (230,'VI','USD','','','','','US Virgin Islands','western','');
-INSERT INTO `globalize_countries` VALUES (231,'VN','VND',',','','',',','Viet Nam','western','.');
-INSERT INTO `globalize_countries` VALUES (232,'VU','VUV','','','','','Vanuatu','western','');
-INSERT INTO `globalize_countries` VALUES (233,'WF','XPF','','','','','Wallis and Futuna Islands','western','');
-INSERT INTO `globalize_countries` VALUES (234,'WS','WST','','','','','Samoa','western','');
-INSERT INTO `globalize_countries` VALUES (235,'YE','','.','','','.','Yemen','western',',');
-INSERT INTO `globalize_countries` VALUES (236,'YT','EUR','','','','','Mayotte','western','');
-INSERT INTO `globalize_countries` VALUES (237,'ZA','ZAR','.','','','.','South Africa','western',',');
-INSERT INTO `globalize_countries` VALUES (238,'ZM','ZMK','','','','','Zambia','western','');
-INSERT INTO `globalize_countries` VALUES (239,'ZW','ZWD','.','','','.','Zimbabwe','western',',');
-
-
-INSERT INTO `globalize_languages` VALUES (15,'aa','ltr','Afar','','','aa','aar','aar','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (33,'ab','ltr','Abkhazian','','','ab','abk','abk','\0','аҧсуа бызшәа','','','','','L');
-INSERT INTO `globalize_languages` VALUES (114,'af','ltr','Afrikaans','','','af','afr','afr','\0','Afrikaans','','','','','L');
-INSERT INTO `globalize_languages` VALUES (191,'ak','ltr','Akan','','','ak','aka','aka','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (247,'am','ltr','Amharic','','','am','amh','amh','\0','አማርኛ','','','','','L');
-INSERT INTO `globalize_languages` VALUES (340,'ar','rtl','Arabic','','','ar','ara','ara','\0','العربية','','','','','L');
-INSERT INTO `globalize_languages` VALUES (346,'an','ltr','Aragonese','','','an','arg','arg','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (376,'as','ltr','Assamese','','','as','asm','asm','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (438,'av','ltr','Avaric','','','av','ava','ava','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (441,'ae','ltr','Avestan','','','ae','ave','ave','\0','','','','','','A');
-INSERT INTO `globalize_languages` VALUES (483,'ay','ltr','Aymara','','','ay','aym','aym','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (496,'az','ltr','Azerbaijani','','','az','aze','aze','\0','azərbaycan','','','','','L');
-INSERT INTO `globalize_languages` VALUES (512,'ba','ltr','Bashkir','','','ba','bak','bak','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (514,'bm','ltr','Bambara','','','bm','bam','bam','\0','Bamanankan','','','','','L');
-INSERT INTO `globalize_languages` VALUES (614,'be','ltr','Belarusian','','','be','bel','bel','\0','Беларуская','','','','','L');
-INSERT INTO `globalize_languages` VALUES (616,'bn','ltr','Bengali','','','bn','ben','ben','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (721,'bi','ltr','Bislama','','','bi','bis','bis','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (860,'bo','ltr','Tibetan','','','bo','bod','bod','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (875,'bs','ltr','Bosnian','','','bs','bos','bos','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (936,'br','ltr','Breton','','','br','bre','bre','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (1020,'bg','ltr','Bulgarian','','','bg','bul','bul','\0','Български','','','','','L');
-INSERT INTO `globalize_languages` VALUES (1177,'ca','ltr','Catalan','','','ca','cat','cat','\0','Català','','','','','L');
-INSERT INTO `globalize_languages` VALUES (1233,'cs','ltr','Czech','','','cs','ces','ces','\0','čeština','','','c%10==1 && c%100!=11 ? 1 : c%10>=2 && c%10<=4 && (c%100<10 || c%100>=20) ? 2 : 3','','L');
-INSERT INTO `globalize_languages` VALUES (1242,'ch','ltr','Chamorro','','','ch','cha','cha','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (1246,'ce','ltr','Chechen','','','ce','che','che','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (1261,'cu','ltr','Slavic','','Church','cu','chu','chu','\0','','','','','','A');
-INSERT INTO `globalize_languages` VALUES (1262,'cv','ltr','Chuvash','','','cv','chv','chv','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (1372,'kw','ltr','Cornish','','','kw','cor','cor','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (1373,'co','ltr','Corsican','','','co','cos','cos','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (1397,'cr','ltr','Cree','','','cr','cre','cre','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (1481,'cy','ltr','Welsh','','','cy','cym','cym','\0','Cymraeg','','','','','L');
-INSERT INTO `globalize_languages` VALUES (1499,'da','ltr','Danish','','','da','dan','dan','\0','Dansk','','','c == 1 ? 1 : 2','','L');
-INSERT INTO `globalize_languages` VALUES (1556,'de','ltr','German','','','de','deu','deu','\0','Deutsch','','','c == 1 ? 1 : 2','','L');
-INSERT INTO `globalize_languages` VALUES (1607,'dv','ltr','Divehi','','','dv','div','div','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (1760,'dz','ltr','Dzongkha','','','dz','dzo','dzo','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (1793,'el','ltr','Greek','','Modern (1453-)','el','ell','ell','\0','Ελληνικά','','','c == 1 ? 1 : 2','','L');
-INSERT INTO `globalize_languages` VALUES (1819,'en','ltr','English','','','en','eng','eng','\0','','','','c == 1 ? 1 : 2','','L');
-INSERT INTO `globalize_languages` VALUES (1831,'eo','ltr','Esperanto','','','eo','epo','epo','\0','','','','c == 1 ? 1 : 2','','C');
-INSERT INTO `globalize_languages` VALUES (1851,'et','ltr','Estonian','','','et','est','est','\0','Eesti','','','c == 1 ? 1 : 2','','L');
-INSERT INTO `globalize_languages` VALUES (1865,'eu','ltr','Basque','','','eu','eus','eus','\0','euskera','','','','','L');
-INSERT INTO `globalize_languages` VALUES (1869,'ee','ltr','Ewe','','','ee','ewe','ewe','\0','Ɛʋɛ','','','','','L');
-INSERT INTO `globalize_languages` VALUES (1886,'fo','ltr','Faroese','','','fo','fao','fao','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (1889,'fa','ltr','Persian','','','fa','fas','fas','\0','فارسی','','','','','L');
-INSERT INTO `globalize_languages` VALUES (1901,'fj','ltr','Fijian','','','fj','fij','fij','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (1903,'fi','ltr','Finnish','','','fi','fin','fin','\0','suomi','','','c == 1 ? 1 : 2','','L');
-INSERT INTO `globalize_languages` VALUES (1930,'fr','ltr','French','','','fr','fra','fra','\0','Français','','','c == 1 ? 1 : 2','','L');
-INSERT INTO `globalize_languages` VALUES (1942,'fy','ltr','Frisian','','','fy','fry','fry','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (1954,'ff','ltr','Fulah','','','ff','ful','ful','\0','Fulfulde, Pulaar, Pular','','','','','L');
-INSERT INTO `globalize_languages` VALUES (2112,'gd','ltr','Gaelic','Scots','','gd','gla','gla','\0','','','','c==1 ? 1 : c==2 ? 2 : 3','','L');
-INSERT INTO `globalize_languages` VALUES (2115,'ga','ltr','Irish','','','ga','gle','gle','\0','Gaeilge','','','c==1 ? 1 : c==2 ? 2 : 3','','L');
-INSERT INTO `globalize_languages` VALUES (2116,'gl','ltr','Gallegan','','','gl','glg','glg','\0','Galego','','','','','L');
-INSERT INTO `globalize_languages` VALUES (2125,'gv','ltr','Manx','','','gv','glv','glv','\0','','','','','','E');
-INSERT INTO `globalize_languages` VALUES (2194,'gn','ltr','Guarani','','','gn','grn','grn','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (2226,'gu','ltr','Gujarati','','','gu','guj','guj','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (2304,'ht','ltr','Haitian; Haitian Creole','','','ht','hat','hat','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (2305,'ha','ltr','Hausa','','','ha','hau','hau','\0','Hausa','','','','','L');
-INSERT INTO `globalize_languages` VALUES (2315,'sh','ltr','Serbo-Croatian','','','sh','','hbs','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (2323,'he','rtl','Hebrew','','','he','heb','heb','\0','עברית','','','c == 1 ? 1 : 2','','L');
-INSERT INTO `globalize_languages` VALUES (2329,'hz','ltr','Herero','','','hz','her','her','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (2343,'hi','ltr','Hindi','','','hi','hin','hin','\0','हिंदी','','','','','L');
-INSERT INTO `globalize_languages` VALUES (2370,'ho','ltr','Hiri Motu','','','ho','hmo','hmo','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (2418,'hr','ltr','Croatian','','','hr','hrv','hrv','\0','Hrvatski','','','c%10==1 && c%100!=11 ? 1 : c%10>=2 && c%10<=4 && (c%100<10 || c%100>=20) ? 2 : 3','','L');
-INSERT INTO `globalize_languages` VALUES (2443,'hu','ltr','Hungarian','','','hu','hun','hun','\0','Magyar','','','c = 1','','L');
-INSERT INTO `globalize_languages` VALUES (2466,'hy','ltr','Armenian','','','hy','hye','hye','\0','Հայերեն','','','','','L');
-INSERT INTO `globalize_languages` VALUES (2480,'ig','ltr','Igbo','','','ig','ibo','ibo','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (2494,'io','ltr','Ido','','','io','ido','ido','\0','','','','','','C');
-INSERT INTO `globalize_languages` VALUES (2519,'ii','ltr','Yi','','Sichuan','ii','iii','iii','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (2532,'iu','ltr','Inuktitut','','','iu','iku','iku','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (2539,'ie','ltr','Interlingue','','','ie','ile','ile','\0','','','','','','C');
-INSERT INTO `globalize_languages` VALUES (2556,'ia','ltr','Interlingua','International Auxiliary Language Association','','ia','ina','ina','\0','','','','','','C');
-INSERT INTO `globalize_languages` VALUES (2558,'id','ltr','Indonesian','','','id','ind','ind','\0','Bahasa indonesia','','','','','L');
-INSERT INTO `globalize_languages` VALUES (2574,'ik','ltr','Inupiaq','','','ik','ipk','ipk','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (2593,'is','ltr','Icelandic','','','is','isl','isl','\0','Íslenska','','','','','L');
-INSERT INTO `globalize_languages` VALUES (2600,'it','ltr','Italian','','','it','ita','ita','\0','italiano','','','c == 1 ? 1 : 2','','L');
-INSERT INTO `globalize_languages` VALUES (2652,'jv','ltr','Javanese','','','jv','jav','jav','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (2723,'ja','ltr','Japanese','','','ja','jpn','jpn','\0','日本語','','','c = 1','','L');
-INSERT INTO `globalize_languages` VALUES (2763,'kl','ltr','Kalaallisut','','','kl','kal','kal','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (2765,'kn','ltr','Kannada','','','kn','kan','kan','\0','ಕನ್ನಡ','','','','','L');
-INSERT INTO `globalize_languages` VALUES (2769,'ks','ltr','Kashmiri','','','ks','kas','kas','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (2770,'ka','ltr','Georgian','','','ka','kat','kat','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (2771,'kr','ltr','Kanuri','','','kr','kau','kau','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (2776,'kk','ltr','Kazakh','','','kk','kaz','kaz','\0','Қазақ','','','','','L');
-INSERT INTO `globalize_languages` VALUES (2939,'km','ltr','Khmer','','','km','khm','khm','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (2963,'ki','ltr','Kikuyu','','','ki','kik','kik','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (2966,'rw','ltr','Kinyarwanda','','','rw','kin','kin','\0','Kinyarwanda','','','','','L');
-INSERT INTO `globalize_languages` VALUES (2970,'ky','ltr','Kirghiz','','','ky','kir','kir','\0','Кыргыз','','','','','L');
-INSERT INTO `globalize_languages` VALUES (3117,'kv','ltr','Komi','','','kv','kom','kom','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (3118,'kg','ltr','Kongo','','','kg','kon','kon','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (3122,'ko','ltr','Korean','','','ko','kor','kor','\0','한국어','','','c = 1','','L');
-INSERT INTO `globalize_languages` VALUES (3260,'kj','ltr','Kuanyama','','','kj','kua','kua','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (3276,'ku','ltr','Kurdish','','','ku','kur','kur','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (3428,'lo','ltr','Lao','','','lo','lao','lao','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (3433,'la','ltr','Latin','','','la','lat','lat','\0','','','','','','A');
-INSERT INTO `globalize_languages` VALUES (3435,'lv','ltr','Latvian','','','lv','lav','lav','\0','Latviešu','','','c%10==1 && c%100!=11 ? 1 : c != 0 ? 2 : 3','','L');
-INSERT INTO `globalize_languages` VALUES (3546,'li','ltr','Limburgish','','Limburger','li','lim','lim','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (3547,'ln','ltr','Lingala','','','ln','lin','lin','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (3553,'lt','ltr','Lithuanian','','','lt','lit','lit','\0','Lietuviškai','','','c%10==1 && c%100!=11 ? 1 : c%10>=2 && (c%100<10 || c%100>=20) ? 2 : 3','','L');
-INSERT INTO `globalize_languages` VALUES (3687,'lb','ltr','Letzeburgesch','','','lb','ltz','ltz','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (3689,'lu','ltr','Luba-Katanga','','','lu','lub','lub','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (3694,'lg','ltr','Ganda','','','lg','lug','lug','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (3732,'mh','ltr','Marshall','','','mh','mah','mah','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (3736,'ml','ltr','Malayalam','','','ml','mal','mal','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (3740,'mr','ltr','Marathi','','','mr','mar','mar','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (3981,'mk','ltr','Macedonian','','','mk','mkd','mkd','\0','Македонски','','','','','L');
-INSERT INTO `globalize_languages` VALUES (4009,'mg','ltr','Malagasy','','','mg','mlg','mlg','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (4022,'mt','ltr','Maltese','','','mt','mlt','mlt','\0','Malti','','','','','L');
-INSERT INTO `globalize_languages` VALUES (4091,'mo','ltr','Moldavian','','','mo','mol','mol','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (4093,'mn','ltr','Mongolian','','','mn','mon','mon','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (4166,'mi','ltr','Maori','','','mi','mri','mri','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (4184,'ms','ltr','Malay','generic','','ms','msa','msa','\0','Bahasa melayu','','','','','L');
-INSERT INTO `globalize_languages` VALUES (4338,'my','ltr','Burmese','','','my','mya','mya','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (4406,'na','ltr','Nauru','','','na','nau','nau','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (4407,'nv','ltr','Navajo','','','nv','nav','nav','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (4423,'nr','ltr','Ndebele','','South','nr','nbl','nbl','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (4463,'nd','ltr','Ndebele','','North','nd','nde','nde','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (4473,'ng','ltr','Ndonga','','','ng','ndo','ndo','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (4499,'ne','ltr','Nepali','','','ne','nep','nep','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (4628,'nl','ltr','Dutch','','','nl','nld','nld','\0','Nederlands','','','c == 1 ? 1 : 2','','L');
-INSERT INTO `globalize_languages` VALUES (4682,'nn','ltr','Norwegian Nynorsk','','','nn','nno','nno','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (4695,'nb','ltr','Norwegian Bokmål','','','nb','nob','nob','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (4709,'no','ltr','Norwegian','','','no','nor','nor','\0','Norsk','','','c == 1 ? 1 : 2','','L');
-INSERT INTO `globalize_languages` VALUES (4821,'ny','ltr','Chichewa; Nyanja','','','ny','nya','nya','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (4867,'oc','ltr','Occitan','post 1500','','oc','oci','oci','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (4891,'oj','ltr','Ojibwa','','','oj','oji','oji','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (4965,'or','ltr','Oriya','','','or','ori','ori','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (4967,'om','ltr','Oromo','','','om','orm','orm','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (4984,'os','ltr','Ossetian; Ossetic','','','os','oss','oss','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (5031,'pa','ltr','Panjabi','','','pa','pan','pan','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (5176,'pi','ltr','Pali','','','pi','pli','pli','\0','','','','','','A');
-INSERT INTO `globalize_languages` VALUES (5244,'pl','ltr','Polish','','','pl','pol','pol','\0','Polski','','','c==1 ? 1 : c%10>=2 && c%10<=4 && (c%100<10 || c%100>=20) ? 2 : 3','','L');
-INSERT INTO `globalize_languages` VALUES (5250,'pt','ltr','Portuguese','','','pt','por','por','\0','português','','','c == 1 ? 1 : 2','','L');
-INSERT INTO `globalize_languages` VALUES (5343,'ps','ltr','Pushto','','','ps','pus','pus','\0','پښتو','','','','','L');
-INSERT INTO `globalize_languages` VALUES (5368,'qu','ltr','Quechua','','','qu','que','que','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (5525,'rm','ltr','Raeto-Romance','','','rm','roh','roh','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (5528,'ro','ltr','Romanian','','','ro','ron','ron','\0','Română','','','','','L');
-INSERT INTO `globalize_languages` VALUES (5552,'rn','ltr','Rundi','','','rn','run','run','\0','Kirundi','','','','','L');
-INSERT INTO `globalize_languages` VALUES (5556,'ru','ltr','Russian','','','ru','rus','rus','\0','Pyccĸий','','','c%10==1 && c%100!=11 ? 1 : c%10>=2 && c%10<=4 && (c%100<10 || c%100>=20) ? 2 : 3','','L');
-INSERT INTO `globalize_languages` VALUES (5576,'sg','ltr','Sango','','','sg','sag','sag','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (5581,'sa','ltr','Sanskrit','','','sa','san','san','\0','','','','','','A');
-INSERT INTO `globalize_languages` VALUES (5738,'si','ltr','Sinhalese','','','si','sin','sin','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (5800,'sk','ltr','Slovak','','','sk','slk','slk','\0','Slovenčina','','','c%10==1 && c%100!=11 ? 1 : c%10>=2 && c%10<=4 && (c%100<10 || c%100>=20) ? 2 : 3','','L');
-INSERT INTO `globalize_languages` VALUES (5810,'sl','ltr','Slovenian','','','sl','slv','slv','\0','Slovenščina','','','c%100==1 ? 1 : c%100==2 ? 2 : c%100==3 || c%100==4 ? 3 : 4','','L');
-INSERT INTO `globalize_languages` VALUES (5819,'se','ltr','Northern Sami','','','se','sme','sme','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (5828,'sm','ltr','Samoan','','','sm','smo','smo','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (5840,'sn','ltr','Shona','','','sn','sna','sna','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (5843,'sd','ltr','Sindhi','','','sd','snd','snd','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (5876,'so','ltr','Somali','','','so','som','som','\0','Somali','','','','','L');
-INSERT INTO `globalize_languages` VALUES (5882,'st','ltr','Sotho','','Southern','st','sot','sot','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (5889,'es','ltr','Spanish','','','es','spa','spa','\0','Español','','','c == 1 ? 1 : 2','','L');
-INSERT INTO `globalize_languages` VALUES (5910,'sq','ltr','Albanian','','','sq','sqi','sqi','\0','shqip','','','','','L');
-INSERT INTO `globalize_languages` VALUES (5921,'sc','ltr','Sardinian','','','sc','srd','srd','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (5933,'sr','ltr','Serbian','','','sr','srp','srp','\0','Srpski','','','','','L');
-INSERT INTO `globalize_languages` VALUES (5964,'ss','ltr','Swati','','','ss','ssw','ssw','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (6002,'su','ltr','Sundanese','','','su','sun','sun','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (6021,'sw','ltr','Swahili','generic','','sw','swa','swa','\0','Kiswahili','','','','','L');
-INSERT INTO `globalize_languages` VALUES (6024,'sv','ltr','Swedish','','','sv','swe','swe','\0','svenska','','','c == 1 ? 1 : 2','','L');
-INSERT INTO `globalize_languages` VALUES (6086,'ty','ltr','Tahitian','','','ty','tah','tah','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (6090,'ta','ltr','Tamil','','','ta','tam','tam','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (6097,'tt','ltr','Tatar','','','tt','tat','tat','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (6182,'te','ltr','Telugu','','','te','tel','tel','\0','తెలుగు','','','','','L');
-INSERT INTO `globalize_languages` VALUES (6210,'tg','ltr','Tajik','','','tg','tgk','tgk','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (6211,'tl','ltr','Tagalog','','','tl','tgl','tgl','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (6223,'th','ltr','Thai','','','th','tha','tha','\0','ภาษาไทย','','','','','L');
-INSERT INTO `globalize_languages` VALUES (6260,'ti','ltr','Tigrinya','','','ti','tir','tir','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (6383,'to','ltr','Tonga','Tonga Islands','','to','ton','ton','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (6466,'tn','ltr','Tswana','','','tn','tsn','tsn','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (6467,'ts','ltr','Tsonga','','','ts','tso','tso','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (6513,'tk','ltr','Turkmen','','','tk','tuk','tuk','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (6519,'tr','ltr','Turkish','','','tr','tur','tur','\0','Tϋrkçe','','','c = 1','','L');
-INSERT INTO `globalize_languages` VALUES (6546,'tw','ltr','Twi','','','tw','twi','twi','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (6630,'ug','ltr','Uighur','','','ug','uig','uig','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (6640,'uk','ltr','Ukrainian','','','uk','ukr','ukr','\0','Українська','','','c%10==1 && c%100!=11 ? 1 : c%10>=2 && c%10<=4 && (c%100<10 || c%100>=20) ? 2 : 3','','L');
-INSERT INTO `globalize_languages` VALUES (6679,'ur','ltr','Urdu','','','ur','urd','urd','\0','اردو','','','','','L');
-INSERT INTO `globalize_languages` VALUES (6719,'uz','ltr','Uzbek','','','uz','uzb','uzb','\0',"o'zbek",'','','','','L');
-INSERT INTO `globalize_languages` VALUES (6744,'ve','ltr','Venda','','','ve','ven','ven','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (6751,'vi','ltr','Vietnamese','','','vi','vie','vie','\0','Tiếng Việt','','','','','L');
-INSERT INTO `globalize_languages` VALUES (6800,'vo','ltr','Volapük','','','vo','vol','vol','\0','','','','','','C');
-INSERT INTO `globalize_languages` VALUES (6911,'wa','ltr','Walloon','','','wa','wln','wln','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (6952,'wo','ltr','Wolof','','','wo','wol','wol','\0','Wolof','','','','','L');
-INSERT INTO `globalize_languages` VALUES (7078,'xh','ltr','Xhosa','','','xh','xho','xho','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (7324,'yi','ltr','Yiddish','','','yi','yid','yid','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (7481,'za','ltr','Zhuang','','','za','zha','zha','\0','','','','','','L');
-INSERT INTO `globalize_languages` VALUES (7484,'zh','ltr','Chinese','','','zh','zho','zho','\0','中文','','','','','L');
-INSERT INTO `globalize_languages` VALUES (7594,'zu','ltr','Zulu','','','zu','zul','zul','\0','isiZulu','','','','','L');
-INSERT INTO `globalize_languages` VALUES (7595,'zh-Hant','ltr','Traditional Chinese','','','','','','\0','','','','','zh-Hant','L');
-INSERT INTO `globalize_languages` VALUES (7596,'zh-Hans','ltr','Simplified Chinese','','','','','','\0','','','','','zh-Hans','L');
-
-
-INSERT INTO `globalize_translations` VALUES (1,'',NULL,1,'','Sondag','Sunday [weekday]','ViewTranslation',114);
-INSERT INTO `globalize_translations` VALUES (2,'',NULL,1,'','Maandag','Monday [weekday]','ViewTranslation',114);
-INSERT INTO `globalize_translations` VALUES (3,'',NULL,1,'','Dinsdag','Tuesday [weekday]','ViewTranslation',114);
-INSERT INTO `globalize_translations` VALUES (4,'',NULL,1,'','Woensdag','Wednesday [weekday]','ViewTranslation',114);
-INSERT INTO `globalize_translations` VALUES (5,'',NULL,1,'','Donderdag','Thursday [weekday]','ViewTranslation',114);
-INSERT INTO `globalize_translations` VALUES (6,'',NULL,1,'','Vrydag','Friday [weekday]','ViewTranslation',114);
-INSERT INTO `globalize_translations` VALUES (7,'',NULL,1,'','Saterdag','Saturday [weekday]','ViewTranslation',114);
-INSERT INTO `globalize_translations` VALUES (8,'',NULL,1,'','So','Sun [abbreviated weekday]','ViewTranslation',114);
-INSERT INTO `globalize_translations` VALUES (9,'',NULL,1,'','Ma','Mon [abbreviated weekday]','ViewTranslation',114);
-INSERT INTO `globalize_translations` VALUES (10,'',NULL,1,'','Di','Tue [abbreviated weekday]','ViewTranslation',114);
-INSERT INTO `globalize_translations` VALUES (11,'',NULL,1,'','Wo','Wed [abbreviated weekday]','ViewTranslation',114);
-INSERT INTO `globalize_translations` VALUES (12,'',NULL,1,'','Do','Thu [abbreviated weekday]','ViewTranslation',114);
-INSERT INTO `globalize_translations` VALUES (13,'',NULL,1,'','Vr','Fri [abbreviated weekday]','ViewTranslation',114);
-INSERT INTO `globalize_translations` VALUES (14,'',NULL,1,'','Sa','Sat [abbreviated weekday]','ViewTranslation',114);
-INSERT INTO `globalize_translations` VALUES (15,'',NULL,1,'','Januarie','January [month]','ViewTranslation',114);
-INSERT INTO `globalize_translations` VALUES (16,'',NULL,1,'','Februarie','February [month]','ViewTranslation',114);
-INSERT INTO `globalize_translations` VALUES (17,'',NULL,1,'','Maart','March [month]','ViewTranslation',114);
-INSERT INTO `globalize_translations` VALUES (18,'',NULL,1,'','April','April [month]','ViewTranslation',114);
-INSERT INTO `globalize_translations` VALUES (19,'',NULL,1,'','Mei','May [month]','ViewTranslation',114);
-INSERT INTO `globalize_translations` VALUES (20,'',NULL,1,'','Junie','June [month]','ViewTranslation',114);
-INSERT INTO `globalize_translations` VALUES (21,'',NULL,1,'','Julie','July [month]','ViewTranslation',114);
-INSERT INTO `globalize_translations` VALUES (22,'',NULL,1,'','Augustus','August [month]','ViewTranslation',114);
-INSERT INTO `globalize_translations` VALUES (23,'',NULL,1,'','September','September [month]','ViewTranslation',114);
-INSERT INTO `globalize_translations` VALUES (24,'',NULL,1,'','Oktober','October [month]','ViewTranslation',114);
-INSERT INTO `globalize_translations` VALUES (25,'',NULL,1,'','November','November [month]','ViewTranslation',114);
-INSERT INTO `globalize_translations` VALUES (26,'',NULL,1,'','Desember','December [month]','ViewTranslation',114);
-INSERT INTO `globalize_translations` VALUES (27,'',NULL,1,'','Jan','Jan [abbreviated month]','ViewTranslation',114);
-INSERT INTO `globalize_translations` VALUES (28,'',NULL,1,'','Feb','Feb [abbreviated month]','ViewTranslation',114);
-INSERT INTO `globalize_translations` VALUES (29,'',NULL,1,'','Mar','Mar [abbreviated month]','ViewTranslation',114);
-INSERT INTO `globalize_translations` VALUES (30,'',NULL,1,'','Apr','Apr [abbreviated month]','ViewTranslation',114);
-INSERT INTO `globalize_translations` VALUES (31,'',NULL,1,'','Mei','May [abbreviated month]','ViewTranslation',114);
-INSERT INTO `globalize_translations` VALUES (32,'',NULL,1,'','Jun','Jun [abbreviated month]','ViewTranslation',114);
-INSERT INTO `globalize_translations` VALUES (33,'',NULL,1,'','Jul','Jul [abbreviated month]','ViewTranslation',114);
-INSERT INTO `globalize_translations` VALUES (34,'',NULL,1,'','Aug','Aug [abbreviated month]','ViewTranslation',114);
-INSERT INTO `globalize_translations` VALUES (35,'',NULL,1,'','Sep','Sep [abbreviated month]','ViewTranslation',114);
-INSERT INTO `globalize_translations` VALUES (36,'',NULL,1,'','Okt','Oct [abbreviated month]','ViewTranslation',114);
-INSERT INTO `globalize_translations` VALUES (37,'',NULL,1,'','Nov','Nov [abbreviated month]','ViewTranslation',114);
-INSERT INTO `globalize_translations` VALUES (38,'',NULL,1,'','Des','Dec [abbreviated month]','ViewTranslation',114);
-INSERT INTO `globalize_translations` VALUES (39,'',NULL,1,'','እሑድ','Sunday [weekday]','ViewTranslation',247);
-INSERT INTO `globalize_translations` VALUES (40,'',NULL,1,'','ሰኞ','Monday [weekday]','ViewTranslation',247);
-INSERT INTO `globalize_translations` VALUES (41,'',NULL,1,'','ማክሰኞ','Tuesday [weekday]','ViewTranslation',247);
-INSERT INTO `globalize_translations` VALUES (42,'',NULL,1,'','ረቡዕ','Wednesday [weekday]','ViewTranslation',247);
-INSERT INTO `globalize_translations` VALUES (43,'',NULL,1,'','ሐሙስ','Thursday [weekday]','ViewTranslation',247);
-INSERT INTO `globalize_translations` VALUES (44,'',NULL,1,'','ዓርብ','Friday [weekday]','ViewTranslation',247);
-INSERT INTO `globalize_translations` VALUES (45,'',NULL,1,'','ቅዳሜ','Saturday [weekday]','ViewTranslation',247);
-INSERT INTO `globalize_translations` VALUES (46,'',NULL,1,'','እሑድ','Sun [abbreviated weekday]','ViewTranslation',247);
-INSERT INTO `globalize_translations` VALUES (47,'',NULL,1,'','ሰኞ ','Mon [abbreviated weekday]','ViewTranslation',247);
-INSERT INTO `globalize_translations` VALUES (48,'',NULL,1,'','ማክሰ','Tue [abbreviated weekday]','ViewTranslation',247);
-INSERT INTO `globalize_translations` VALUES (49,'',NULL,1,'','ረቡዕ','Wed [abbreviated weekday]','ViewTranslation',247);
-INSERT INTO `globalize_translations` VALUES (50,'',NULL,1,'','ሐሙስ','Thu [abbreviated weekday]','ViewTranslation',247);
-INSERT INTO `globalize_translations` VALUES (51,'',NULL,1,'','ዓርብ','Fri [abbreviated weekday]','ViewTranslation',247);
-INSERT INTO `globalize_translations` VALUES (52,'',NULL,1,'','ቅዳሜ','Sat [abbreviated weekday]','ViewTranslation',247);
-INSERT INTO `globalize_translations` VALUES (53,'',NULL,1,'','ጃንዩወሪ','January [month]','ViewTranslation',247);
-INSERT INTO `globalize_translations` VALUES (54,'',NULL,1,'','ፌብሩወሪ','February [month]','ViewTranslation',247);
-INSERT INTO `globalize_translations` VALUES (55,'',NULL,1,'','ማርች','March [month]','ViewTranslation',247);
-INSERT INTO `globalize_translations` VALUES (56,'',NULL,1,'','ኤፕረል','April [month]','ViewTranslation',247);
-INSERT INTO `globalize_translations` VALUES (57,'',NULL,1,'','ሜይ','May [month]','ViewTranslation',247);
-INSERT INTO `globalize_translations` VALUES (58,'',NULL,1,'','ጁን','June [month]','ViewTranslation',247);
-INSERT INTO `globalize_translations` VALUES (59,'',NULL,1,'','ጁላይ','July [month]','ViewTranslation',247);
-INSERT INTO `globalize_translations` VALUES (60,'',NULL,1,'','ኦገስት','August [month]','ViewTranslation',247);
-INSERT INTO `globalize_translations` VALUES (61,'',NULL,1,'','ሴፕቴምበር','September [month]','ViewTranslation',247);
-INSERT INTO `globalize_translations` VALUES (62,'',NULL,1,'','ኦክተውበር','October [month]','ViewTranslation',247);
-INSERT INTO `globalize_translations` VALUES (63,'',NULL,1,'','ኖቬምበር','November [month]','ViewTranslation',247);
-INSERT INTO `globalize_translations` VALUES (64,'',NULL,1,'','ዲሴምበር','December [month]','ViewTranslation',247);
-INSERT INTO `globalize_translations` VALUES (65,'',NULL,1,'','ጃንዩ','Jan [abbreviated month]','ViewTranslation',247);
-INSERT INTO `globalize_translations` VALUES (66,'',NULL,1,'','ፌብሩ','Feb [abbreviated month]','ViewTranslation',247);
-INSERT INTO `globalize_translations` VALUES (67,'',NULL,1,'','ማርች','Mar [abbreviated month]','ViewTranslation',247);
-INSERT INTO `globalize_translations` VALUES (68,'',NULL,1,'','ኤፕረ','Apr [abbreviated month]','ViewTranslation',247);
-INSERT INTO `globalize_translations` VALUES (69,'',NULL,1,'','ሜይ ','May [abbreviated month]','ViewTranslation',247);
-INSERT INTO `globalize_translations` VALUES (70,'',NULL,1,'','ጁን ','Jun [abbreviated month]','ViewTranslation',247);
-INSERT INTO `globalize_translations` VALUES (71,'',NULL,1,'','ጁላይ','Jul [abbreviated month]','ViewTranslation',247);
-INSERT INTO `globalize_translations` VALUES (72,'',NULL,1,'','ኦገስ','Aug [abbreviated month]','ViewTranslation',247);
-INSERT INTO `globalize_translations` VALUES (73,'',NULL,1,'','ሴፕቴ','Sep [abbreviated month]','ViewTranslation',247);
-INSERT INTO `globalize_translations` VALUES (74,'',NULL,1,'','ኦክተ','Oct [abbreviated month]','ViewTranslation',247);
-INSERT INTO `globalize_translations` VALUES (75,'',NULL,1,'','ኖቬም','Nov [abbreviated month]','ViewTranslation',247);
-INSERT INTO `globalize_translations` VALUES (76,'',NULL,1,'','ዲሴም','Dec [abbreviated month]','ViewTranslation',247);
-INSERT INTO `globalize_translations` VALUES (77,'',NULL,1,'','Domingo','Sunday [weekday]','ViewTranslation',346);
-INSERT INTO `globalize_translations` VALUES (78,'',NULL,1,'','Luns','Monday [weekday]','ViewTranslation',346);
-INSERT INTO `globalize_translations` VALUES (79,'',NULL,1,'','Martes','Tuesday [weekday]','ViewTranslation',346);
-INSERT INTO `globalize_translations` VALUES (80,'',NULL,1,'','Miecols','Wednesday [weekday]','ViewTranslation',346);
-INSERT INTO `globalize_translations` VALUES (81,'',NULL,1,'','Chuebes','Thursday [weekday]','ViewTranslation',346);
-INSERT INTO `globalize_translations` VALUES (82,'',NULL,1,'','Biernes','Friday [weekday]','ViewTranslation',346);
-INSERT INTO `globalize_translations` VALUES (83,'',NULL,1,'','Sabado','Saturday [weekday]','ViewTranslation',346);
-INSERT INTO `globalize_translations` VALUES (84,'',NULL,1,'','Dom','Sun [abbreviated weekday]','ViewTranslation',346);
-INSERT INTO `globalize_translations` VALUES (85,'',NULL,1,'','Lun','Mon [abbreviated weekday]','ViewTranslation',346);
-INSERT INTO `globalize_translations` VALUES (86,'',NULL,1,'','Mar','Tue [abbreviated weekday]','ViewTranslation',346);
-INSERT INTO `globalize_translations` VALUES (87,'',NULL,1,'','Mie','Wed [abbreviated weekday]','ViewTranslation',346);
-INSERT INTO `globalize_translations` VALUES (88,'',NULL,1,'','Chu','Thu [abbreviated weekday]','ViewTranslation',346);
-INSERT INTO `globalize_translations` VALUES (89,'',NULL,1,'','Bie','Fri [abbreviated weekday]','ViewTranslation',346);
-INSERT INTO `globalize_translations` VALUES (90,'',NULL,1,'','Sab','Sat [abbreviated weekday]','ViewTranslation',346);
-INSERT INTO `globalize_translations` VALUES (91,'',NULL,1,'','Chinero','January [month]','ViewTranslation',346);
-INSERT INTO `globalize_translations` VALUES (92,'',NULL,1,'','Frebero','February [month]','ViewTranslation',346);
-INSERT INTO `globalize_translations` VALUES (93,'',NULL,1,'','Marzo','March [month]','ViewTranslation',346);
-INSERT INTO `globalize_translations` VALUES (94,'',NULL,1,'','Abril','April [month]','ViewTranslation',346);
-INSERT INTO `globalize_translations` VALUES (95,'',NULL,1,'','Mayo','May [month]','ViewTranslation',346);
-INSERT INTO `globalize_translations` VALUES (96,'',NULL,1,'','Chunio','June [month]','ViewTranslation',346);
-INSERT INTO `globalize_translations` VALUES (97,'',NULL,1,'','Chulio','July [month]','ViewTranslation',346);
-INSERT INTO `globalize_translations` VALUES (98,'',NULL,1,'','Agosto','August [month]','ViewTranslation',346);
-INSERT INTO `globalize_translations` VALUES (99,'',NULL,1,'','Setiembre','September [month]','ViewTranslation',346);
-INSERT INTO `globalize_translations` VALUES (100,'',NULL,1,'','Octubre','October [month]','ViewTranslation',346);
-INSERT INTO `globalize_translations` VALUES (101,'',NULL,1,'','Nobiembre','November [month]','ViewTranslation',346);
-INSERT INTO `globalize_translations` VALUES (102,'',NULL,1,'','Abiento','December [month]','ViewTranslation',346);
-INSERT INTO `globalize_translations` VALUES (103,'',NULL,1,'','Chi','Jan [abbreviated month]','ViewTranslation',346);
-INSERT INTO `globalize_translations` VALUES (104,'',NULL,1,'','Fre','Feb [abbreviated month]','ViewTranslation',346);
-INSERT INTO `globalize_translations` VALUES (105,'',NULL,1,'','Mar','Mar [abbreviated month]','ViewTranslation',346);
-INSERT INTO `globalize_translations` VALUES (106,'',NULL,1,'','Abr','Apr [abbreviated month]','ViewTranslation',346);
-INSERT INTO `globalize_translations` VALUES (107,'',NULL,1,'','May','May [abbreviated month]','ViewTranslation',346);
-INSERT INTO `globalize_translations` VALUES (108,'',NULL,1,'','Chn','Jun [abbreviated month]','ViewTranslation',346);
-INSERT INTO `globalize_translations` VALUES (109,'',NULL,1,'','Chl','Jul [abbreviated month]','ViewTranslation',346);
-INSERT INTO `globalize_translations` VALUES (110,'',NULL,1,'','Ago','Aug [abbreviated month]','ViewTranslation',346);
-INSERT INTO `globalize_translations` VALUES (111,'',NULL,1,'','Set','Sep [abbreviated month]','ViewTranslation',346);
-INSERT INTO `globalize_translations` VALUES (112,'',NULL,1,'','Oct','Oct [abbreviated month]','ViewTranslation',346);
-INSERT INTO `globalize_translations` VALUES (113,'',NULL,1,'','Nob','Nov [abbreviated month]','ViewTranslation',346);
-INSERT INTO `globalize_translations` VALUES (114,'',NULL,1,'','Abi','Dec [abbreviated month]','ViewTranslation',346);
-INSERT INTO `globalize_translations` VALUES (115,'',NULL,1,'','الأحد','Sunday [weekday]','ViewTranslation',340);
-INSERT INTO `globalize_translations` VALUES (116,'',NULL,1,'','الاثنين','Monday [weekday]','ViewTranslation',340);
-INSERT INTO `globalize_translations` VALUES (117,'',NULL,1,'','الثلاثاء','Tuesday [weekday]','ViewTranslation',340);
-INSERT INTO `globalize_translations` VALUES (118,'',NULL,1,'','الأربعاء','Wednesday [weekday]','ViewTranslation',340);
-INSERT INTO `globalize_translations` VALUES (119,'',NULL,1,'','الخميس','Thursday [weekday]','ViewTranslation',340);
-INSERT INTO `globalize_translations` VALUES (120,'',NULL,1,'','الجمعة','Friday [weekday]','ViewTranslation',340);
-INSERT INTO `globalize_translations` VALUES (121,'',NULL,1,'','السبت','Saturday [weekday]','ViewTranslation',340);
-INSERT INTO `globalize_translations` VALUES (122,'',NULL,1,'','ح','Sun [abbreviated weekday]','ViewTranslation',340);
-INSERT INTO `globalize_translations` VALUES (123,'',NULL,1,'','ن','Mon [abbreviated weekday]','ViewTranslation',340);
-INSERT INTO `globalize_translations` VALUES (124,'',NULL,1,'','ث','Tue [abbreviated weekday]','ViewTranslation',340);
-INSERT INTO `globalize_translations` VALUES (125,'',NULL,1,'','ر','Wed [abbreviated weekday]','ViewTranslation',340);
-INSERT INTO `globalize_translations` VALUES (126,'',NULL,1,'','خ','Thu [abbreviated weekday]','ViewTranslation',340);
-INSERT INTO `globalize_translations` VALUES (127,'',NULL,1,'','ج','Fri [abbreviated weekday]','ViewTranslation',340);
-INSERT INTO `globalize_translations` VALUES (128,'',NULL,1,'','س','Sat [abbreviated weekday]','ViewTranslation',340);
-INSERT INTO `globalize_translations` VALUES (129,'',NULL,1,'','يناير','January [month]','ViewTranslation',340);
-INSERT INTO `globalize_translations` VALUES (130,'',NULL,1,'','فبراير','February [month]','ViewTranslation',340);
-INSERT INTO `globalize_translations` VALUES (131,'',NULL,1,'','مارس','March [month]','ViewTranslation',340);
-INSERT INTO `globalize_translations` VALUES (132,'',NULL,1,'','أبريل','April [month]','ViewTranslation',340);
-INSERT INTO `globalize_translations` VALUES (133,'',NULL,1,'','مايو','May [month]','ViewTranslation',340);
-INSERT INTO `globalize_translations` VALUES (134,'',NULL,1,'','يونيو','June [month]','ViewTranslation',340);
-INSERT INTO `globalize_translations` VALUES (135,'',NULL,1,'','يوليو','July [month]','ViewTranslation',340);
-INSERT INTO `globalize_translations` VALUES (136,'',NULL,1,'','أغسطس','August [month]','ViewTranslation',340);
-INSERT INTO `globalize_translations` VALUES (137,'',NULL,1,'','سبتمبر','September [month]','ViewTranslation',340);
-INSERT INTO `globalize_translations` VALUES (138,'',NULL,1,'','أكتوبر','October [month]','ViewTranslation',340);
-INSERT INTO `globalize_translations` VALUES (139,'',NULL,1,'','نوفمبر','November [month]','ViewTranslation',340);
-INSERT INTO `globalize_translations` VALUES (140,'',NULL,1,'','ديسمبر','December [month]','ViewTranslation',340);
-INSERT INTO `globalize_translations` VALUES (141,'',NULL,1,'','ينا','Jan [abbreviated month]','ViewTranslation',340);
-INSERT INTO `globalize_translations` VALUES (142,'',NULL,1,'','فبر','Feb [abbreviated month]','ViewTranslation',340);
-INSERT INTO `globalize_translations` VALUES (143,'',NULL,1,'','مار','Mar [abbreviated month]','ViewTranslation',340);
-INSERT INTO `globalize_translations` VALUES (144,'',NULL,1,'','أبر','Apr [abbreviated month]','ViewTranslation',340);
-INSERT INTO `globalize_translations` VALUES (145,'',NULL,1,'','ماي','May [abbreviated month]','ViewTranslation',340);
-INSERT INTO `globalize_translations` VALUES (146,'',NULL,1,'','يون','Jun [abbreviated month]','ViewTranslation',340);
-INSERT INTO `globalize_translations` VALUES (147,'',NULL,1,'','يول','Jul [abbreviated month]','ViewTranslation',340);
-INSERT INTO `globalize_translations` VALUES (148,'',NULL,1,'','أغس','Aug [abbreviated month]','ViewTranslation',340);
-INSERT INTO `globalize_translations` VALUES (149,'',NULL,1,'','سبت','Sep [abbreviated month]','ViewTranslation',340);
-INSERT INTO `globalize_translations` VALUES (150,'',NULL,1,'','أكت','Oct [abbreviated month]','ViewTranslation',340);
-INSERT INTO `globalize_translations` VALUES (151,'',NULL,1,'','نوف','Nov [abbreviated month]','ViewTranslation',340);
-INSERT INTO `globalize_translations` VALUES (152,'',NULL,1,'','ديس','Dec [abbreviated month]','ViewTranslation',340);
-INSERT INTO `globalize_translations` VALUES (153,'',NULL,1,'','Bazar günü','Sunday [weekday]','ViewTranslation',496);
-INSERT INTO `globalize_translations` VALUES (154,'',NULL,1,'','Birinci gün','Monday [weekday]','ViewTranslation',496);
-INSERT INTO `globalize_translations` VALUES (155,'',NULL,1,'','Ikinci gün','Tuesday [weekday]','ViewTranslation',496);
-INSERT INTO `globalize_translations` VALUES (156,'',NULL,1,'','Üçüncü gün','Wednesday [weekday]','ViewTranslation',496);
-INSERT INTO `globalize_translations` VALUES (157,'',NULL,1,'','Dördüncü gün','Thursday [weekday]','ViewTranslation',496);
-INSERT INTO `globalize_translations` VALUES (158,'',NULL,1,'','Beşinci gün','Friday [weekday]','ViewTranslation',496);
-INSERT INTO `globalize_translations` VALUES (159,'',NULL,1,'','Altıncı gün','Saturday [weekday]','ViewTranslation',496);
-INSERT INTO `globalize_translations` VALUES (160,'',NULL,1,'','Baz','Sun [abbreviated weekday]','ViewTranslation',496);
-INSERT INTO `globalize_translations` VALUES (161,'',NULL,1,'','Bir','Mon [abbreviated weekday]','ViewTranslation',496);
-INSERT INTO `globalize_translations` VALUES (162,'',NULL,1,'','Iki','Tue [abbreviated weekday]','ViewTranslation',496);
-INSERT INTO `globalize_translations` VALUES (163,'',NULL,1,'','Üçü','Wed [abbreviated weekday]','ViewTranslation',496);
-INSERT INTO `globalize_translations` VALUES (164,'',NULL,1,'','Dör','Thu [abbreviated weekday]','ViewTranslation',496);
-INSERT INTO `globalize_translations` VALUES (165,'',NULL,1,'','Beş','Fri [abbreviated weekday]','ViewTranslation',496);
-INSERT INTO `globalize_translations` VALUES (166,'',NULL,1,'','Alt','Sat [abbreviated weekday]','ViewTranslation',496);
-INSERT INTO `globalize_translations` VALUES (167,'',NULL,1,'','Yanvar','January [month]','ViewTranslation',496);
-INSERT INTO `globalize_translations` VALUES (168,'',NULL,1,'','Fevral','February [month]','ViewTranslation',496);
-INSERT INTO `globalize_translations` VALUES (169,'',NULL,1,'','Mart','March [month]','ViewTranslation',496);
-INSERT INTO `globalize_translations` VALUES (170,'',NULL,1,'','Aprel','April [month]','ViewTranslation',496);
-INSERT INTO `globalize_translations` VALUES (171,'',NULL,1,'','May','May [month]','ViewTranslation',496);
-INSERT INTO `globalize_translations` VALUES (172,'',NULL,1,'','Iyun','June [month]','ViewTranslation',496);
-INSERT INTO `globalize_translations` VALUES (173,'',NULL,1,'','Iyul','July [month]','ViewTranslation',496);
-INSERT INTO `globalize_translations` VALUES (174,'',NULL,1,'','Avqust','August [month]','ViewTranslation',496);
-INSERT INTO `globalize_translations` VALUES (175,'',NULL,1,'','Sentyabr','September [month]','ViewTranslation',496);
-INSERT INTO `globalize_translations` VALUES (176,'',NULL,1,'','Oktyabr','October [month]','ViewTranslation',496);
-INSERT INTO `globalize_translations` VALUES (177,'',NULL,1,'','Noyabr','November [month]','ViewTranslation',496);
-INSERT INTO `globalize_translations` VALUES (178,'',NULL,1,'','Dekabr','December [month]','ViewTranslation',496);
-INSERT INTO `globalize_translations` VALUES (179,'',NULL,1,'','Yan','Jan [abbreviated month]','ViewTranslation',496);
-INSERT INTO `globalize_translations` VALUES (180,'',NULL,1,'','Fev','Feb [abbreviated month]','ViewTranslation',496);
-INSERT INTO `globalize_translations` VALUES (181,'',NULL,1,'','Mar','Mar [abbreviated month]','ViewTranslation',496);
-INSERT INTO `globalize_translations` VALUES (182,'',NULL,1,'','Apr','Apr [abbreviated month]','ViewTranslation',496);
-INSERT INTO `globalize_translations` VALUES (183,'',NULL,1,'','May','May [abbreviated month]','ViewTranslation',496);
-INSERT INTO `globalize_translations` VALUES (184,'',NULL,1,'','İyn','Jun [abbreviated month]','ViewTranslation',496);
-INSERT INTO `globalize_translations` VALUES (185,'',NULL,1,'','İyl','Jul [abbreviated month]','ViewTranslation',496);
-INSERT INTO `globalize_translations` VALUES (186,'',NULL,1,'','Avq','Aug [abbreviated month]','ViewTranslation',496);
-INSERT INTO `globalize_translations` VALUES (187,'',NULL,1,'','Sen','Sep [abbreviated month]','ViewTranslation',496);
-INSERT INTO `globalize_translations` VALUES (188,'',NULL,1,'','Okt','Oct [abbreviated month]','ViewTranslation',496);
-INSERT INTO `globalize_translations` VALUES (189,'',NULL,1,'','Noy','Nov [abbreviated month]','ViewTranslation',496);
-INSERT INTO `globalize_translations` VALUES (190,'',NULL,1,'','Dek','Dec [abbreviated month]','ViewTranslation',496);
-INSERT INTO `globalize_translations` VALUES (191,'',NULL,1,'','Нядзеля','Sunday [weekday]','ViewTranslation',614);
-INSERT INTO `globalize_translations` VALUES (192,'',NULL,1,'','Панядзелак','Monday [weekday]','ViewTranslation',614);
-INSERT INTO `globalize_translations` VALUES (193,'',NULL,1,'','Аўторак','Tuesday [weekday]','ViewTranslation',614);
-INSERT INTO `globalize_translations` VALUES (194,'',NULL,1,'','Серада','Wednesday [weekday]','ViewTranslation',614);
-INSERT INTO `globalize_translations` VALUES (195,'',NULL,1,'','Чацвер','Thursday [weekday]','ViewTranslation',614);
-INSERT INTO `globalize_translations` VALUES (196,'',NULL,1,'','Пятніца','Friday [weekday]','ViewTranslation',614);
-INSERT INTO `globalize_translations` VALUES (197,'',NULL,1,'','Субота','Saturday [weekday]','ViewTranslation',614);
-INSERT INTO `globalize_translations` VALUES (198,'',NULL,1,'','Няд','Sun [abbreviated weekday]','ViewTranslation',614);
-INSERT INTO `globalize_translations` VALUES (199,'',NULL,1,'','Пан','Mon [abbreviated weekday]','ViewTranslation',614);
-INSERT INTO `globalize_translations` VALUES (200,'',NULL,1,'','Аўт','Tue [abbreviated weekday]','ViewTranslation',614);
-INSERT INTO `globalize_translations` VALUES (201,'',NULL,1,'','Срд','Wed [abbreviated weekday]','ViewTranslation',614);
-INSERT INTO `globalize_translations` VALUES (202,'',NULL,1,'','Чцв','Thu [abbreviated weekday]','ViewTranslation',614);
-INSERT INTO `globalize_translations` VALUES (203,'',NULL,1,'','Пят','Fri [abbreviated weekday]','ViewTranslation',614);
-INSERT INTO `globalize_translations` VALUES (204,'',NULL,1,'','Суб','Sat [abbreviated weekday]','ViewTranslation',614);
-INSERT INTO `globalize_translations` VALUES (205,'',NULL,1,'','Студзень','January [month]','ViewTranslation',614);
-INSERT INTO `globalize_translations` VALUES (206,'',NULL,1,'','Люты','February [month]','ViewTranslation',614);
-INSERT INTO `globalize_translations` VALUES (207,'',NULL,1,'','Сакавік','March [month]','ViewTranslation',614);
-INSERT INTO `globalize_translations` VALUES (208,'',NULL,1,'','Красавік','April [month]','ViewTranslation',614);
-INSERT INTO `globalize_translations` VALUES (209,'',NULL,1,'','Травень','May [month]','ViewTranslation',614);
-INSERT INTO `globalize_translations` VALUES (210,'',NULL,1,'','Чэрвень','June [month]','ViewTranslation',614);
-INSERT INTO `globalize_translations` VALUES (211,'',NULL,1,'','Ліпень','July [month]','ViewTranslation',614);
-INSERT INTO `globalize_translations` VALUES (212,'',NULL,1,'','Жнівень','August [month]','ViewTranslation',614);
-INSERT INTO `globalize_translations` VALUES (213,'',NULL,1,'','Верасень','September [month]','ViewTranslation',614);
-INSERT INTO `globalize_translations` VALUES (214,'',NULL,1,'','Кастрычнік','October [month]','ViewTranslation',614);
-INSERT INTO `globalize_translations` VALUES (215,'',NULL,1,'','Лістапад','November [month]','ViewTranslation',614);
-INSERT INTO `globalize_translations` VALUES (216,'',NULL,1,'','Снежань','December [month]','ViewTranslation',614);
-INSERT INTO `globalize_translations` VALUES (217,'',NULL,1,'','Стд','Jan [abbreviated month]','ViewTranslation',614);
-INSERT INTO `globalize_translations` VALUES (218,'',NULL,1,'','Лют','Feb [abbreviated month]','ViewTranslation',614);
-INSERT INTO `globalize_translations` VALUES (219,'',NULL,1,'','Сак','Mar [abbreviated month]','ViewTranslation',614);
-INSERT INTO `globalize_translations` VALUES (220,'',NULL,1,'','Крс','Apr [abbreviated month]','ViewTranslation',614);
-INSERT INTO `globalize_translations` VALUES (221,'',NULL,1,'','Тра','May [abbreviated month]','ViewTranslation',614);
-INSERT INTO `globalize_translations` VALUES (222,'',NULL,1,'','Чэр','Jun [abbreviated month]','ViewTranslation',614);
-INSERT INTO `globalize_translations` VALUES (223,'',NULL,1,'','Ліп','Jul [abbreviated month]','ViewTranslation',614);
-INSERT INTO `globalize_translations` VALUES (224,'',NULL,1,'','Жнв','Aug [abbreviated month]','ViewTranslation',614);
-INSERT INTO `globalize_translations` VALUES (225,'',NULL,1,'','Врс','Sep [abbreviated month]','ViewTranslation',614);
-INSERT INTO `globalize_translations` VALUES (226,'',NULL,1,'','Кст','Oct [abbreviated month]','ViewTranslation',614);
-INSERT INTO `globalize_translations` VALUES (227,'',NULL,1,'','Ліс','Nov [abbreviated month]','ViewTranslation',614);
-INSERT INTO `globalize_translations` VALUES (228,'',NULL,1,'','Снж','Dec [abbreviated month]','ViewTranslation',614);
-INSERT INTO `globalize_translations` VALUES (229,'',NULL,1,'','Неделя','Sunday [weekday]','ViewTranslation',1020);
-INSERT INTO `globalize_translations` VALUES (230,'',NULL,1,'','Понеделник','Monday [weekday]','ViewTranslation',1020);
-INSERT INTO `globalize_translations` VALUES (231,'',NULL,1,'','Вторник','Tuesday [weekday]','ViewTranslation',1020);
-INSERT INTO `globalize_translations` VALUES (232,'',NULL,1,'','Сряда','Wednesday [weekday]','ViewTranslation',1020);
-INSERT INTO `globalize_translations` VALUES (233,'',NULL,1,'','Четвъртък','Thursday [weekday]','ViewTranslation',1020);
-INSERT INTO `globalize_translations` VALUES (234,'',NULL,1,'','Петък','Friday [weekday]','ViewTranslation',1020);
-INSERT INTO `globalize_translations` VALUES (235,'',NULL,1,'','Събота','Saturday [weekday]','ViewTranslation',1020);
-INSERT INTO `globalize_translations` VALUES (236,'',NULL,1,'','Нд','Sun [abbreviated weekday]','ViewTranslation',1020);
-INSERT INTO `globalize_translations` VALUES (237,'',NULL,1,'','Пн','Mon [abbreviated weekday]','ViewTranslation',1020);
-INSERT INTO `globalize_translations` VALUES (238,'',NULL,1,'','Вт','Tue [abbreviated weekday]','ViewTranslation',1020);
-INSERT INTO `globalize_translations` VALUES (239,'',NULL,1,'','Ср','Wed [abbreviated weekday]','ViewTranslation',1020);
-INSERT INTO `globalize_translations` VALUES (240,'',NULL,1,'','Чт','Thu [abbreviated weekday]','ViewTranslation',1020);
-INSERT INTO `globalize_translations` VALUES (241,'',NULL,1,'','Пт','Fri [abbreviated weekday]','ViewTranslation',1020);
-INSERT INTO `globalize_translations` VALUES (242,'',NULL,1,'','Сб','Sat [abbreviated weekday]','ViewTranslation',1020);
-INSERT INTO `globalize_translations` VALUES (243,'',NULL,1,'','Януари','January [month]','ViewTranslation',1020);
-INSERT INTO `globalize_translations` VALUES (244,'',NULL,1,'','Февруари','February [month]','ViewTranslation',1020);
-INSERT INTO `globalize_translations` VALUES (245,'',NULL,1,'','Март','March [month]','ViewTranslation',1020);
-INSERT INTO `globalize_translations` VALUES (246,'',NULL,1,'','Април','April [month]','ViewTranslation',1020);
-INSERT INTO `globalize_translations` VALUES (247,'',NULL,1,'','Май','May [month]','ViewTranslation',1020);
-INSERT INTO `globalize_translations` VALUES (248,'',NULL,1,'','Юни','June [month]','ViewTranslation',1020);
-INSERT INTO `globalize_translations` VALUES (249,'',NULL,1,'','Юли','July [month]','ViewTranslation',1020);
-INSERT INTO `globalize_translations` VALUES (250,'',NULL,1,'','Август','August [month]','ViewTranslation',1020);
-INSERT INTO `globalize_translations` VALUES (251,'',NULL,1,'','Септември','September [month]','ViewTranslation',1020);
-INSERT INTO `globalize_translations` VALUES (252,'',NULL,1,'','Октомври','October [month]','ViewTranslation',1020);
-INSERT INTO `globalize_translations` VALUES (253,'',NULL,1,'','Ноември','November [month]','ViewTranslation',1020);
-INSERT INTO `globalize_translations` VALUES (254,'',NULL,1,'','Декември','December [month]','ViewTranslation',1020);
-INSERT INTO `globalize_translations` VALUES (255,'',NULL,1,'','Яну','Jan [abbreviated month]','ViewTranslation',1020);
-INSERT INTO `globalize_translations` VALUES (256,'',NULL,1,'','Фев','Feb [abbreviated month]','ViewTranslation',1020);
-INSERT INTO `globalize_translations` VALUES (257,'',NULL,1,'','Мар','Mar [abbreviated month]','ViewTranslation',1020);
-INSERT INTO `globalize_translations` VALUES (258,'',NULL,1,'','Апр','Apr [abbreviated month]','ViewTranslation',1020);
-INSERT INTO `globalize_translations` VALUES (259,'',NULL,1,'','Май','May [abbreviated month]','ViewTranslation',1020);
-INSERT INTO `globalize_translations` VALUES (260,'',NULL,1,'','Юни','Jun [abbreviated month]','ViewTranslation',1020);
-INSERT INTO `globalize_translations` VALUES (261,'',NULL,1,'','Юли','Jul [abbreviated month]','ViewTranslation',1020);
-INSERT INTO `globalize_translations` VALUES (262,'',NULL,1,'','Авг','Aug [abbreviated month]','ViewTranslation',1020);
-INSERT INTO `globalize_translations` VALUES (263,'',NULL,1,'','Сеп','Sep [abbreviated month]','ViewTranslation',1020);
-INSERT INTO `globalize_translations` VALUES (264,'',NULL,1,'','Окт','Oct [abbreviated month]','ViewTranslation',1020);
-INSERT INTO `globalize_translations` VALUES (265,'',NULL,1,'','Ное','Nov [abbreviated month]','ViewTranslation',1020);
-INSERT INTO `globalize_translations` VALUES (266,'',NULL,1,'','Дек','Dec [abbreviated month]','ViewTranslation',1020);
-INSERT INTO `globalize_translations` VALUES (267,'',NULL,1,'','রবিবার','Sunday [weekday]','ViewTranslation',616);
-INSERT INTO `globalize_translations` VALUES (268,'',NULL,1,'','সোমবার','Monday [weekday]','ViewTranslation',616);
-INSERT INTO `globalize_translations` VALUES (269,'',NULL,1,'','মঙগলবার','Tuesday [weekday]','ViewTranslation',616);
-INSERT INTO `globalize_translations` VALUES (270,'',NULL,1,'','বুধবার','Wednesday [weekday]','ViewTranslation',616);
-INSERT INTO `globalize_translations` VALUES (271,'',NULL,1,'','বৃহস্পতিবার','Thursday [weekday]','ViewTranslation',616);
-INSERT INTO `globalize_translations` VALUES (272,'',NULL,1,'','শুক্রবার','Friday [weekday]','ViewTranslation',616);
-INSERT INTO `globalize_translations` VALUES (273,'',NULL,1,'','শনিবার','Saturday [weekday]','ViewTranslation',616);
-INSERT INTO `globalize_translations` VALUES (274,'',NULL,1,'','রবি','Sun [abbreviated weekday]','ViewTranslation',616);
-INSERT INTO `globalize_translations` VALUES (275,'',NULL,1,'','সোম','Mon [abbreviated weekday]','ViewTranslation',616);
-INSERT INTO `globalize_translations` VALUES (276,'',NULL,1,'','মঙগল','Tue [abbreviated weekday]','ViewTranslation',616);
-INSERT INTO `globalize_translations` VALUES (277,'',NULL,1,'','বুধ','Wed [abbreviated weekday]','ViewTranslation',616);
-INSERT INTO `globalize_translations` VALUES (278,'',NULL,1,'','বৃহস্পতি','Thu [abbreviated weekday]','ViewTranslation',616);
-INSERT INTO `globalize_translations` VALUES (279,'',NULL,1,'','শুক্র','Fri [abbreviated weekday]','ViewTranslation',616);
-INSERT INTO `globalize_translations` VALUES (280,'',NULL,1,'','শনি','Sat [abbreviated weekday]','ViewTranslation',616);
-INSERT INTO `globalize_translations` VALUES (281,'',NULL,1,'','জানুয়ারী','January [month]','ViewTranslation',616);
-INSERT INTO `globalize_translations` VALUES (282,'',NULL,1,'','ফেব্রুয়ারী','February [month]','ViewTranslation',616);
-INSERT INTO `globalize_translations` VALUES (283,'',NULL,1,'','মার্চ','March [month]','ViewTranslation',616);
-INSERT INTO `globalize_translations` VALUES (284,'',NULL,1,'','এপ্রিল','April [month]','ViewTranslation',616);
-INSERT INTO `globalize_translations` VALUES (285,'',NULL,1,'','মে','May [month]','ViewTranslation',616);
-INSERT INTO `globalize_translations` VALUES (286,'',NULL,1,'','জুন','June [month]','ViewTranslation',616);
-INSERT INTO `globalize_translations` VALUES (287,'',NULL,1,'','জুলাই','July [month]','ViewTranslation',616);
-INSERT INTO `globalize_translations` VALUES (288,'',NULL,1,'','আগস্ট','August [month]','ViewTranslation',616);
-INSERT INTO `globalize_translations` VALUES (289,'',NULL,1,'','সেপ্টেম্বার','September [month]','ViewTranslation',616);
-INSERT INTO `globalize_translations` VALUES (290,'',NULL,1,'','অক্টোবার','October [month]','ViewTranslation',616);
-INSERT INTO `globalize_translations` VALUES (291,'',NULL,1,'','নভেম্বার','November [month]','ViewTranslation',616);
-INSERT INTO `globalize_translations` VALUES (292,'',NULL,1,'','ডিসেম্বার','December [month]','ViewTranslation',616);
-INSERT INTO `globalize_translations` VALUES (293,'',NULL,1,'','জান','Jan [abbreviated month]','ViewTranslation',616);
-INSERT INTO `globalize_translations` VALUES (294,'',NULL,1,'','ফেব','Feb [abbreviated month]','ViewTranslation',616);
-INSERT INTO `globalize_translations` VALUES (295,'',NULL,1,'','মার','Mar [abbreviated month]','ViewTranslation',616);
-INSERT INTO `globalize_translations` VALUES (296,'',NULL,1,'','এপ্র','Apr [abbreviated month]','ViewTranslation',616);
-INSERT INTO `globalize_translations` VALUES (297,'',NULL,1,'','মে','May [abbreviated month]','ViewTranslation',616);
-INSERT INTO `globalize_translations` VALUES (298,'',NULL,1,'','জুন','Jun [abbreviated month]','ViewTranslation',616);
-INSERT INTO `globalize_translations` VALUES (299,'',NULL,1,'','জুল','Jul [abbreviated month]','ViewTranslation',616);
-INSERT INTO `globalize_translations` VALUES (300,'',NULL,1,'','আগ','Aug [abbreviated month]','ViewTranslation',616);
-INSERT INTO `globalize_translations` VALUES (301,'',NULL,1,'','সেপ','Sep [abbreviated month]','ViewTranslation',616);
-INSERT INTO `globalize_translations` VALUES (302,'',NULL,1,'','অক্টোবর','Oct [abbreviated month]','ViewTranslation',616);
-INSERT INTO `globalize_translations` VALUES (303,'',NULL,1,'','নভেম্বর','Nov [abbreviated month]','ViewTranslation',616);
-INSERT INTO `globalize_translations` VALUES (304,'',NULL,1,'','ডিসেম্বর','Dec [abbreviated month]','ViewTranslation',616);
-INSERT INTO `globalize_translations` VALUES (305,'',NULL,1,'','Sul','Sunday [weekday]','ViewTranslation',936);
-INSERT INTO `globalize_translations` VALUES (306,'',NULL,1,'','Lun','Monday [weekday]','ViewTranslation',936);
-INSERT INTO `globalize_translations` VALUES (307,'',NULL,1,'','Meurzh','Tuesday [weekday]','ViewTranslation',936);
-INSERT INTO `globalize_translations` VALUES (308,'',NULL,1,'',"Merc'her",'Wednesday [weekday]','ViewTranslation',936);
-INSERT INTO `globalize_translations` VALUES (309,'',NULL,1,'','Yaou','Thursday [weekday]','ViewTranslation',936);
-INSERT INTO `globalize_translations` VALUES (310,'',NULL,1,'','Gwener','Friday [weekday]','ViewTranslation',936);
-INSERT INTO `globalize_translations` VALUES (311,'',NULL,1,'','Sadorn','Saturday [weekday]','ViewTranslation',936);
-INSERT INTO `globalize_translations` VALUES (312,'',NULL,1,'','Sul','Sun [abbreviated weekday]','ViewTranslation',936);
-INSERT INTO `globalize_translations` VALUES (313,'',NULL,1,'','Lun','Mon [abbreviated weekday]','ViewTranslation',936);
-INSERT INTO `globalize_translations` VALUES (314,'',NULL,1,'','Meu','Tue [abbreviated weekday]','ViewTranslation',936);
-INSERT INTO `globalize_translations` VALUES (315,'',NULL,1,'','Mer','Wed [abbreviated weekday]','ViewTranslation',936);
-INSERT INTO `globalize_translations` VALUES (316,'',NULL,1,'','Yao','Thu [abbreviated weekday]','ViewTranslation',936);
-INSERT INTO `globalize_translations` VALUES (317,'',NULL,1,'','Gwe','Fri [abbreviated weekday]','ViewTranslation',936);
-INSERT INTO `globalize_translations` VALUES (318,'',NULL,1,'','Sad','Sat [abbreviated weekday]','ViewTranslation',936);
-INSERT INTO `globalize_translations` VALUES (319,'',NULL,1,'','Genver','January [month]','ViewTranslation',936);
-INSERT INTO `globalize_translations` VALUES (320,'',NULL,1,'',"C'hwevrer",'February [month]','ViewTranslation',936);
-INSERT INTO `globalize_translations` VALUES (321,'',NULL,1,'','Meurzh','March [month]','ViewTranslation',936);
-INSERT INTO `globalize_translations` VALUES (322,'',NULL,1,'','Ebrel','April [month]','ViewTranslation',936);
-INSERT INTO `globalize_translations` VALUES (323,'',NULL,1,'','Mae','May [month]','ViewTranslation',936);
-INSERT INTO `globalize_translations` VALUES (324,'',NULL,1,'','Mezheven','June [month]','ViewTranslation',936);
-INSERT INTO `globalize_translations` VALUES (325,'',NULL,1,'','Gouere','July [month]','ViewTranslation',936);
-INSERT INTO `globalize_translations` VALUES (326,'',NULL,1,'','Eost','August [month]','ViewTranslation',936);
-INSERT INTO `globalize_translations` VALUES (327,'',NULL,1,'','Gwengolo','September [month]','ViewTranslation',936);
-INSERT INTO `globalize_translations` VALUES (328,'',NULL,1,'','Here','October [month]','ViewTranslation',936);
-INSERT INTO `globalize_translations` VALUES (329,'',NULL,1,'','Du','November [month]','ViewTranslation',936);
-INSERT INTO `globalize_translations` VALUES (330,'',NULL,1,'','Kerzu','December [month]','ViewTranslation',936);
-INSERT INTO `globalize_translations` VALUES (331,'',NULL,1,'','Gen ','Jan [abbreviated month]','ViewTranslation',936);
-INSERT INTO `globalize_translations` VALUES (332,'',NULL,1,'',"C'hw",'Feb [abbreviated month]','ViewTranslation',936);
-INSERT INTO `globalize_translations` VALUES (333,'',NULL,1,'','Meu ','Mar [abbreviated month]','ViewTranslation',936);
-INSERT INTO `globalize_translations` VALUES (334,'',NULL,1,'','Ebr ','Apr [abbreviated month]','ViewTranslation',936);
-INSERT INTO `globalize_translations` VALUES (335,'',NULL,1,'','Mae ','May [abbreviated month]','ViewTranslation',936);
-INSERT INTO `globalize_translations` VALUES (336,'',NULL,1,'','Eve ','Jun [abbreviated month]','ViewTranslation',936);
-INSERT INTO `globalize_translations` VALUES (337,'',NULL,1,'','Gou ','Jul [abbreviated month]','ViewTranslation',936);
-INSERT INTO `globalize_translations` VALUES (338,'',NULL,1,'','Eos ','Aug [abbreviated month]','ViewTranslation',936);
-INSERT INTO `globalize_translations` VALUES (339,'',NULL,1,'','Gwe ','Sep [abbreviated month]','ViewTranslation',936);
-INSERT INTO `globalize_translations` VALUES (340,'',NULL,1,'','Her ','Oct [abbreviated month]','ViewTranslation',936);
-INSERT INTO `globalize_translations` VALUES (341,'',NULL,1,'','Du ','Nov [abbreviated month]','ViewTranslation',936);
-INSERT INTO `globalize_translations` VALUES (342,'',NULL,1,'','Ker ','Dec [abbreviated month]','ViewTranslation',936);
-INSERT INTO `globalize_translations` VALUES (343,'',NULL,1,'','Nedjelja','Sunday [weekday]','ViewTranslation',875);
-INSERT INTO `globalize_translations` VALUES (344,'',NULL,1,'','Ponedjeljak','Monday [weekday]','ViewTranslation',875);
-INSERT INTO `globalize_translations` VALUES (345,'',NULL,1,'','Utorak','Tuesday [weekday]','ViewTranslation',875);
-INSERT INTO `globalize_translations` VALUES (346,'',NULL,1,'','Srijeda','Wednesday [weekday]','ViewTranslation',875);
-INSERT INTO `globalize_translations` VALUES (347,'',NULL,1,'','Četvrtak','Thursday [weekday]','ViewTranslation',875);
-INSERT INTO `globalize_translations` VALUES (348,'',NULL,1,'','Petak','Friday [weekday]','ViewTranslation',875);
-INSERT INTO `globalize_translations` VALUES (349,'',NULL,1,'','Subota','Saturday [weekday]','ViewTranslation',875);
-INSERT INTO `globalize_translations` VALUES (350,'',NULL,1,'','Ned','Sun [abbreviated weekday]','ViewTranslation',875);
-INSERT INTO `globalize_translations` VALUES (351,'',NULL,1,'','Pon','Mon [abbreviated weekday]','ViewTranslation',875);
-INSERT INTO `globalize_translations` VALUES (352,'',NULL,1,'','Uto','Tue [abbreviated weekday]','ViewTranslation',875);
-INSERT INTO `globalize_translations` VALUES (353,'',NULL,1,'','Sri','Wed [abbreviated weekday]','ViewTranslation',875);
-INSERT INTO `globalize_translations` VALUES (354,'',NULL,1,'','Čet','Thu [abbreviated weekday]','ViewTranslation',875);
-INSERT INTO `globalize_translations` VALUES (355,'',NULL,1,'','Pet','Fri [abbreviated weekday]','ViewTranslation',875);
-INSERT INTO `globalize_translations` VALUES (356,'',NULL,1,'','Sub','Sat [abbreviated weekday]','ViewTranslation',875);
-INSERT INTO `globalize_translations` VALUES (357,'',NULL,1,'','Januar','January [month]','ViewTranslation',875);
-INSERT INTO `globalize_translations` VALUES (358,'',NULL,1,'','Februar','February [month]','ViewTranslation',875);
-INSERT INTO `globalize_translations` VALUES (359,'',NULL,1,'','Mart','March [month]','ViewTranslation',875);
-INSERT INTO `globalize_translations` VALUES (360,'',NULL,1,'','April','April [month]','ViewTranslation',875);
-INSERT INTO `globalize_translations` VALUES (361,'',NULL,1,'','Maj','May [month]','ViewTranslation',875);
-INSERT INTO `globalize_translations` VALUES (362,'',NULL,1,'','Juni','June [month]','ViewTranslation',875);
-INSERT INTO `globalize_translations` VALUES (363,'',NULL,1,'','Juli','July [month]','ViewTranslation',875);
-INSERT INTO `globalize_translations` VALUES (364,'',NULL,1,'','August','August [month]','ViewTranslation',875);
-INSERT INTO `globalize_translations` VALUES (365,'',NULL,1,'','Septembar','September [month]','ViewTranslation',875);
-INSERT INTO `globalize_translations` VALUES (366,'',NULL,1,'','Oktobar','October [month]','ViewTranslation',875);
-INSERT INTO `globalize_translations` VALUES (367,'',NULL,1,'','Novembar','November [month]','ViewTranslation',875);
-INSERT INTO `globalize_translations` VALUES (368,'',NULL,1,'','Decembar','December [month]','ViewTranslation',875);
-INSERT INTO `globalize_translations` VALUES (369,'',NULL,1,'','Jan','Jan [abbreviated month]','ViewTranslation',875);
-INSERT INTO `globalize_translations` VALUES (370,'',NULL,1,'','Feb','Feb [abbreviated month]','ViewTranslation',875);
-INSERT INTO `globalize_translations` VALUES (371,'',NULL,1,'','Mar','Mar [abbreviated month]','ViewTranslation',875);
-INSERT INTO `globalize_translations` VALUES (372,'',NULL,1,'','Apr','Apr [abbreviated month]','ViewTranslation',875);
-INSERT INTO `globalize_translations` VALUES (373,'',NULL,1,'','Maj','May [abbreviated month]','ViewTranslation',875);
-INSERT INTO `globalize_translations` VALUES (374,'',NULL,1,'','Jun','Jun [abbreviated month]','ViewTranslation',875);
-INSERT INTO `globalize_translations` VALUES (375,'',NULL,1,'','Jul','Jul [abbreviated month]','ViewTranslation',875);
-INSERT INTO `globalize_translations` VALUES (376,'',NULL,1,'','Aug','Aug [abbreviated month]','ViewTranslation',875);
-INSERT INTO `globalize_translations` VALUES (377,'',NULL,1,'','Sep','Sep [abbreviated month]','ViewTranslation',875);
-INSERT INTO `globalize_translations` VALUES (378,'',NULL,1,'','Okt','Oct [abbreviated month]','ViewTranslation',875);
-INSERT INTO `globalize_translations` VALUES (379,'',NULL,1,'','Nov','Nov [abbreviated month]','ViewTranslation',875);
-INSERT INTO `globalize_translations` VALUES (380,'',NULL,1,'','Dec','Dec [abbreviated month]','ViewTranslation',875);
-INSERT INTO `globalize_translations` VALUES (381,'',NULL,1,'','ሰንበር ቅዳዅ','Sunday [weekday]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (382,'',NULL,1,'','ሰኑ','Monday [weekday]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (383,'',NULL,1,'','ሰሊጝ','Tuesday [weekday]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (384,'',NULL,1,'','ለጓ ወሪ ለብዋ','Wednesday [weekday]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (385,'',NULL,1,'','ኣምድ','Thursday [weekday]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (386,'',NULL,1,'','ኣርብ','Friday [weekday]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (387,'',NULL,1,'','ሰንበር ሽጓዅ','Saturday [weekday]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (388,'',NULL,1,'','ሰ/ቅ','Sun [abbreviated weekday]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (389,'',NULL,1,'','ሰኑ','Mon [abbreviated weekday]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (390,'',NULL,1,'','ሰሊጝ','Tue [abbreviated weekday]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (391,'',NULL,1,'','ለጓ','Wed [abbreviated weekday]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (392,'',NULL,1,'','ኣምድ','Thu [abbreviated weekday]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (393,'',NULL,1,'','ኣርብ','Fri [abbreviated weekday]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (394,'',NULL,1,'','ሰ/ሽ','Sat [abbreviated weekday]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (395,'',NULL,1,'','ልደትሪ','January [month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (396,'',NULL,1,'','ካብኽብቲ','February [month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (397,'',NULL,1,'','ክብላ','March [month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (398,'',NULL,1,'','ፋጅኺሪ','April [month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (399,'',NULL,1,'','ክቢቅሪ','May [month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (400,'',NULL,1,'','ምኪኤል ትጓ̅ኒሪ','June [month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (401,'',NULL,1,'','ኰርኩ','July [month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (402,'',NULL,1,'','ማርያም ትሪ','August [month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (403,'',NULL,1,'','ያኸኒ መሳቅለሪ','September [month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (404,'',NULL,1,'','መተሉ','October [month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (405,'',NULL,1,'','ምኪኤል መሽወሪ','November [month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (406,'',NULL,1,'','ተሕሳስሪ','December [month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (407,'',NULL,1,'','ልደት','Jan [abbreviated month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (408,'',NULL,1,'','ካብኽ','Feb [abbreviated month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (409,'',NULL,1,'','ክብላ','Mar [abbreviated month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (410,'',NULL,1,'','ፋጅኺ','Apr [abbreviated month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (411,'',NULL,1,'','ክቢቅ','May [abbreviated month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (412,'',NULL,1,'','ም/ት','Jun [abbreviated month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (413,'',NULL,1,'','ኰር','Jul [abbreviated month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (414,'',NULL,1,'','ማርያ','Aug [abbreviated month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (415,'',NULL,1,'','ያኸኒ','Sep [abbreviated month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (416,'',NULL,1,'','መተሉ','Oct [abbreviated month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (417,'',NULL,1,'','ም/ም','Nov [abbreviated month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (418,'',NULL,1,'','ተሕሳ','Dec [abbreviated month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (419,'',NULL,1,'','Diumenge','Sunday [weekday]','ViewTranslation',1177);
-INSERT INTO `globalize_translations` VALUES (420,'',NULL,1,'','Dilluns','Monday [weekday]','ViewTranslation',1177);
-INSERT INTO `globalize_translations` VALUES (421,'',NULL,1,'','Dimarts','Tuesday [weekday]','ViewTranslation',1177);
-INSERT INTO `globalize_translations` VALUES (422,'',NULL,1,'','Dimecres','Wednesday [weekday]','ViewTranslation',1177);
-INSERT INTO `globalize_translations` VALUES (423,'',NULL,1,'','Dijous','Thursday [weekday]','ViewTranslation',1177);
-INSERT INTO `globalize_translations` VALUES (424,'',NULL,1,'','Divendres','Friday [weekday]','ViewTranslation',1177);
-INSERT INTO `globalize_translations` VALUES (425,'',NULL,1,'','Dissabte','Saturday [weekday]','ViewTranslation',1177);
-INSERT INTO `globalize_translations` VALUES (426,'',NULL,1,'','Dg','Sun [abbreviated weekday]','ViewTranslation',1177);
-INSERT INTO `globalize_translations` VALUES (427,'',NULL,1,'','Dl','Mon [abbreviated weekday]','ViewTranslation',1177);
-INSERT INTO `globalize_translations` VALUES (428,'',NULL,1,'','Dt','Tue [abbreviated weekday]','ViewTranslation',1177);
-INSERT INTO `globalize_translations` VALUES (429,'',NULL,1,'','Dc','Wed [abbreviated weekday]','ViewTranslation',1177);
-INSERT INTO `globalize_translations` VALUES (430,'',NULL,1,'','Dj','Thu [abbreviated weekday]','ViewTranslation',1177);
-INSERT INTO `globalize_translations` VALUES (431,'',NULL,1,'','Dv','Fri [abbreviated weekday]','ViewTranslation',1177);
-INSERT INTO `globalize_translations` VALUES (432,'',NULL,1,'','Ds','Sat [abbreviated weekday]','ViewTranslation',1177);
-INSERT INTO `globalize_translations` VALUES (433,'',NULL,1,'','Gener','January [month]','ViewTranslation',1177);
-INSERT INTO `globalize_translations` VALUES (434,'',NULL,1,'','Febrer','February [month]','ViewTranslation',1177);
-INSERT INTO `globalize_translations` VALUES (435,'',NULL,1,'','Març','March [month]','ViewTranslation',1177);
-INSERT INTO `globalize_translations` VALUES (436,'',NULL,1,'','Abril','April [month]','ViewTranslation',1177);
-INSERT INTO `globalize_translations` VALUES (437,'',NULL,1,'','Maig','May [month]','ViewTranslation',1177);
-INSERT INTO `globalize_translations` VALUES (438,'',NULL,1,'','Juny','June [month]','ViewTranslation',1177);
-INSERT INTO `globalize_translations` VALUES (439,'',NULL,1,'','Juliol','July [month]','ViewTranslation',1177);
-INSERT INTO `globalize_translations` VALUES (440,'',NULL,1,'','Agost','August [month]','ViewTranslation',1177);
-INSERT INTO `globalize_translations` VALUES (441,'',NULL,1,'','Setembre','September [month]','ViewTranslation',1177);
-INSERT INTO `globalize_translations` VALUES (442,'',NULL,1,'','Octubre','October [month]','ViewTranslation',1177);
-INSERT INTO `globalize_translations` VALUES (443,'',NULL,1,'','Novembre','November [month]','ViewTranslation',1177);
-INSERT INTO `globalize_translations` VALUES (444,'',NULL,1,'','Desembre','December [month]','ViewTranslation',1177);
-INSERT INTO `globalize_translations` VALUES (445,'',NULL,1,'','Gen','Jan [abbreviated month]','ViewTranslation',1177);
-INSERT INTO `globalize_translations` VALUES (446,'',NULL,1,'','Feb','Feb [abbreviated month]','ViewTranslation',1177);
-INSERT INTO `globalize_translations` VALUES (447,'',NULL,1,'','Mar','Mar [abbreviated month]','ViewTranslation',1177);
-INSERT INTO `globalize_translations` VALUES (448,'',NULL,1,'','Abr','Apr [abbreviated month]','ViewTranslation',1177);
-INSERT INTO `globalize_translations` VALUES (449,'',NULL,1,'','Mai','May [abbreviated month]','ViewTranslation',1177);
-INSERT INTO `globalize_translations` VALUES (450,'',NULL,1,'','Jun','Jun [abbreviated month]','ViewTranslation',1177);
-INSERT INTO `globalize_translations` VALUES (451,'',NULL,1,'','Jul','Jul [abbreviated month]','ViewTranslation',1177);
-INSERT INTO `globalize_translations` VALUES (452,'',NULL,1,'','Ago','Aug [abbreviated month]','ViewTranslation',1177);
-INSERT INTO `globalize_translations` VALUES (453,'',NULL,1,'','Set','Sep [abbreviated month]','ViewTranslation',1177);
-INSERT INTO `globalize_translations` VALUES (454,'',NULL,1,'','Oct','Oct [abbreviated month]','ViewTranslation',1177);
-INSERT INTO `globalize_translations` VALUES (455,'',NULL,1,'','Nov','Nov [abbreviated month]','ViewTranslation',1177);
-INSERT INTO `globalize_translations` VALUES (456,'',NULL,1,'','Des','Dec [abbreviated month]','ViewTranslation',1177);
-INSERT INTO `globalize_translations` VALUES (457,'',NULL,1,'','Neděle','Sunday [weekday]','ViewTranslation',1233);
-INSERT INTO `globalize_translations` VALUES (458,'',NULL,1,'','Pondělí','Monday [weekday]','ViewTranslation',1233);
-INSERT INTO `globalize_translations` VALUES (459,'',NULL,1,'','Úterý','Tuesday [weekday]','ViewTranslation',1233);
-INSERT INTO `globalize_translations` VALUES (460,'',NULL,1,'','Středa','Wednesday [weekday]','ViewTranslation',1233);
-INSERT INTO `globalize_translations` VALUES (461,'',NULL,1,'','Čtvrtek','Thursday [weekday]','ViewTranslation',1233);
-INSERT INTO `globalize_translations` VALUES (462,'',NULL,1,'','Pátek','Friday [weekday]','ViewTranslation',1233);
-INSERT INTO `globalize_translations` VALUES (463,'',NULL,1,'','Sobota','Saturday [weekday]','ViewTranslation',1233);
-INSERT INTO `globalize_translations` VALUES (464,'',NULL,1,'','Ne','Sun [abbreviated weekday]','ViewTranslation',1233);
-INSERT INTO `globalize_translations` VALUES (465,'',NULL,1,'','Po','Mon [abbreviated weekday]','ViewTranslation',1233);
-INSERT INTO `globalize_translations` VALUES (466,'',NULL,1,'','Út','Tue [abbreviated weekday]','ViewTranslation',1233);
-INSERT INTO `globalize_translations` VALUES (467,'',NULL,1,'','St','Wed [abbreviated weekday]','ViewTranslation',1233);
-INSERT INTO `globalize_translations` VALUES (468,'',NULL,1,'','Čt','Thu [abbreviated weekday]','ViewTranslation',1233);
-INSERT INTO `globalize_translations` VALUES (469,'',NULL,1,'','Pá','Fri [abbreviated weekday]','ViewTranslation',1233);
-INSERT INTO `globalize_translations` VALUES (470,'',NULL,1,'','So','Sat [abbreviated weekday]','ViewTranslation',1233);
-INSERT INTO `globalize_translations` VALUES (471,'',NULL,1,'','Leden','January [month]','ViewTranslation',1233);
-INSERT INTO `globalize_translations` VALUES (472,'',NULL,1,'','Únor','February [month]','ViewTranslation',1233);
-INSERT INTO `globalize_translations` VALUES (473,'',NULL,1,'','Březen','March [month]','ViewTranslation',1233);
-INSERT INTO `globalize_translations` VALUES (474,'',NULL,1,'','Duben','April [month]','ViewTranslation',1233);
-INSERT INTO `globalize_translations` VALUES (475,'',NULL,1,'','Květen','May [month]','ViewTranslation',1233);
-INSERT INTO `globalize_translations` VALUES (476,'',NULL,1,'','Červen','June [month]','ViewTranslation',1233);
-INSERT INTO `globalize_translations` VALUES (477,'',NULL,1,'','Červenec','July [month]','ViewTranslation',1233);
-INSERT INTO `globalize_translations` VALUES (478,'',NULL,1,'','Srpen','August [month]','ViewTranslation',1233);
-INSERT INTO `globalize_translations` VALUES (479,'',NULL,1,'','Září','September [month]','ViewTranslation',1233);
-INSERT INTO `globalize_translations` VALUES (480,'',NULL,1,'','Říjen','October [month]','ViewTranslation',1233);
-INSERT INTO `globalize_translations` VALUES (481,'',NULL,1,'','Listopad','November [month]','ViewTranslation',1233);
-INSERT INTO `globalize_translations` VALUES (482,'',NULL,1,'','Prosinec','December [month]','ViewTranslation',1233);
-INSERT INTO `globalize_translations` VALUES (483,'',NULL,1,'','Led','Jan [abbreviated month]','ViewTranslation',1233);
-INSERT INTO `globalize_translations` VALUES (484,'',NULL,1,'','Úno','Feb [abbreviated month]','ViewTranslation',1233);
-INSERT INTO `globalize_translations` VALUES (485,'',NULL,1,'','Bře','Mar [abbreviated month]','ViewTranslation',1233);
-INSERT INTO `globalize_translations` VALUES (486,'',NULL,1,'','Dub','Apr [abbreviated month]','ViewTranslation',1233);
-INSERT INTO `globalize_translations` VALUES (487,'',NULL,1,'','Kvě','May [abbreviated month]','ViewTranslation',1233);
-INSERT INTO `globalize_translations` VALUES (488,'',NULL,1,'','Čen','Jun [abbreviated month]','ViewTranslation',1233);
-INSERT INTO `globalize_translations` VALUES (489,'',NULL,1,'','Čec','Jul [abbreviated month]','ViewTranslation',1233);
-INSERT INTO `globalize_translations` VALUES (490,'',NULL,1,'','Srp','Aug [abbreviated month]','ViewTranslation',1233);
-INSERT INTO `globalize_translations` VALUES (491,'',NULL,1,'','Zář','Sep [abbreviated month]','ViewTranslation',1233);
-INSERT INTO `globalize_translations` VALUES (492,'',NULL,1,'','Říj','Oct [abbreviated month]','ViewTranslation',1233);
-INSERT INTO `globalize_translations` VALUES (493,'',NULL,1,'','Lis','Nov [abbreviated month]','ViewTranslation',1233);
-INSERT INTO `globalize_translations` VALUES (494,'',NULL,1,'','Pro','Dec [abbreviated month]','ViewTranslation',1233);
-INSERT INTO `globalize_translations` VALUES (495,'',NULL,1,'','Sul','Sunday [weekday]','ViewTranslation',1481);
-INSERT INTO `globalize_translations` VALUES (496,'',NULL,1,'','Llun','Monday [weekday]','ViewTranslation',1481);
-INSERT INTO `globalize_translations` VALUES (497,'',NULL,1,'','Mawrth','Tuesday [weekday]','ViewTranslation',1481);
-INSERT INTO `globalize_translations` VALUES (498,'',NULL,1,'','Mercher','Wednesday [weekday]','ViewTranslation',1481);
-INSERT INTO `globalize_translations` VALUES (499,'',NULL,1,'','Iau','Thursday [weekday]','ViewTranslation',1481);
-INSERT INTO `globalize_translations` VALUES (500,'',NULL,1,'','Gwener','Friday [weekday]','ViewTranslation',1481);
-INSERT INTO `globalize_translations` VALUES (501,'',NULL,1,'','Sadwrn','Saturday [weekday]','ViewTranslation',1481);
-INSERT INTO `globalize_translations` VALUES (502,'',NULL,1,'','Sul','Sun [abbreviated weekday]','ViewTranslation',1481);
-INSERT INTO `globalize_translations` VALUES (503,'',NULL,1,'','Llu','Mon [abbreviated weekday]','ViewTranslation',1481);
-INSERT INTO `globalize_translations` VALUES (504,'',NULL,1,'','Maw','Tue [abbreviated weekday]','ViewTranslation',1481);
-INSERT INTO `globalize_translations` VALUES (505,'',NULL,1,'','Mer','Wed [abbreviated weekday]','ViewTranslation',1481);
-INSERT INTO `globalize_translations` VALUES (506,'',NULL,1,'','Iau','Thu [abbreviated weekday]','ViewTranslation',1481);
-INSERT INTO `globalize_translations` VALUES (507,'',NULL,1,'','Gwe','Fri [abbreviated weekday]','ViewTranslation',1481);
-INSERT INTO `globalize_translations` VALUES (508,'',NULL,1,'','Sad','Sat [abbreviated weekday]','ViewTranslation',1481);
-INSERT INTO `globalize_translations` VALUES (509,'',NULL,1,'','Ionawr','January [month]','ViewTranslation',1481);
-INSERT INTO `globalize_translations` VALUES (510,'',NULL,1,'','Chwefror','February [month]','ViewTranslation',1481);
-INSERT INTO `globalize_translations` VALUES (511,'',NULL,1,'','Mawrth','March [month]','ViewTranslation',1481);
-INSERT INTO `globalize_translations` VALUES (512,'',NULL,1,'','Ebrill','April [month]','ViewTranslation',1481);
-INSERT INTO `globalize_translations` VALUES (513,'',NULL,1,'','Mai','May [month]','ViewTranslation',1481);
-INSERT INTO `globalize_translations` VALUES (514,'',NULL,1,'','Mehefin','June [month]','ViewTranslation',1481);
-INSERT INTO `globalize_translations` VALUES (515,'',NULL,1,'','Gorffennaf','July [month]','ViewTranslation',1481);
-INSERT INTO `globalize_translations` VALUES (516,'',NULL,1,'','Awst','August [month]','ViewTranslation',1481);
-INSERT INTO `globalize_translations` VALUES (517,'',NULL,1,'','Medi','September [month]','ViewTranslation',1481);
-INSERT INTO `globalize_translations` VALUES (518,'',NULL,1,'','Hydref','October [month]','ViewTranslation',1481);
-INSERT INTO `globalize_translations` VALUES (519,'',NULL,1,'','Tachwedd','November [month]','ViewTranslation',1481);
-INSERT INTO `globalize_translations` VALUES (520,'',NULL,1,'','Rhagfyr','December [month]','ViewTranslation',1481);
-INSERT INTO `globalize_translations` VALUES (521,'',NULL,1,'','Ion','Jan [abbreviated month]','ViewTranslation',1481);
-INSERT INTO `globalize_translations` VALUES (522,'',NULL,1,'','Chw','Feb [abbreviated month]','ViewTranslation',1481);
-INSERT INTO `globalize_translations` VALUES (523,'',NULL,1,'','Maw','Mar [abbreviated month]','ViewTranslation',1481);
-INSERT INTO `globalize_translations` VALUES (524,'',NULL,1,'','Ebr','Apr [abbreviated month]','ViewTranslation',1481);
-INSERT INTO `globalize_translations` VALUES (525,'',NULL,1,'','Mai','May [abbreviated month]','ViewTranslation',1481);
-INSERT INTO `globalize_translations` VALUES (526,'',NULL,1,'','Meh','Jun [abbreviated month]','ViewTranslation',1481);
-INSERT INTO `globalize_translations` VALUES (527,'',NULL,1,'','Gor','Jul [abbreviated month]','ViewTranslation',1481);
-INSERT INTO `globalize_translations` VALUES (528,'',NULL,1,'','Aws','Aug [abbreviated month]','ViewTranslation',1481);
-INSERT INTO `globalize_translations` VALUES (529,'',NULL,1,'','Med','Sep [abbreviated month]','ViewTranslation',1481);
-INSERT INTO `globalize_translations` VALUES (530,'',NULL,1,'','Hyd','Oct [abbreviated month]','ViewTranslation',1481);
-INSERT INTO `globalize_translations` VALUES (531,'',NULL,1,'','Tach','Nov [abbreviated month]','ViewTranslation',1481);
-INSERT INTO `globalize_translations` VALUES (532,'',NULL,1,'','Rha','Dec [abbreviated month]','ViewTranslation',1481);
-INSERT INTO `globalize_translations` VALUES (533,'',NULL,1,'','Søndag','Sunday [weekday]','ViewTranslation',1499);
-INSERT INTO `globalize_translations` VALUES (534,'',NULL,1,'','Mandag','Monday [weekday]','ViewTranslation',1499);
-INSERT INTO `globalize_translations` VALUES (535,'',NULL,1,'','Tirsdag','Tuesday [weekday]','ViewTranslation',1499);
-INSERT INTO `globalize_translations` VALUES (536,'',NULL,1,'','Onsdag','Wednesday [weekday]','ViewTranslation',1499);
-INSERT INTO `globalize_translations` VALUES (537,'',NULL,1,'','Torsdag','Thursday [weekday]','ViewTranslation',1499);
-INSERT INTO `globalize_translations` VALUES (538,'',NULL,1,'','Fredag','Friday [weekday]','ViewTranslation',1499);
-INSERT INTO `globalize_translations` VALUES (539,'',NULL,1,'','Lørdag','Saturday [weekday]','ViewTranslation',1499);
-INSERT INTO `globalize_translations` VALUES (540,'',NULL,1,'','Søn','Sun [abbreviated weekday]','ViewTranslation',1499);
-INSERT INTO `globalize_translations` VALUES (541,'',NULL,1,'','Man','Mon [abbreviated weekday]','ViewTranslation',1499);
-INSERT INTO `globalize_translations` VALUES (542,'',NULL,1,'','Tir','Tue [abbreviated weekday]','ViewTranslation',1499);
-INSERT INTO `globalize_translations` VALUES (543,'',NULL,1,'','Ons','Wed [abbreviated weekday]','ViewTranslation',1499);
-INSERT INTO `globalize_translations` VALUES (544,'',NULL,1,'','Tor','Thu [abbreviated weekday]','ViewTranslation',1499);
-INSERT INTO `globalize_translations` VALUES (545,'',NULL,1,'','Fre','Fri [abbreviated weekday]','ViewTranslation',1499);
-INSERT INTO `globalize_translations` VALUES (546,'',NULL,1,'','Lør','Sat [abbreviated weekday]','ViewTranslation',1499);
-INSERT INTO `globalize_translations` VALUES (547,'',NULL,1,'','Januar','January [month]','ViewTranslation',1499);
-INSERT INTO `globalize_translations` VALUES (548,'',NULL,1,'','Februar','February [month]','ViewTranslation',1499);
-INSERT INTO `globalize_translations` VALUES (549,'',NULL,1,'','Marts','March [month]','ViewTranslation',1499);
-INSERT INTO `globalize_translations` VALUES (550,'',NULL,1,'','April','April [month]','ViewTranslation',1499);
-INSERT INTO `globalize_translations` VALUES (551,'',NULL,1,'','Maj','May [month]','ViewTranslation',1499);
-INSERT INTO `globalize_translations` VALUES (552,'',NULL,1,'','Juni','June [month]','ViewTranslation',1499);
-INSERT INTO `globalize_translations` VALUES (553,'',NULL,1,'','Juli','July [month]','ViewTranslation',1499);
-INSERT INTO `globalize_translations` VALUES (554,'',NULL,1,'','August','August [month]','ViewTranslation',1499);
-INSERT INTO `globalize_translations` VALUES (555,'',NULL,1,'','September','September [month]','ViewTranslation',1499);
-INSERT INTO `globalize_translations` VALUES (556,'',NULL,1,'','Oktober','October [month]','ViewTranslation',1499);
-INSERT INTO `globalize_translations` VALUES (557,'',NULL,1,'','November','November [month]','ViewTranslation',1499);
-INSERT INTO `globalize_translations` VALUES (558,'',NULL,1,'','December','December [month]','ViewTranslation',1499);
-INSERT INTO `globalize_translations` VALUES (559,'',NULL,1,'','Jan','Jan [abbreviated month]','ViewTranslation',1499);
-INSERT INTO `globalize_translations` VALUES (560,'',NULL,1,'','Feb','Feb [abbreviated month]','ViewTranslation',1499);
-INSERT INTO `globalize_translations` VALUES (561,'',NULL,1,'','Mar','Mar [abbreviated month]','ViewTranslation',1499);
-INSERT INTO `globalize_translations` VALUES (562,'',NULL,1,'','Apr','Apr [abbreviated month]','ViewTranslation',1499);
-INSERT INTO `globalize_translations` VALUES (563,'',NULL,1,'','Maj','May [abbreviated month]','ViewTranslation',1499);
-INSERT INTO `globalize_translations` VALUES (564,'',NULL,1,'','Jun','Jun [abbreviated month]','ViewTranslation',1499);
-INSERT INTO `globalize_translations` VALUES (565,'',NULL,1,'','Jul','Jul [abbreviated month]','ViewTranslation',1499);
-INSERT INTO `globalize_translations` VALUES (566,'',NULL,1,'','Aug','Aug [abbreviated month]','ViewTranslation',1499);
-INSERT INTO `globalize_translations` VALUES (567,'',NULL,1,'','Sep','Sep [abbreviated month]','ViewTranslation',1499);
-INSERT INTO `globalize_translations` VALUES (568,'',NULL,1,'','Okt','Oct [abbreviated month]','ViewTranslation',1499);
-INSERT INTO `globalize_translations` VALUES (569,'',NULL,1,'','Nov','Nov [abbreviated month]','ViewTranslation',1499);
-INSERT INTO `globalize_translations` VALUES (570,'',NULL,1,'','Dec','Dec [abbreviated month]','ViewTranslation',1499);
-INSERT INTO `globalize_translations` VALUES (571,'',NULL,1,'','Κυριακή','Sunday [weekday]','ViewTranslation',1793);
-INSERT INTO `globalize_translations` VALUES (572,'',NULL,1,'','Δευτέρα','Monday [weekday]','ViewTranslation',1793);
-INSERT INTO `globalize_translations` VALUES (573,'',NULL,1,'','Τρίτη','Tuesday [weekday]','ViewTranslation',1793);
-INSERT INTO `globalize_translations` VALUES (574,'',NULL,1,'','Τετάρτη','Wednesday [weekday]','ViewTranslation',1793);
-INSERT INTO `globalize_translations` VALUES (575,'',NULL,1,'','Πέμπτη','Thursday [weekday]','ViewTranslation',1793);
-INSERT INTO `globalize_translations` VALUES (576,'',NULL,1,'','Παρασκευή','Friday [weekday]','ViewTranslation',1793);
-INSERT INTO `globalize_translations` VALUES (577,'',NULL,1,'','Σάββατο','Saturday [weekday]','ViewTranslation',1793);
-INSERT INTO `globalize_translations` VALUES (578,'',NULL,1,'','Κυρ','Sun [abbreviated weekday]','ViewTranslation',1793);
-INSERT INTO `globalize_translations` VALUES (579,'',NULL,1,'','Δευ','Mon [abbreviated weekday]','ViewTranslation',1793);
-INSERT INTO `globalize_translations` VALUES (580,'',NULL,1,'','Τρι','Tue [abbreviated weekday]','ViewTranslation',1793);
-INSERT INTO `globalize_translations` VALUES (581,'',NULL,1,'','Τετ','Wed [abbreviated weekday]','ViewTranslation',1793);
-INSERT INTO `globalize_translations` VALUES (582,'',NULL,1,'','Πεμ','Thu [abbreviated weekday]','ViewTranslation',1793);
-INSERT INTO `globalize_translations` VALUES (583,'',NULL,1,'','Παρ','Fri [abbreviated weekday]','ViewTranslation',1793);
-INSERT INTO `globalize_translations` VALUES (584,'',NULL,1,'','Σαβ','Sat [abbreviated weekday]','ViewTranslation',1793);
-INSERT INTO `globalize_translations` VALUES (585,'',NULL,1,'','Ιανουάριος','January [month]','ViewTranslation',1793);
-INSERT INTO `globalize_translations` VALUES (586,'',NULL,1,'','Φεβρουάριος','February [month]','ViewTranslation',1793);
-INSERT INTO `globalize_translations` VALUES (587,'',NULL,1,'','Μάρτιος','March [month]','ViewTranslation',1793);
-INSERT INTO `globalize_translations` VALUES (588,'',NULL,1,'','Απρίλιος','April [month]','ViewTranslation',1793);
-INSERT INTO `globalize_translations` VALUES (589,'',NULL,1,'','Μάιος','May [month]','ViewTranslation',1793);
-INSERT INTO `globalize_translations` VALUES (590,'',NULL,1,'','Ιούνιος','June [month]','ViewTranslation',1793);
-INSERT INTO `globalize_translations` VALUES (591,'',NULL,1,'','Ιούλιος','July [month]','ViewTranslation',1793);
-INSERT INTO `globalize_translations` VALUES (592,'',NULL,1,'','Αύγουστος','August [month]','ViewTranslation',1793);
-INSERT INTO `globalize_translations` VALUES (593,'',NULL,1,'','Σεπτέμβριος','September [month]','ViewTranslation',1793);
-INSERT INTO `globalize_translations` VALUES (594,'',NULL,1,'','Οκτώβριος','October [month]','ViewTranslation',1793);
-INSERT INTO `globalize_translations` VALUES (595,'',NULL,1,'','Νοέμβριος','November [month]','ViewTranslation',1793);
-INSERT INTO `globalize_translations` VALUES (596,'',NULL,1,'','Δεκέμβριος','December [month]','ViewTranslation',1793);
-INSERT INTO `globalize_translations` VALUES (597,'',NULL,1,'','Ιαν','Jan [abbreviated month]','ViewTranslation',1793);
-INSERT INTO `globalize_translations` VALUES (598,'',NULL,1,'','Φεβ','Feb [abbreviated month]','ViewTranslation',1793);
-INSERT INTO `globalize_translations` VALUES (599,'',NULL,1,'','Μάρ','Mar [abbreviated month]','ViewTranslation',1793);
-INSERT INTO `globalize_translations` VALUES (600,'',NULL,1,'','Απρ','Apr [abbreviated month]','ViewTranslation',1793);
-INSERT INTO `globalize_translations` VALUES (601,'',NULL,1,'','Μάι','May [abbreviated month]','ViewTranslation',1793);
-INSERT INTO `globalize_translations` VALUES (602,'',NULL,1,'','Ιούν','Jun [abbreviated month]','ViewTranslation',1793);
-INSERT INTO `globalize_translations` VALUES (603,'',NULL,1,'','Ιούλ','Jul [abbreviated month]','ViewTranslation',1793);
-INSERT INTO `globalize_translations` VALUES (604,'',NULL,1,'','Αύγ','Aug [abbreviated month]','ViewTranslation',1793);
-INSERT INTO `globalize_translations` VALUES (605,'',NULL,1,'','Σεπ','Sep [abbreviated month]','ViewTranslation',1793);
-INSERT INTO `globalize_translations` VALUES (606,'',NULL,1,'','Οκτ','Oct [abbreviated month]','ViewTranslation',1793);
-INSERT INTO `globalize_translations` VALUES (607,'',NULL,1,'','Νοέ','Nov [abbreviated month]','ViewTranslation',1793);
-INSERT INTO `globalize_translations` VALUES (608,'',NULL,1,'','Δεκ','Dec [abbreviated month]','ViewTranslation',1793);
-INSERT INTO `globalize_translations` VALUES (609,'',NULL,1,'','Sunday','Sunday [weekday]','ViewTranslation',1819);
-INSERT INTO `globalize_translations` VALUES (610,'',NULL,1,'','Monday','Monday [weekday]','ViewTranslation',1819);
-INSERT INTO `globalize_translations` VALUES (611,'',NULL,1,'','Tuesday','Tuesday [weekday]','ViewTranslation',1819);
-INSERT INTO `globalize_translations` VALUES (612,'',NULL,1,'','Wednesday','Wednesday [weekday]','ViewTranslation',1819);
-INSERT INTO `globalize_translations` VALUES (613,'',NULL,1,'','Thursday','Thursday [weekday]','ViewTranslation',1819);
-INSERT INTO `globalize_translations` VALUES (614,'',NULL,1,'','Friday','Friday [weekday]','ViewTranslation',1819);
-INSERT INTO `globalize_translations` VALUES (615,'',NULL,1,'','Saturday','Saturday [weekday]','ViewTranslation',1819);
-INSERT INTO `globalize_translations` VALUES (616,'',NULL,1,'','Sun','Sun [abbreviated weekday]','ViewTranslation',1819);
-INSERT INTO `globalize_translations` VALUES (617,'',NULL,1,'','Mon','Mon [abbreviated weekday]','ViewTranslation',1819);
-INSERT INTO `globalize_translations` VALUES (618,'',NULL,1,'','Tue','Tue [abbreviated weekday]','ViewTranslation',1819);
-INSERT INTO `globalize_translations` VALUES (619,'',NULL,1,'','Wed','Wed [abbreviated weekday]','ViewTranslation',1819);
-INSERT INTO `globalize_translations` VALUES (620,'',NULL,1,'','Thu','Thu [abbreviated weekday]','ViewTranslation',1819);
-INSERT INTO `globalize_translations` VALUES (621,'',NULL,1,'','Fri','Fri [abbreviated weekday]','ViewTranslation',1819);
-INSERT INTO `globalize_translations` VALUES (622,'',NULL,1,'','Sat','Sat [abbreviated weekday]','ViewTranslation',1819);
-INSERT INTO `globalize_translations` VALUES (623,'',NULL,1,'','January','January [month]','ViewTranslation',1819);
-INSERT INTO `globalize_translations` VALUES (624,'',NULL,1,'','February','February [month]','ViewTranslation',1819);
-INSERT INTO `globalize_translations` VALUES (625,'',NULL,1,'','March','March [month]','ViewTranslation',1819);
-INSERT INTO `globalize_translations` VALUES (626,'',NULL,1,'','April','April [month]','ViewTranslation',1819);
-INSERT INTO `globalize_translations` VALUES (627,'',NULL,1,'','May','May [month]','ViewTranslation',1819);
-INSERT INTO `globalize_translations` VALUES (628,'',NULL,1,'','June','June [month]','ViewTranslation',1819);
-INSERT INTO `globalize_translations` VALUES (629,'',NULL,1,'','July','July [month]','ViewTranslation',1819);
-INSERT INTO `globalize_translations` VALUES (630,'',NULL,1,'','August','August [month]','ViewTranslation',1819);
-INSERT INTO `globalize_translations` VALUES (631,'',NULL,1,'','September','September [month]','ViewTranslation',1819);
-INSERT INTO `globalize_translations` VALUES (632,'',NULL,1,'','October','October [month]','ViewTranslation',1819);
-INSERT INTO `globalize_translations` VALUES (633,'',NULL,1,'','November','November [month]','ViewTranslation',1819);
-INSERT INTO `globalize_translations` VALUES (634,'',NULL,1,'','December','December [month]','ViewTranslation',1819);
-INSERT INTO `globalize_translations` VALUES (635,'',NULL,1,'','Jan','Jan [abbreviated month]','ViewTranslation',1819);
-INSERT INTO `globalize_translations` VALUES (636,'',NULL,1,'','Feb','Feb [abbreviated month]','ViewTranslation',1819);
-INSERT INTO `globalize_translations` VALUES (637,'',NULL,1,'','Mar','Mar [abbreviated month]','ViewTranslation',1819);
-INSERT INTO `globalize_translations` VALUES (638,'',NULL,1,'','Apr','Apr [abbreviated month]','ViewTranslation',1819);
-INSERT INTO `globalize_translations` VALUES (639,'',NULL,1,'','May','May [abbreviated month]','ViewTranslation',1819);
-INSERT INTO `globalize_translations` VALUES (640,'',NULL,1,'','Jun','Jun [abbreviated month]','ViewTranslation',1819);
-INSERT INTO `globalize_translations` VALUES (641,'',NULL,1,'','Jul','Jul [abbreviated month]','ViewTranslation',1819);
-INSERT INTO `globalize_translations` VALUES (642,'',NULL,1,'','Aug','Aug [abbreviated month]','ViewTranslation',1819);
-INSERT INTO `globalize_translations` VALUES (643,'',NULL,1,'','Sep','Sep [abbreviated month]','ViewTranslation',1819);
-INSERT INTO `globalize_translations` VALUES (644,'',NULL,1,'','Oct','Oct [abbreviated month]','ViewTranslation',1819);
-INSERT INTO `globalize_translations` VALUES (645,'',NULL,1,'','Nov','Nov [abbreviated month]','ViewTranslation',1819);
-INSERT INTO `globalize_translations` VALUES (646,'',NULL,1,'','Dec','Dec [abbreviated month]','ViewTranslation',1819);
-INSERT INTO `globalize_translations` VALUES (647,'',NULL,1,'','Domingo','Sunday [weekday]','ViewTranslation',5889);
-INSERT INTO `globalize_translations` VALUES (648,'',NULL,1,'','Lunes','Monday [weekday]','ViewTranslation',5889);
-INSERT INTO `globalize_translations` VALUES (649,'',NULL,1,'','Martes','Tuesday [weekday]','ViewTranslation',5889);
-INSERT INTO `globalize_translations` VALUES (650,'',NULL,1,'','Miércoles','Wednesday [weekday]','ViewTranslation',5889);
-INSERT INTO `globalize_translations` VALUES (651,'',NULL,1,'','Jueves','Thursday [weekday]','ViewTranslation',5889);
-INSERT INTO `globalize_translations` VALUES (652,'',NULL,1,'','Viernes','Friday [weekday]','ViewTranslation',5889);
-INSERT INTO `globalize_translations` VALUES (653,'',NULL,1,'','Sábado','Saturday [weekday]','ViewTranslation',5889);
-INSERT INTO `globalize_translations` VALUES (654,'',NULL,1,'','Dom','Sun [abbreviated weekday]','ViewTranslation',5889);
-INSERT INTO `globalize_translations` VALUES (655,'',NULL,1,'','Lun','Mon [abbreviated weekday]','ViewTranslation',5889);
-INSERT INTO `globalize_translations` VALUES (656,'',NULL,1,'','Mar','Tue [abbreviated weekday]','ViewTranslation',5889);
-INSERT INTO `globalize_translations` VALUES (657,'',NULL,1,'','Mié','Wed [abbreviated weekday]','ViewTranslation',5889);
-INSERT INTO `globalize_translations` VALUES (658,'',NULL,1,'','Jue','Thu [abbreviated weekday]','ViewTranslation',5889);
-INSERT INTO `globalize_translations` VALUES (659,'',NULL,1,'','Vie','Fri [abbreviated weekday]','ViewTranslation',5889);
-INSERT INTO `globalize_translations` VALUES (660,'',NULL,1,'','Sáb','Sat [abbreviated weekday]','ViewTranslation',5889);
-INSERT INTO `globalize_translations` VALUES (661,'',NULL,1,'','Enero','January [month]','ViewTranslation',5889);
-INSERT INTO `globalize_translations` VALUES (662,'',NULL,1,'','Febrero','February [month]','ViewTranslation',5889);
-INSERT INTO `globalize_translations` VALUES (663,'',NULL,1,'','Marzo','March [month]','ViewTranslation',5889);
-INSERT INTO `globalize_translations` VALUES (664,'',NULL,1,'','Abril','April [month]','ViewTranslation',5889);
-INSERT INTO `globalize_translations` VALUES (665,'',NULL,1,'','Mayo','May [month]','ViewTranslation',5889);
-INSERT INTO `globalize_translations` VALUES (666,'',NULL,1,'','Junio','June [month]','ViewTranslation',5889);
-INSERT INTO `globalize_translations` VALUES (667,'',NULL,1,'','Julio','July [month]','ViewTranslation',5889);
-INSERT INTO `globalize_translations` VALUES (668,'',NULL,1,'','Agosto','August [month]','ViewTranslation',5889);
-INSERT INTO `globalize_translations` VALUES (669,'',NULL,1,'','Septiembre','September [month]','ViewTranslation',5889);
-INSERT INTO `globalize_translations` VALUES (670,'',NULL,1,'','Octubre','October [month]','ViewTranslation',5889);
-INSERT INTO `globalize_translations` VALUES (671,'',NULL,1,'','Noviembre','November [month]','ViewTranslation',5889);
-INSERT INTO `globalize_translations` VALUES (672,'',NULL,1,'','Diciembre','December [month]','ViewTranslation',5889);
-INSERT INTO `globalize_translations` VALUES (673,'',NULL,1,'','Ene','Jan [abbreviated month]','ViewTranslation',5889);
-INSERT INTO `globalize_translations` VALUES (674,'',NULL,1,'','Feb','Feb [abbreviated month]','ViewTranslation',5889);
-INSERT INTO `globalize_translations` VALUES (675,'',NULL,1,'','Mar','Mar [abbreviated month]','ViewTranslation',5889);
-INSERT INTO `globalize_translations` VALUES (676,'',NULL,1,'','Abr','Apr [abbreviated month]','ViewTranslation',5889);
-INSERT INTO `globalize_translations` VALUES (677,'',NULL,1,'','May','May [abbreviated month]','ViewTranslation',5889);
-INSERT INTO `globalize_translations` VALUES (678,'',NULL,1,'','Jun','Jun [abbreviated month]','ViewTranslation',5889);
-INSERT INTO `globalize_translations` VALUES (679,'',NULL,1,'','Jul','Jul [abbreviated month]','ViewTranslation',5889);
-INSERT INTO `globalize_translations` VALUES (680,'',NULL,1,'','Ago','Aug [abbreviated month]','ViewTranslation',5889);
-INSERT INTO `globalize_translations` VALUES (681,'',NULL,1,'','Sep','Sep [abbreviated month]','ViewTranslation',5889);
-INSERT INTO `globalize_translations` VALUES (682,'',NULL,1,'','Oct','Oct [abbreviated month]','ViewTranslation',5889);
-INSERT INTO `globalize_translations` VALUES (683,'',NULL,1,'','Nov','Nov [abbreviated month]','ViewTranslation',5889);
-INSERT INTO `globalize_translations` VALUES (684,'',NULL,1,'','Dic','Dec [abbreviated month]','ViewTranslation',5889);
-INSERT INTO `globalize_translations` VALUES (685,'',NULL,1,'','Pühapäev','Sunday [weekday]','ViewTranslation',1851);
-INSERT INTO `globalize_translations` VALUES (686,'',NULL,1,'','Esmaspäev','Monday [weekday]','ViewTranslation',1851);
-INSERT INTO `globalize_translations` VALUES (687,'',NULL,1,'','Teisipäev','Tuesday [weekday]','ViewTranslation',1851);
-INSERT INTO `globalize_translations` VALUES (688,'',NULL,1,'','Kolmapäev','Wednesday [weekday]','ViewTranslation',1851);
-INSERT INTO `globalize_translations` VALUES (689,'',NULL,1,'','Neljapäev','Thursday [weekday]','ViewTranslation',1851);
-INSERT INTO `globalize_translations` VALUES (690,'',NULL,1,'','Reede','Friday [weekday]','ViewTranslation',1851);
-INSERT INTO `globalize_translations` VALUES (691,'',NULL,1,'','Laupäev','Saturday [weekday]','ViewTranslation',1851);
-INSERT INTO `globalize_translations` VALUES (692,'',NULL,1,'','P','Sun [abbreviated weekday]','ViewTranslation',1851);
-INSERT INTO `globalize_translations` VALUES (693,'',NULL,1,'','E','Mon [abbreviated weekday]','ViewTranslation',1851);
-INSERT INTO `globalize_translations` VALUES (694,'',NULL,1,'','T','Tue [abbreviated weekday]','ViewTranslation',1851);
-INSERT INTO `globalize_translations` VALUES (695,'',NULL,1,'','K','Wed [abbreviated weekday]','ViewTranslation',1851);
-INSERT INTO `globalize_translations` VALUES (696,'',NULL,1,'','N','Thu [abbreviated weekday]','ViewTranslation',1851);
-INSERT INTO `globalize_translations` VALUES (697,'',NULL,1,'','R','Fri [abbreviated weekday]','ViewTranslation',1851);
-INSERT INTO `globalize_translations` VALUES (698,'',NULL,1,'','L','Sat [abbreviated weekday]','ViewTranslation',1851);
-INSERT INTO `globalize_translations` VALUES (699,'',NULL,1,'','Jaanuar','January [month]','ViewTranslation',1851);
-INSERT INTO `globalize_translations` VALUES (700,'',NULL,1,'','Veebruar','February [month]','ViewTranslation',1851);
-INSERT INTO `globalize_translations` VALUES (701,'',NULL,1,'','Märts','March [month]','ViewTranslation',1851);
-INSERT INTO `globalize_translations` VALUES (702,'',NULL,1,'','Aprill','April [month]','ViewTranslation',1851);
-INSERT INTO `globalize_translations` VALUES (703,'',NULL,1,'','Mai','May [month]','ViewTranslation',1851);
-INSERT INTO `globalize_translations` VALUES (704,'',NULL,1,'','Juuni','June [month]','ViewTranslation',1851);
-INSERT INTO `globalize_translations` VALUES (705,'',NULL,1,'','Juuli','July [month]','ViewTranslation',1851);
-INSERT INTO `globalize_translations` VALUES (706,'',NULL,1,'','August','August [month]','ViewTranslation',1851);
-INSERT INTO `globalize_translations` VALUES (707,'',NULL,1,'','September','September [month]','ViewTranslation',1851);
-INSERT INTO `globalize_translations` VALUES (708,'',NULL,1,'','Oktoober','October [month]','ViewTranslation',1851);
-INSERT INTO `globalize_translations` VALUES (709,'',NULL,1,'','November','November [month]','ViewTranslation',1851);
-INSERT INTO `globalize_translations` VALUES (710,'',NULL,1,'','Detsember','December [month]','ViewTranslation',1851);
-INSERT INTO `globalize_translations` VALUES (711,'',NULL,1,'','Jaan ','Jan [abbreviated month]','ViewTranslation',1851);
-INSERT INTO `globalize_translations` VALUES (712,'',NULL,1,'','Veebr','Feb [abbreviated month]','ViewTranslation',1851);
-INSERT INTO `globalize_translations` VALUES (713,'',NULL,1,'','Märts','Mar [abbreviated month]','ViewTranslation',1851);
-INSERT INTO `globalize_translations` VALUES (714,'',NULL,1,'','Apr ','Apr [abbreviated month]','ViewTranslation',1851);
-INSERT INTO `globalize_translations` VALUES (715,'',NULL,1,'','Mai ','May [abbreviated month]','ViewTranslation',1851);
-INSERT INTO `globalize_translations` VALUES (716,'',NULL,1,'','Juuni','Jun [abbreviated month]','ViewTranslation',1851);
-INSERT INTO `globalize_translations` VALUES (717,'',NULL,1,'','Juuli','Jul [abbreviated month]','ViewTranslation',1851);
-INSERT INTO `globalize_translations` VALUES (718,'',NULL,1,'','Aug ','Aug [abbreviated month]','ViewTranslation',1851);
-INSERT INTO `globalize_translations` VALUES (719,'',NULL,1,'','Sept ','Sep [abbreviated month]','ViewTranslation',1851);
-INSERT INTO `globalize_translations` VALUES (720,'',NULL,1,'','Okt ','Oct [abbreviated month]','ViewTranslation',1851);
-INSERT INTO `globalize_translations` VALUES (721,'',NULL,1,'','Nov ','Nov [abbreviated month]','ViewTranslation',1851);
-INSERT INTO `globalize_translations` VALUES (722,'',NULL,1,'','Dets ','Dec [abbreviated month]','ViewTranslation',1851);
-INSERT INTO `globalize_translations` VALUES (723,'',NULL,1,'','Igandea','Sunday [weekday]','ViewTranslation',1865);
-INSERT INTO `globalize_translations` VALUES (724,'',NULL,1,'','Astelehena','Monday [weekday]','ViewTranslation',1865);
-INSERT INTO `globalize_translations` VALUES (725,'',NULL,1,'','Asteartea','Tuesday [weekday]','ViewTranslation',1865);
-INSERT INTO `globalize_translations` VALUES (726,'',NULL,1,'','Asteazkena','Wednesday [weekday]','ViewTranslation',1865);
-INSERT INTO `globalize_translations` VALUES (727,'',NULL,1,'','Osteguna','Thursday [weekday]','ViewTranslation',1865);
-INSERT INTO `globalize_translations` VALUES (728,'',NULL,1,'','Ostirala','Friday [weekday]','ViewTranslation',1865);
-INSERT INTO `globalize_translations` VALUES (729,'',NULL,1,'','Larunbata','Saturday [weekday]','ViewTranslation',1865);
-INSERT INTO `globalize_translations` VALUES (730,'',NULL,1,'','Ig.','Sun [abbreviated weekday]','ViewTranslation',1865);
-INSERT INTO `globalize_translations` VALUES (731,'',NULL,1,'','Al.','Mon [abbreviated weekday]','ViewTranslation',1865);
-INSERT INTO `globalize_translations` VALUES (732,'',NULL,1,'','Ar.','Tue [abbreviated weekday]','ViewTranslation',1865);
-INSERT INTO `globalize_translations` VALUES (733,'',NULL,1,'','Az.','Wed [abbreviated weekday]','ViewTranslation',1865);
-INSERT INTO `globalize_translations` VALUES (734,'',NULL,1,'','Og.','Thu [abbreviated weekday]','ViewTranslation',1865);
-INSERT INTO `globalize_translations` VALUES (735,'',NULL,1,'','Or.','Fri [abbreviated weekday]','ViewTranslation',1865);
-INSERT INTO `globalize_translations` VALUES (736,'',NULL,1,'','Lr.','Sat [abbreviated weekday]','ViewTranslation',1865);
-INSERT INTO `globalize_translations` VALUES (737,'',NULL,1,'','Urtarrila','January [month]','ViewTranslation',1865);
-INSERT INTO `globalize_translations` VALUES (738,'',NULL,1,'','Otsaila','February [month]','ViewTranslation',1865);
-INSERT INTO `globalize_translations` VALUES (739,'',NULL,1,'','Martxoa','March [month]','ViewTranslation',1865);
-INSERT INTO `globalize_translations` VALUES (740,'',NULL,1,'','Apirila','April [month]','ViewTranslation',1865);
-INSERT INTO `globalize_translations` VALUES (741,'',NULL,1,'','Maiatza','May [month]','ViewTranslation',1865);
-INSERT INTO `globalize_translations` VALUES (742,'',NULL,1,'','Ekaina','June [month]','ViewTranslation',1865);
-INSERT INTO `globalize_translations` VALUES (743,'',NULL,1,'','Uztaila','July [month]','ViewTranslation',1865);
-INSERT INTO `globalize_translations` VALUES (744,'',NULL,1,'','Abuztua','August [month]','ViewTranslation',1865);
-INSERT INTO `globalize_translations` VALUES (745,'',NULL,1,'','Iraila','September [month]','ViewTranslation',1865);
-INSERT INTO `globalize_translations` VALUES (746,'',NULL,1,'','Urria','October [month]','ViewTranslation',1865);
-INSERT INTO `globalize_translations` VALUES (747,'',NULL,1,'','Azaroa','November [month]','ViewTranslation',1865);
-INSERT INTO `globalize_translations` VALUES (748,'',NULL,1,'','Abendua','December [month]','ViewTranslation',1865);
-INSERT INTO `globalize_translations` VALUES (749,'',NULL,1,'','Urt','Jan [abbreviated month]','ViewTranslation',1865);
-INSERT INTO `globalize_translations` VALUES (750,'',NULL,1,'','Ots','Feb [abbreviated month]','ViewTranslation',1865);
-INSERT INTO `globalize_translations` VALUES (751,'',NULL,1,'','Mar','Mar [abbreviated month]','ViewTranslation',1865);
-INSERT INTO `globalize_translations` VALUES (752,'',NULL,1,'','Api','Apr [abbreviated month]','ViewTranslation',1865);
-INSERT INTO `globalize_translations` VALUES (753,'',NULL,1,'','Mai','May [abbreviated month]','ViewTranslation',1865);
-INSERT INTO `globalize_translations` VALUES (754,'',NULL,1,'','Eka','Jun [abbreviated month]','ViewTranslation',1865);
-INSERT INTO `globalize_translations` VALUES (755,'',NULL,1,'','Uzt','Jul [abbreviated month]','ViewTranslation',1865);
-INSERT INTO `globalize_translations` VALUES (756,'',NULL,1,'','Abu','Aug [abbreviated month]','ViewTranslation',1865);
-INSERT INTO `globalize_translations` VALUES (757,'',NULL,1,'','Ira','Sep [abbreviated month]','ViewTranslation',1865);
-INSERT INTO `globalize_translations` VALUES (758,'',NULL,1,'','Urr','Oct [abbreviated month]','ViewTranslation',1865);
-INSERT INTO `globalize_translations` VALUES (759,'',NULL,1,'','Aza','Nov [abbreviated month]','ViewTranslation',1865);
-INSERT INTO `globalize_translations` VALUES (760,'',NULL,1,'','Abe','Dec [abbreviated month]','ViewTranslation',1865);
-INSERT INTO `globalize_translations` VALUES (761,'',NULL,1,'','یک‌شنبه','Sunday [weekday]','ViewTranslation',1889);
-INSERT INTO `globalize_translations` VALUES (762,'',NULL,1,'','دوشنبه','Monday [weekday]','ViewTranslation',1889);
-INSERT INTO `globalize_translations` VALUES (763,'',NULL,1,'','سه‌شنبه','Tuesday [weekday]','ViewTranslation',1889);
-INSERT INTO `globalize_translations` VALUES (764,'',NULL,1,'','چهارشنبه','Wednesday [weekday]','ViewTranslation',1889);
-INSERT INTO `globalize_translations` VALUES (765,'',NULL,1,'','پنج‌شنبه','Thursday [weekday]','ViewTranslation',1889);
-INSERT INTO `globalize_translations` VALUES (766,'',NULL,1,'','جمعه','Friday [weekday]','ViewTranslation',1889);
-INSERT INTO `globalize_translations` VALUES (767,'',NULL,1,'','شنبه','Saturday [weekday]','ViewTranslation',1889);
-INSERT INTO `globalize_translations` VALUES (768,'',NULL,1,'','ی.','Sun [abbreviated weekday]','ViewTranslation',1889);
-INSERT INTO `globalize_translations` VALUES (769,'',NULL,1,'','د.','Mon [abbreviated weekday]','ViewTranslation',1889);
-INSERT INTO `globalize_translations` VALUES (770,'',NULL,1,'','س.','Tue [abbreviated weekday]','ViewTranslation',1889);
-INSERT INTO `globalize_translations` VALUES (771,'',NULL,1,'','چ.','Wed [abbreviated weekday]','ViewTranslation',1889);
-INSERT INTO `globalize_translations` VALUES (772,'',NULL,1,'','پ.','Thu [abbreviated weekday]','ViewTranslation',1889);
-INSERT INTO `globalize_translations` VALUES (773,'',NULL,1,'','ج.','Fri [abbreviated weekday]','ViewTranslation',1889);
-INSERT INTO `globalize_translations` VALUES (774,'',NULL,1,'','ش.','Sat [abbreviated weekday]','ViewTranslation',1889);
-INSERT INTO `globalize_translations` VALUES (775,'',NULL,1,'','ژانویه','January [month]','ViewTranslation',1889);
-INSERT INTO `globalize_translations` VALUES (776,'',NULL,1,'','فوریه','February [month]','ViewTranslation',1889);
-INSERT INTO `globalize_translations` VALUES (777,'',NULL,1,'','مارس','March [month]','ViewTranslation',1889);
-INSERT INTO `globalize_translations` VALUES (778,'',NULL,1,'','آوریل','April [month]','ViewTranslation',1889);
-INSERT INTO `globalize_translations` VALUES (779,'',NULL,1,'','مه','May [month]','ViewTranslation',1889);
-INSERT INTO `globalize_translations` VALUES (780,'',NULL,1,'','ژوئن','June [month]','ViewTranslation',1889);
-INSERT INTO `globalize_translations` VALUES (781,'',NULL,1,'','ژوئیه','July [month]','ViewTranslation',1889);
-INSERT INTO `globalize_translations` VALUES (782,'',NULL,1,'','اوت','August [month]','ViewTranslation',1889);
-INSERT INTO `globalize_translations` VALUES (783,'',NULL,1,'','سپتامبر','September [month]','ViewTranslation',1889);
-INSERT INTO `globalize_translations` VALUES (784,'',NULL,1,'','اكتبر','October [month]','ViewTranslation',1889);
-INSERT INTO `globalize_translations` VALUES (785,'',NULL,1,'','نوامبر','November [month]','ViewTranslation',1889);
-INSERT INTO `globalize_translations` VALUES (786,'',NULL,1,'','دسامبر','December [month]','ViewTranslation',1889);
-INSERT INTO `globalize_translations` VALUES (787,'',NULL,1,'','ژان','Jan [abbreviated month]','ViewTranslation',1889);
-INSERT INTO `globalize_translations` VALUES (788,'',NULL,1,'','فور','Feb [abbreviated month]','ViewTranslation',1889);
-INSERT INTO `globalize_translations` VALUES (789,'',NULL,1,'','مار','Mar [abbreviated month]','ViewTranslation',1889);
-INSERT INTO `globalize_translations` VALUES (790,'',NULL,1,'','آور','Apr [abbreviated month]','ViewTranslation',1889);
-INSERT INTO `globalize_translations` VALUES (791,'',NULL,1,'','مـه','May [abbreviated month]','ViewTranslation',1889);
-INSERT INTO `globalize_translations` VALUES (792,'',NULL,1,'','ژون','Jun [abbreviated month]','ViewTranslation',1889);
-INSERT INTO `globalize_translations` VALUES (793,'',NULL,1,'','ژوی','Jul [abbreviated month]','ViewTranslation',1889);
-INSERT INTO `globalize_translations` VALUES (794,'',NULL,1,'','اوت','Aug [abbreviated month]','ViewTranslation',1889);
-INSERT INTO `globalize_translations` VALUES (795,'',NULL,1,'','سپت','Sep [abbreviated month]','ViewTranslation',1889);
-INSERT INTO `globalize_translations` VALUES (796,'',NULL,1,'','اكت','Oct [abbreviated month]','ViewTranslation',1889);
-INSERT INTO `globalize_translations` VALUES (797,'',NULL,1,'','نوا','Nov [abbreviated month]','ViewTranslation',1889);
-INSERT INTO `globalize_translations` VALUES (798,'',NULL,1,'','دسا','Dec [abbreviated month]','ViewTranslation',1889);
-INSERT INTO `globalize_translations` VALUES (799,'',NULL,1,'','Sunnuntai','Sunday [weekday]','ViewTranslation',1903);
-INSERT INTO `globalize_translations` VALUES (800,'',NULL,1,'','Maanantai','Monday [weekday]','ViewTranslation',1903);
-INSERT INTO `globalize_translations` VALUES (801,'',NULL,1,'','Tiistai','Tuesday [weekday]','ViewTranslation',1903);
-INSERT INTO `globalize_translations` VALUES (802,'',NULL,1,'','Keskiviikko','Wednesday [weekday]','ViewTranslation',1903);
-INSERT INTO `globalize_translations` VALUES (803,'',NULL,1,'','Torstai','Thursday [weekday]','ViewTranslation',1903);
-INSERT INTO `globalize_translations` VALUES (804,'',NULL,1,'','Perjantai','Friday [weekday]','ViewTranslation',1903);
-INSERT INTO `globalize_translations` VALUES (805,'',NULL,1,'','Lauantai','Saturday [weekday]','ViewTranslation',1903);
-INSERT INTO `globalize_translations` VALUES (806,'',NULL,1,'','Su','Sun [abbreviated weekday]','ViewTranslation',1903);
-INSERT INTO `globalize_translations` VALUES (807,'',NULL,1,'','Ma','Mon [abbreviated weekday]','ViewTranslation',1903);
-INSERT INTO `globalize_translations` VALUES (808,'',NULL,1,'','Ti','Tue [abbreviated weekday]','ViewTranslation',1903);
-INSERT INTO `globalize_translations` VALUES (809,'',NULL,1,'','Ke','Wed [abbreviated weekday]','ViewTranslation',1903);
-INSERT INTO `globalize_translations` VALUES (810,'',NULL,1,'','To','Thu [abbreviated weekday]','ViewTranslation',1903);
-INSERT INTO `globalize_translations` VALUES (811,'',NULL,1,'','Pe','Fri [abbreviated weekday]','ViewTranslation',1903);
-INSERT INTO `globalize_translations` VALUES (812,'',NULL,1,'','La','Sat [abbreviated weekday]','ViewTranslation',1903);
-INSERT INTO `globalize_translations` VALUES (813,'',NULL,1,'','Tammikuu','January [month]','ViewTranslation',1903);
-INSERT INTO `globalize_translations` VALUES (814,'',NULL,1,'','Helmikuu','February [month]','ViewTranslation',1903);
-INSERT INTO `globalize_translations` VALUES (815,'',NULL,1,'','Maaliskuu','March [month]','ViewTranslation',1903);
-INSERT INTO `globalize_translations` VALUES (816,'',NULL,1,'','Huhtikuu','April [month]','ViewTranslation',1903);
-INSERT INTO `globalize_translations` VALUES (817,'',NULL,1,'','Toukokuu','May [month]','ViewTranslation',1903);
-INSERT INTO `globalize_translations` VALUES (818,'',NULL,1,'','Kesäkuu','June [month]','ViewTranslation',1903);
-INSERT INTO `globalize_translations` VALUES (819,'',NULL,1,'','Heinäkuu','July [month]','ViewTranslation',1903);
-INSERT INTO `globalize_translations` VALUES (820,'',NULL,1,'','Elokuu','August [month]','ViewTranslation',1903);
-INSERT INTO `globalize_translations` VALUES (821,'',NULL,1,'','Syyskuu','September [month]','ViewTranslation',1903);
-INSERT INTO `globalize_translations` VALUES (822,'',NULL,1,'','Lokakuu','October [month]','ViewTranslation',1903);
-INSERT INTO `globalize_translations` VALUES (823,'',NULL,1,'','Marraskuu','November [month]','ViewTranslation',1903);
-INSERT INTO `globalize_translations` VALUES (824,'',NULL,1,'','Joulukuu','December [month]','ViewTranslation',1903);
-INSERT INTO `globalize_translations` VALUES (825,'',NULL,1,'','Tammi ','Jan [abbreviated month]','ViewTranslation',1903);
-INSERT INTO `globalize_translations` VALUES (826,'',NULL,1,'','Helmi ','Feb [abbreviated month]','ViewTranslation',1903);
-INSERT INTO `globalize_translations` VALUES (827,'',NULL,1,'','Maalis','Mar [abbreviated month]','ViewTranslation',1903);
-INSERT INTO `globalize_translations` VALUES (828,'',NULL,1,'','Huhti ','Apr [abbreviated month]','ViewTranslation',1903);
-INSERT INTO `globalize_translations` VALUES (829,'',NULL,1,'','Touko ','May [abbreviated month]','ViewTranslation',1903);
-INSERT INTO `globalize_translations` VALUES (830,'',NULL,1,'','Kesä  ','Jun [abbreviated month]','ViewTranslation',1903);
-INSERT INTO `globalize_translations` VALUES (831,'',NULL,1,'','Heinä ','Jul [abbreviated month]','ViewTranslation',1903);
-INSERT INTO `globalize_translations` VALUES (832,'',NULL,1,'','Elo   ','Aug [abbreviated month]','ViewTranslation',1903);
-INSERT INTO `globalize_translations` VALUES (833,'',NULL,1,'','Syys  ','Sep [abbreviated month]','ViewTranslation',1903);
-INSERT INTO `globalize_translations` VALUES (834,'',NULL,1,'','Loka  ','Oct [abbreviated month]','ViewTranslation',1903);
-INSERT INTO `globalize_translations` VALUES (835,'',NULL,1,'','Marras','Nov [abbreviated month]','ViewTranslation',1903);
-INSERT INTO `globalize_translations` VALUES (836,'',NULL,1,'','Joulu ','Dec [abbreviated month]','ViewTranslation',1903);
-INSERT INTO `globalize_translations` VALUES (837,'',NULL,1,'','Sunnudagur','Sunday [weekday]','ViewTranslation',1886);
-INSERT INTO `globalize_translations` VALUES (838,'',NULL,1,'','Mánadagur','Monday [weekday]','ViewTranslation',1886);
-INSERT INTO `globalize_translations` VALUES (839,'',NULL,1,'','Týsdagur','Tuesday [weekday]','ViewTranslation',1886);
-INSERT INTO `globalize_translations` VALUES (840,'',NULL,1,'','Mikudagur','Wednesday [weekday]','ViewTranslation',1886);
-INSERT INTO `globalize_translations` VALUES (841,'',NULL,1,'','Hósdagur','Thursday [weekday]','ViewTranslation',1886);
-INSERT INTO `globalize_translations` VALUES (842,'',NULL,1,'','Fríggjadagur','Friday [weekday]','ViewTranslation',1886);
-INSERT INTO `globalize_translations` VALUES (843,'',NULL,1,'','Leygardagur','Saturday [weekday]','ViewTranslation',1886);
-INSERT INTO `globalize_translations` VALUES (844,'',NULL,1,'','Sun','Sun [abbreviated weekday]','ViewTranslation',1886);
-INSERT INTO `globalize_translations` VALUES (845,'',NULL,1,'','Mán','Mon [abbreviated weekday]','ViewTranslation',1886);
-INSERT INTO `globalize_translations` VALUES (846,'',NULL,1,'','Týs','Tue [abbreviated weekday]','ViewTranslation',1886);
-INSERT INTO `globalize_translations` VALUES (847,'',NULL,1,'','Mik','Wed [abbreviated weekday]','ViewTranslation',1886);
-INSERT INTO `globalize_translations` VALUES (848,'',NULL,1,'','Hós','Thu [abbreviated weekday]','ViewTranslation',1886);
-INSERT INTO `globalize_translations` VALUES (849,'',NULL,1,'','Frí','Fri [abbreviated weekday]','ViewTranslation',1886);
-INSERT INTO `globalize_translations` VALUES (850,'',NULL,1,'','Ley','Sat [abbreviated weekday]','ViewTranslation',1886);
-INSERT INTO `globalize_translations` VALUES (851,'',NULL,1,'','Januar','January [month]','ViewTranslation',1886);
-INSERT INTO `globalize_translations` VALUES (852,'',NULL,1,'','Februar','February [month]','ViewTranslation',1886);
-INSERT INTO `globalize_translations` VALUES (853,'',NULL,1,'','Mars','March [month]','ViewTranslation',1886);
-INSERT INTO `globalize_translations` VALUES (854,'',NULL,1,'','Apríl','April [month]','ViewTranslation',1886);
-INSERT INTO `globalize_translations` VALUES (855,'',NULL,1,'','Mai','May [month]','ViewTranslation',1886);
-INSERT INTO `globalize_translations` VALUES (856,'',NULL,1,'','Juni','June [month]','ViewTranslation',1886);
-INSERT INTO `globalize_translations` VALUES (857,'',NULL,1,'','Juli','July [month]','ViewTranslation',1886);
-INSERT INTO `globalize_translations` VALUES (858,'',NULL,1,'','August','August [month]','ViewTranslation',1886);
-INSERT INTO `globalize_translations` VALUES (859,'',NULL,1,'','September','September [month]','ViewTranslation',1886);
-INSERT INTO `globalize_translations` VALUES (860,'',NULL,1,'','Oktober','October [month]','ViewTranslation',1886);
-INSERT INTO `globalize_translations` VALUES (861,'',NULL,1,'','November','November [month]','ViewTranslation',1886);
-INSERT INTO `globalize_translations` VALUES (862,'',NULL,1,'','Desember','December [month]','ViewTranslation',1886);
-INSERT INTO `globalize_translations` VALUES (863,'',NULL,1,'','Jan','Jan [abbreviated month]','ViewTranslation',1886);
-INSERT INTO `globalize_translations` VALUES (864,'',NULL,1,'','Feb','Feb [abbreviated month]','ViewTranslation',1886);
-INSERT INTO `globalize_translations` VALUES (865,'',NULL,1,'','Mar','Mar [abbreviated month]','ViewTranslation',1886);
-INSERT INTO `globalize_translations` VALUES (866,'',NULL,1,'','Apr','Apr [abbreviated month]','ViewTranslation',1886);
-INSERT INTO `globalize_translations` VALUES (867,'',NULL,1,'','Mai','May [abbreviated month]','ViewTranslation',1886);
-INSERT INTO `globalize_translations` VALUES (868,'',NULL,1,'','Jun','Jun [abbreviated month]','ViewTranslation',1886);
-INSERT INTO `globalize_translations` VALUES (869,'',NULL,1,'','Jul','Jul [abbreviated month]','ViewTranslation',1886);
-INSERT INTO `globalize_translations` VALUES (870,'',NULL,1,'','Aug','Aug [abbreviated month]','ViewTranslation',1886);
-INSERT INTO `globalize_translations` VALUES (871,'',NULL,1,'','Sep','Sep [abbreviated month]','ViewTranslation',1886);
-INSERT INTO `globalize_translations` VALUES (872,'',NULL,1,'','Okt','Oct [abbreviated month]','ViewTranslation',1886);
-INSERT INTO `globalize_translations` VALUES (873,'',NULL,1,'','Nov','Nov [abbreviated month]','ViewTranslation',1886);
-INSERT INTO `globalize_translations` VALUES (874,'',NULL,1,'','Des','Dec [abbreviated month]','ViewTranslation',1886);
-INSERT INTO `globalize_translations` VALUES (875,'',NULL,1,'','Dimanche','Sunday [weekday]','ViewTranslation',1930);
-INSERT INTO `globalize_translations` VALUES (876,'',NULL,1,'','Lundi','Monday [weekday]','ViewTranslation',1930);
-INSERT INTO `globalize_translations` VALUES (877,'',NULL,1,'','Mardi','Tuesday [weekday]','ViewTranslation',1930);
-INSERT INTO `globalize_translations` VALUES (878,'',NULL,1,'','Mercredi','Wednesday [weekday]','ViewTranslation',1930);
-INSERT INTO `globalize_translations` VALUES (879,'',NULL,1,'','Jeudi','Thursday [weekday]','ViewTranslation',1930);
-INSERT INTO `globalize_translations` VALUES (880,'',NULL,1,'','Vendredi','Friday [weekday]','ViewTranslation',1930);
-INSERT INTO `globalize_translations` VALUES (881,'',NULL,1,'','Samedi','Saturday [weekday]','ViewTranslation',1930);
-INSERT INTO `globalize_translations` VALUES (882,'',NULL,1,'','Dim','Sun [abbreviated weekday]','ViewTranslation',1930);
-INSERT INTO `globalize_translations` VALUES (883,'',NULL,1,'','Lun','Mon [abbreviated weekday]','ViewTranslation',1930);
-INSERT INTO `globalize_translations` VALUES (884,'',NULL,1,'','Mar','Tue [abbreviated weekday]','ViewTranslation',1930);
-INSERT INTO `globalize_translations` VALUES (885,'',NULL,1,'','Mer','Wed [abbreviated weekday]','ViewTranslation',1930);
-INSERT INTO `globalize_translations` VALUES (886,'',NULL,1,'','Jeu','Thu [abbreviated weekday]','ViewTranslation',1930);
-INSERT INTO `globalize_translations` VALUES (887,'',NULL,1,'','Ven','Fri [abbreviated weekday]','ViewTranslation',1930);
-INSERT INTO `globalize_translations` VALUES (888,'',NULL,1,'','Sam','Sat [abbreviated weekday]','ViewTranslation',1930);
-INSERT INTO `globalize_translations` VALUES (889,'',NULL,1,'','Janvier','January [month]','ViewTranslation',1930);
-INSERT INTO `globalize_translations` VALUES (890,'',NULL,1,'','Février','February [month]','ViewTranslation',1930);
-INSERT INTO `globalize_translations` VALUES (891,'',NULL,1,'','Mars','March [month]','ViewTranslation',1930);
-INSERT INTO `globalize_translations` VALUES (892,'',NULL,1,'','Avril','April [month]','ViewTranslation',1930);
-INSERT INTO `globalize_translations` VALUES (893,'',NULL,1,'','Mai','May [month]','ViewTranslation',1930);
-INSERT INTO `globalize_translations` VALUES (894,'',NULL,1,'','Juin','June [month]','ViewTranslation',1930);
-INSERT INTO `globalize_translations` VALUES (895,'',NULL,1,'','Juillet','July [month]','ViewTranslation',1930);
-INSERT INTO `globalize_translations` VALUES (896,'',NULL,1,'','Août','August [month]','ViewTranslation',1930);
-INSERT INTO `globalize_translations` VALUES (897,'',NULL,1,'','Septembre','September [month]','ViewTranslation',1930);
-INSERT INTO `globalize_translations` VALUES (898,'',NULL,1,'','Octobre','October [month]','ViewTranslation',1930);
-INSERT INTO `globalize_translations` VALUES (899,'',NULL,1,'','Novembre','November [month]','ViewTranslation',1930);
-INSERT INTO `globalize_translations` VALUES (900,'',NULL,1,'','Décembre','December [month]','ViewTranslation',1930);
-INSERT INTO `globalize_translations` VALUES (901,'',NULL,1,'','Jan','Jan [abbreviated month]','ViewTranslation',1930);
-INSERT INTO `globalize_translations` VALUES (902,'',NULL,1,'','Fév','Feb [abbreviated month]','ViewTranslation',1930);
-INSERT INTO `globalize_translations` VALUES (903,'',NULL,1,'','Mar','Mar [abbreviated month]','ViewTranslation',1930);
-INSERT INTO `globalize_translations` VALUES (904,'',NULL,1,'','Avr','Apr [abbreviated month]','ViewTranslation',1930);
-INSERT INTO `globalize_translations` VALUES (905,'',NULL,1,'','Mai','May [abbreviated month]','ViewTranslation',1930);
-INSERT INTO `globalize_translations` VALUES (906,'',NULL,1,'','Jun','Jun [abbreviated month]','ViewTranslation',1930);
-INSERT INTO `globalize_translations` VALUES (907,'',NULL,1,'','Jui','Jul [abbreviated month]','ViewTranslation',1930);
-INSERT INTO `globalize_translations` VALUES (908,'',NULL,1,'','Aoû','Aug [abbreviated month]','ViewTranslation',1930);
-INSERT INTO `globalize_translations` VALUES (909,'',NULL,1,'','Sep','Sep [abbreviated month]','ViewTranslation',1930);
-INSERT INTO `globalize_translations` VALUES (910,'',NULL,1,'','Oct','Oct [abbreviated month]','ViewTranslation',1930);
-INSERT INTO `globalize_translations` VALUES (911,'',NULL,1,'','Nov','Nov [abbreviated month]','ViewTranslation',1930);
-INSERT INTO `globalize_translations` VALUES (912,'',NULL,1,'','Déc','Dec [abbreviated month]','ViewTranslation',1930);
-INSERT INTO `globalize_translations` VALUES (913,'',NULL,1,'','Dé domhnaigh','Sunday [weekday]','ViewTranslation',2115);
-INSERT INTO `globalize_translations` VALUES (914,'',NULL,1,'','Dé luain','Monday [weekday]','ViewTranslation',2115);
-INSERT INTO `globalize_translations` VALUES (915,'',NULL,1,'','Dé máirt','Tuesday [weekday]','ViewTranslation',2115);
-INSERT INTO `globalize_translations` VALUES (916,'',NULL,1,'','Dé céadaoin','Wednesday [weekday]','ViewTranslation',2115);
-INSERT INTO `globalize_translations` VALUES (917,'',NULL,1,'','Déardaoin','Thursday [weekday]','ViewTranslation',2115);
-INSERT INTO `globalize_translations` VALUES (918,'',NULL,1,'','Dé haoine','Friday [weekday]','ViewTranslation',2115);
-INSERT INTO `globalize_translations` VALUES (919,'',NULL,1,'','Dé sathairn','Saturday [weekday]','ViewTranslation',2115);
-INSERT INTO `globalize_translations` VALUES (920,'',NULL,1,'','Domh','Sun [abbreviated weekday]','ViewTranslation',2115);
-INSERT INTO `globalize_translations` VALUES (921,'',NULL,1,'','Luan','Mon [abbreviated weekday]','ViewTranslation',2115);
-INSERT INTO `globalize_translations` VALUES (922,'',NULL,1,'','Máirt','Tue [abbreviated weekday]','ViewTranslation',2115);
-INSERT INTO `globalize_translations` VALUES (923,'',NULL,1,'','Céad','Wed [abbreviated weekday]','ViewTranslation',2115);
-INSERT INTO `globalize_translations` VALUES (924,'',NULL,1,'','Déar','Thu [abbreviated weekday]','ViewTranslation',2115);
-INSERT INTO `globalize_translations` VALUES (925,'',NULL,1,'','Aoine','Fri [abbreviated weekday]','ViewTranslation',2115);
-INSERT INTO `globalize_translations` VALUES (926,'',NULL,1,'','Sath','Sat [abbreviated weekday]','ViewTranslation',2115);
-INSERT INTO `globalize_translations` VALUES (927,'',NULL,1,'','Eanáir','January [month]','ViewTranslation',2115);
-INSERT INTO `globalize_translations` VALUES (928,'',NULL,1,'','Feabhra','February [month]','ViewTranslation',2115);
-INSERT INTO `globalize_translations` VALUES (929,'',NULL,1,'','Márta','March [month]','ViewTranslation',2115);
-INSERT INTO `globalize_translations` VALUES (930,'',NULL,1,'','Aibreán','April [month]','ViewTranslation',2115);
-INSERT INTO `globalize_translations` VALUES (931,'',NULL,1,'','Mí na bealtaine','May [month]','ViewTranslation',2115);
-INSERT INTO `globalize_translations` VALUES (932,'',NULL,1,'','Meith','June [month]','ViewTranslation',2115);
-INSERT INTO `globalize_translations` VALUES (933,'',NULL,1,'','Iúil','July [month]','ViewTranslation',2115);
-INSERT INTO `globalize_translations` VALUES (934,'',NULL,1,'','Lúnasa','August [month]','ViewTranslation',2115);
-INSERT INTO `globalize_translations` VALUES (935,'',NULL,1,'','Meán fómhair','September [month]','ViewTranslation',2115);
-INSERT INTO `globalize_translations` VALUES (936,'',NULL,1,'','Deireadh fómhair','October [month]','ViewTranslation',2115);
-INSERT INTO `globalize_translations` VALUES (937,'',NULL,1,'','Mí na samhna','November [month]','ViewTranslation',2115);
-INSERT INTO `globalize_translations` VALUES (938,'',NULL,1,'','Mí na nollag','December [month]','ViewTranslation',2115);
-INSERT INTO `globalize_translations` VALUES (939,'',NULL,1,'','Ean','Jan [abbreviated month]','ViewTranslation',2115);
-INSERT INTO `globalize_translations` VALUES (940,'',NULL,1,'','Feabh','Feb [abbreviated month]','ViewTranslation',2115);
-INSERT INTO `globalize_translations` VALUES (941,'',NULL,1,'','Márta','Mar [abbreviated month]','ViewTranslation',2115);
-INSERT INTO `globalize_translations` VALUES (942,'',NULL,1,'','Aib','Apr [abbreviated month]','ViewTranslation',2115);
-INSERT INTO `globalize_translations` VALUES (943,'',NULL,1,'','Beal','May [abbreviated month]','ViewTranslation',2115);
-INSERT INTO `globalize_translations` VALUES (944,'',NULL,1,'','Meith','Jun [abbreviated month]','ViewTranslation',2115);
-INSERT INTO `globalize_translations` VALUES (945,'',NULL,1,'','Iúil','Jul [abbreviated month]','ViewTranslation',2115);
-INSERT INTO `globalize_translations` VALUES (946,'',NULL,1,'','Lún','Aug [abbreviated month]','ViewTranslation',2115);
-INSERT INTO `globalize_translations` VALUES (947,'',NULL,1,'','Mfómh','Sep [abbreviated month]','ViewTranslation',2115);
-INSERT INTO `globalize_translations` VALUES (948,'',NULL,1,'','Dfómh','Oct [abbreviated month]','ViewTranslation',2115);
-INSERT INTO `globalize_translations` VALUES (949,'',NULL,1,'','Samh','Nov [abbreviated month]','ViewTranslation',2115);
-INSERT INTO `globalize_translations` VALUES (950,'',NULL,1,'','Noll','Dec [abbreviated month]','ViewTranslation',2115);
-INSERT INTO `globalize_translations` VALUES (951,'',NULL,1,'','Didòmhnaich','Sunday [weekday]','ViewTranslation',2112);
-INSERT INTO `globalize_translations` VALUES (952,'',NULL,1,'','Diluain','Monday [weekday]','ViewTranslation',2112);
-INSERT INTO `globalize_translations` VALUES (953,'',NULL,1,'','Dimàirt','Tuesday [weekday]','ViewTranslation',2112);
-INSERT INTO `globalize_translations` VALUES (954,'',NULL,1,'','Diciadain','Wednesday [weekday]','ViewTranslation',2112);
-INSERT INTO `globalize_translations` VALUES (955,'',NULL,1,'','Diardaoin','Thursday [weekday]','ViewTranslation',2112);
-INSERT INTO `globalize_translations` VALUES (956,'',NULL,1,'','Dihaoine','Friday [weekday]','ViewTranslation',2112);
-INSERT INTO `globalize_translations` VALUES (957,'',NULL,1,'','Disathairne','Saturday [weekday]','ViewTranslation',2112);
-INSERT INTO `globalize_translations` VALUES (958,'',NULL,1,'','Dido','Sun [abbreviated weekday]','ViewTranslation',2112);
-INSERT INTO `globalize_translations` VALUES (959,'',NULL,1,'','Dilu','Mon [abbreviated weekday]','ViewTranslation',2112);
-INSERT INTO `globalize_translations` VALUES (960,'',NULL,1,'','Dim','Tue [abbreviated weekday]','ViewTranslation',2112);
-INSERT INTO `globalize_translations` VALUES (961,'',NULL,1,'','Dic','Wed [abbreviated weekday]','ViewTranslation',2112);
-INSERT INTO `globalize_translations` VALUES (962,'',NULL,1,'','Diar','Thu [abbreviated weekday]','ViewTranslation',2112);
-INSERT INTO `globalize_translations` VALUES (963,'',NULL,1,'','Diha','Fri [abbreviated weekday]','ViewTranslation',2112);
-INSERT INTO `globalize_translations` VALUES (964,'',NULL,1,'','Disa','Sat [abbreviated weekday]','ViewTranslation',2112);
-INSERT INTO `globalize_translations` VALUES (965,'',NULL,1,'','Am faoilteach','January [month]','ViewTranslation',2112);
-INSERT INTO `globalize_translations` VALUES (966,'',NULL,1,'','An gearran','February [month]','ViewTranslation',2112);
-INSERT INTO `globalize_translations` VALUES (967,'',NULL,1,'','Am màrt','March [month]','ViewTranslation',2112);
-INSERT INTO `globalize_translations` VALUES (968,'',NULL,1,'','An giblean','April [month]','ViewTranslation',2112);
-INSERT INTO `globalize_translations` VALUES (969,'',NULL,1,'',"A' mhàigh",'May [month]','ViewTranslation',2112);
-INSERT INTO `globalize_translations` VALUES (970,'',NULL,1,'','An t-mhìos','June [month]','ViewTranslation',2112);
-INSERT INTO `globalize_translations` VALUES (971,'',NULL,1,'','An t-luchar','July [month]','ViewTranslation',2112);
-INSERT INTO `globalize_translations` VALUES (972,'',NULL,1,'','An lùnasdal','August [month]','ViewTranslation',2112);
-INSERT INTO `globalize_translations` VALUES (973,'',NULL,1,'','An t-sultain','September [month]','ViewTranslation',2112);
-INSERT INTO `globalize_translations` VALUES (974,'',NULL,1,'','An damhair','October [month]','ViewTranslation',2112);
-INSERT INTO `globalize_translations` VALUES (975,'',NULL,1,'','An t-samhain','November [month]','ViewTranslation',2112);
-INSERT INTO `globalize_translations` VALUES (976,'',NULL,1,'','An dùbhlachd','December [month]','ViewTranslation',2112);
-INSERT INTO `globalize_translations` VALUES (977,'',NULL,1,'','Fao','Jan [abbreviated month]','ViewTranslation',2112);
-INSERT INTO `globalize_translations` VALUES (978,'',NULL,1,'','Gea','Feb [abbreviated month]','ViewTranslation',2112);
-INSERT INTO `globalize_translations` VALUES (979,'',NULL,1,'','Màr','Mar [abbreviated month]','ViewTranslation',2112);
-INSERT INTO `globalize_translations` VALUES (980,'',NULL,1,'','Gib','Apr [abbreviated month]','ViewTranslation',2112);
-INSERT INTO `globalize_translations` VALUES (981,'',NULL,1,'','Mhà','May [abbreviated month]','ViewTranslation',2112);
-INSERT INTO `globalize_translations` VALUES (982,'',NULL,1,'','Ogm','Jun [abbreviated month]','ViewTranslation',2112);
-INSERT INTO `globalize_translations` VALUES (983,'',NULL,1,'','Luc','Jul [abbreviated month]','ViewTranslation',2112);
-INSERT INTO `globalize_translations` VALUES (984,'',NULL,1,'','Lùn','Aug [abbreviated month]','ViewTranslation',2112);
-INSERT INTO `globalize_translations` VALUES (985,'',NULL,1,'','Sul','Sep [abbreviated month]','ViewTranslation',2112);
-INSERT INTO `globalize_translations` VALUES (986,'',NULL,1,'','Dam','Oct [abbreviated month]','ViewTranslation',2112);
-INSERT INTO `globalize_translations` VALUES (987,'',NULL,1,'','Sam','Nov [abbreviated month]','ViewTranslation',2112);
-INSERT INTO `globalize_translations` VALUES (988,'',NULL,1,'','Dùb','Dec [abbreviated month]','ViewTranslation',2112);
-INSERT INTO `globalize_translations` VALUES (989,'',NULL,1,'','Domingo','Sunday [weekday]','ViewTranslation',2116);
-INSERT INTO `globalize_translations` VALUES (990,'',NULL,1,'','Luns','Monday [weekday]','ViewTranslation',2116);
-INSERT INTO `globalize_translations` VALUES (991,'',NULL,1,'','Martes','Tuesday [weekday]','ViewTranslation',2116);
-INSERT INTO `globalize_translations` VALUES (992,'',NULL,1,'','Mércores','Wednesday [weekday]','ViewTranslation',2116);
-INSERT INTO `globalize_translations` VALUES (993,'',NULL,1,'','Xoves','Thursday [weekday]','ViewTranslation',2116);
-INSERT INTO `globalize_translations` VALUES (994,'',NULL,1,'','Venres','Friday [weekday]','ViewTranslation',2116);
-INSERT INTO `globalize_translations` VALUES (995,'',NULL,1,'','Sábado','Saturday [weekday]','ViewTranslation',2116);
-INSERT INTO `globalize_translations` VALUES (996,'',NULL,1,'','Dom','Sun [abbreviated weekday]','ViewTranslation',2116);
-INSERT INTO `globalize_translations` VALUES (997,'',NULL,1,'','Lun','Mon [abbreviated weekday]','ViewTranslation',2116);
-INSERT INTO `globalize_translations` VALUES (998,'',NULL,1,'','Mar','Tue [abbreviated weekday]','ViewTranslation',2116);
-INSERT INTO `globalize_translations` VALUES (999,'',NULL,1,'','Mér','Wed [abbreviated weekday]','ViewTranslation',2116);
-INSERT INTO `globalize_translations` VALUES (1000,'',NULL,1,'','Xov','Thu [abbreviated weekday]','ViewTranslation',2116);
-INSERT INTO `globalize_translations` VALUES (1001,'',NULL,1,'','Ven','Fri [abbreviated weekday]','ViewTranslation',2116);
-INSERT INTO `globalize_translations` VALUES (1002,'',NULL,1,'','Sáb','Sat [abbreviated weekday]','ViewTranslation',2116);
-INSERT INTO `globalize_translations` VALUES (1003,'',NULL,1,'','Xaneiro','January [month]','ViewTranslation',2116);
-INSERT INTO `globalize_translations` VALUES (1004,'',NULL,1,'','Febreiro','February [month]','ViewTranslation',2116);
-INSERT INTO `globalize_translations` VALUES (1005,'',NULL,1,'','Marzo','March [month]','ViewTranslation',2116);
-INSERT INTO `globalize_translations` VALUES (1006,'',NULL,1,'','Abril','April [month]','ViewTranslation',2116);
-INSERT INTO `globalize_translations` VALUES (1007,'',NULL,1,'','Maio','May [month]','ViewTranslation',2116);
-INSERT INTO `globalize_translations` VALUES (1008,'',NULL,1,'','Xuño','June [month]','ViewTranslation',2116);
-INSERT INTO `globalize_translations` VALUES (1009,'',NULL,1,'','Xullo','July [month]','ViewTranslation',2116);
-INSERT INTO `globalize_translations` VALUES (1010,'',NULL,1,'','Agosto','August [month]','ViewTranslation',2116);
-INSERT INTO `globalize_translations` VALUES (1011,'',NULL,1,'','Setembro','September [month]','ViewTranslation',2116);
-INSERT INTO `globalize_translations` VALUES (1012,'',NULL,1,'','Outubro','October [month]','ViewTranslation',2116);
-INSERT INTO `globalize_translations` VALUES (1013,'',NULL,1,'','Novembro','November [month]','ViewTranslation',2116);
-INSERT INTO `globalize_translations` VALUES (1014,'',NULL,1,'','Decembro','December [month]','ViewTranslation',2116);
-INSERT INTO `globalize_translations` VALUES (1015,'',NULL,1,'','Xan','Jan [abbreviated month]','ViewTranslation',2116);
-INSERT INTO `globalize_translations` VALUES (1016,'',NULL,1,'','Feb','Feb [abbreviated month]','ViewTranslation',2116);
-INSERT INTO `globalize_translations` VALUES (1017,'',NULL,1,'','Mar','Mar [abbreviated month]','ViewTranslation',2116);
-INSERT INTO `globalize_translations` VALUES (1018,'',NULL,1,'','Abr','Apr [abbreviated month]','ViewTranslation',2116);
-INSERT INTO `globalize_translations` VALUES (1019,'',NULL,1,'','Mai','May [abbreviated month]','ViewTranslation',2116);
-INSERT INTO `globalize_translations` VALUES (1020,'',NULL,1,'','Xuñ','Jun [abbreviated month]','ViewTranslation',2116);
-INSERT INTO `globalize_translations` VALUES (1021,'',NULL,1,'','Xul','Jul [abbreviated month]','ViewTranslation',2116);
-INSERT INTO `globalize_translations` VALUES (1022,'',NULL,1,'','Ago','Aug [abbreviated month]','ViewTranslation',2116);
-INSERT INTO `globalize_translations` VALUES (1023,'',NULL,1,'','Set','Sep [abbreviated month]','ViewTranslation',2116);
-INSERT INTO `globalize_translations` VALUES (1024,'',NULL,1,'','Out','Oct [abbreviated month]','ViewTranslation',2116);
-INSERT INTO `globalize_translations` VALUES (1025,'',NULL,1,'','Nov','Nov [abbreviated month]','ViewTranslation',2116);
-INSERT INTO `globalize_translations` VALUES (1026,'',NULL,1,'','Dec','Dec [abbreviated month]','ViewTranslation',2116);
-INSERT INTO `globalize_translations` VALUES (1027,'',NULL,1,'','રવિવાર','Sunday [weekday]','ViewTranslation',2226);
-INSERT INTO `globalize_translations` VALUES (1028,'',NULL,1,'','સોમવાર','Monday [weekday]','ViewTranslation',2226);
-INSERT INTO `globalize_translations` VALUES (1029,'',NULL,1,'','મન્ગળવાર','Tuesday [weekday]','ViewTranslation',2226);
-INSERT INTO `globalize_translations` VALUES (1030,'',NULL,1,'','બુધવાર','Wednesday [weekday]','ViewTranslation',2226);
-INSERT INTO `globalize_translations` VALUES (1031,'',NULL,1,'','ગુરુવાર','Thursday [weekday]','ViewTranslation',2226);
-INSERT INTO `globalize_translations` VALUES (1032,'',NULL,1,'','શુક્રવાર','Friday [weekday]','ViewTranslation',2226);
-INSERT INTO `globalize_translations` VALUES (1033,'',NULL,1,'','શનિવાર','Saturday [weekday]','ViewTranslation',2226);
-INSERT INTO `globalize_translations` VALUES (1034,'',NULL,1,'','રવિ','Sun [abbreviated weekday]','ViewTranslation',2226);
-INSERT INTO `globalize_translations` VALUES (1035,'',NULL,1,'','સોમ','Mon [abbreviated weekday]','ViewTranslation',2226);
-INSERT INTO `globalize_translations` VALUES (1036,'',NULL,1,'','મન્ગળ','Tue [abbreviated weekday]','ViewTranslation',2226);
-INSERT INTO `globalize_translations` VALUES (1037,'',NULL,1,'','બુધ','Wed [abbreviated weekday]','ViewTranslation',2226);
-INSERT INTO `globalize_translations` VALUES (1038,'',NULL,1,'','ગુરુ','Thu [abbreviated weekday]','ViewTranslation',2226);
-INSERT INTO `globalize_translations` VALUES (1039,'',NULL,1,'','શુક્ર','Fri [abbreviated weekday]','ViewTranslation',2226);
-INSERT INTO `globalize_translations` VALUES (1040,'',NULL,1,'','શનિ','Sat [abbreviated weekday]','ViewTranslation',2226);
-INSERT INTO `globalize_translations` VALUES (1041,'',NULL,1,'','જાન્યુઆરી','January [month]','ViewTranslation',2226);
-INSERT INTO `globalize_translations` VALUES (1042,'',NULL,1,'','ફેબ્રુઆરી','February [month]','ViewTranslation',2226);
-INSERT INTO `globalize_translations` VALUES (1043,'',NULL,1,'','માર્ચ','March [month]','ViewTranslation',2226);
-INSERT INTO `globalize_translations` VALUES (1044,'',NULL,1,'','એપ્રિલ','April [month]','ViewTranslation',2226);
-INSERT INTO `globalize_translations` VALUES (1045,'',NULL,1,'','મે','May [month]','ViewTranslation',2226);
-INSERT INTO `globalize_translations` VALUES (1046,'',NULL,1,'','જુન','June [month]','ViewTranslation',2226);
-INSERT INTO `globalize_translations` VALUES (1047,'',NULL,1,'','જુલાઇ','July [month]','ViewTranslation',2226);
-INSERT INTO `globalize_translations` VALUES (1048,'',NULL,1,'','ઓગસ્ટ','August [month]','ViewTranslation',2226);
-INSERT INTO `globalize_translations` VALUES (1049,'',NULL,1,'','સેપ્ટેમ્બર','September [month]','ViewTranslation',2226);
-INSERT INTO `globalize_translations` VALUES (1050,'',NULL,1,'','ઓક્ટોબર','October [month]','ViewTranslation',2226);
-INSERT INTO `globalize_translations` VALUES (1051,'',NULL,1,'','નવેમ્બર','November [month]','ViewTranslation',2226);
-INSERT INTO `globalize_translations` VALUES (1052,'',NULL,1,'','ડિસેમ્બર','December [month]','ViewTranslation',2226);
-INSERT INTO `globalize_translations` VALUES (1053,'',NULL,1,'','જાન','Jan [abbreviated month]','ViewTranslation',2226);
-INSERT INTO `globalize_translations` VALUES (1054,'',NULL,1,'','ફેબ','Feb [abbreviated month]','ViewTranslation',2226);
-INSERT INTO `globalize_translations` VALUES (1055,'',NULL,1,'','માર','Mar [abbreviated month]','ViewTranslation',2226);
-INSERT INTO `globalize_translations` VALUES (1056,'',NULL,1,'','એપ્ર','Apr [abbreviated month]','ViewTranslation',2226);
-INSERT INTO `globalize_translations` VALUES (1057,'',NULL,1,'','મે','May [abbreviated month]','ViewTranslation',2226);
-INSERT INTO `globalize_translations` VALUES (1058,'',NULL,1,'','જુન','Jun [abbreviated month]','ViewTranslation',2226);
-INSERT INTO `globalize_translations` VALUES (1059,'',NULL,1,'','જુલ','Jul [abbreviated month]','ViewTranslation',2226);
-INSERT INTO `globalize_translations` VALUES (1060,'',NULL,1,'','ઓગ','Aug [abbreviated month]','ViewTranslation',2226);
-INSERT INTO `globalize_translations` VALUES (1061,'',NULL,1,'','સેપ્ટ','Sep [abbreviated month]','ViewTranslation',2226);
-INSERT INTO `globalize_translations` VALUES (1062,'',NULL,1,'','ઓક્ટ','Oct [abbreviated month]','ViewTranslation',2226);
-INSERT INTO `globalize_translations` VALUES (1063,'',NULL,1,'','નોવ','Nov [abbreviated month]','ViewTranslation',2226);
-INSERT INTO `globalize_translations` VALUES (1064,'',NULL,1,'','ડિસ','Dec [abbreviated month]','ViewTranslation',2226);
-INSERT INTO `globalize_translations` VALUES (1065,'',NULL,1,'','Jedoonee','Sunday [weekday]','ViewTranslation',2125);
-INSERT INTO `globalize_translations` VALUES (1066,'',NULL,1,'','Jelhein','Monday [weekday]','ViewTranslation',2125);
-INSERT INTO `globalize_translations` VALUES (1067,'',NULL,1,'','Jemayrt','Tuesday [weekday]','ViewTranslation',2125);
-INSERT INTO `globalize_translations` VALUES (1068,'',NULL,1,'','Jercean','Wednesday [weekday]','ViewTranslation',2125);
-INSERT INTO `globalize_translations` VALUES (1069,'',NULL,1,'','Jerdein','Thursday [weekday]','ViewTranslation',2125);
-INSERT INTO `globalize_translations` VALUES (1070,'',NULL,1,'','Jeheiney','Friday [weekday]','ViewTranslation',2125);
-INSERT INTO `globalize_translations` VALUES (1071,'',NULL,1,'','Jesarn','Saturday [weekday]','ViewTranslation',2125);
-INSERT INTO `globalize_translations` VALUES (1072,'',NULL,1,'','Jed','Sun [abbreviated weekday]','ViewTranslation',2125);
-INSERT INTO `globalize_translations` VALUES (1073,'',NULL,1,'','Jel','Mon [abbreviated weekday]','ViewTranslation',2125);
-INSERT INTO `globalize_translations` VALUES (1074,'',NULL,1,'','Jem','Tue [abbreviated weekday]','ViewTranslation',2125);
-INSERT INTO `globalize_translations` VALUES (1075,'',NULL,1,'','Jerc','Wed [abbreviated weekday]','ViewTranslation',2125);
-INSERT INTO `globalize_translations` VALUES (1076,'',NULL,1,'','Jerd','Thu [abbreviated weekday]','ViewTranslation',2125);
-INSERT INTO `globalize_translations` VALUES (1077,'',NULL,1,'','Jeh','Fri [abbreviated weekday]','ViewTranslation',2125);
-INSERT INTO `globalize_translations` VALUES (1078,'',NULL,1,'','Jes','Sat [abbreviated weekday]','ViewTranslation',2125);
-INSERT INTO `globalize_translations` VALUES (1079,'',NULL,1,'','Jerrey-geuree','January [month]','ViewTranslation',2125);
-INSERT INTO `globalize_translations` VALUES (1080,'',NULL,1,'','Toshiaght-arree','February [month]','ViewTranslation',2125);
-INSERT INTO `globalize_translations` VALUES (1081,'',NULL,1,'','Mayrnt','March [month]','ViewTranslation',2125);
-INSERT INTO `globalize_translations` VALUES (1082,'',NULL,1,'','Averil','April [month]','ViewTranslation',2125);
-INSERT INTO `globalize_translations` VALUES (1083,'',NULL,1,'','Boaldyn','May [month]','ViewTranslation',2125);
-INSERT INTO `globalize_translations` VALUES (1084,'',NULL,1,'','Mean-souree','June [month]','ViewTranslation',2125);
-INSERT INTO `globalize_translations` VALUES (1085,'',NULL,1,'','Jerrey-souree','July [month]','ViewTranslation',2125);
-INSERT INTO `globalize_translations` VALUES (1086,'',NULL,1,'','Luanistyn','August [month]','ViewTranslation',2125);
-INSERT INTO `globalize_translations` VALUES (1087,'',NULL,1,'','Mean-fouyir','September [month]','ViewTranslation',2125);
-INSERT INTO `globalize_translations` VALUES (1088,'',NULL,1,'','Jerrey-fouyir','October [month]','ViewTranslation',2125);
-INSERT INTO `globalize_translations` VALUES (1089,'',NULL,1,'','Mee houney','November [month]','ViewTranslation',2125);
-INSERT INTO `globalize_translations` VALUES (1090,'',NULL,1,'','Mee ny nollick','December [month]','ViewTranslation',2125);
-INSERT INTO `globalize_translations` VALUES (1091,'',NULL,1,'','J-guer','Jan [abbreviated month]','ViewTranslation',2125);
-INSERT INTO `globalize_translations` VALUES (1092,'',NULL,1,'','T-arree','Feb [abbreviated month]','ViewTranslation',2125);
-INSERT INTO `globalize_translations` VALUES (1093,'',NULL,1,'','Mayrnt','Mar [abbreviated month]','ViewTranslation',2125);
-INSERT INTO `globalize_translations` VALUES (1094,'',NULL,1,'','Avrril','Apr [abbreviated month]','ViewTranslation',2125);
-INSERT INTO `globalize_translations` VALUES (1095,'',NULL,1,'','Boaldyn','May [abbreviated month]','ViewTranslation',2125);
-INSERT INTO `globalize_translations` VALUES (1096,'',NULL,1,'','M-souree','Jun [abbreviated month]','ViewTranslation',2125);
-INSERT INTO `globalize_translations` VALUES (1097,'',NULL,1,'','J-souree','Jul [abbreviated month]','ViewTranslation',2125);
-INSERT INTO `globalize_translations` VALUES (1098,'',NULL,1,'','Luanistyn','Aug [abbreviated month]','ViewTranslation',2125);
-INSERT INTO `globalize_translations` VALUES (1099,'',NULL,1,'','M-fouyir','Sep [abbreviated month]','ViewTranslation',2125);
-INSERT INTO `globalize_translations` VALUES (1100,'',NULL,1,'','J-fouyir','Oct [abbreviated month]','ViewTranslation',2125);
-INSERT INTO `globalize_translations` VALUES (1101,'',NULL,1,'','M.houney','Nov [abbreviated month]','ViewTranslation',2125);
-INSERT INTO `globalize_translations` VALUES (1102,'',NULL,1,'','M.nollick','Dec [abbreviated month]','ViewTranslation',2125);
-INSERT INTO `globalize_translations` VALUES (1103,'',NULL,1,'','יום ראשון','Sunday [weekday]','ViewTranslation',2323);
-INSERT INTO `globalize_translations` VALUES (1104,'',NULL,1,'','יום שני','Monday [weekday]','ViewTranslation',2323);
-INSERT INTO `globalize_translations` VALUES (1105,'',NULL,1,'','יום שלישי','Tuesday [weekday]','ViewTranslation',2323);
-INSERT INTO `globalize_translations` VALUES (1106,'',NULL,1,'','יום רביעי','Wednesday [weekday]','ViewTranslation',2323);
-INSERT INTO `globalize_translations` VALUES (1107,'',NULL,1,'','יום חמישי','Thursday [weekday]','ViewTranslation',2323);
-INSERT INTO `globalize_translations` VALUES (1108,'',NULL,1,'','יום ששי','Friday [weekday]','ViewTranslation',2323);
-INSERT INTO `globalize_translations` VALUES (1109,'',NULL,1,'','יום שבת','Saturday [weekday]','ViewTranslation',2323);
-INSERT INTO `globalize_translations` VALUES (1110,'',NULL,1,'',"יום א'",'Sun [abbreviated weekday]','ViewTranslation',2323);
-INSERT INTO `globalize_translations` VALUES (1111,'',NULL,1,'',"יום ב'",'Mon [abbreviated weekday]','ViewTranslation',2323);
-INSERT INTO `globalize_translations` VALUES (1112,'',NULL,1,'',"יום ג'",'Tue [abbreviated weekday]','ViewTranslation',2323);
-INSERT INTO `globalize_translations` VALUES (1113,'',NULL,1,'',"יום ד'",'Wed [abbreviated weekday]','ViewTranslation',2323);
-INSERT INTO `globalize_translations` VALUES (1114,'',NULL,1,'',"יום ה'",'Thu [abbreviated weekday]','ViewTranslation',2323);
-INSERT INTO `globalize_translations` VALUES (1115,'',NULL,1,'',"יום ו'",'Fri [abbreviated weekday]','ViewTranslation',2323);
-INSERT INTO `globalize_translations` VALUES (1116,'',NULL,1,'','שבת','Sat [abbreviated weekday]','ViewTranslation',2323);
-INSERT INTO `globalize_translations` VALUES (1117,'',NULL,1,'','ינואר','January [month]','ViewTranslation',2323);
-INSERT INTO `globalize_translations` VALUES (1118,'',NULL,1,'','פברואר','February [month]','ViewTranslation',2323);
-INSERT INTO `globalize_translations` VALUES (1119,'',NULL,1,'','מרץ','March [month]','ViewTranslation',2323);
-INSERT INTO `globalize_translations` VALUES (1120,'',NULL,1,'','אפריל','April [month]','ViewTranslation',2323);
-INSERT INTO `globalize_translations` VALUES (1121,'',NULL,1,'','מאי','May [month]','ViewTranslation',2323);
-INSERT INTO `globalize_translations` VALUES (1122,'',NULL,1,'','יוני','June [month]','ViewTranslation',2323);
-INSERT INTO `globalize_translations` VALUES (1123,'',NULL,1,'','יולי','July [month]','ViewTranslation',2323);
-INSERT INTO `globalize_translations` VALUES (1124,'',NULL,1,'','אוגוסט','August [month]','ViewTranslation',2323);
-INSERT INTO `globalize_translations` VALUES (1125,'',NULL,1,'','ספטמבר','September [month]','ViewTranslation',2323);
-INSERT INTO `globalize_translations` VALUES (1126,'',NULL,1,'','אוקטובר','October [month]','ViewTranslation',2323);
-INSERT INTO `globalize_translations` VALUES (1127,'',NULL,1,'','נובמבר','November [month]','ViewTranslation',2323);
-INSERT INTO `globalize_translations` VALUES (1128,'',NULL,1,'','דצמבר','December [month]','ViewTranslation',2323);
-INSERT INTO `globalize_translations` VALUES (1129,'',NULL,1,'','ינו','Jan [abbreviated month]','ViewTranslation',2323);
-INSERT INTO `globalize_translations` VALUES (1130,'',NULL,1,'','פבר','Feb [abbreviated month]','ViewTranslation',2323);
-INSERT INTO `globalize_translations` VALUES (1131,'',NULL,1,'','מרץ','Mar [abbreviated month]','ViewTranslation',2323);
-INSERT INTO `globalize_translations` VALUES (1132,'',NULL,1,'','אפר','Apr [abbreviated month]','ViewTranslation',2323);
-INSERT INTO `globalize_translations` VALUES (1133,'',NULL,1,'','מאי','May [abbreviated month]','ViewTranslation',2323);
-INSERT INTO `globalize_translations` VALUES (1134,'',NULL,1,'','יונ','Jun [abbreviated month]','ViewTranslation',2323);
-INSERT INTO `globalize_translations` VALUES (1135,'',NULL,1,'','יול','Jul [abbreviated month]','ViewTranslation',2323);
-INSERT INTO `globalize_translations` VALUES (1136,'',NULL,1,'','אוג','Aug [abbreviated month]','ViewTranslation',2323);
-INSERT INTO `globalize_translations` VALUES (1137,'',NULL,1,'','ספט','Sep [abbreviated month]','ViewTranslation',2323);
-INSERT INTO `globalize_translations` VALUES (1138,'',NULL,1,'','אוק','Oct [abbreviated month]','ViewTranslation',2323);
-INSERT INTO `globalize_translations` VALUES (1139,'',NULL,1,'','נוב','Nov [abbreviated month]','ViewTranslation',2323);
-INSERT INTO `globalize_translations` VALUES (1140,'',NULL,1,'','דצמ','Dec [abbreviated month]','ViewTranslation',2323);
-INSERT INTO `globalize_translations` VALUES (1141,'',NULL,1,'','रविवार ','Sunday [weekday]','ViewTranslation',2343);
-INSERT INTO `globalize_translations` VALUES (1142,'',NULL,1,'','सोमवार ','Monday [weekday]','ViewTranslation',2343);
-INSERT INTO `globalize_translations` VALUES (1143,'',NULL,1,'','मंगलवार ','Tuesday [weekday]','ViewTranslation',2343);
-INSERT INTO `globalize_translations` VALUES (1144,'',NULL,1,'','बुधवार ','Wednesday [weekday]','ViewTranslation',2343);
-INSERT INTO `globalize_translations` VALUES (1145,'',NULL,1,'','गुरुवार ','Thursday [weekday]','ViewTranslation',2343);
-INSERT INTO `globalize_translations` VALUES (1146,'',NULL,1,'','शुक्रवार ','Friday [weekday]','ViewTranslation',2343);
-INSERT INTO `globalize_translations` VALUES (1147,'',NULL,1,'','शनिवार ','Saturday [weekday]','ViewTranslation',2343);
-INSERT INTO `globalize_translations` VALUES (1148,'',NULL,1,'','रवि ','Sun [abbreviated weekday]','ViewTranslation',2343);
-INSERT INTO `globalize_translations` VALUES (1149,'',NULL,1,'','सोम ','Mon [abbreviated weekday]','ViewTranslation',2343);
-INSERT INTO `globalize_translations` VALUES (1150,'',NULL,1,'','मंगल ','Tue [abbreviated weekday]','ViewTranslation',2343);
-INSERT INTO `globalize_translations` VALUES (1151,'',NULL,1,'','बुध ','Wed [abbreviated weekday]','ViewTranslation',2343);
-INSERT INTO `globalize_translations` VALUES (1152,'',NULL,1,'','गुरु ','Thu [abbreviated weekday]','ViewTranslation',2343);
-INSERT INTO `globalize_translations` VALUES (1153,'',NULL,1,'','शुक्र ','Fri [abbreviated weekday]','ViewTranslation',2343);
-INSERT INTO `globalize_translations` VALUES (1154,'',NULL,1,'','शनि ','Sat [abbreviated weekday]','ViewTranslation',2343);
-INSERT INTO `globalize_translations` VALUES (1155,'',NULL,1,'','जनवरी','January [month]','ViewTranslation',2343);
-INSERT INTO `globalize_translations` VALUES (1156,'',NULL,1,'','फ़रवरी','February [month]','ViewTranslation',2343);
-INSERT INTO `globalize_translations` VALUES (1157,'',NULL,1,'','मार्च','March [month]','ViewTranslation',2343);
-INSERT INTO `globalize_translations` VALUES (1158,'',NULL,1,'','अप्र ल','April [month]','ViewTranslation',2343);
-INSERT INTO `globalize_translations` VALUES (1159,'',NULL,1,'','मई','May [month]','ViewTranslation',2343);
-INSERT INTO `globalize_translations` VALUES (1160,'',NULL,1,'','जून','June [month]','ViewTranslation',2343);
-INSERT INTO `globalize_translations` VALUES (1161,'',NULL,1,'','जुलाई','July [month]','ViewTranslation',2343);
-INSERT INTO `globalize_translations` VALUES (1162,'',NULL,1,'','अगस्त','August [month]','ViewTranslation',2343);
-INSERT INTO `globalize_translations` VALUES (1163,'',NULL,1,'','सितम्बर','September [month]','ViewTranslation',2343);
-INSERT INTO `globalize_translations` VALUES (1164,'',NULL,1,'','अक्टूबर','October [month]','ViewTranslation',2343);
-INSERT INTO `globalize_translations` VALUES (1165,'',NULL,1,'','नवम्बर','November [month]','ViewTranslation',2343);
-INSERT INTO `globalize_translations` VALUES (1166,'',NULL,1,'','दिसम्बर','December [month]','ViewTranslation',2343);
-INSERT INTO `globalize_translations` VALUES (1167,'',NULL,1,'','जनवरी','Jan [abbreviated month]','ViewTranslation',2343);
-INSERT INTO `globalize_translations` VALUES (1168,'',NULL,1,'','फ़रवरी','Feb [abbreviated month]','ViewTranslation',2343);
-INSERT INTO `globalize_translations` VALUES (1169,'',NULL,1,'','मार्च','Mar [abbreviated month]','ViewTranslation',2343);
-INSERT INTO `globalize_translations` VALUES (1170,'',NULL,1,'','अप्र ल','Apr [abbreviated month]','ViewTranslation',2343);
-INSERT INTO `globalize_translations` VALUES (1171,'',NULL,1,'','मई','May [abbreviated month]','ViewTranslation',2343);
-INSERT INTO `globalize_translations` VALUES (1172,'',NULL,1,'','जून','Jun [abbreviated month]','ViewTranslation',2343);
-INSERT INTO `globalize_translations` VALUES (1173,'',NULL,1,'','जुलाई','Jul [abbreviated month]','ViewTranslation',2343);
-INSERT INTO `globalize_translations` VALUES (1174,'',NULL,1,'','अगस्त','Aug [abbreviated month]','ViewTranslation',2343);
-INSERT INTO `globalize_translations` VALUES (1175,'',NULL,1,'','सितम्बर','Sep [abbreviated month]','ViewTranslation',2343);
-INSERT INTO `globalize_translations` VALUES (1176,'',NULL,1,'','अक्टूबर','Oct [abbreviated month]','ViewTranslation',2343);
-INSERT INTO `globalize_translations` VALUES (1177,'',NULL,1,'','नवम्बर','Nov [abbreviated month]','ViewTranslation',2343);
-INSERT INTO `globalize_translations` VALUES (1178,'',NULL,1,'','दिसम्बर','Dec [abbreviated month]','ViewTranslation',2343);
-INSERT INTO `globalize_translations` VALUES (1179,'',NULL,1,'','Nedjelja','Sunday [weekday]','ViewTranslation',2418);
-INSERT INTO `globalize_translations` VALUES (1180,'',NULL,1,'','Ponedjeljak','Monday [weekday]','ViewTranslation',2418);
-INSERT INTO `globalize_translations` VALUES (1181,'',NULL,1,'','Utorak','Tuesday [weekday]','ViewTranslation',2418);
-INSERT INTO `globalize_translations` VALUES (1182,'',NULL,1,'','Srijeda','Wednesday [weekday]','ViewTranslation',2418);
-INSERT INTO `globalize_translations` VALUES (1183,'',NULL,1,'','Četvrtak','Thursday [weekday]','ViewTranslation',2418);
-INSERT INTO `globalize_translations` VALUES (1184,'',NULL,1,'','Petak','Friday [weekday]','ViewTranslation',2418);
-INSERT INTO `globalize_translations` VALUES (1185,'',NULL,1,'','Subota','Saturday [weekday]','ViewTranslation',2418);
-INSERT INTO `globalize_translations` VALUES (1186,'',NULL,1,'','Ned','Sun [abbreviated weekday]','ViewTranslation',2418);
-INSERT INTO `globalize_translations` VALUES (1187,'',NULL,1,'','Pon','Mon [abbreviated weekday]','ViewTranslation',2418);
-INSERT INTO `globalize_translations` VALUES (1188,'',NULL,1,'','Uto','Tue [abbreviated weekday]','ViewTranslation',2418);
-INSERT INTO `globalize_translations` VALUES (1189,'',NULL,1,'','Sri','Wed [abbreviated weekday]','ViewTranslation',2418);
-INSERT INTO `globalize_translations` VALUES (1190,'',NULL,1,'','Čet','Thu [abbreviated weekday]','ViewTranslation',2418);
-INSERT INTO `globalize_translations` VALUES (1191,'',NULL,1,'','Pet','Fri [abbreviated weekday]','ViewTranslation',2418);
-INSERT INTO `globalize_translations` VALUES (1192,'',NULL,1,'','Sub','Sat [abbreviated weekday]','ViewTranslation',2418);
-INSERT INTO `globalize_translations` VALUES (1193,'',NULL,1,'','Siječanj','January [month]','ViewTranslation',2418);
-INSERT INTO `globalize_translations` VALUES (1194,'',NULL,1,'','Veljača','February [month]','ViewTranslation',2418);
-INSERT INTO `globalize_translations` VALUES (1195,'',NULL,1,'','Ožujak','March [month]','ViewTranslation',2418);
-INSERT INTO `globalize_translations` VALUES (1196,'',NULL,1,'','Travanj','April [month]','ViewTranslation',2418);
-INSERT INTO `globalize_translations` VALUES (1197,'',NULL,1,'','Svibanj','May [month]','ViewTranslation',2418);
-INSERT INTO `globalize_translations` VALUES (1198,'',NULL,1,'','Lipanj','June [month]','ViewTranslation',2418);
-INSERT INTO `globalize_translations` VALUES (1199,'',NULL,1,'','Srpanj','July [month]','ViewTranslation',2418);
-INSERT INTO `globalize_translations` VALUES (1200,'',NULL,1,'','Kolovoz','August [month]','ViewTranslation',2418);
-INSERT INTO `globalize_translations` VALUES (1201,'',NULL,1,'','Rujan','September [month]','ViewTranslation',2418);
-INSERT INTO `globalize_translations` VALUES (1202,'',NULL,1,'','Listopad','October [month]','ViewTranslation',2418);
-INSERT INTO `globalize_translations` VALUES (1203,'',NULL,1,'','Studeni','November [month]','ViewTranslation',2418);
-INSERT INTO `globalize_translations` VALUES (1204,'',NULL,1,'','Prosinac','December [month]','ViewTranslation',2418);
-INSERT INTO `globalize_translations` VALUES (1205,'',NULL,1,'','Sij','Jan [abbreviated month]','ViewTranslation',2418);
-INSERT INTO `globalize_translations` VALUES (1206,'',NULL,1,'','Vel','Feb [abbreviated month]','ViewTranslation',2418);
-INSERT INTO `globalize_translations` VALUES (1207,'',NULL,1,'','Ožu','Mar [abbreviated month]','ViewTranslation',2418);
-INSERT INTO `globalize_translations` VALUES (1208,'',NULL,1,'','Tra','Apr [abbreviated month]','ViewTranslation',2418);
-INSERT INTO `globalize_translations` VALUES (1209,'',NULL,1,'','Svi','May [abbreviated month]','ViewTranslation',2418);
-INSERT INTO `globalize_translations` VALUES (1210,'',NULL,1,'','Lip','Jun [abbreviated month]','ViewTranslation',2418);
-INSERT INTO `globalize_translations` VALUES (1211,'',NULL,1,'','Srp','Jul [abbreviated month]','ViewTranslation',2418);
-INSERT INTO `globalize_translations` VALUES (1212,'',NULL,1,'','Kol','Aug [abbreviated month]','ViewTranslation',2418);
-INSERT INTO `globalize_translations` VALUES (1213,'',NULL,1,'','Ruj','Sep [abbreviated month]','ViewTranslation',2418);
-INSERT INTO `globalize_translations` VALUES (1214,'',NULL,1,'','Lis','Oct [abbreviated month]','ViewTranslation',2418);
-INSERT INTO `globalize_translations` VALUES (1215,'',NULL,1,'','Stu','Nov [abbreviated month]','ViewTranslation',2418);
-INSERT INTO `globalize_translations` VALUES (1216,'',NULL,1,'','Pro','Dec [abbreviated month]','ViewTranslation',2418);
-INSERT INTO `globalize_translations` VALUES (1217,'',NULL,1,'','Vasárnap','Sunday [weekday]','ViewTranslation',2443);
-INSERT INTO `globalize_translations` VALUES (1218,'',NULL,1,'','Hétfő','Monday [weekday]','ViewTranslation',2443);
-INSERT INTO `globalize_translations` VALUES (1219,'',NULL,1,'','Kedd','Tuesday [weekday]','ViewTranslation',2443);
-INSERT INTO `globalize_translations` VALUES (1220,'',NULL,1,'','Szerda','Wednesday [weekday]','ViewTranslation',2443);
-INSERT INTO `globalize_translations` VALUES (1221,'',NULL,1,'','Csütörtök','Thursday [weekday]','ViewTranslation',2443);
-INSERT INTO `globalize_translations` VALUES (1222,'',NULL,1,'','Péntek','Friday [weekday]','ViewTranslation',2443);
-INSERT INTO `globalize_translations` VALUES (1223,'',NULL,1,'','Szombat','Saturday [weekday]','ViewTranslation',2443);
-INSERT INTO `globalize_translations` VALUES (1224,'',NULL,1,'','v','Sun [abbreviated weekday]','ViewTranslation',2443);
-INSERT INTO `globalize_translations` VALUES (1225,'',NULL,1,'','h','Mon [abbreviated weekday]','ViewTranslation',2443);
-INSERT INTO `globalize_translations` VALUES (1226,'',NULL,1,'','k','Tue [abbreviated weekday]','ViewTranslation',2443);
-INSERT INTO `globalize_translations` VALUES (1227,'',NULL,1,'','Sze','Wed [abbreviated weekday]','ViewTranslation',2443);
-INSERT INTO `globalize_translations` VALUES (1228,'',NULL,1,'','Cs','Thu [abbreviated weekday]','ViewTranslation',2443);
-INSERT INTO `globalize_translations` VALUES (1229,'',NULL,1,'','p','Fri [abbreviated weekday]','ViewTranslation',2443);
-INSERT INTO `globalize_translations` VALUES (1230,'',NULL,1,'','Szo','Sat [abbreviated weekday]','ViewTranslation',2443);
-INSERT INTO `globalize_translations` VALUES (1231,'',NULL,1,'','Január','January [month]','ViewTranslation',2443);
-INSERT INTO `globalize_translations` VALUES (1232,'',NULL,1,'','Február','February [month]','ViewTranslation',2443);
-INSERT INTO `globalize_translations` VALUES (1233,'',NULL,1,'','Március','March [month]','ViewTranslation',2443);
-INSERT INTO `globalize_translations` VALUES (1234,'',NULL,1,'','Április','April [month]','ViewTranslation',2443);
-INSERT INTO `globalize_translations` VALUES (1235,'',NULL,1,'','Május','May [month]','ViewTranslation',2443);
-INSERT INTO `globalize_translations` VALUES (1236,'',NULL,1,'','Június','June [month]','ViewTranslation',2443);
-INSERT INTO `globalize_translations` VALUES (1237,'',NULL,1,'','Július','July [month]','ViewTranslation',2443);
-INSERT INTO `globalize_translations` VALUES (1238,'',NULL,1,'','Augusztus','August [month]','ViewTranslation',2443);
-INSERT INTO `globalize_translations` VALUES (1239,'',NULL,1,'','Szeptember','September [month]','ViewTranslation',2443);
-INSERT INTO `globalize_translations` VALUES (1240,'',NULL,1,'','Október','October [month]','ViewTranslation',2443);
-INSERT INTO `globalize_translations` VALUES (1241,'',NULL,1,'','November','November [month]','ViewTranslation',2443);
-INSERT INTO `globalize_translations` VALUES (1242,'',NULL,1,'','December','December [month]','ViewTranslation',2443);
-INSERT INTO `globalize_translations` VALUES (1243,'',NULL,1,'','Jan','Jan [abbreviated month]','ViewTranslation',2443);
-INSERT INTO `globalize_translations` VALUES (1244,'',NULL,1,'','Feb','Feb [abbreviated month]','ViewTranslation',2443);
-INSERT INTO `globalize_translations` VALUES (1245,'',NULL,1,'','Már','Mar [abbreviated month]','ViewTranslation',2443);
-INSERT INTO `globalize_translations` VALUES (1246,'',NULL,1,'','Ápr','Apr [abbreviated month]','ViewTranslation',2443);
-INSERT INTO `globalize_translations` VALUES (1247,'',NULL,1,'','Máj','May [abbreviated month]','ViewTranslation',2443);
-INSERT INTO `globalize_translations` VALUES (1248,'',NULL,1,'','Jún','Jun [abbreviated month]','ViewTranslation',2443);
-INSERT INTO `globalize_translations` VALUES (1249,'',NULL,1,'','Júl','Jul [abbreviated month]','ViewTranslation',2443);
-INSERT INTO `globalize_translations` VALUES (1250,'',NULL,1,'','Aug','Aug [abbreviated month]','ViewTranslation',2443);
-INSERT INTO `globalize_translations` VALUES (1251,'',NULL,1,'','Sze','Sep [abbreviated month]','ViewTranslation',2443);
-INSERT INTO `globalize_translations` VALUES (1252,'',NULL,1,'','Okt','Oct [abbreviated month]','ViewTranslation',2443);
-INSERT INTO `globalize_translations` VALUES (1253,'',NULL,1,'','Nov','Nov [abbreviated month]','ViewTranslation',2443);
-INSERT INTO `globalize_translations` VALUES (1254,'',NULL,1,'','Dec','Dec [abbreviated month]','ViewTranslation',2443);
-INSERT INTO `globalize_translations` VALUES (1255,'',NULL,1,'','Minggu','Sunday [weekday]','ViewTranslation',2558);
-INSERT INTO `globalize_translations` VALUES (1256,'',NULL,1,'','Senin','Monday [weekday]','ViewTranslation',2558);
-INSERT INTO `globalize_translations` VALUES (1257,'',NULL,1,'','Selasa','Tuesday [weekday]','ViewTranslation',2558);
-INSERT INTO `globalize_translations` VALUES (1258,'',NULL,1,'','Rabu','Wednesday [weekday]','ViewTranslation',2558);
-INSERT INTO `globalize_translations` VALUES (1259,'',NULL,1,'','Kamis','Thursday [weekday]','ViewTranslation',2558);
-INSERT INTO `globalize_translations` VALUES (1260,'',NULL,1,'','Jumat','Friday [weekday]','ViewTranslation',2558);
-INSERT INTO `globalize_translations` VALUES (1261,'',NULL,1,'','Sabtu','Saturday [weekday]','ViewTranslation',2558);
-INSERT INTO `globalize_translations` VALUES (1262,'',NULL,1,'','Min','Sun [abbreviated weekday]','ViewTranslation',2558);
-INSERT INTO `globalize_translations` VALUES (1263,'',NULL,1,'','Sen','Mon [abbreviated weekday]','ViewTranslation',2558);
-INSERT INTO `globalize_translations` VALUES (1264,'',NULL,1,'','Sel','Tue [abbreviated weekday]','ViewTranslation',2558);
-INSERT INTO `globalize_translations` VALUES (1265,'',NULL,1,'','Rab','Wed [abbreviated weekday]','ViewTranslation',2558);
-INSERT INTO `globalize_translations` VALUES (1266,'',NULL,1,'','Kam','Thu [abbreviated weekday]','ViewTranslation',2558);
-INSERT INTO `globalize_translations` VALUES (1267,'',NULL,1,'','Jum','Fri [abbreviated weekday]','ViewTranslation',2558);
-INSERT INTO `globalize_translations` VALUES (1268,'',NULL,1,'','Sab','Sat [abbreviated weekday]','ViewTranslation',2558);
-INSERT INTO `globalize_translations` VALUES (1269,'',NULL,1,'','Januari','January [month]','ViewTranslation',2558);
-INSERT INTO `globalize_translations` VALUES (1270,'',NULL,1,'','Pebruari','February [month]','ViewTranslation',2558);
-INSERT INTO `globalize_translations` VALUES (1271,'',NULL,1,'','Maret','March [month]','ViewTranslation',2558);
-INSERT INTO `globalize_translations` VALUES (1272,'',NULL,1,'','April','April [month]','ViewTranslation',2558);
-INSERT INTO `globalize_translations` VALUES (1273,'',NULL,1,'','Mei','May [month]','ViewTranslation',2558);
-INSERT INTO `globalize_translations` VALUES (1274,'',NULL,1,'','Juni','June [month]','ViewTranslation',2558);
-INSERT INTO `globalize_translations` VALUES (1275,'',NULL,1,'','Juli','July [month]','ViewTranslation',2558);
-INSERT INTO `globalize_translations` VALUES (1276,'',NULL,1,'','Agustus','August [month]','ViewTranslation',2558);
-INSERT INTO `globalize_translations` VALUES (1277,'',NULL,1,'','September','September [month]','ViewTranslation',2558);
-INSERT INTO `globalize_translations` VALUES (1278,'',NULL,1,'','Oktober','October [month]','ViewTranslation',2558);
-INSERT INTO `globalize_translations` VALUES (1279,'',NULL,1,'','November','November [month]','ViewTranslation',2558);
-INSERT INTO `globalize_translations` VALUES (1280,'',NULL,1,'','Desember','December [month]','ViewTranslation',2558);
-INSERT INTO `globalize_translations` VALUES (1281,'',NULL,1,'','Jan','Jan [abbreviated month]','ViewTranslation',2558);
-INSERT INTO `globalize_translations` VALUES (1282,'',NULL,1,'','Peb','Feb [abbreviated month]','ViewTranslation',2558);
-INSERT INTO `globalize_translations` VALUES (1283,'',NULL,1,'','Mar','Mar [abbreviated month]','ViewTranslation',2558);
-INSERT INTO `globalize_translations` VALUES (1284,'',NULL,1,'','Apr','Apr [abbreviated month]','ViewTranslation',2558);
-INSERT INTO `globalize_translations` VALUES (1285,'',NULL,1,'','Mei','May [abbreviated month]','ViewTranslation',2558);
-INSERT INTO `globalize_translations` VALUES (1286,'',NULL,1,'','Jun','Jun [abbreviated month]','ViewTranslation',2558);
-INSERT INTO `globalize_translations` VALUES (1287,'',NULL,1,'','Jul','Jul [abbreviated month]','ViewTranslation',2558);
-INSERT INTO `globalize_translations` VALUES (1288,'',NULL,1,'','Agu','Aug [abbreviated month]','ViewTranslation',2558);
-INSERT INTO `globalize_translations` VALUES (1289,'',NULL,1,'','Sep','Sep [abbreviated month]','ViewTranslation',2558);
-INSERT INTO `globalize_translations` VALUES (1290,'',NULL,1,'','Okt','Oct [abbreviated month]','ViewTranslation',2558);
-INSERT INTO `globalize_translations` VALUES (1291,'',NULL,1,'','Nov','Nov [abbreviated month]','ViewTranslation',2558);
-INSERT INTO `globalize_translations` VALUES (1292,'',NULL,1,'','Des','Dec [abbreviated month]','ViewTranslation',2558);
-INSERT INTO `globalize_translations` VALUES (1293,'',NULL,1,'','Sunnudagur','Sunday [weekday]','ViewTranslation',2593);
-INSERT INTO `globalize_translations` VALUES (1294,'',NULL,1,'','Mánudagur','Monday [weekday]','ViewTranslation',2593);
-INSERT INTO `globalize_translations` VALUES (1295,'',NULL,1,'','Þriðjudagur','Tuesday [weekday]','ViewTranslation',2593);
-INSERT INTO `globalize_translations` VALUES (1296,'',NULL,1,'','Miðvikudagur','Wednesday [weekday]','ViewTranslation',2593);
-INSERT INTO `globalize_translations` VALUES (1297,'',NULL,1,'','Fimmtudagur','Thursday [weekday]','ViewTranslation',2593);
-INSERT INTO `globalize_translations` VALUES (1298,'',NULL,1,'','Föstudagur','Friday [weekday]','ViewTranslation',2593);
-INSERT INTO `globalize_translations` VALUES (1299,'',NULL,1,'','Laugardagur','Saturday [weekday]','ViewTranslation',2593);
-INSERT INTO `globalize_translations` VALUES (1300,'',NULL,1,'','Sun','Sun [abbreviated weekday]','ViewTranslation',2593);
-INSERT INTO `globalize_translations` VALUES (1301,'',NULL,1,'','Mán','Mon [abbreviated weekday]','ViewTranslation',2593);
-INSERT INTO `globalize_translations` VALUES (1302,'',NULL,1,'','Þri','Tue [abbreviated weekday]','ViewTranslation',2593);
-INSERT INTO `globalize_translations` VALUES (1303,'',NULL,1,'','Mið','Wed [abbreviated weekday]','ViewTranslation',2593);
-INSERT INTO `globalize_translations` VALUES (1304,'',NULL,1,'','Fim','Thu [abbreviated weekday]','ViewTranslation',2593);
-INSERT INTO `globalize_translations` VALUES (1305,'',NULL,1,'','Fös','Fri [abbreviated weekday]','ViewTranslation',2593);
-INSERT INTO `globalize_translations` VALUES (1306,'',NULL,1,'','Lau','Sat [abbreviated weekday]','ViewTranslation',2593);
-INSERT INTO `globalize_translations` VALUES (1307,'',NULL,1,'','Janúar','January [month]','ViewTranslation',2593);
-INSERT INTO `globalize_translations` VALUES (1308,'',NULL,1,'','Febrúar','February [month]','ViewTranslation',2593);
-INSERT INTO `globalize_translations` VALUES (1309,'',NULL,1,'','Mars','March [month]','ViewTranslation',2593);
-INSERT INTO `globalize_translations` VALUES (1310,'',NULL,1,'','Apríl','April [month]','ViewTranslation',2593);
-INSERT INTO `globalize_translations` VALUES (1311,'',NULL,1,'','Maí','May [month]','ViewTranslation',2593);
-INSERT INTO `globalize_translations` VALUES (1312,'',NULL,1,'','Júní','June [month]','ViewTranslation',2593);
-INSERT INTO `globalize_translations` VALUES (1313,'',NULL,1,'','Júlí','July [month]','ViewTranslation',2593);
-INSERT INTO `globalize_translations` VALUES (1314,'',NULL,1,'','Ágúst','August [month]','ViewTranslation',2593);
-INSERT INTO `globalize_translations` VALUES (1315,'',NULL,1,'','September','September [month]','ViewTranslation',2593);
-INSERT INTO `globalize_translations` VALUES (1316,'',NULL,1,'','Október','October [month]','ViewTranslation',2593);
-INSERT INTO `globalize_translations` VALUES (1317,'',NULL,1,'','Nóvember','November [month]','ViewTranslation',2593);
-INSERT INTO `globalize_translations` VALUES (1318,'',NULL,1,'','Desember','December [month]','ViewTranslation',2593);
-INSERT INTO `globalize_translations` VALUES (1319,'',NULL,1,'','Jan','Jan [abbreviated month]','ViewTranslation',2593);
-INSERT INTO `globalize_translations` VALUES (1320,'',NULL,1,'','Feb','Feb [abbreviated month]','ViewTranslation',2593);
-INSERT INTO `globalize_translations` VALUES (1321,'',NULL,1,'','Mar','Mar [abbreviated month]','ViewTranslation',2593);
-INSERT INTO `globalize_translations` VALUES (1322,'',NULL,1,'','Apr','Apr [abbreviated month]','ViewTranslation',2593);
-INSERT INTO `globalize_translations` VALUES (1323,'',NULL,1,'','Maí','May [abbreviated month]','ViewTranslation',2593);
-INSERT INTO `globalize_translations` VALUES (1324,'',NULL,1,'','Jún','Jun [abbreviated month]','ViewTranslation',2593);
-INSERT INTO `globalize_translations` VALUES (1325,'',NULL,1,'','Júl','Jul [abbreviated month]','ViewTranslation',2593);
-INSERT INTO `globalize_translations` VALUES (1326,'',NULL,1,'','Ágú','Aug [abbreviated month]','ViewTranslation',2593);
-INSERT INTO `globalize_translations` VALUES (1327,'',NULL,1,'','Sep','Sep [abbreviated month]','ViewTranslation',2593);
-INSERT INTO `globalize_translations` VALUES (1328,'',NULL,1,'','Okt','Oct [abbreviated month]','ViewTranslation',2593);
-INSERT INTO `globalize_translations` VALUES (1329,'',NULL,1,'','Nóv','Nov [abbreviated month]','ViewTranslation',2593);
-INSERT INTO `globalize_translations` VALUES (1330,'',NULL,1,'','Des','Dec [abbreviated month]','ViewTranslation',2593);
-INSERT INTO `globalize_translations` VALUES (1331,'',NULL,1,'','Domenica','Sunday [weekday]','ViewTranslation',2600);
-INSERT INTO `globalize_translations` VALUES (1332,'',NULL,1,'','Lunedì','Monday [weekday]','ViewTranslation',2600);
-INSERT INTO `globalize_translations` VALUES (1333,'',NULL,1,'','Martedì','Tuesday [weekday]','ViewTranslation',2600);
-INSERT INTO `globalize_translations` VALUES (1334,'',NULL,1,'','Mercoledì','Wednesday [weekday]','ViewTranslation',2600);
-INSERT INTO `globalize_translations` VALUES (1335,'',NULL,1,'','Giovedì','Thursday [weekday]','ViewTranslation',2600);
-INSERT INTO `globalize_translations` VALUES (1336,'',NULL,1,'','Venerdì','Friday [weekday]','ViewTranslation',2600);
-INSERT INTO `globalize_translations` VALUES (1337,'',NULL,1,'','Sabato','Saturday [weekday]','ViewTranslation',2600);
-INSERT INTO `globalize_translations` VALUES (1338,'',NULL,1,'','Dom','Sun [abbreviated weekday]','ViewTranslation',2600);
-INSERT INTO `globalize_translations` VALUES (1339,'',NULL,1,'','Lun','Mon [abbreviated weekday]','ViewTranslation',2600);
-INSERT INTO `globalize_translations` VALUES (1340,'',NULL,1,'','Mar','Tue [abbreviated weekday]','ViewTranslation',2600);
-INSERT INTO `globalize_translations` VALUES (1341,'',NULL,1,'','Mer','Wed [abbreviated weekday]','ViewTranslation',2600);
-INSERT INTO `globalize_translations` VALUES (1342,'',NULL,1,'','Gio','Thu [abbreviated weekday]','ViewTranslation',2600);
-INSERT INTO `globalize_translations` VALUES (1343,'',NULL,1,'','Ven','Fri [abbreviated weekday]','ViewTranslation',2600);
-INSERT INTO `globalize_translations` VALUES (1344,'',NULL,1,'','Sab','Sat [abbreviated weekday]','ViewTranslation',2600);
-INSERT INTO `globalize_translations` VALUES (1345,'',NULL,1,'','Gennaio','January [month]','ViewTranslation',2600);
-INSERT INTO `globalize_translations` VALUES (1346,'',NULL,1,'','Febbraio','February [month]','ViewTranslation',2600);
-INSERT INTO `globalize_translations` VALUES (1347,'',NULL,1,'','Marzo','March [month]','ViewTranslation',2600);
-INSERT INTO `globalize_translations` VALUES (1348,'',NULL,1,'','Aprile','April [month]','ViewTranslation',2600);
-INSERT INTO `globalize_translations` VALUES (1349,'',NULL,1,'','Maggio','May [month]','ViewTranslation',2600);
-INSERT INTO `globalize_translations` VALUES (1350,'',NULL,1,'','Giugno','June [month]','ViewTranslation',2600);
-INSERT INTO `globalize_translations` VALUES (1351,'',NULL,1,'','Luglio','July [month]','ViewTranslation',2600);
-INSERT INTO `globalize_translations` VALUES (1352,'',NULL,1,'','Agosto','August [month]','ViewTranslation',2600);
-INSERT INTO `globalize_translations` VALUES (1353,'',NULL,1,'','Settembre','September [month]','ViewTranslation',2600);
-INSERT INTO `globalize_translations` VALUES (1354,'',NULL,1,'','Ottobre','October [month]','ViewTranslation',2600);
-INSERT INTO `globalize_translations` VALUES (1355,'',NULL,1,'','Novembre','November [month]','ViewTranslation',2600);
-INSERT INTO `globalize_translations` VALUES (1356,'',NULL,1,'','Dicembre','December [month]','ViewTranslation',2600);
-INSERT INTO `globalize_translations` VALUES (1357,'',NULL,1,'','Gen','Jan [abbreviated month]','ViewTranslation',2600);
-INSERT INTO `globalize_translations` VALUES (1358,'',NULL,1,'','Feb','Feb [abbreviated month]','ViewTranslation',2600);
-INSERT INTO `globalize_translations` VALUES (1359,'',NULL,1,'','Mar','Mar [abbreviated month]','ViewTranslation',2600);
-INSERT INTO `globalize_translations` VALUES (1360,'',NULL,1,'','Apr','Apr [abbreviated month]','ViewTranslation',2600);
-INSERT INTO `globalize_translations` VALUES (1361,'',NULL,1,'','Mag','May [abbreviated month]','ViewTranslation',2600);
-INSERT INTO `globalize_translations` VALUES (1362,'',NULL,1,'','Giu','Jun [abbreviated month]','ViewTranslation',2600);
-INSERT INTO `globalize_translations` VALUES (1363,'',NULL,1,'','Lug','Jul [abbreviated month]','ViewTranslation',2600);
-INSERT INTO `globalize_translations` VALUES (1364,'',NULL,1,'','Ago','Aug [abbreviated month]','ViewTranslation',2600);
-INSERT INTO `globalize_translations` VALUES (1365,'',NULL,1,'','Set','Sep [abbreviated month]','ViewTranslation',2600);
-INSERT INTO `globalize_translations` VALUES (1366,'',NULL,1,'','Ott','Oct [abbreviated month]','ViewTranslation',2600);
-INSERT INTO `globalize_translations` VALUES (1367,'',NULL,1,'','Nov','Nov [abbreviated month]','ViewTranslation',2600);
-INSERT INTO `globalize_translations` VALUES (1368,'',NULL,1,'','Dic','Dec [abbreviated month]','ViewTranslation',2600);
-INSERT INTO `globalize_translations` VALUES (1369,'',NULL,1,'','日曜日','Sunday [weekday]','ViewTranslation',2723);
-INSERT INTO `globalize_translations` VALUES (1370,'',NULL,1,'','月曜日','Monday [weekday]','ViewTranslation',2723);
-INSERT INTO `globalize_translations` VALUES (1371,'',NULL,1,'','火曜日','Tuesday [weekday]','ViewTranslation',2723);
-INSERT INTO `globalize_translations` VALUES (1372,'',NULL,1,'','水曜日','Wednesday [weekday]','ViewTranslation',2723);
-INSERT INTO `globalize_translations` VALUES (1373,'',NULL,1,'','木曜日','Thursday [weekday]','ViewTranslation',2723);
-INSERT INTO `globalize_translations` VALUES (1374,'',NULL,1,'','金曜日','Friday [weekday]','ViewTranslation',2723);
-INSERT INTO `globalize_translations` VALUES (1375,'',NULL,1,'','土曜日','Saturday [weekday]','ViewTranslation',2723);
-INSERT INTO `globalize_translations` VALUES (1376,'',NULL,1,'','日','Sun [abbreviated weekday]','ViewTranslation',2723);
-INSERT INTO `globalize_translations` VALUES (1377,'',NULL,1,'','月','Mon [abbreviated weekday]','ViewTranslation',2723);
-INSERT INTO `globalize_translations` VALUES (1378,'',NULL,1,'','火','Tue [abbreviated weekday]','ViewTranslation',2723);
-INSERT INTO `globalize_translations` VALUES (1379,'',NULL,1,'','水','Wed [abbreviated weekday]','ViewTranslation',2723);
-INSERT INTO `globalize_translations` VALUES (1380,'',NULL,1,'','木','Thu [abbreviated weekday]','ViewTranslation',2723);
-INSERT INTO `globalize_translations` VALUES (1381,'',NULL,1,'','金','Fri [abbreviated weekday]','ViewTranslation',2723);
-INSERT INTO `globalize_translations` VALUES (1382,'',NULL,1,'','土','Sat [abbreviated weekday]','ViewTranslation',2723);
-INSERT INTO `globalize_translations` VALUES (1383,'',NULL,1,'','1月','January [month]','ViewTranslation',2723);
-INSERT INTO `globalize_translations` VALUES (1384,'',NULL,1,'','2月','February [month]','ViewTranslation',2723);
-INSERT INTO `globalize_translations` VALUES (1385,'',NULL,1,'','3月','March [month]','ViewTranslation',2723);
-INSERT INTO `globalize_translations` VALUES (1386,'',NULL,1,'','4月','April [month]','ViewTranslation',2723);
-INSERT INTO `globalize_translations` VALUES (1387,'',NULL,1,'','5月','May [month]','ViewTranslation',2723);
-INSERT INTO `globalize_translations` VALUES (1388,'',NULL,1,'','6月','June [month]','ViewTranslation',2723);
-INSERT INTO `globalize_translations` VALUES (1389,'',NULL,1,'','7月','July [month]','ViewTranslation',2723);
-INSERT INTO `globalize_translations` VALUES (1390,'',NULL,1,'','8月','August [month]','ViewTranslation',2723);
-INSERT INTO `globalize_translations` VALUES (1391,'',NULL,1,'','9月','September [month]','ViewTranslation',2723);
-INSERT INTO `globalize_translations` VALUES (1392,'',NULL,1,'','10月','October [month]','ViewTranslation',2723);
-INSERT INTO `globalize_translations` VALUES (1393,'',NULL,1,'','11月','November [month]','ViewTranslation',2723);
-INSERT INTO `globalize_translations` VALUES (1394,'',NULL,1,'','12月','December [month]','ViewTranslation',2723);
-INSERT INTO `globalize_translations` VALUES (1395,'',NULL,1,'',' 1月','Jan [abbreviated month]','ViewTranslation',2723);
-INSERT INTO `globalize_translations` VALUES (1396,'',NULL,1,'',' 2月','Feb [abbreviated month]','ViewTranslation',2723);
-INSERT INTO `globalize_translations` VALUES (1397,'',NULL,1,'',' 3月','Mar [abbreviated month]','ViewTranslation',2723);
-INSERT INTO `globalize_translations` VALUES (1398,'',NULL,1,'',' 4月','Apr [abbreviated month]','ViewTranslation',2723);
-INSERT INTO `globalize_translations` VALUES (1399,'',NULL,1,'',' 5月','May [abbreviated month]','ViewTranslation',2723);
-INSERT INTO `globalize_translations` VALUES (1400,'',NULL,1,'',' 6月','Jun [abbreviated month]','ViewTranslation',2723);
-INSERT INTO `globalize_translations` VALUES (1401,'',NULL,1,'',' 7月','Jul [abbreviated month]','ViewTranslation',2723);
-INSERT INTO `globalize_translations` VALUES (1402,'',NULL,1,'',' 8月','Aug [abbreviated month]','ViewTranslation',2723);
-INSERT INTO `globalize_translations` VALUES (1403,'',NULL,1,'',' 9月','Sep [abbreviated month]','ViewTranslation',2723);
-INSERT INTO `globalize_translations` VALUES (1404,'',NULL,1,'','10月','Oct [abbreviated month]','ViewTranslation',2723);
-INSERT INTO `globalize_translations` VALUES (1405,'',NULL,1,'','11月','Nov [abbreviated month]','ViewTranslation',2723);
-INSERT INTO `globalize_translations` VALUES (1406,'',NULL,1,'','12月','Dec [abbreviated month]','ViewTranslation',2723);
-INSERT INTO `globalize_translations` VALUES (1407,'',NULL,1,'','კვირა','Sunday [weekday]','ViewTranslation',2770);
-INSERT INTO `globalize_translations` VALUES (1408,'',NULL,1,'','ორშაბათი','Monday [weekday]','ViewTranslation',2770);
-INSERT INTO `globalize_translations` VALUES (1409,'',NULL,1,'','სამშაბათი','Tuesday [weekday]','ViewTranslation',2770);
-INSERT INTO `globalize_translations` VALUES (1410,'',NULL,1,'','ოთხშაბათი','Wednesday [weekday]','ViewTranslation',2770);
-INSERT INTO `globalize_translations` VALUES (1411,'',NULL,1,'','ხუთშაბათი','Thursday [weekday]','ViewTranslation',2770);
-INSERT INTO `globalize_translations` VALUES (1412,'',NULL,1,'','პარასკევი','Friday [weekday]','ViewTranslation',2770);
-INSERT INTO `globalize_translations` VALUES (1413,'',NULL,1,'','შაბათი','Saturday [weekday]','ViewTranslation',2770);
-INSERT INTO `globalize_translations` VALUES (1414,'',NULL,1,'','კვი','Sun [abbreviated weekday]','ViewTranslation',2770);
-INSERT INTO `globalize_translations` VALUES (1415,'',NULL,1,'','ორშ','Mon [abbreviated weekday]','ViewTranslation',2770);
-INSERT INTO `globalize_translations` VALUES (1416,'',NULL,1,'','სამ','Tue [abbreviated weekday]','ViewTranslation',2770);
-INSERT INTO `globalize_translations` VALUES (1417,'',NULL,1,'','ოთხ','Wed [abbreviated weekday]','ViewTranslation',2770);
-INSERT INTO `globalize_translations` VALUES (1418,'',NULL,1,'','ხუთ','Thu [abbreviated weekday]','ViewTranslation',2770);
-INSERT INTO `globalize_translations` VALUES (1419,'',NULL,1,'','პარ','Fri [abbreviated weekday]','ViewTranslation',2770);
-INSERT INTO `globalize_translations` VALUES (1420,'',NULL,1,'','შაბ','Sat [abbreviated weekday]','ViewTranslation',2770);
-INSERT INTO `globalize_translations` VALUES (1421,'',NULL,1,'','იანვარი','January [month]','ViewTranslation',2770);
-INSERT INTO `globalize_translations` VALUES (1422,'',NULL,1,'','თებერვალი','February [month]','ViewTranslation',2770);
-INSERT INTO `globalize_translations` VALUES (1423,'',NULL,1,'','მარტი','March [month]','ViewTranslation',2770);
-INSERT INTO `globalize_translations` VALUES (1424,'',NULL,1,'','აპრილი','April [month]','ViewTranslation',2770);
-INSERT INTO `globalize_translations` VALUES (1425,'',NULL,1,'','მაისი','May [month]','ViewTranslation',2770);
-INSERT INTO `globalize_translations` VALUES (1426,'',NULL,1,'','ივნისი','June [month]','ViewTranslation',2770);
-INSERT INTO `globalize_translations` VALUES (1427,'',NULL,1,'','ივლისი','July [month]','ViewTranslation',2770);
-INSERT INTO `globalize_translations` VALUES (1428,'',NULL,1,'','აგვისტო','August [month]','ViewTranslation',2770);
-INSERT INTO `globalize_translations` VALUES (1429,'',NULL,1,'','სექტემბერი','September [month]','ViewTranslation',2770);
-INSERT INTO `globalize_translations` VALUES (1430,'',NULL,1,'','ოქტომბერი','October [month]','ViewTranslation',2770);
-INSERT INTO `globalize_translations` VALUES (1431,'',NULL,1,'','ნოემბერი','November [month]','ViewTranslation',2770);
-INSERT INTO `globalize_translations` VALUES (1432,'',NULL,1,'','დეკემბერი','December [month]','ViewTranslation',2770);
-INSERT INTO `globalize_translations` VALUES (1433,'',NULL,1,'','იან','Jan [abbreviated month]','ViewTranslation',2770);
-INSERT INTO `globalize_translations` VALUES (1434,'',NULL,1,'','თებ','Feb [abbreviated month]','ViewTranslation',2770);
-INSERT INTO `globalize_translations` VALUES (1435,'',NULL,1,'','მარ','Mar [abbreviated month]','ViewTranslation',2770);
-INSERT INTO `globalize_translations` VALUES (1436,'',NULL,1,'','აპრ','Apr [abbreviated month]','ViewTranslation',2770);
-INSERT INTO `globalize_translations` VALUES (1437,'',NULL,1,'','მაი','May [abbreviated month]','ViewTranslation',2770);
-INSERT INTO `globalize_translations` VALUES (1438,'',NULL,1,'','ივნ','Jun [abbreviated month]','ViewTranslation',2770);
-INSERT INTO `globalize_translations` VALUES (1439,'',NULL,1,'','ივლ','Jul [abbreviated month]','ViewTranslation',2770);
-INSERT INTO `globalize_translations` VALUES (1440,'',NULL,1,'','აგვ','Aug [abbreviated month]','ViewTranslation',2770);
-INSERT INTO `globalize_translations` VALUES (1441,'',NULL,1,'','სექ','Sep [abbreviated month]','ViewTranslation',2770);
-INSERT INTO `globalize_translations` VALUES (1442,'',NULL,1,'','ოქტ','Oct [abbreviated month]','ViewTranslation',2770);
-INSERT INTO `globalize_translations` VALUES (1443,'',NULL,1,'','ნოე','Nov [abbreviated month]','ViewTranslation',2770);
-INSERT INTO `globalize_translations` VALUES (1444,'',NULL,1,'','დეკ','Dec [abbreviated month]','ViewTranslation',2770);
-INSERT INTO `globalize_translations` VALUES (1445,'',NULL,1,'','Sabaat','Sunday [weekday]','ViewTranslation',2763);
-INSERT INTO `globalize_translations` VALUES (1446,'',NULL,1,'','Ataasinngorneq','Monday [weekday]','ViewTranslation',2763);
-INSERT INTO `globalize_translations` VALUES (1447,'',NULL,1,'','Marlunngorneq','Tuesday [weekday]','ViewTranslation',2763);
-INSERT INTO `globalize_translations` VALUES (1448,'',NULL,1,'','Pingasunngorneq','Wednesday [weekday]','ViewTranslation',2763);
-INSERT INTO `globalize_translations` VALUES (1449,'',NULL,1,'','Sisamanngorneq','Thursday [weekday]','ViewTranslation',2763);
-INSERT INTO `globalize_translations` VALUES (1450,'',NULL,1,'','Tallimanngorneq','Friday [weekday]','ViewTranslation',2763);
-INSERT INTO `globalize_translations` VALUES (1451,'',NULL,1,'','Arfininngorneq','Saturday [weekday]','ViewTranslation',2763);
-INSERT INTO `globalize_translations` VALUES (1452,'',NULL,1,'','Sab','Sun [abbreviated weekday]','ViewTranslation',2763);
-INSERT INTO `globalize_translations` VALUES (1453,'',NULL,1,'','Ata','Mon [abbreviated weekday]','ViewTranslation',2763);
-INSERT INTO `globalize_translations` VALUES (1454,'',NULL,1,'','Mar','Tue [abbreviated weekday]','ViewTranslation',2763);
-INSERT INTO `globalize_translations` VALUES (1455,'',NULL,1,'','Pin','Wed [abbreviated weekday]','ViewTranslation',2763);
-INSERT INTO `globalize_translations` VALUES (1456,'',NULL,1,'','Sis','Thu [abbreviated weekday]','ViewTranslation',2763);
-INSERT INTO `globalize_translations` VALUES (1457,'',NULL,1,'','Tal','Fri [abbreviated weekday]','ViewTranslation',2763);
-INSERT INTO `globalize_translations` VALUES (1458,'',NULL,1,'','Arf','Sat [abbreviated weekday]','ViewTranslation',2763);
-INSERT INTO `globalize_translations` VALUES (1459,'',NULL,1,'','Januari','January [month]','ViewTranslation',2763);
-INSERT INTO `globalize_translations` VALUES (1460,'',NULL,1,'','Februari','February [month]','ViewTranslation',2763);
-INSERT INTO `globalize_translations` VALUES (1461,'',NULL,1,'','Martsi','March [month]','ViewTranslation',2763);
-INSERT INTO `globalize_translations` VALUES (1462,'',NULL,1,'','Aprili','April [month]','ViewTranslation',2763);
-INSERT INTO `globalize_translations` VALUES (1463,'',NULL,1,'','Maji','May [month]','ViewTranslation',2763);
-INSERT INTO `globalize_translations` VALUES (1464,'',NULL,1,'','Juni','June [month]','ViewTranslation',2763);
-INSERT INTO `globalize_translations` VALUES (1465,'',NULL,1,'','Juli','July [month]','ViewTranslation',2763);
-INSERT INTO `globalize_translations` VALUES (1466,'',NULL,1,'','Augustusi','August [month]','ViewTranslation',2763);
-INSERT INTO `globalize_translations` VALUES (1467,'',NULL,1,'','Septemberi','September [month]','ViewTranslation',2763);
-INSERT INTO `globalize_translations` VALUES (1468,'',NULL,1,'','Oktoberi','October [month]','ViewTranslation',2763);
-INSERT INTO `globalize_translations` VALUES (1469,'',NULL,1,'','Novemberi','November [month]','ViewTranslation',2763);
-INSERT INTO `globalize_translations` VALUES (1470,'',NULL,1,'','Decemberi','December [month]','ViewTranslation',2763);
-INSERT INTO `globalize_translations` VALUES (1471,'',NULL,1,'','Jan','Jan [abbreviated month]','ViewTranslation',2763);
-INSERT INTO `globalize_translations` VALUES (1472,'',NULL,1,'','Feb','Feb [abbreviated month]','ViewTranslation',2763);
-INSERT INTO `globalize_translations` VALUES (1473,'',NULL,1,'','Mar','Mar [abbreviated month]','ViewTranslation',2763);
-INSERT INTO `globalize_translations` VALUES (1474,'',NULL,1,'','Apr','Apr [abbreviated month]','ViewTranslation',2763);
-INSERT INTO `globalize_translations` VALUES (1475,'',NULL,1,'','Maj','May [abbreviated month]','ViewTranslation',2763);
-INSERT INTO `globalize_translations` VALUES (1476,'',NULL,1,'','Jun','Jun [abbreviated month]','ViewTranslation',2763);
-INSERT INTO `globalize_translations` VALUES (1477,'',NULL,1,'','Jul','Jul [abbreviated month]','ViewTranslation',2763);
-INSERT INTO `globalize_translations` VALUES (1478,'',NULL,1,'','Aug','Aug [abbreviated month]','ViewTranslation',2763);
-INSERT INTO `globalize_translations` VALUES (1479,'',NULL,1,'','Sep','Sep [abbreviated month]','ViewTranslation',2763);
-INSERT INTO `globalize_translations` VALUES (1480,'',NULL,1,'','Okt','Oct [abbreviated month]','ViewTranslation',2763);
-INSERT INTO `globalize_translations` VALUES (1481,'',NULL,1,'','Nov','Nov [abbreviated month]','ViewTranslation',2763);
-INSERT INTO `globalize_translations` VALUES (1482,'',NULL,1,'','Dec','Dec [abbreviated month]','ViewTranslation',2763);
-INSERT INTO `globalize_translations` VALUES (1483,'',NULL,1,'','ರವಿವಾರ','Sunday [weekday]','ViewTranslation',2765);
-INSERT INTO `globalize_translations` VALUES (1484,'',NULL,1,'','ಸೋಮವಾರ','Monday [weekday]','ViewTranslation',2765);
-INSERT INTO `globalize_translations` VALUES (1485,'',NULL,1,'','ಮಂಗಳವಾರ','Tuesday [weekday]','ViewTranslation',2765);
-INSERT INTO `globalize_translations` VALUES (1486,'',NULL,1,'','ಬುಧವಾರ','Wednesday [weekday]','ViewTranslation',2765);
-INSERT INTO `globalize_translations` VALUES (1487,'',NULL,1,'','ಗುರುವಾರ','Thursday [weekday]','ViewTranslation',2765);
-INSERT INTO `globalize_translations` VALUES (1488,'',NULL,1,'','ಶುಕ್ರವಾರ','Friday [weekday]','ViewTranslation',2765);
-INSERT INTO `globalize_translations` VALUES (1489,'',NULL,1,'','ಶನಿವಾರ','Saturday [weekday]','ViewTranslation',2765);
-INSERT INTO `globalize_translations` VALUES (1490,'',NULL,1,'','ರ','Sun [abbreviated weekday]','ViewTranslation',2765);
-INSERT INTO `globalize_translations` VALUES (1491,'',NULL,1,'','ಸೋ','Mon [abbreviated weekday]','ViewTranslation',2765);
-INSERT INTO `globalize_translations` VALUES (1492,'',NULL,1,'','ಮಂ','Tue [abbreviated weekday]','ViewTranslation',2765);
-INSERT INTO `globalize_translations` VALUES (1493,'',NULL,1,'','ಬು','Wed [abbreviated weekday]','ViewTranslation',2765);
-INSERT INTO `globalize_translations` VALUES (1494,'',NULL,1,'','ಗು','Thu [abbreviated weekday]','ViewTranslation',2765);
-INSERT INTO `globalize_translations` VALUES (1495,'',NULL,1,'','ಶು','Fri [abbreviated weekday]','ViewTranslation',2765);
-INSERT INTO `globalize_translations` VALUES (1496,'',NULL,1,'','ಶ','Sat [abbreviated weekday]','ViewTranslation',2765);
-INSERT INTO `globalize_translations` VALUES (1497,'',NULL,1,'','ಜನವರಿ','January [month]','ViewTranslation',2765);
-INSERT INTO `globalize_translations` VALUES (1498,'',NULL,1,'','ಫೆಬ್ರವರಿ','February [month]','ViewTranslation',2765);
-INSERT INTO `globalize_translations` VALUES (1499,'',NULL,1,'','ಮಾರ್ಚ','March [month]','ViewTranslation',2765);
-INSERT INTO `globalize_translations` VALUES (1500,'',NULL,1,'','ಏಪ್ರಿಲ್','April [month]','ViewTranslation',2765);
-INSERT INTO `globalize_translations` VALUES (1501,'',NULL,1,'','ಮೇ','May [month]','ViewTranslation',2765);
-INSERT INTO `globalize_translations` VALUES (1502,'',NULL,1,'','ಜೂನ್','June [month]','ViewTranslation',2765);
-INSERT INTO `globalize_translations` VALUES (1503,'',NULL,1,'','ಜುಲಾಯಿ','July [month]','ViewTranslation',2765);
-INSERT INTO `globalize_translations` VALUES (1504,'',NULL,1,'','ಆಗಸ್ತು','August [month]','ViewTranslation',2765);
-INSERT INTO `globalize_translations` VALUES (1505,'',NULL,1,'','ಸೆಪ್ಟೆಂಬರ','September [month]','ViewTranslation',2765);
-INSERT INTO `globalize_translations` VALUES (1506,'',NULL,1,'','ಅಕ್ತೂಬರ','October [month]','ViewTranslation',2765);
-INSERT INTO `globalize_translations` VALUES (1507,'',NULL,1,'','ನವೆಂಬರ','November [month]','ViewTranslation',2765);
-INSERT INTO `globalize_translations` VALUES (1508,'',NULL,1,'','ದಶಂಬರ','December [month]','ViewTranslation',2765);
-INSERT INTO `globalize_translations` VALUES (1509,'',NULL,1,'','ಜ','Jan [abbreviated month]','ViewTranslation',2765);
-INSERT INTO `globalize_translations` VALUES (1510,'',NULL,1,'','ಫೆ','Feb [abbreviated month]','ViewTranslation',2765);
-INSERT INTO `globalize_translations` VALUES (1511,'',NULL,1,'','ಮಾ','Mar [abbreviated month]','ViewTranslation',2765);
-INSERT INTO `globalize_translations` VALUES (1512,'',NULL,1,'','ಏ','Apr [abbreviated month]','ViewTranslation',2765);
-INSERT INTO `globalize_translations` VALUES (1513,'',NULL,1,'','ಮೇ','May [abbreviated month]','ViewTranslation',2765);
-INSERT INTO `globalize_translations` VALUES (1514,'',NULL,1,'','ಜೂ','Jun [abbreviated month]','ViewTranslation',2765);
-INSERT INTO `globalize_translations` VALUES (1515,'',NULL,1,'','ಜು','Jul [abbreviated month]','ViewTranslation',2765);
-INSERT INTO `globalize_translations` VALUES (1516,'',NULL,1,'','ಆ','Aug [abbreviated month]','ViewTranslation',2765);
-INSERT INTO `globalize_translations` VALUES (1517,'',NULL,1,'','ಸೆ','Sep [abbreviated month]','ViewTranslation',2765);
-INSERT INTO `globalize_translations` VALUES (1518,'',NULL,1,'','ಅ','Oct [abbreviated month]','ViewTranslation',2765);
-INSERT INTO `globalize_translations` VALUES (1519,'',NULL,1,'','ನ','Nov [abbreviated month]','ViewTranslation',2765);
-INSERT INTO `globalize_translations` VALUES (1520,'',NULL,1,'','ದ','Dec [abbreviated month]','ViewTranslation',2765);
-INSERT INTO `globalize_translations` VALUES (1521,'',NULL,1,'','일요일','Sunday [weekday]','ViewTranslation',3122);
-INSERT INTO `globalize_translations` VALUES (1522,'',NULL,1,'','월요일','Monday [weekday]','ViewTranslation',3122);
-INSERT INTO `globalize_translations` VALUES (1523,'',NULL,1,'','화요일','Tuesday [weekday]','ViewTranslation',3122);
-INSERT INTO `globalize_translations` VALUES (1524,'',NULL,1,'','수요일','Wednesday [weekday]','ViewTranslation',3122);
-INSERT INTO `globalize_translations` VALUES (1525,'',NULL,1,'','목요일','Thursday [weekday]','ViewTranslation',3122);
-INSERT INTO `globalize_translations` VALUES (1526,'',NULL,1,'','금요일','Friday [weekday]','ViewTranslation',3122);
-INSERT INTO `globalize_translations` VALUES (1527,'',NULL,1,'','토요일','Saturday [weekday]','ViewTranslation',3122);
-INSERT INTO `globalize_translations` VALUES (1528,'',NULL,1,'','일','Sun [abbreviated weekday]','ViewTranslation',3122);
-INSERT INTO `globalize_translations` VALUES (1529,'',NULL,1,'','월','Mon [abbreviated weekday]','ViewTranslation',3122);
-INSERT INTO `globalize_translations` VALUES (1530,'',NULL,1,'','화','Tue [abbreviated weekday]','ViewTranslation',3122);
-INSERT INTO `globalize_translations` VALUES (1531,'',NULL,1,'','수','Wed [abbreviated weekday]','ViewTranslation',3122);
-INSERT INTO `globalize_translations` VALUES (1532,'',NULL,1,'','목','Thu [abbreviated weekday]','ViewTranslation',3122);
-INSERT INTO `globalize_translations` VALUES (1533,'',NULL,1,'','금','Fri [abbreviated weekday]','ViewTranslation',3122);
-INSERT INTO `globalize_translations` VALUES (1534,'',NULL,1,'','토','Sat [abbreviated weekday]','ViewTranslation',3122);
-INSERT INTO `globalize_translations` VALUES (1535,'',NULL,1,'','일월','January [month]','ViewTranslation',3122);
-INSERT INTO `globalize_translations` VALUES (1536,'',NULL,1,'','이월','February [month]','ViewTranslation',3122);
-INSERT INTO `globalize_translations` VALUES (1537,'',NULL,1,'','삼월','March [month]','ViewTranslation',3122);
-INSERT INTO `globalize_translations` VALUES (1538,'',NULL,1,'','사월','April [month]','ViewTranslation',3122);
-INSERT INTO `globalize_translations` VALUES (1539,'',NULL,1,'','오월','May [month]','ViewTranslation',3122);
-INSERT INTO `globalize_translations` VALUES (1540,'',NULL,1,'','유월','June [month]','ViewTranslation',3122);
-INSERT INTO `globalize_translations` VALUES (1541,'',NULL,1,'','칠월','July [month]','ViewTranslation',3122);
-INSERT INTO `globalize_translations` VALUES (1542,'',NULL,1,'','팔월','August [month]','ViewTranslation',3122);
-INSERT INTO `globalize_translations` VALUES (1543,'',NULL,1,'','구월','September [month]','ViewTranslation',3122);
-INSERT INTO `globalize_translations` VALUES (1544,'',NULL,1,'','시월','October [month]','ViewTranslation',3122);
-INSERT INTO `globalize_translations` VALUES (1545,'',NULL,1,'','십일월','November [month]','ViewTranslation',3122);
-INSERT INTO `globalize_translations` VALUES (1546,'',NULL,1,'','십이월','December [month]','ViewTranslation',3122);
-INSERT INTO `globalize_translations` VALUES (1547,'',NULL,1,'',' 1월','Jan [abbreviated month]','ViewTranslation',3122);
-INSERT INTO `globalize_translations` VALUES (1548,'',NULL,1,'',' 2월','Feb [abbreviated month]','ViewTranslation',3122);
-INSERT INTO `globalize_translations` VALUES (1549,'',NULL,1,'',' 3월','Mar [abbreviated month]','ViewTranslation',3122);
-INSERT INTO `globalize_translations` VALUES (1550,'',NULL,1,'',' 4월','Apr [abbreviated month]','ViewTranslation',3122);
-INSERT INTO `globalize_translations` VALUES (1551,'',NULL,1,'',' 5월','May [abbreviated month]','ViewTranslation',3122);
-INSERT INTO `globalize_translations` VALUES (1552,'',NULL,1,'',' 6월','Jun [abbreviated month]','ViewTranslation',3122);
-INSERT INTO `globalize_translations` VALUES (1553,'',NULL,1,'',' 7월','Jul [abbreviated month]','ViewTranslation',3122);
-INSERT INTO `globalize_translations` VALUES (1554,'',NULL,1,'',' 8월','Aug [abbreviated month]','ViewTranslation',3122);
-INSERT INTO `globalize_translations` VALUES (1555,'',NULL,1,'',' 9월','Sep [abbreviated month]','ViewTranslation',3122);
-INSERT INTO `globalize_translations` VALUES (1556,'',NULL,1,'','10월','Oct [abbreviated month]','ViewTranslation',3122);
-INSERT INTO `globalize_translations` VALUES (1557,'',NULL,1,'','11월','Nov [abbreviated month]','ViewTranslation',3122);
-INSERT INTO `globalize_translations` VALUES (1558,'',NULL,1,'','12월','Dec [abbreviated month]','ViewTranslation',3122);
-INSERT INTO `globalize_translations` VALUES (1559,'',NULL,1,'','De sul','Sunday [weekday]','ViewTranslation',1372);
-INSERT INTO `globalize_translations` VALUES (1560,'',NULL,1,'','De lun','Monday [weekday]','ViewTranslation',1372);
-INSERT INTO `globalize_translations` VALUES (1561,'',NULL,1,'','De merth','Tuesday [weekday]','ViewTranslation',1372);
-INSERT INTO `globalize_translations` VALUES (1562,'',NULL,1,'','De merher','Wednesday [weekday]','ViewTranslation',1372);
-INSERT INTO `globalize_translations` VALUES (1563,'',NULL,1,'','De yow','Thursday [weekday]','ViewTranslation',1372);
-INSERT INTO `globalize_translations` VALUES (1564,'',NULL,1,'','De gwener','Friday [weekday]','ViewTranslation',1372);
-INSERT INTO `globalize_translations` VALUES (1565,'',NULL,1,'','De sadorn','Saturday [weekday]','ViewTranslation',1372);
-INSERT INTO `globalize_translations` VALUES (1566,'',NULL,1,'','Sul','Sun [abbreviated weekday]','ViewTranslation',1372);
-INSERT INTO `globalize_translations` VALUES (1567,'',NULL,1,'','Lun','Mon [abbreviated weekday]','ViewTranslation',1372);
-INSERT INTO `globalize_translations` VALUES (1568,'',NULL,1,'','Mth','Tue [abbreviated weekday]','ViewTranslation',1372);
-INSERT INTO `globalize_translations` VALUES (1569,'',NULL,1,'','Mhr','Wed [abbreviated weekday]','ViewTranslation',1372);
-INSERT INTO `globalize_translations` VALUES (1570,'',NULL,1,'','Yow','Thu [abbreviated weekday]','ViewTranslation',1372);
-INSERT INTO `globalize_translations` VALUES (1571,'',NULL,1,'','Gwe','Fri [abbreviated weekday]','ViewTranslation',1372);
-INSERT INTO `globalize_translations` VALUES (1572,'',NULL,1,'','Sad','Sat [abbreviated weekday]','ViewTranslation',1372);
-INSERT INTO `globalize_translations` VALUES (1573,'',NULL,1,'','Mys genver','January [month]','ViewTranslation',1372);
-INSERT INTO `globalize_translations` VALUES (1574,'',NULL,1,'','Mys whevrel','February [month]','ViewTranslation',1372);
-INSERT INTO `globalize_translations` VALUES (1575,'',NULL,1,'','Mys merth','March [month]','ViewTranslation',1372);
-INSERT INTO `globalize_translations` VALUES (1576,'',NULL,1,'','Mys ebrel','April [month]','ViewTranslation',1372);
-INSERT INTO `globalize_translations` VALUES (1577,'',NULL,1,'','Mys me','May [month]','ViewTranslation',1372);
-INSERT INTO `globalize_translations` VALUES (1578,'',NULL,1,'','Mys evan','June [month]','ViewTranslation',1372);
-INSERT INTO `globalize_translations` VALUES (1579,'',NULL,1,'','Mys gortheren','July [month]','ViewTranslation',1372);
-INSERT INTO `globalize_translations` VALUES (1580,'',NULL,1,'','Mye est','August [month]','ViewTranslation',1372);
-INSERT INTO `globalize_translations` VALUES (1581,'',NULL,1,'','Mys gwyngala','September [month]','ViewTranslation',1372);
-INSERT INTO `globalize_translations` VALUES (1582,'',NULL,1,'','Mys hedra','October [month]','ViewTranslation',1372);
-INSERT INTO `globalize_translations` VALUES (1583,'',NULL,1,'','Mys du','November [month]','ViewTranslation',1372);
-INSERT INTO `globalize_translations` VALUES (1584,'',NULL,1,'','Mys kevardhu','December [month]','ViewTranslation',1372);
-INSERT INTO `globalize_translations` VALUES (1585,'',NULL,1,'','Gen','Jan [abbreviated month]','ViewTranslation',1372);
-INSERT INTO `globalize_translations` VALUES (1586,'',NULL,1,'','Whe>','Feb [abbreviated month]','ViewTranslation',1372);
-INSERT INTO `globalize_translations` VALUES (1587,'',NULL,1,'','Mer','Mar [abbreviated month]','ViewTranslation',1372);
-INSERT INTO `globalize_translations` VALUES (1588,'',NULL,1,'','Ebr','Apr [abbreviated month]','ViewTranslation',1372);
-INSERT INTO `globalize_translations` VALUES (1589,'',NULL,1,'','Me','May [abbreviated month]','ViewTranslation',1372);
-INSERT INTO `globalize_translations` VALUES (1590,'',NULL,1,'','Evn','Jun [abbreviated month]','ViewTranslation',1372);
-INSERT INTO `globalize_translations` VALUES (1591,'',NULL,1,'','Gor','Jul [abbreviated month]','ViewTranslation',1372);
-INSERT INTO `globalize_translations` VALUES (1592,'',NULL,1,'','Est','Aug [abbreviated month]','ViewTranslation',1372);
-INSERT INTO `globalize_translations` VALUES (1593,'',NULL,1,'','Gwn','Sep [abbreviated month]','ViewTranslation',1372);
-INSERT INTO `globalize_translations` VALUES (1594,'',NULL,1,'','Hed','Oct [abbreviated month]','ViewTranslation',1372);
-INSERT INTO `globalize_translations` VALUES (1595,'',NULL,1,'','Du','Nov [abbreviated month]','ViewTranslation',1372);
-INSERT INTO `globalize_translations` VALUES (1596,'',NULL,1,'','Kev','Dec [abbreviated month]','ViewTranslation',1372);
-INSERT INTO `globalize_translations` VALUES (1597,'',NULL,1,'','Sabiiti','Sunday [weekday]','ViewTranslation',3694);
-INSERT INTO `globalize_translations` VALUES (1598,'',NULL,1,'','Balaza','Monday [weekday]','ViewTranslation',3694);
-INSERT INTO `globalize_translations` VALUES (1599,'',NULL,1,'','Lwakubiri','Tuesday [weekday]','ViewTranslation',3694);
-INSERT INTO `globalize_translations` VALUES (1600,'',NULL,1,'','Lwakusatu','Wednesday [weekday]','ViewTranslation',3694);
-INSERT INTO `globalize_translations` VALUES (1601,'',NULL,1,'','Lwakuna','Thursday [weekday]','ViewTranslation',3694);
-INSERT INTO `globalize_translations` VALUES (1602,'',NULL,1,'','Lwakutaano','Friday [weekday]','ViewTranslation',3694);
-INSERT INTO `globalize_translations` VALUES (1603,'',NULL,1,'','Lwamukaaga','Saturday [weekday]','ViewTranslation',3694);
-INSERT INTO `globalize_translations` VALUES (1604,'',NULL,1,'','Sab','Sun [abbreviated weekday]','ViewTranslation',3694);
-INSERT INTO `globalize_translations` VALUES (1605,'',NULL,1,'','Bal','Mon [abbreviated weekday]','ViewTranslation',3694);
-INSERT INTO `globalize_translations` VALUES (1606,'',NULL,1,'','Lw2','Tue [abbreviated weekday]','ViewTranslation',3694);
-INSERT INTO `globalize_translations` VALUES (1607,'',NULL,1,'','Lw3','Wed [abbreviated weekday]','ViewTranslation',3694);
-INSERT INTO `globalize_translations` VALUES (1608,'',NULL,1,'','Lw4','Thu [abbreviated weekday]','ViewTranslation',3694);
-INSERT INTO `globalize_translations` VALUES (1609,'',NULL,1,'','Lw5','Fri [abbreviated weekday]','ViewTranslation',3694);
-INSERT INTO `globalize_translations` VALUES (1610,'',NULL,1,'','Lw6','Sat [abbreviated weekday]','ViewTranslation',3694);
-INSERT INTO `globalize_translations` VALUES (1611,'',NULL,1,'','Janwaliyo','January [month]','ViewTranslation',3694);
-INSERT INTO `globalize_translations` VALUES (1612,'',NULL,1,'','Febwaliyo','February [month]','ViewTranslation',3694);
-INSERT INTO `globalize_translations` VALUES (1613,'',NULL,1,'','Marisi','March [month]','ViewTranslation',3694);
-INSERT INTO `globalize_translations` VALUES (1614,'',NULL,1,'','Apuli','April [month]','ViewTranslation',3694);
-INSERT INTO `globalize_translations` VALUES (1615,'',NULL,1,'','Maayi','May [month]','ViewTranslation',3694);
-INSERT INTO `globalize_translations` VALUES (1616,'',NULL,1,'','Juuni','June [month]','ViewTranslation',3694);
-INSERT INTO `globalize_translations` VALUES (1617,'',NULL,1,'','Julaai','July [month]','ViewTranslation',3694);
-INSERT INTO `globalize_translations` VALUES (1618,'',NULL,1,'','Agusito','August [month]','ViewTranslation',3694);
-INSERT INTO `globalize_translations` VALUES (1619,'',NULL,1,'','Sebuttemba','September [month]','ViewTranslation',3694);
-INSERT INTO `globalize_translations` VALUES (1620,'',NULL,1,'','Okitobba','October [month]','ViewTranslation',3694);
-INSERT INTO `globalize_translations` VALUES (1621,'',NULL,1,'','Novemba','November [month]','ViewTranslation',3694);
-INSERT INTO `globalize_translations` VALUES (1622,'',NULL,1,'','Desemba','December [month]','ViewTranslation',3694);
-INSERT INTO `globalize_translations` VALUES (1623,'',NULL,1,'','Jan','Jan [abbreviated month]','ViewTranslation',3694);
-INSERT INTO `globalize_translations` VALUES (1624,'',NULL,1,'','Feb','Feb [abbreviated month]','ViewTranslation',3694);
-INSERT INTO `globalize_translations` VALUES (1625,'',NULL,1,'','Mar','Mar [abbreviated month]','ViewTranslation',3694);
-INSERT INTO `globalize_translations` VALUES (1626,'',NULL,1,'','Apu','Apr [abbreviated month]','ViewTranslation',3694);
-INSERT INTO `globalize_translations` VALUES (1627,'',NULL,1,'','Maa','May [abbreviated month]','ViewTranslation',3694);
-INSERT INTO `globalize_translations` VALUES (1628,'',NULL,1,'','Jun','Jun [abbreviated month]','ViewTranslation',3694);
-INSERT INTO `globalize_translations` VALUES (1629,'',NULL,1,'','Jul','Jul [abbreviated month]','ViewTranslation',3694);
-INSERT INTO `globalize_translations` VALUES (1630,'',NULL,1,'','Agu','Aug [abbreviated month]','ViewTranslation',3694);
-INSERT INTO `globalize_translations` VALUES (1631,'',NULL,1,'','Seb','Sep [abbreviated month]','ViewTranslation',3694);
-INSERT INTO `globalize_translations` VALUES (1632,'',NULL,1,'','Oki','Oct [abbreviated month]','ViewTranslation',3694);
-INSERT INTO `globalize_translations` VALUES (1633,'',NULL,1,'','Nov','Nov [abbreviated month]','ViewTranslation',3694);
-INSERT INTO `globalize_translations` VALUES (1634,'',NULL,1,'','Des','Dec [abbreviated month]','ViewTranslation',3694);
-INSERT INTO `globalize_translations` VALUES (1635,'',NULL,1,'','ອາທິດ','Sunday [weekday]','ViewTranslation',3428);
-INSERT INTO `globalize_translations` VALUES (1636,'',NULL,1,'','ຈັນ','Monday [weekday]','ViewTranslation',3428);
-INSERT INTO `globalize_translations` VALUES (1637,'',NULL,1,'','ອັງຄານ','Tuesday [weekday]','ViewTranslation',3428);
-INSERT INTO `globalize_translations` VALUES (1638,'',NULL,1,'','ພຸດ','Wednesday [weekday]','ViewTranslation',3428);
-INSERT INTO `globalize_translations` VALUES (1639,'',NULL,1,'','ພະຫັດ','Thursday [weekday]','ViewTranslation',3428);
-INSERT INTO `globalize_translations` VALUES (1640,'',NULL,1,'','ສຸກ','Friday [weekday]','ViewTranslation',3428);
-INSERT INTO `globalize_translations` VALUES (1641,'',NULL,1,'','ເສົາ','Saturday [weekday]','ViewTranslation',3428);
-INSERT INTO `globalize_translations` VALUES (1642,'',NULL,1,'','ອາ.','Sun [abbreviated weekday]','ViewTranslation',3428);
-INSERT INTO `globalize_translations` VALUES (1643,'',NULL,1,'','ຈ.','Mon [abbreviated weekday]','ViewTranslation',3428);
-INSERT INTO `globalize_translations` VALUES (1644,'',NULL,1,'','ຄ.','Tue [abbreviated weekday]','ViewTranslation',3428);
-INSERT INTO `globalize_translations` VALUES (1645,'',NULL,1,'','ພ.','Wed [abbreviated weekday]','ViewTranslation',3428);
-INSERT INTO `globalize_translations` VALUES (1646,'',NULL,1,'','ພຫ.','Thu [abbreviated weekday]','ViewTranslation',3428);
-INSERT INTO `globalize_translations` VALUES (1647,'',NULL,1,'','ສ.','Fri [abbreviated weekday]','ViewTranslation',3428);
-INSERT INTO `globalize_translations` VALUES (1648,'',NULL,1,'','ສ.','Sat [abbreviated weekday]','ViewTranslation',3428);
-INSERT INTO `globalize_translations` VALUES (1649,'',NULL,1,'','ມັງກອນ','January [month]','ViewTranslation',3428);
-INSERT INTO `globalize_translations` VALUES (1650,'',NULL,1,'','ກຸມຟາ','February [month]','ViewTranslation',3428);
-INSERT INTO `globalize_translations` VALUES (1651,'',NULL,1,'','ມີນາ','March [month]','ViewTranslation',3428);
-INSERT INTO `globalize_translations` VALUES (1652,'',NULL,1,'','ເມສາ','April [month]','ViewTranslation',3428);
-INSERT INTO `globalize_translations` VALUES (1653,'',NULL,1,'','ພຶດສະພາ','May [month]','ViewTranslation',3428);
-INSERT INTO `globalize_translations` VALUES (1654,'',NULL,1,'','ມິຖຸນາ','June [month]','ViewTranslation',3428);
-INSERT INTO `globalize_translations` VALUES (1655,'',NULL,1,'','ກໍລະກົດ','July [month]','ViewTranslation',3428);
-INSERT INTO `globalize_translations` VALUES (1656,'',NULL,1,'','ສິງຫາ','August [month]','ViewTranslation',3428);
-INSERT INTO `globalize_translations` VALUES (1657,'',NULL,1,'','ກັນຍາ','September [month]','ViewTranslation',3428);
-INSERT INTO `globalize_translations` VALUES (1658,'',NULL,1,'','ຕຸລາ','October [month]','ViewTranslation',3428);
-INSERT INTO `globalize_translations` VALUES (1659,'',NULL,1,'','ພະຈິກ','November [month]','ViewTranslation',3428);
-INSERT INTO `globalize_translations` VALUES (1660,'',NULL,1,'','ທັນວາ','December [month]','ViewTranslation',3428);
-INSERT INTO `globalize_translations` VALUES (1661,'',NULL,1,'','ມ.ກ.','Jan [abbreviated month]','ViewTranslation',3428);
-INSERT INTO `globalize_translations` VALUES (1662,'',NULL,1,'','ກ.ພ.','Feb [abbreviated month]','ViewTranslation',3428);
-INSERT INTO `globalize_translations` VALUES (1663,'',NULL,1,'','ມ.ນ.','Mar [abbreviated month]','ViewTranslation',3428);
-INSERT INTO `globalize_translations` VALUES (1664,'',NULL,1,'','ມ.ສ.','Apr [abbreviated month]','ViewTranslation',3428);
-INSERT INTO `globalize_translations` VALUES (1665,'',NULL,1,'','ພ.ພ.','May [abbreviated month]','ViewTranslation',3428);
-INSERT INTO `globalize_translations` VALUES (1666,'',NULL,1,'','ມິ.ຖ.','Jun [abbreviated month]','ViewTranslation',3428);
-INSERT INTO `globalize_translations` VALUES (1667,'',NULL,1,'','ກ.ລ.','Jul [abbreviated month]','ViewTranslation',3428);
-INSERT INTO `globalize_translations` VALUES (1668,'',NULL,1,'','ສ.ຫ.','Aug [abbreviated month]','ViewTranslation',3428);
-INSERT INTO `globalize_translations` VALUES (1669,'',NULL,1,'','ກ.ຍ.','Sep [abbreviated month]','ViewTranslation',3428);
-INSERT INTO `globalize_translations` VALUES (1670,'',NULL,1,'','ຕ.ລ.','Oct [abbreviated month]','ViewTranslation',3428);
-INSERT INTO `globalize_translations` VALUES (1671,'',NULL,1,'','ພ.ຈ.','Nov [abbreviated month]','ViewTranslation',3428);
-INSERT INTO `globalize_translations` VALUES (1672,'',NULL,1,'','ທ.ວ.','Dec [abbreviated month]','ViewTranslation',3428);
-INSERT INTO `globalize_translations` VALUES (1673,'',NULL,1,'','Sekmadienis','Sunday [weekday]','ViewTranslation',3553);
-INSERT INTO `globalize_translations` VALUES (1674,'',NULL,1,'','Pirmadienis','Monday [weekday]','ViewTranslation',3553);
-INSERT INTO `globalize_translations` VALUES (1675,'',NULL,1,'','Antradienis','Tuesday [weekday]','ViewTranslation',3553);
-INSERT INTO `globalize_translations` VALUES (1676,'',NULL,1,'','Trečiadienis','Wednesday [weekday]','ViewTranslation',3553);
-INSERT INTO `globalize_translations` VALUES (1677,'',NULL,1,'','Ketvirtadienis','Thursday [weekday]','ViewTranslation',3553);
-INSERT INTO `globalize_translations` VALUES (1678,'',NULL,1,'','Penktadienis','Friday [weekday]','ViewTranslation',3553);
-INSERT INTO `globalize_translations` VALUES (1679,'',NULL,1,'','Šeštadienis','Saturday [weekday]','ViewTranslation',3553);
-INSERT INTO `globalize_translations` VALUES (1680,'',NULL,1,'','Sk','Sun [abbreviated weekday]','ViewTranslation',3553);
-INSERT INTO `globalize_translations` VALUES (1681,'',NULL,1,'','Pr','Mon [abbreviated weekday]','ViewTranslation',3553);
-INSERT INTO `globalize_translations` VALUES (1682,'',NULL,1,'','An','Tue [abbreviated weekday]','ViewTranslation',3553);
-INSERT INTO `globalize_translations` VALUES (1683,'',NULL,1,'','Tr','Wed [abbreviated weekday]','ViewTranslation',3553);
-INSERT INTO `globalize_translations` VALUES (1684,'',NULL,1,'','Kt','Thu [abbreviated weekday]','ViewTranslation',3553);
-INSERT INTO `globalize_translations` VALUES (1685,'',NULL,1,'','Pn','Fri [abbreviated weekday]','ViewTranslation',3553);
-INSERT INTO `globalize_translations` VALUES (1686,'',NULL,1,'','Št','Sat [abbreviated weekday]','ViewTranslation',3553);
-INSERT INTO `globalize_translations` VALUES (1687,'',NULL,1,'','Sausio','January [month]','ViewTranslation',3553);
-INSERT INTO `globalize_translations` VALUES (1688,'',NULL,1,'','Vasario','February [month]','ViewTranslation',3553);
-INSERT INTO `globalize_translations` VALUES (1689,'',NULL,1,'','Kovo','March [month]','ViewTranslation',3553);
-INSERT INTO `globalize_translations` VALUES (1690,'',NULL,1,'','Balandžio','April [month]','ViewTranslation',3553);
-INSERT INTO `globalize_translations` VALUES (1691,'',NULL,1,'','Gegužės','May [month]','ViewTranslation',3553);
-INSERT INTO `globalize_translations` VALUES (1692,'',NULL,1,'','Birželio','June [month]','ViewTranslation',3553);
-INSERT INTO `globalize_translations` VALUES (1693,'',NULL,1,'','Liepos','July [month]','ViewTranslation',3553);
-INSERT INTO `globalize_translations` VALUES (1694,'',NULL,1,'','Rugpjūčio','August [month]','ViewTranslation',3553);
-INSERT INTO `globalize_translations` VALUES (1695,'',NULL,1,'','Rugsėjo','September [month]','ViewTranslation',3553);
-INSERT INTO `globalize_translations` VALUES (1696,'',NULL,1,'','Spalio','October [month]','ViewTranslation',3553);
-INSERT INTO `globalize_translations` VALUES (1697,'',NULL,1,'','Lapkričio','November [month]','ViewTranslation',3553);
-INSERT INTO `globalize_translations` VALUES (1698,'',NULL,1,'','Gruodžio','December [month]','ViewTranslation',3553);
-INSERT INTO `globalize_translations` VALUES (1699,'',NULL,1,'','Sau','Jan [abbreviated month]','ViewTranslation',3553);
-INSERT INTO `globalize_translations` VALUES (1700,'',NULL,1,'','Vas','Feb [abbreviated month]','ViewTranslation',3553);
-INSERT INTO `globalize_translations` VALUES (1701,'',NULL,1,'','Kov','Mar [abbreviated month]','ViewTranslation',3553);
-INSERT INTO `globalize_translations` VALUES (1702,'',NULL,1,'','Bal','Apr [abbreviated month]','ViewTranslation',3553);
-INSERT INTO `globalize_translations` VALUES (1703,'',NULL,1,'','Geg','May [abbreviated month]','ViewTranslation',3553);
-INSERT INTO `globalize_translations` VALUES (1704,'',NULL,1,'','Bir','Jun [abbreviated month]','ViewTranslation',3553);
-INSERT INTO `globalize_translations` VALUES (1705,'',NULL,1,'','Lie','Jul [abbreviated month]','ViewTranslation',3553);
-INSERT INTO `globalize_translations` VALUES (1706,'',NULL,1,'','Rgp','Aug [abbreviated month]','ViewTranslation',3553);
-INSERT INTO `globalize_translations` VALUES (1707,'',NULL,1,'','Rgs','Sep [abbreviated month]','ViewTranslation',3553);
-INSERT INTO `globalize_translations` VALUES (1708,'',NULL,1,'','Spa','Oct [abbreviated month]','ViewTranslation',3553);
-INSERT INTO `globalize_translations` VALUES (1709,'',NULL,1,'','Lap','Nov [abbreviated month]','ViewTranslation',3553);
-INSERT INTO `globalize_translations` VALUES (1710,'',NULL,1,'','Grd','Dec [abbreviated month]','ViewTranslation',3553);
-INSERT INTO `globalize_translations` VALUES (1711,'',NULL,1,'','Svētdiena','Sunday [weekday]','ViewTranslation',3435);
-INSERT INTO `globalize_translations` VALUES (1712,'',NULL,1,'','Pirmdiena','Monday [weekday]','ViewTranslation',3435);
-INSERT INTO `globalize_translations` VALUES (1713,'',NULL,1,'','Otrdiena','Tuesday [weekday]','ViewTranslation',3435);
-INSERT INTO `globalize_translations` VALUES (1714,'',NULL,1,'','Trešdiena','Wednesday [weekday]','ViewTranslation',3435);
-INSERT INTO `globalize_translations` VALUES (1715,'',NULL,1,'','Ceturtdiena','Thursday [weekday]','ViewTranslation',3435);
-INSERT INTO `globalize_translations` VALUES (1716,'',NULL,1,'','Piektdiena','Friday [weekday]','ViewTranslation',3435);
-INSERT INTO `globalize_translations` VALUES (1717,'',NULL,1,'','Sestdiena','Saturday [weekday]','ViewTranslation',3435);
-INSERT INTO `globalize_translations` VALUES (1718,'',NULL,1,'','Sv','Sun [abbreviated weekday]','ViewTranslation',3435);
-INSERT INTO `globalize_translations` VALUES (1719,'',NULL,1,'','P ','Mon [abbreviated weekday]','ViewTranslation',3435);
-INSERT INTO `globalize_translations` VALUES (1720,'',NULL,1,'','O ','Tue [abbreviated weekday]','ViewTranslation',3435);
-INSERT INTO `globalize_translations` VALUES (1721,'',NULL,1,'','T ','Wed [abbreviated weekday]','ViewTranslation',3435);
-INSERT INTO `globalize_translations` VALUES (1722,'',NULL,1,'','C ','Thu [abbreviated weekday]','ViewTranslation',3435);
-INSERT INTO `globalize_translations` VALUES (1723,'',NULL,1,'','Pk','Fri [abbreviated weekday]','ViewTranslation',3435);
-INSERT INTO `globalize_translations` VALUES (1724,'',NULL,1,'','S ','Sat [abbreviated weekday]','ViewTranslation',3435);
-INSERT INTO `globalize_translations` VALUES (1725,'',NULL,1,'','Janvāris','January [month]','ViewTranslation',3435);
-INSERT INTO `globalize_translations` VALUES (1726,'',NULL,1,'','Februāris','February [month]','ViewTranslation',3435);
-INSERT INTO `globalize_translations` VALUES (1727,'',NULL,1,'','Marts','March [month]','ViewTranslation',3435);
-INSERT INTO `globalize_translations` VALUES (1728,'',NULL,1,'','Aprīlis','April [month]','ViewTranslation',3435);
-INSERT INTO `globalize_translations` VALUES (1729,'',NULL,1,'','Maijs','May [month]','ViewTranslation',3435);
-INSERT INTO `globalize_translations` VALUES (1730,'',NULL,1,'','Jūnijs','June [month]','ViewTranslation',3435);
-INSERT INTO `globalize_translations` VALUES (1731,'',NULL,1,'','Jūlijs','July [month]','ViewTranslation',3435);
-INSERT INTO `globalize_translations` VALUES (1732,'',NULL,1,'','Augusts','August [month]','ViewTranslation',3435);
-INSERT INTO `globalize_translations` VALUES (1733,'',NULL,1,'','Septembris','September [month]','ViewTranslation',3435);
-INSERT INTO `globalize_translations` VALUES (1734,'',NULL,1,'','Oktobris','October [month]','ViewTranslation',3435);
-INSERT INTO `globalize_translations` VALUES (1735,'',NULL,1,'','Novembris','November [month]','ViewTranslation',3435);
-INSERT INTO `globalize_translations` VALUES (1736,'',NULL,1,'','Decembris','December [month]','ViewTranslation',3435);
-INSERT INTO `globalize_translations` VALUES (1737,'',NULL,1,'','Jan','Jan [abbreviated month]','ViewTranslation',3435);
-INSERT INTO `globalize_translations` VALUES (1738,'',NULL,1,'','Feb','Feb [abbreviated month]','ViewTranslation',3435);
-INSERT INTO `globalize_translations` VALUES (1739,'',NULL,1,'','Mar','Mar [abbreviated month]','ViewTranslation',3435);
-INSERT INTO `globalize_translations` VALUES (1740,'',NULL,1,'','Apr','Apr [abbreviated month]','ViewTranslation',3435);
-INSERT INTO `globalize_translations` VALUES (1741,'',NULL,1,'','Mai','May [abbreviated month]','ViewTranslation',3435);
-INSERT INTO `globalize_translations` VALUES (1742,'',NULL,1,'','Jūn','Jun [abbreviated month]','ViewTranslation',3435);
-INSERT INTO `globalize_translations` VALUES (1743,'',NULL,1,'','Jūl','Jul [abbreviated month]','ViewTranslation',3435);
-INSERT INTO `globalize_translations` VALUES (1744,'',NULL,1,'','Aug','Aug [abbreviated month]','ViewTranslation',3435);
-INSERT INTO `globalize_translations` VALUES (1745,'',NULL,1,'','Sep','Sep [abbreviated month]','ViewTranslation',3435);
-INSERT INTO `globalize_translations` VALUES (1746,'',NULL,1,'','Okt','Oct [abbreviated month]','ViewTranslation',3435);
-INSERT INTO `globalize_translations` VALUES (1747,'',NULL,1,'','Nov','Nov [abbreviated month]','ViewTranslation',3435);
-INSERT INTO `globalize_translations` VALUES (1748,'',NULL,1,'','Dec','Dec [abbreviated month]','ViewTranslation',3435);
-INSERT INTO `globalize_translations` VALUES (1749,'',NULL,1,'','Rātapu','Sunday [weekday]','ViewTranslation',4166);
-INSERT INTO `globalize_translations` VALUES (1750,'',NULL,1,'','Mane','Monday [weekday]','ViewTranslation',4166);
-INSERT INTO `globalize_translations` VALUES (1751,'',NULL,1,'','Tūrei','Tuesday [weekday]','ViewTranslation',4166);
-INSERT INTO `globalize_translations` VALUES (1752,'',NULL,1,'','Wenerei','Wednesday [weekday]','ViewTranslation',4166);
-INSERT INTO `globalize_translations` VALUES (1753,'',NULL,1,'','Tāite','Thursday [weekday]','ViewTranslation',4166);
-INSERT INTO `globalize_translations` VALUES (1754,'',NULL,1,'','Paraire','Friday [weekday]','ViewTranslation',4166);
-INSERT INTO `globalize_translations` VALUES (1755,'',NULL,1,'','Hātarei','Saturday [weekday]','ViewTranslation',4166);
-INSERT INTO `globalize_translations` VALUES (1756,'',NULL,1,'','Ta','Sun [abbreviated weekday]','ViewTranslation',4166);
-INSERT INTO `globalize_translations` VALUES (1757,'',NULL,1,'','Ma','Mon [abbreviated weekday]','ViewTranslation',4166);
-INSERT INTO `globalize_translations` VALUES (1758,'',NULL,1,'','Tū','Tue [abbreviated weekday]','ViewTranslation',4166);
-INSERT INTO `globalize_translations` VALUES (1759,'',NULL,1,'','We','Wed [abbreviated weekday]','ViewTranslation',4166);
-INSERT INTO `globalize_translations` VALUES (1760,'',NULL,1,'','Tāi','Thu [abbreviated weekday]','ViewTranslation',4166);
-INSERT INTO `globalize_translations` VALUES (1761,'',NULL,1,'','Pa','Fri [abbreviated weekday]','ViewTranslation',4166);
-INSERT INTO `globalize_translations` VALUES (1762,'',NULL,1,'','Hā','Sat [abbreviated weekday]','ViewTranslation',4166);
-INSERT INTO `globalize_translations` VALUES (1763,'',NULL,1,'','Kohi-tātea','January [month]','ViewTranslation',4166);
-INSERT INTO `globalize_translations` VALUES (1764,'',NULL,1,'','Hui-tanguru','February [month]','ViewTranslation',4166);
-INSERT INTO `globalize_translations` VALUES (1765,'',NULL,1,'','Poutū-te-rangi','March [month]','ViewTranslation',4166);
-INSERT INTO `globalize_translations` VALUES (1766,'',NULL,1,'','Paenga-whāwhā','April [month]','ViewTranslation',4166);
-INSERT INTO `globalize_translations` VALUES (1767,'',NULL,1,'','Haratua','May [month]','ViewTranslation',4166);
-INSERT INTO `globalize_translations` VALUES (1768,'',NULL,1,'','Pipiri','June [month]','ViewTranslation',4166);
-INSERT INTO `globalize_translations` VALUES (1769,'',NULL,1,'','Hōngoingoi','July [month]','ViewTranslation',4166);
-INSERT INTO `globalize_translations` VALUES (1770,'',NULL,1,'','Here-turi-kōkā','August [month]','ViewTranslation',4166);
-INSERT INTO `globalize_translations` VALUES (1771,'',NULL,1,'','Mahuru','September [month]','ViewTranslation',4166);
-INSERT INTO `globalize_translations` VALUES (1772,'',NULL,1,'','Whiringa-ā-nuku','October [month]','ViewTranslation',4166);
-INSERT INTO `globalize_translations` VALUES (1773,'',NULL,1,'','Whiringa-ā-rangi','November [month]','ViewTranslation',4166);
-INSERT INTO `globalize_translations` VALUES (1774,'',NULL,1,'','Hakihea','December [month]','ViewTranslation',4166);
-INSERT INTO `globalize_translations` VALUES (1775,'',NULL,1,'','Kohi','Jan [abbreviated month]','ViewTranslation',4166);
-INSERT INTO `globalize_translations` VALUES (1776,'',NULL,1,'','Hui','Feb [abbreviated month]','ViewTranslation',4166);
-INSERT INTO `globalize_translations` VALUES (1777,'',NULL,1,'','Pou','Mar [abbreviated month]','ViewTranslation',4166);
-INSERT INTO `globalize_translations` VALUES (1778,'',NULL,1,'','Pae','Apr [abbreviated month]','ViewTranslation',4166);
-INSERT INTO `globalize_translations` VALUES (1779,'',NULL,1,'','Hara','May [abbreviated month]','ViewTranslation',4166);
-INSERT INTO `globalize_translations` VALUES (1780,'',NULL,1,'','Pipi','Jun [abbreviated month]','ViewTranslation',4166);
-INSERT INTO `globalize_translations` VALUES (1781,'',NULL,1,'','Hōngoi','Jul [abbreviated month]','ViewTranslation',4166);
-INSERT INTO `globalize_translations` VALUES (1782,'',NULL,1,'','Here','Aug [abbreviated month]','ViewTranslation',4166);
-INSERT INTO `globalize_translations` VALUES (1783,'',NULL,1,'','Mahu','Sep [abbreviated month]','ViewTranslation',4166);
-INSERT INTO `globalize_translations` VALUES (1784,'',NULL,1,'','Whi-nu','Oct [abbreviated month]','ViewTranslation',4166);
-INSERT INTO `globalize_translations` VALUES (1785,'',NULL,1,'','Whi-ra','Nov [abbreviated month]','ViewTranslation',4166);
-INSERT INTO `globalize_translations` VALUES (1786,'',NULL,1,'','Haki','Dec [abbreviated month]','ViewTranslation',4166);
-INSERT INTO `globalize_translations` VALUES (1787,'',NULL,1,'','Недела','Sunday [weekday]','ViewTranslation',3981);
-INSERT INTO `globalize_translations` VALUES (1788,'',NULL,1,'','Понеделник','Monday [weekday]','ViewTranslation',3981);
-INSERT INTO `globalize_translations` VALUES (1789,'',NULL,1,'','Вторник','Tuesday [weekday]','ViewTranslation',3981);
-INSERT INTO `globalize_translations` VALUES (1790,'',NULL,1,'','Среда','Wednesday [weekday]','ViewTranslation',3981);
-INSERT INTO `globalize_translations` VALUES (1791,'',NULL,1,'','Четврток','Thursday [weekday]','ViewTranslation',3981);
-INSERT INTO `globalize_translations` VALUES (1792,'',NULL,1,'','Петок','Friday [weekday]','ViewTranslation',3981);
-INSERT INTO `globalize_translations` VALUES (1793,'',NULL,1,'','Сабота','Saturday [weekday]','ViewTranslation',3981);
-INSERT INTO `globalize_translations` VALUES (1794,'',NULL,1,'','Нед','Sun [abbreviated weekday]','ViewTranslation',3981);
-INSERT INTO `globalize_translations` VALUES (1795,'',NULL,1,'','Пон','Mon [abbreviated weekday]','ViewTranslation',3981);
-INSERT INTO `globalize_translations` VALUES (1796,'',NULL,1,'','Вто','Tue [abbreviated weekday]','ViewTranslation',3981);
-INSERT INTO `globalize_translations` VALUES (1797,'',NULL,1,'','Сре','Wed [abbreviated weekday]','ViewTranslation',3981);
-INSERT INTO `globalize_translations` VALUES (1798,'',NULL,1,'','Чет','Thu [abbreviated weekday]','ViewTranslation',3981);
-INSERT INTO `globalize_translations` VALUES (1799,'',NULL,1,'','Пет','Fri [abbreviated weekday]','ViewTranslation',3981);
-INSERT INTO `globalize_translations` VALUES (1800,'',NULL,1,'','Саб','Sat [abbreviated weekday]','ViewTranslation',3981);
-INSERT INTO `globalize_translations` VALUES (1801,'',NULL,1,'','Јануари','January [month]','ViewTranslation',3981);
-INSERT INTO `globalize_translations` VALUES (1802,'',NULL,1,'','Февруари','February [month]','ViewTranslation',3981);
-INSERT INTO `globalize_translations` VALUES (1803,'',NULL,1,'','Март','March [month]','ViewTranslation',3981);
-INSERT INTO `globalize_translations` VALUES (1804,'',NULL,1,'','Април','April [month]','ViewTranslation',3981);
-INSERT INTO `globalize_translations` VALUES (1805,'',NULL,1,'','Мај','May [month]','ViewTranslation',3981);
-INSERT INTO `globalize_translations` VALUES (1806,'',NULL,1,'','Јуни','June [month]','ViewTranslation',3981);
-INSERT INTO `globalize_translations` VALUES (1807,'',NULL,1,'','Јули','July [month]','ViewTranslation',3981);
-INSERT INTO `globalize_translations` VALUES (1808,'',NULL,1,'','Август','August [month]','ViewTranslation',3981);
-INSERT INTO `globalize_translations` VALUES (1809,'',NULL,1,'','Септември','September [month]','ViewTranslation',3981);
-INSERT INTO `globalize_translations` VALUES (1810,'',NULL,1,'','Октомври','October [month]','ViewTranslation',3981);
-INSERT INTO `globalize_translations` VALUES (1811,'',NULL,1,'','Ноември','November [month]','ViewTranslation',3981);
-INSERT INTO `globalize_translations` VALUES (1812,'',NULL,1,'','Декември','December [month]','ViewTranslation',3981);
-INSERT INTO `globalize_translations` VALUES (1813,'',NULL,1,'','Јан','Jan [abbreviated month]','ViewTranslation',3981);
-INSERT INTO `globalize_translations` VALUES (1814,'',NULL,1,'','Фев','Feb [abbreviated month]','ViewTranslation',3981);
-INSERT INTO `globalize_translations` VALUES (1815,'',NULL,1,'','Мар','Mar [abbreviated month]','ViewTranslation',3981);
-INSERT INTO `globalize_translations` VALUES (1816,'',NULL,1,'','Апр','Apr [abbreviated month]','ViewTranslation',3981);
-INSERT INTO `globalize_translations` VALUES (1817,'',NULL,1,'','Мај','May [abbreviated month]','ViewTranslation',3981);
-INSERT INTO `globalize_translations` VALUES (1818,'',NULL,1,'','Јун','Jun [abbreviated month]','ViewTranslation',3981);
-INSERT INTO `globalize_translations` VALUES (1819,'',NULL,1,'','Јул','Jul [abbreviated month]','ViewTranslation',3981);
-INSERT INTO `globalize_translations` VALUES (1820,'',NULL,1,'','Авг','Aug [abbreviated month]','ViewTranslation',3981);
-INSERT INTO `globalize_translations` VALUES (1821,'',NULL,1,'','Сеп','Sep [abbreviated month]','ViewTranslation',3981);
-INSERT INTO `globalize_translations` VALUES (1822,'',NULL,1,'','Окт','Oct [abbreviated month]','ViewTranslation',3981);
-INSERT INTO `globalize_translations` VALUES (1823,'',NULL,1,'','Ное','Nov [abbreviated month]','ViewTranslation',3981);
-INSERT INTO `globalize_translations` VALUES (1824,'',NULL,1,'','Дек','Dec [abbreviated month]','ViewTranslation',3981);
-INSERT INTO `globalize_translations` VALUES (1825,'',NULL,1,'','ഞായറു്','Sunday [weekday]','ViewTranslation',3736);
-INSERT INTO `globalize_translations` VALUES (1826,'',NULL,1,'','തിങ്കളു്','Monday [weekday]','ViewTranslation',3736);
-INSERT INTO `globalize_translations` VALUES (1827,'',NULL,1,'','ചൊവ്വ','Tuesday [weekday]','ViewTranslation',3736);
-INSERT INTO `globalize_translations` VALUES (1828,'',NULL,1,'','ബുധനു്','Wednesday [weekday]','ViewTranslation',3736);
-INSERT INTO `globalize_translations` VALUES (1829,'',NULL,1,'','വ്യാഴം','Thursday [weekday]','ViewTranslation',3736);
-INSERT INTO `globalize_translations` VALUES (1830,'',NULL,1,'','വെള്ളി','Friday [weekday]','ViewTranslation',3736);
-INSERT INTO `globalize_translations` VALUES (1831,'',NULL,1,'','ശനി','Saturday [weekday]','ViewTranslation',3736);
-INSERT INTO `globalize_translations` VALUES (1832,'',NULL,1,'','ഞാ','Sun [abbreviated weekday]','ViewTranslation',3736);
-INSERT INTO `globalize_translations` VALUES (1833,'',NULL,1,'','തി','Mon [abbreviated weekday]','ViewTranslation',3736);
-INSERT INTO `globalize_translations` VALUES (1834,'',NULL,1,'','ചൊ','Tue [abbreviated weekday]','ViewTranslation',3736);
-INSERT INTO `globalize_translations` VALUES (1835,'',NULL,1,'','ബു','Wed [abbreviated weekday]','ViewTranslation',3736);
-INSERT INTO `globalize_translations` VALUES (1836,'',NULL,1,'','വ്യാ','Thu [abbreviated weekday]','ViewTranslation',3736);
-INSERT INTO `globalize_translations` VALUES (1837,'',NULL,1,'','വെ','Fri [abbreviated weekday]','ViewTranslation',3736);
-INSERT INTO `globalize_translations` VALUES (1838,'',NULL,1,'','ശ','Sat [abbreviated weekday]','ViewTranslation',3736);
-INSERT INTO `globalize_translations` VALUES (1839,'',NULL,1,'','ജനുവരി','January [month]','ViewTranslation',3736);
-INSERT INTO `globalize_translations` VALUES (1840,'',NULL,1,'','ഫെബ്രുവരി','February [month]','ViewTranslation',3736);
-INSERT INTO `globalize_translations` VALUES (1841,'',NULL,1,'','മാറു്ച്ച്','March [month]','ViewTranslation',3736);
-INSERT INTO `globalize_translations` VALUES (1842,'',NULL,1,'','ഏപ്റിലു്','April [month]','ViewTranslation',3736);
-INSERT INTO `globalize_translations` VALUES (1843,'',NULL,1,'','മെയ്','May [month]','ViewTranslation',3736);
-INSERT INTO `globalize_translations` VALUES (1844,'',NULL,1,'','ജൂണു്','June [month]','ViewTranslation',3736);
-INSERT INTO `globalize_translations` VALUES (1845,'',NULL,1,'','ജൂലൈ','July [month]','ViewTranslation',3736);
-INSERT INTO `globalize_translations` VALUES (1846,'',NULL,1,'','ആഗസ്ത്','August [month]','ViewTranslation',3736);
-INSERT INTO `globalize_translations` VALUES (1847,'',NULL,1,'','സെപ്തംബറു്','September [month]','ViewTranslation',3736);
-INSERT INTO `globalize_translations` VALUES (1848,'',NULL,1,'','ഒക്ടോബറു്','October [month]','ViewTranslation',3736);
-INSERT INTO `globalize_translations` VALUES (1849,'',NULL,1,'','നവംബറു്','November [month]','ViewTranslation',3736);
-INSERT INTO `globalize_translations` VALUES (1850,'',NULL,1,'','ഡിസംബറു്','December [month]','ViewTranslation',3736);
-INSERT INTO `globalize_translations` VALUES (1851,'',NULL,1,'','ജനു','Jan [abbreviated month]','ViewTranslation',3736);
-INSERT INTO `globalize_translations` VALUES (1852,'',NULL,1,'','ഫെബ്','Feb [abbreviated month]','ViewTranslation',3736);
-INSERT INTO `globalize_translations` VALUES (1853,'',NULL,1,'','മാറ്','Mar [abbreviated month]','ViewTranslation',3736);
-INSERT INTO `globalize_translations` VALUES (1854,'',NULL,1,'','ഏപ്റില്','Apr [abbreviated month]','ViewTranslation',3736);
-INSERT INTO `globalize_translations` VALUES (1855,'',NULL,1,'','െമയ്','May [abbreviated month]','ViewTranslation',3736);
-INSERT INTO `globalize_translations` VALUES (1856,'',NULL,1,'','ജൂണ്','Jun [abbreviated month]','ViewTranslation',3736);
-INSERT INTO `globalize_translations` VALUES (1857,'',NULL,1,'','ജൂൈല','Jul [abbreviated month]','ViewTranslation',3736);
-INSERT INTO `globalize_translations` VALUES (1858,'',NULL,1,'','ആഗ','Aug [abbreviated month]','ViewTranslation',3736);
-INSERT INTO `globalize_translations` VALUES (1859,'',NULL,1,'','െസപ്തം','Sep [abbreviated month]','ViewTranslation',3736);
-INSERT INTO `globalize_translations` VALUES (1860,'',NULL,1,'','ഒക്ൈട','Oct [abbreviated month]','ViewTranslation',3736);
-INSERT INTO `globalize_translations` VALUES (1861,'',NULL,1,'','നവം','Nov [abbreviated month]','ViewTranslation',3736);
-INSERT INTO `globalize_translations` VALUES (1862,'',NULL,1,'','ഡിസം','Dec [abbreviated month]','ViewTranslation',3736);
-INSERT INTO `globalize_translations` VALUES (1863,'',NULL,1,'','Ням','Sunday [weekday]','ViewTranslation',4093);
-INSERT INTO `globalize_translations` VALUES (1864,'',NULL,1,'','Даваа','Monday [weekday]','ViewTranslation',4093);
-INSERT INTO `globalize_translations` VALUES (1865,'',NULL,1,'','Мягмар','Tuesday [weekday]','ViewTranslation',4093);
-INSERT INTO `globalize_translations` VALUES (1866,'',NULL,1,'','Лхагва','Wednesday [weekday]','ViewTranslation',4093);
-INSERT INTO `globalize_translations` VALUES (1867,'',NULL,1,'','Пүрэв','Thursday [weekday]','ViewTranslation',4093);
-INSERT INTO `globalize_translations` VALUES (1868,'',NULL,1,'','Баасан','Friday [weekday]','ViewTranslation',4093);
-INSERT INTO `globalize_translations` VALUES (1869,'',NULL,1,'','Бямба','Saturday [weekday]','ViewTranslation',4093);
-INSERT INTO `globalize_translations` VALUES (1870,'',NULL,1,'','Ня','Sun [abbreviated weekday]','ViewTranslation',4093);
-INSERT INTO `globalize_translations` VALUES (1871,'',NULL,1,'','Да','Mon [abbreviated weekday]','ViewTranslation',4093);
-INSERT INTO `globalize_translations` VALUES (1872,'',NULL,1,'','Мя','Tue [abbreviated weekday]','ViewTranslation',4093);
-INSERT INTO `globalize_translations` VALUES (1873,'',NULL,1,'','Лх','Wed [abbreviated weekday]','ViewTranslation',4093);
-INSERT INTO `globalize_translations` VALUES (1874,'',NULL,1,'','Пү','Thu [abbreviated weekday]','ViewTranslation',4093);
-INSERT INTO `globalize_translations` VALUES (1875,'',NULL,1,'','Ба','Fri [abbreviated weekday]','ViewTranslation',4093);
-INSERT INTO `globalize_translations` VALUES (1876,'',NULL,1,'','Бя','Sat [abbreviated weekday]','ViewTranslation',4093);
-INSERT INTO `globalize_translations` VALUES (1877,'',NULL,1,'','Нэгдүгээр сар','January [month]','ViewTranslation',4093);
-INSERT INTO `globalize_translations` VALUES (1878,'',NULL,1,'','Хоёрдугаар сар','February [month]','ViewTranslation',4093);
-INSERT INTO `globalize_translations` VALUES (1879,'',NULL,1,'','Гуравдугаар сар','March [month]','ViewTranslation',4093);
-INSERT INTO `globalize_translations` VALUES (1880,'',NULL,1,'','Дөрөвдүгээр сар','April [month]','ViewTranslation',4093);
-INSERT INTO `globalize_translations` VALUES (1881,'',NULL,1,'','Тавдугаар сар','May [month]','ViewTranslation',4093);
-INSERT INTO `globalize_translations` VALUES (1882,'',NULL,1,'','Зургаадугар сар','June [month]','ViewTranslation',4093);
-INSERT INTO `globalize_translations` VALUES (1883,'',NULL,1,'','Долоодугаар сар','July [month]','ViewTranslation',4093);
-INSERT INTO `globalize_translations` VALUES (1884,'',NULL,1,'','Наймдугаар сар','August [month]','ViewTranslation',4093);
-INSERT INTO `globalize_translations` VALUES (1885,'',NULL,1,'','Есдүгээр сар','September [month]','ViewTranslation',4093);
-INSERT INTO `globalize_translations` VALUES (1886,'',NULL,1,'','Аравдугаар сар','October [month]','ViewTranslation',4093);
-INSERT INTO `globalize_translations` VALUES (1887,'',NULL,1,'','Арваннэгдүгээр сар','November [month]','ViewTranslation',4093);
-INSERT INTO `globalize_translations` VALUES (1888,'',NULL,1,'','Арванхоёрдгаар сар','December [month]','ViewTranslation',4093);
-INSERT INTO `globalize_translations` VALUES (1889,'',NULL,1,'','1-р','Jan [abbreviated month]','ViewTranslation',4093);
-INSERT INTO `globalize_translations` VALUES (1890,'',NULL,1,'','2-р','Feb [abbreviated month]','ViewTranslation',4093);
-INSERT INTO `globalize_translations` VALUES (1891,'',NULL,1,'','3-р','Mar [abbreviated month]','ViewTranslation',4093);
-INSERT INTO `globalize_translations` VALUES (1892,'',NULL,1,'','4-р','Apr [abbreviated month]','ViewTranslation',4093);
-INSERT INTO `globalize_translations` VALUES (1893,'',NULL,1,'','5-р','May [abbreviated month]','ViewTranslation',4093);
-INSERT INTO `globalize_translations` VALUES (1894,'',NULL,1,'','6-р','Jun [abbreviated month]','ViewTranslation',4093);
-INSERT INTO `globalize_translations` VALUES (1895,'',NULL,1,'','7-р','Jul [abbreviated month]','ViewTranslation',4093);
-INSERT INTO `globalize_translations` VALUES (1896,'',NULL,1,'','8-р','Aug [abbreviated month]','ViewTranslation',4093);
-INSERT INTO `globalize_translations` VALUES (1897,'',NULL,1,'','9-р','Sep [abbreviated month]','ViewTranslation',4093);
-INSERT INTO `globalize_translations` VALUES (1898,'',NULL,1,'','10-р','Oct [abbreviated month]','ViewTranslation',4093);
-INSERT INTO `globalize_translations` VALUES (1899,'',NULL,1,'','11-р','Nov [abbreviated month]','ViewTranslation',4093);
-INSERT INTO `globalize_translations` VALUES (1900,'',NULL,1,'','12-р','Dec [abbreviated month]','ViewTranslation',4093);
-INSERT INTO `globalize_translations` VALUES (1901,'',NULL,1,'','रविवार','Sunday [weekday]','ViewTranslation',3740);
-INSERT INTO `globalize_translations` VALUES (1902,'',NULL,1,'','सोमवार','Monday [weekday]','ViewTranslation',3740);
-INSERT INTO `globalize_translations` VALUES (1903,'',NULL,1,'','मंगळवार','Tuesday [weekday]','ViewTranslation',3740);
-INSERT INTO `globalize_translations` VALUES (1904,'',NULL,1,'','मंगळवार','Wednesday [weekday]','ViewTranslation',3740);
-INSERT INTO `globalize_translations` VALUES (1905,'',NULL,1,'','गुरुवार','Thursday [weekday]','ViewTranslation',3740);
-INSERT INTO `globalize_translations` VALUES (1906,'',NULL,1,'','शुक्रवार','Friday [weekday]','ViewTranslation',3740);
-INSERT INTO `globalize_translations` VALUES (1907,'',NULL,1,'','शनिवार','Saturday [weekday]','ViewTranslation',3740);
-INSERT INTO `globalize_translations` VALUES (1908,'',NULL,1,'','रवि','Sun [abbreviated weekday]','ViewTranslation',3740);
-INSERT INTO `globalize_translations` VALUES (1909,'',NULL,1,'','सोम','Mon [abbreviated weekday]','ViewTranslation',3740);
-INSERT INTO `globalize_translations` VALUES (1910,'',NULL,1,'','मंगळ','Tue [abbreviated weekday]','ViewTranslation',3740);
-INSERT INTO `globalize_translations` VALUES (1911,'',NULL,1,'','बुध','Wed [abbreviated weekday]','ViewTranslation',3740);
-INSERT INTO `globalize_translations` VALUES (1912,'',NULL,1,'','गुरु','Thu [abbreviated weekday]','ViewTranslation',3740);
-INSERT INTO `globalize_translations` VALUES (1913,'',NULL,1,'','शुक्र','Fri [abbreviated weekday]','ViewTranslation',3740);
-INSERT INTO `globalize_translations` VALUES (1914,'',NULL,1,'','शनि','Sat [abbreviated weekday]','ViewTranslation',3740);
-INSERT INTO `globalize_translations` VALUES (1915,'',NULL,1,'','जानेवारी','January [month]','ViewTranslation',3740);
-INSERT INTO `globalize_translations` VALUES (1916,'',NULL,1,'','फेबृवारी','February [month]','ViewTranslation',3740);
-INSERT INTO `globalize_translations` VALUES (1917,'',NULL,1,'','मार्च','March [month]','ViewTranslation',3740);
-INSERT INTO `globalize_translations` VALUES (1918,'',NULL,1,'','एप्रिल','April [month]','ViewTranslation',3740);
-INSERT INTO `globalize_translations` VALUES (1919,'',NULL,1,'','मे','May [month]','ViewTranslation',3740);
-INSERT INTO `globalize_translations` VALUES (1920,'',NULL,1,'','जून','June [month]','ViewTranslation',3740);
-INSERT INTO `globalize_translations` VALUES (1921,'',NULL,1,'','जुलै','July [month]','ViewTranslation',3740);
-INSERT INTO `globalize_translations` VALUES (1922,'',NULL,1,'','ओगस्ट','August [month]','ViewTranslation',3740);
-INSERT INTO `globalize_translations` VALUES (1923,'',NULL,1,'','सेप्टेंबर','September [month]','ViewTranslation',3740);
-INSERT INTO `globalize_translations` VALUES (1924,'',NULL,1,'','ओक्टोबर','October [month]','ViewTranslation',3740);
-INSERT INTO `globalize_translations` VALUES (1925,'',NULL,1,'','नोव्हेंबर','November [month]','ViewTranslation',3740);
-INSERT INTO `globalize_translations` VALUES (1926,'',NULL,1,'','डिसेंबर','December [month]','ViewTranslation',3740);
-INSERT INTO `globalize_translations` VALUES (1927,'',NULL,1,'','जानेवारी','Jan [abbreviated month]','ViewTranslation',3740);
-INSERT INTO `globalize_translations` VALUES (1928,'',NULL,1,'','फेबृवारी','Feb [abbreviated month]','ViewTranslation',3740);
-INSERT INTO `globalize_translations` VALUES (1929,'',NULL,1,'','मार्च','Mar [abbreviated month]','ViewTranslation',3740);
-INSERT INTO `globalize_translations` VALUES (1930,'',NULL,1,'','एप्रिल','Apr [abbreviated month]','ViewTranslation',3740);
-INSERT INTO `globalize_translations` VALUES (1931,'',NULL,1,'','मे','May [abbreviated month]','ViewTranslation',3740);
-INSERT INTO `globalize_translations` VALUES (1932,'',NULL,1,'','जून','Jun [abbreviated month]','ViewTranslation',3740);
-INSERT INTO `globalize_translations` VALUES (1933,'',NULL,1,'','जुलै','Jul [abbreviated month]','ViewTranslation',3740);
-INSERT INTO `globalize_translations` VALUES (1934,'',NULL,1,'','ओगस्ट','Aug [abbreviated month]','ViewTranslation',3740);
-INSERT INTO `globalize_translations` VALUES (1935,'',NULL,1,'','सेप्टेंबर','Sep [abbreviated month]','ViewTranslation',3740);
-INSERT INTO `globalize_translations` VALUES (1936,'',NULL,1,'','ओक्टोबर','Oct [abbreviated month]','ViewTranslation',3740);
-INSERT INTO `globalize_translations` VALUES (1937,'',NULL,1,'','नोव्हेंबर','Nov [abbreviated month]','ViewTranslation',3740);
-INSERT INTO `globalize_translations` VALUES (1938,'',NULL,1,'','डिसेंबर','Dec [abbreviated month]','ViewTranslation',3740);
-INSERT INTO `globalize_translations` VALUES (1939,'',NULL,1,'','Ahad','Sunday [weekday]','ViewTranslation',4184);
-INSERT INTO `globalize_translations` VALUES (1940,'',NULL,1,'','Isnin','Monday [weekday]','ViewTranslation',4184);
-INSERT INTO `globalize_translations` VALUES (1941,'',NULL,1,'','Selasa','Tuesday [weekday]','ViewTranslation',4184);
-INSERT INTO `globalize_translations` VALUES (1942,'',NULL,1,'','Rabu','Wednesday [weekday]','ViewTranslation',4184);
-INSERT INTO `globalize_translations` VALUES (1943,'',NULL,1,'','Khamis','Thursday [weekday]','ViewTranslation',4184);
-INSERT INTO `globalize_translations` VALUES (1944,'',NULL,1,'','Jumaat','Friday [weekday]','ViewTranslation',4184);
-INSERT INTO `globalize_translations` VALUES (1945,'',NULL,1,'','Sabtu','Saturday [weekday]','ViewTranslation',4184);
-INSERT INTO `globalize_translations` VALUES (1946,'',NULL,1,'','Ahd','Sun [abbreviated weekday]','ViewTranslation',4184);
-INSERT INTO `globalize_translations` VALUES (1947,'',NULL,1,'','Isn','Mon [abbreviated weekday]','ViewTranslation',4184);
-INSERT INTO `globalize_translations` VALUES (1948,'',NULL,1,'','Sel','Tue [abbreviated weekday]','ViewTranslation',4184);
-INSERT INTO `globalize_translations` VALUES (1949,'',NULL,1,'','Rab','Wed [abbreviated weekday]','ViewTranslation',4184);
-INSERT INTO `globalize_translations` VALUES (1950,'',NULL,1,'','Kha','Thu [abbreviated weekday]','ViewTranslation',4184);
-INSERT INTO `globalize_translations` VALUES (1951,'',NULL,1,'','Jum','Fri [abbreviated weekday]','ViewTranslation',4184);
-INSERT INTO `globalize_translations` VALUES (1952,'',NULL,1,'','Sab','Sat [abbreviated weekday]','ViewTranslation',4184);
-INSERT INTO `globalize_translations` VALUES (1953,'',NULL,1,'','Januari','January [month]','ViewTranslation',4184);
-INSERT INTO `globalize_translations` VALUES (1954,'',NULL,1,'','Februari','February [month]','ViewTranslation',4184);
-INSERT INTO `globalize_translations` VALUES (1955,'',NULL,1,'','Mac','March [month]','ViewTranslation',4184);
-INSERT INTO `globalize_translations` VALUES (1956,'',NULL,1,'','April','April [month]','ViewTranslation',4184);
-INSERT INTO `globalize_translations` VALUES (1957,'',NULL,1,'','Mei','May [month]','ViewTranslation',4184);
-INSERT INTO `globalize_translations` VALUES (1958,'',NULL,1,'','Jun','June [month]','ViewTranslation',4184);
-INSERT INTO `globalize_translations` VALUES (1959,'',NULL,1,'','Julai','July [month]','ViewTranslation',4184);
-INSERT INTO `globalize_translations` VALUES (1960,'',NULL,1,'','Ogos','August [month]','ViewTranslation',4184);
-INSERT INTO `globalize_translations` VALUES (1961,'',NULL,1,'','September','September [month]','ViewTranslation',4184);
-INSERT INTO `globalize_translations` VALUES (1962,'',NULL,1,'','Oktober','October [month]','ViewTranslation',4184);
-INSERT INTO `globalize_translations` VALUES (1963,'',NULL,1,'','November','November [month]','ViewTranslation',4184);
-INSERT INTO `globalize_translations` VALUES (1964,'',NULL,1,'','Disember','December [month]','ViewTranslation',4184);
-INSERT INTO `globalize_translations` VALUES (1965,'',NULL,1,'','Jan','Jan [abbreviated month]','ViewTranslation',4184);
-INSERT INTO `globalize_translations` VALUES (1966,'',NULL,1,'','Feb','Feb [abbreviated month]','ViewTranslation',4184);
-INSERT INTO `globalize_translations` VALUES (1967,'',NULL,1,'','Mac','Mar [abbreviated month]','ViewTranslation',4184);
-INSERT INTO `globalize_translations` VALUES (1968,'',NULL,1,'','Apr','Apr [abbreviated month]','ViewTranslation',4184);
-INSERT INTO `globalize_translations` VALUES (1969,'',NULL,1,'','Mei','May [abbreviated month]','ViewTranslation',4184);
-INSERT INTO `globalize_translations` VALUES (1970,'',NULL,1,'','Jun','Jun [abbreviated month]','ViewTranslation',4184);
-INSERT INTO `globalize_translations` VALUES (1971,'',NULL,1,'','Jul','Jul [abbreviated month]','ViewTranslation',4184);
-INSERT INTO `globalize_translations` VALUES (1972,'',NULL,1,'','Ogos','Aug [abbreviated month]','ViewTranslation',4184);
-INSERT INTO `globalize_translations` VALUES (1973,'',NULL,1,'','Sep','Sep [abbreviated month]','ViewTranslation',4184);
-INSERT INTO `globalize_translations` VALUES (1974,'',NULL,1,'','Okt','Oct [abbreviated month]','ViewTranslation',4184);
-INSERT INTO `globalize_translations` VALUES (1975,'',NULL,1,'','Nov','Nov [abbreviated month]','ViewTranslation',4184);
-INSERT INTO `globalize_translations` VALUES (1976,'',NULL,1,'','Dis','Dec [abbreviated month]','ViewTranslation',4184);
-INSERT INTO `globalize_translations` VALUES (1977,'',NULL,1,'','Il-ħadd','Sunday [weekday]','ViewTranslation',4022);
-INSERT INTO `globalize_translations` VALUES (1978,'',NULL,1,'','It-tnejn','Monday [weekday]','ViewTranslation',4022);
-INSERT INTO `globalize_translations` VALUES (1979,'',NULL,1,'','It-tlieta','Tuesday [weekday]','ViewTranslation',4022);
-INSERT INTO `globalize_translations` VALUES (1980,'',NULL,1,'','L-erbgħa','Wednesday [weekday]','ViewTranslation',4022);
-INSERT INTO `globalize_translations` VALUES (1981,'',NULL,1,'','Il-ħamis','Thursday [weekday]','ViewTranslation',4022);
-INSERT INTO `globalize_translations` VALUES (1982,'',NULL,1,'','Il-ġimgħa','Friday [weekday]','ViewTranslation',4022);
-INSERT INTO `globalize_translations` VALUES (1983,'',NULL,1,'','Is-sibt','Saturday [weekday]','ViewTranslation',4022);
-INSERT INTO `globalize_translations` VALUES (1984,'',NULL,1,'','Ħad','Sun [abbreviated weekday]','ViewTranslation',4022);
-INSERT INTO `globalize_translations` VALUES (1985,'',NULL,1,'','Tne','Mon [abbreviated weekday]','ViewTranslation',4022);
-INSERT INTO `globalize_translations` VALUES (1986,'',NULL,1,'','Tli','Tue [abbreviated weekday]','ViewTranslation',4022);
-INSERT INTO `globalize_translations` VALUES (1987,'',NULL,1,'','Erb','Wed [abbreviated weekday]','ViewTranslation',4022);
-INSERT INTO `globalize_translations` VALUES (1988,'',NULL,1,'','Ħam','Thu [abbreviated weekday]','ViewTranslation',4022);
-INSERT INTO `globalize_translations` VALUES (1989,'',NULL,1,'','Ġim','Fri [abbreviated weekday]','ViewTranslation',4022);
-INSERT INTO `globalize_translations` VALUES (1990,'',NULL,1,'','Sib','Sat [abbreviated weekday]','ViewTranslation',4022);
-INSERT INTO `globalize_translations` VALUES (1991,'',NULL,1,'','Jannar','January [month]','ViewTranslation',4022);
-INSERT INTO `globalize_translations` VALUES (1992,'',NULL,1,'','Frar','February [month]','ViewTranslation',4022);
-INSERT INTO `globalize_translations` VALUES (1993,'',NULL,1,'','Marzu','March [month]','ViewTranslation',4022);
-INSERT INTO `globalize_translations` VALUES (1994,'',NULL,1,'','April','April [month]','ViewTranslation',4022);
-INSERT INTO `globalize_translations` VALUES (1995,'',NULL,1,'','Mejju','May [month]','ViewTranslation',4022);
-INSERT INTO `globalize_translations` VALUES (1996,'',NULL,1,'','Ġunju','June [month]','ViewTranslation',4022);
-INSERT INTO `globalize_translations` VALUES (1997,'',NULL,1,'','Lulju','July [month]','ViewTranslation',4022);
-INSERT INTO `globalize_translations` VALUES (1998,'',NULL,1,'','Awissu','August [month]','ViewTranslation',4022);
-INSERT INTO `globalize_translations` VALUES (1999,'',NULL,1,'','Settembru','September [month]','ViewTranslation',4022);
-INSERT INTO `globalize_translations` VALUES (2000,'',NULL,1,'','Ottubru','October [month]','ViewTranslation',4022);
-INSERT INTO `globalize_translations` VALUES (2001,'',NULL,1,'','Novembru','November [month]','ViewTranslation',4022);
-INSERT INTO `globalize_translations` VALUES (2002,'',NULL,1,'','Diċembru ','December [month]','ViewTranslation',4022);
-INSERT INTO `globalize_translations` VALUES (2003,'',NULL,1,'','Jan','Jan [abbreviated month]','ViewTranslation',4022);
-INSERT INTO `globalize_translations` VALUES (2004,'',NULL,1,'','Fra','Feb [abbreviated month]','ViewTranslation',4022);
-INSERT INTO `globalize_translations` VALUES (2005,'',NULL,1,'','Mar','Mar [abbreviated month]','ViewTranslation',4022);
-INSERT INTO `globalize_translations` VALUES (2006,'',NULL,1,'','Apr','Apr [abbreviated month]','ViewTranslation',4022);
-INSERT INTO `globalize_translations` VALUES (2007,'',NULL,1,'','Mej','May [abbreviated month]','ViewTranslation',4022);
-INSERT INTO `globalize_translations` VALUES (2008,'',NULL,1,'','Ġun','Jun [abbreviated month]','ViewTranslation',4022);
-INSERT INTO `globalize_translations` VALUES (2009,'',NULL,1,'','Lul','Jul [abbreviated month]','ViewTranslation',4022);
-INSERT INTO `globalize_translations` VALUES (2010,'',NULL,1,'','Awi','Aug [abbreviated month]','ViewTranslation',4022);
-INSERT INTO `globalize_translations` VALUES (2011,'',NULL,1,'','Set','Sep [abbreviated month]','ViewTranslation',4022);
-INSERT INTO `globalize_translations` VALUES (2012,'',NULL,1,'','Ott','Oct [abbreviated month]','ViewTranslation',4022);
-INSERT INTO `globalize_translations` VALUES (2013,'',NULL,1,'','Nov','Nov [abbreviated month]','ViewTranslation',4022);
-INSERT INTO `globalize_translations` VALUES (2014,'',NULL,1,'','Diċ','Dec [abbreviated month]','ViewTranslation',4022);
-INSERT INTO `globalize_translations` VALUES (2015,'',NULL,1,'','Søndag','Sunday [weekday]','ViewTranslation',4695);
-INSERT INTO `globalize_translations` VALUES (2016,'',NULL,1,'','Mandag','Monday [weekday]','ViewTranslation',4695);
-INSERT INTO `globalize_translations` VALUES (2017,'',NULL,1,'','Tirsdag','Tuesday [weekday]','ViewTranslation',4695);
-INSERT INTO `globalize_translations` VALUES (2018,'',NULL,1,'','Onsdag','Wednesday [weekday]','ViewTranslation',4695);
-INSERT INTO `globalize_translations` VALUES (2019,'',NULL,1,'','Torsdag','Thursday [weekday]','ViewTranslation',4695);
-INSERT INTO `globalize_translations` VALUES (2020,'',NULL,1,'','Fredag','Friday [weekday]','ViewTranslation',4695);
-INSERT INTO `globalize_translations` VALUES (2021,'',NULL,1,'','Lørdag','Saturday [weekday]','ViewTranslation',4695);
-INSERT INTO `globalize_translations` VALUES (2022,'',NULL,1,'','Søn','Sun [abbreviated weekday]','ViewTranslation',4695);
-INSERT INTO `globalize_translations` VALUES (2023,'',NULL,1,'','Man','Mon [abbreviated weekday]','ViewTranslation',4695);
-INSERT INTO `globalize_translations` VALUES (2024,'',NULL,1,'','Tir','Tue [abbreviated weekday]','ViewTranslation',4695);
-INSERT INTO `globalize_translations` VALUES (2025,'',NULL,1,'','Ons','Wed [abbreviated weekday]','ViewTranslation',4695);
-INSERT INTO `globalize_translations` VALUES (2026,'',NULL,1,'','Tor','Thu [abbreviated weekday]','ViewTranslation',4695);
-INSERT INTO `globalize_translations` VALUES (2027,'',NULL,1,'','Fre','Fri [abbreviated weekday]','ViewTranslation',4695);
-INSERT INTO `globalize_translations` VALUES (2028,'',NULL,1,'','Lør','Sat [abbreviated weekday]','ViewTranslation',4695);
-INSERT INTO `globalize_translations` VALUES (2029,'',NULL,1,'','Januar','January [month]','ViewTranslation',4695);
-INSERT INTO `globalize_translations` VALUES (2030,'',NULL,1,'','Februar','February [month]','ViewTranslation',4695);
-INSERT INTO `globalize_translations` VALUES (2031,'',NULL,1,'','Mars','March [month]','ViewTranslation',4695);
-INSERT INTO `globalize_translations` VALUES (2032,'',NULL,1,'','April','April [month]','ViewTranslation',4695);
-INSERT INTO `globalize_translations` VALUES (2033,'',NULL,1,'','Mai','May [month]','ViewTranslation',4695);
-INSERT INTO `globalize_translations` VALUES (2034,'',NULL,1,'','Juni','June [month]','ViewTranslation',4695);
-INSERT INTO `globalize_translations` VALUES (2035,'',NULL,1,'','Juli','July [month]','ViewTranslation',4695);
-INSERT INTO `globalize_translations` VALUES (2036,'',NULL,1,'','August','August [month]','ViewTranslation',4695);
-INSERT INTO `globalize_translations` VALUES (2037,'',NULL,1,'','September','September [month]','ViewTranslation',4695);
-INSERT INTO `globalize_translations` VALUES (2038,'',NULL,1,'','Oktober','October [month]','ViewTranslation',4695);
-INSERT INTO `globalize_translations` VALUES (2039,'',NULL,1,'','November','November [month]','ViewTranslation',4695);
-INSERT INTO `globalize_translations` VALUES (2040,'',NULL,1,'','Desember','December [month]','ViewTranslation',4695);
-INSERT INTO `globalize_translations` VALUES (2041,'',NULL,1,'','Jan','Jan [abbreviated month]','ViewTranslation',4695);
-INSERT INTO `globalize_translations` VALUES (2042,'',NULL,1,'','Feb','Feb [abbreviated month]','ViewTranslation',4695);
-INSERT INTO `globalize_translations` VALUES (2043,'',NULL,1,'','Mar','Mar [abbreviated month]','ViewTranslation',4695);
-INSERT INTO `globalize_translations` VALUES (2044,'',NULL,1,'','Apr','Apr [abbreviated month]','ViewTranslation',4695);
-INSERT INTO `globalize_translations` VALUES (2045,'',NULL,1,'','Mai','May [abbreviated month]','ViewTranslation',4695);
-INSERT INTO `globalize_translations` VALUES (2046,'',NULL,1,'','Jun','Jun [abbreviated month]','ViewTranslation',4695);
-INSERT INTO `globalize_translations` VALUES (2047,'',NULL,1,'','Jul','Jul [abbreviated month]','ViewTranslation',4695);
-INSERT INTO `globalize_translations` VALUES (2048,'',NULL,1,'','Aug','Aug [abbreviated month]','ViewTranslation',4695);
-INSERT INTO `globalize_translations` VALUES (2049,'',NULL,1,'','Sep','Sep [abbreviated month]','ViewTranslation',4695);
-INSERT INTO `globalize_translations` VALUES (2050,'',NULL,1,'','Okt','Oct [abbreviated month]','ViewTranslation',4695);
-INSERT INTO `globalize_translations` VALUES (2051,'',NULL,1,'','Nov','Nov [abbreviated month]','ViewTranslation',4695);
-INSERT INTO `globalize_translations` VALUES (2052,'',NULL,1,'','Des','Dec [abbreviated month]','ViewTranslation',4695);
-INSERT INTO `globalize_translations` VALUES (2053,'',NULL,1,'','आइतबार ','Sunday [weekday]','ViewTranslation',4499);
-INSERT INTO `globalize_translations` VALUES (2054,'',NULL,1,'','सोमबार ','Monday [weekday]','ViewTranslation',4499);
-INSERT INTO `globalize_translations` VALUES (2055,'',NULL,1,'','मंगलबार ','Tuesday [weekday]','ViewTranslation',4499);
-INSERT INTO `globalize_translations` VALUES (2056,'',NULL,1,'','बुधबार ','Wednesday [weekday]','ViewTranslation',4499);
-INSERT INTO `globalize_translations` VALUES (2057,'',NULL,1,'','बिहिबार ','Thursday [weekday]','ViewTranslation',4499);
-INSERT INTO `globalize_translations` VALUES (2058,'',NULL,1,'','शुक्रबार ','Friday [weekday]','ViewTranslation',4499);
-INSERT INTO `globalize_translations` VALUES (2059,'',NULL,1,'','शनिबार ','Saturday [weekday]','ViewTranslation',4499);
-INSERT INTO `globalize_translations` VALUES (2060,'',NULL,1,'','आइत ','Sun [abbreviated weekday]','ViewTranslation',4499);
-INSERT INTO `globalize_translations` VALUES (2061,'',NULL,1,'','सोम ','Mon [abbreviated weekday]','ViewTranslation',4499);
-INSERT INTO `globalize_translations` VALUES (2062,'',NULL,1,'','मंगल ','Tue [abbreviated weekday]','ViewTranslation',4499);
-INSERT INTO `globalize_translations` VALUES (2063,'',NULL,1,'','बुध ','Wed [abbreviated weekday]','ViewTranslation',4499);
-INSERT INTO `globalize_translations` VALUES (2064,'',NULL,1,'','बिहि ','Thu [abbreviated weekday]','ViewTranslation',4499);
-INSERT INTO `globalize_translations` VALUES (2065,'',NULL,1,'','शुक्र ','Fri [abbreviated weekday]','ViewTranslation',4499);
-INSERT INTO `globalize_translations` VALUES (2066,'',NULL,1,'','शनि ','Sat [abbreviated weekday]','ViewTranslation',4499);
-INSERT INTO `globalize_translations` VALUES (2067,'',NULL,1,'','जनवरी','January [month]','ViewTranslation',4499);
-INSERT INTO `globalize_translations` VALUES (2068,'',NULL,1,'','फ़रवरी','February [month]','ViewTranslation',4499);
-INSERT INTO `globalize_translations` VALUES (2069,'',NULL,1,'','मार्च','March [month]','ViewTranslation',4499);
-INSERT INTO `globalize_translations` VALUES (2070,'',NULL,1,'','अप्रेल','April [month]','ViewTranslation',4499);
-INSERT INTO `globalize_translations` VALUES (2071,'',NULL,1,'','मई','May [month]','ViewTranslation',4499);
-INSERT INTO `globalize_translations` VALUES (2072,'',NULL,1,'','जून','June [month]','ViewTranslation',4499);
-INSERT INTO `globalize_translations` VALUES (2073,'',NULL,1,'','जुलाई','July [month]','ViewTranslation',4499);
-INSERT INTO `globalize_translations` VALUES (2074,'',NULL,1,'','अगस्त','August [month]','ViewTranslation',4499);
-INSERT INTO `globalize_translations` VALUES (2075,'',NULL,1,'','सितम्बर','September [month]','ViewTranslation',4499);
-INSERT INTO `globalize_translations` VALUES (2076,'',NULL,1,'','अक्टूबर','October [month]','ViewTranslation',4499);
-INSERT INTO `globalize_translations` VALUES (2077,'',NULL,1,'','नवम्बर','November [month]','ViewTranslation',4499);
-INSERT INTO `globalize_translations` VALUES (2078,'',NULL,1,'','दिसम्बर','December [month]','ViewTranslation',4499);
-INSERT INTO `globalize_translations` VALUES (2079,'',NULL,1,'','जनवरी','Jan [abbreviated month]','ViewTranslation',4499);
-INSERT INTO `globalize_translations` VALUES (2080,'',NULL,1,'','फ़रवरी','Feb [abbreviated month]','ViewTranslation',4499);
-INSERT INTO `globalize_translations` VALUES (2081,'',NULL,1,'','मार्च','Mar [abbreviated month]','ViewTranslation',4499);
-INSERT INTO `globalize_translations` VALUES (2082,'',NULL,1,'','अप्रेल','Apr [abbreviated month]','ViewTranslation',4499);
-INSERT INTO `globalize_translations` VALUES (2083,'',NULL,1,'','मई','May [abbreviated month]','ViewTranslation',4499);
-INSERT INTO `globalize_translations` VALUES (2084,'',NULL,1,'','जून','Jun [abbreviated month]','ViewTranslation',4499);
-INSERT INTO `globalize_translations` VALUES (2085,'',NULL,1,'','जुलाई','Jul [abbreviated month]','ViewTranslation',4499);
-INSERT INTO `globalize_translations` VALUES (2086,'',NULL,1,'','अगस्त','Aug [abbreviated month]','ViewTranslation',4499);
-INSERT INTO `globalize_translations` VALUES (2087,'',NULL,1,'','सितम्बर','Sep [abbreviated month]','ViewTranslation',4499);
-INSERT INTO `globalize_translations` VALUES (2088,'',NULL,1,'','अक्टूबर','Oct [abbreviated month]','ViewTranslation',4499);
-INSERT INTO `globalize_translations` VALUES (2089,'',NULL,1,'','नवम्बर','Nov [abbreviated month]','ViewTranslation',4499);
-INSERT INTO `globalize_translations` VALUES (2090,'',NULL,1,'','दिसम्बर','Dec [abbreviated month]','ViewTranslation',4499);
-INSERT INTO `globalize_translations` VALUES (2091,'',NULL,1,'','zondag','Sunday [weekday]','ViewTranslation',4628);
-INSERT INTO `globalize_translations` VALUES (2092,'',NULL,1,'','maandag','Monday [weekday]','ViewTranslation',4628);
-INSERT INTO `globalize_translations` VALUES (2093,'',NULL,1,'','dinsdag','Tuesday [weekday]','ViewTranslation',4628);
-INSERT INTO `globalize_translations` VALUES (2094,'',NULL,1,'','woensdag','Wednesday [weekday]','ViewTranslation',4628);
-INSERT INTO `globalize_translations` VALUES (2095,'',NULL,1,'','donderdag','Thursday [weekday]','ViewTranslation',4628);
-INSERT INTO `globalize_translations` VALUES (2096,'',NULL,1,'','vrijdag','Friday [weekday]','ViewTranslation',4628);
-INSERT INTO `globalize_translations` VALUES (2097,'',NULL,1,'','zaterdag','Saturday [weekday]','ViewTranslation',4628);
-INSERT INTO `globalize_translations` VALUES (2098,'',NULL,1,'','zo','Sun [abbreviated weekday]','ViewTranslation',4628);
-INSERT INTO `globalize_translations` VALUES (2099,'',NULL,1,'','ma','Mon [abbreviated weekday]','ViewTranslation',4628);
-INSERT INTO `globalize_translations` VALUES (2100,'',NULL,1,'','di','Tue [abbreviated weekday]','ViewTranslation',4628);
-INSERT INTO `globalize_translations` VALUES (2101,'',NULL,1,'','wo','Wed [abbreviated weekday]','ViewTranslation',4628);
-INSERT INTO `globalize_translations` VALUES (2102,'',NULL,1,'','do','Thu [abbreviated weekday]','ViewTranslation',4628);
-INSERT INTO `globalize_translations` VALUES (2103,'',NULL,1,'','vr','Fri [abbreviated weekday]','ViewTranslation',4628);
-INSERT INTO `globalize_translations` VALUES (2104,'',NULL,1,'','za','Sat [abbreviated weekday]','ViewTranslation',4628);
-INSERT INTO `globalize_translations` VALUES (2105,'',NULL,1,'','januari','January [month]','ViewTranslation',4628);
-INSERT INTO `globalize_translations` VALUES (2106,'',NULL,1,'','februari','February [month]','ViewTranslation',4628);
-INSERT INTO `globalize_translations` VALUES (2107,'',NULL,1,'','maart','March [month]','ViewTranslation',4628);
-INSERT INTO `globalize_translations` VALUES (2108,'',NULL,1,'','april','April [month]','ViewTranslation',4628);
-INSERT INTO `globalize_translations` VALUES (2109,'',NULL,1,'','mei','May [month]','ViewTranslation',4628);
-INSERT INTO `globalize_translations` VALUES (2110,'',NULL,1,'','juni','June [month]','ViewTranslation',4628);
-INSERT INTO `globalize_translations` VALUES (2111,'',NULL,1,'','juli','July [month]','ViewTranslation',4628);
-INSERT INTO `globalize_translations` VALUES (2112,'',NULL,1,'','augustus','August [month]','ViewTranslation',4628);
-INSERT INTO `globalize_translations` VALUES (2113,'',NULL,1,'','september','September [month]','ViewTranslation',4628);
-INSERT INTO `globalize_translations` VALUES (2114,'',NULL,1,'','oktober','October [month]','ViewTranslation',4628);
-INSERT INTO `globalize_translations` VALUES (2115,'',NULL,1,'','november','November [month]','ViewTranslation',4628);
-INSERT INTO `globalize_translations` VALUES (2116,'',NULL,1,'','december','December [month]','ViewTranslation',4628);
-INSERT INTO `globalize_translations` VALUES (2117,'',NULL,1,'','jan','Jan [abbreviated month]','ViewTranslation',4628);
-INSERT INTO `globalize_translations` VALUES (2118,'',NULL,1,'','feb','Feb [abbreviated month]','ViewTranslation',4628);
-INSERT INTO `globalize_translations` VALUES (2119,'',NULL,1,'','mrt','Mar [abbreviated month]','ViewTranslation',4628);
-INSERT INTO `globalize_translations` VALUES (2120,'',NULL,1,'','apr','Apr [abbreviated month]','ViewTranslation',4628);
-INSERT INTO `globalize_translations` VALUES (2121,'',NULL,1,'','mei','May [abbreviated month]','ViewTranslation',4628);
-INSERT INTO `globalize_translations` VALUES (2122,'',NULL,1,'','jun','Jun [abbreviated month]','ViewTranslation',4628);
-INSERT INTO `globalize_translations` VALUES (2123,'',NULL,1,'','jul','Jul [abbreviated month]','ViewTranslation',4628);
-INSERT INTO `globalize_translations` VALUES (2124,'',NULL,1,'','aug','Aug [abbreviated month]','ViewTranslation',4628);
-INSERT INTO `globalize_translations` VALUES (2125,'',NULL,1,'','sep','Sep [abbreviated month]','ViewTranslation',4628);
-INSERT INTO `globalize_translations` VALUES (2126,'',NULL,1,'','okt','Oct [abbreviated month]','ViewTranslation',4628);
-INSERT INTO `globalize_translations` VALUES (2127,'',NULL,1,'','nov','Nov [abbreviated month]','ViewTranslation',4628);
-INSERT INTO `globalize_translations` VALUES (2128,'',NULL,1,'','dec','Dec [abbreviated month]','ViewTranslation',4628);
-INSERT INTO `globalize_translations` VALUES (2129,'',NULL,1,'','Sundag ','Sunday [weekday]','ViewTranslation',4682);
-INSERT INTO `globalize_translations` VALUES (2130,'',NULL,1,'','Måndag ','Monday [weekday]','ViewTranslation',4682);
-INSERT INTO `globalize_translations` VALUES (2131,'',NULL,1,'','Tysdag ','Tuesday [weekday]','ViewTranslation',4682);
-INSERT INTO `globalize_translations` VALUES (2132,'',NULL,1,'','Onsdag ','Wednesday [weekday]','ViewTranslation',4682);
-INSERT INTO `globalize_translations` VALUES (2133,'',NULL,1,'','Torsdag ','Thursday [weekday]','ViewTranslation',4682);
-INSERT INTO `globalize_translations` VALUES (2134,'',NULL,1,'','Fredag ','Friday [weekday]','ViewTranslation',4682);
-INSERT INTO `globalize_translations` VALUES (2135,'',NULL,1,'','Laurdag ','Saturday [weekday]','ViewTranslation',4682);
-INSERT INTO `globalize_translations` VALUES (2136,'',NULL,1,'','Su ','Sun [abbreviated weekday]','ViewTranslation',4682);
-INSERT INTO `globalize_translations` VALUES (2137,'',NULL,1,'','Må ','Mon [abbreviated weekday]','ViewTranslation',4682);
-INSERT INTO `globalize_translations` VALUES (2138,'',NULL,1,'','Ty ','Tue [abbreviated weekday]','ViewTranslation',4682);
-INSERT INTO `globalize_translations` VALUES (2139,'',NULL,1,'','On ','Wed [abbreviated weekday]','ViewTranslation',4682);
-INSERT INTO `globalize_translations` VALUES (2140,'',NULL,1,'','To ','Thu [abbreviated weekday]','ViewTranslation',4682);
-INSERT INTO `globalize_translations` VALUES (2141,'',NULL,1,'','Fr ','Fri [abbreviated weekday]','ViewTranslation',4682);
-INSERT INTO `globalize_translations` VALUES (2142,'',NULL,1,'','Lau ','Sat [abbreviated weekday]','ViewTranslation',4682);
-INSERT INTO `globalize_translations` VALUES (2143,'',NULL,1,'','Januar','January [month]','ViewTranslation',4682);
-INSERT INTO `globalize_translations` VALUES (2144,'',NULL,1,'','Februar','February [month]','ViewTranslation',4682);
-INSERT INTO `globalize_translations` VALUES (2145,'',NULL,1,'','Mars','March [month]','ViewTranslation',4682);
-INSERT INTO `globalize_translations` VALUES (2146,'',NULL,1,'','April','April [month]','ViewTranslation',4682);
-INSERT INTO `globalize_translations` VALUES (2147,'',NULL,1,'','Mai','May [month]','ViewTranslation',4682);
-INSERT INTO `globalize_translations` VALUES (2148,'',NULL,1,'','Juni','June [month]','ViewTranslation',4682);
-INSERT INTO `globalize_translations` VALUES (2149,'',NULL,1,'','Juli','July [month]','ViewTranslation',4682);
-INSERT INTO `globalize_translations` VALUES (2150,'',NULL,1,'','August','August [month]','ViewTranslation',4682);
-INSERT INTO `globalize_translations` VALUES (2151,'',NULL,1,'','September','September [month]','ViewTranslation',4682);
-INSERT INTO `globalize_translations` VALUES (2152,'',NULL,1,'','Oktober','October [month]','ViewTranslation',4682);
-INSERT INTO `globalize_translations` VALUES (2153,'',NULL,1,'','November','November [month]','ViewTranslation',4682);
-INSERT INTO `globalize_translations` VALUES (2154,'',NULL,1,'','Desember','December [month]','ViewTranslation',4682);
-INSERT INTO `globalize_translations` VALUES (2155,'',NULL,1,'','Jan','Jan [abbreviated month]','ViewTranslation',4682);
-INSERT INTO `globalize_translations` VALUES (2156,'',NULL,1,'','Feb','Feb [abbreviated month]','ViewTranslation',4682);
-INSERT INTO `globalize_translations` VALUES (2157,'',NULL,1,'','Mar','Mar [abbreviated month]','ViewTranslation',4682);
-INSERT INTO `globalize_translations` VALUES (2158,'',NULL,1,'','Apr','Apr [abbreviated month]','ViewTranslation',4682);
-INSERT INTO `globalize_translations` VALUES (2159,'',NULL,1,'','Mai','May [abbreviated month]','ViewTranslation',4682);
-INSERT INTO `globalize_translations` VALUES (2160,'',NULL,1,'','Jun','Jun [abbreviated month]','ViewTranslation',4682);
-INSERT INTO `globalize_translations` VALUES (2161,'',NULL,1,'','Jul','Jul [abbreviated month]','ViewTranslation',4682);
-INSERT INTO `globalize_translations` VALUES (2162,'',NULL,1,'','Aug','Aug [abbreviated month]','ViewTranslation',4682);
-INSERT INTO `globalize_translations` VALUES (2163,'',NULL,1,'','Sep','Sep [abbreviated month]','ViewTranslation',4682);
-INSERT INTO `globalize_translations` VALUES (2164,'',NULL,1,'','Okt','Oct [abbreviated month]','ViewTranslation',4682);
-INSERT INTO `globalize_translations` VALUES (2165,'',NULL,1,'','Nov','Nov [abbreviated month]','ViewTranslation',4682);
-INSERT INTO `globalize_translations` VALUES (2166,'',NULL,1,'','Des','Dec [abbreviated month]','ViewTranslation',4682);
-INSERT INTO `globalize_translations` VALUES (2167,'',NULL,1,'','Søndag','Sunday [weekday]','ViewTranslation',4709);
-INSERT INTO `globalize_translations` VALUES (2168,'',NULL,1,'','Mandag','Monday [weekday]','ViewTranslation',4709);
-INSERT INTO `globalize_translations` VALUES (2169,'',NULL,1,'','Tirsdag','Tuesday [weekday]','ViewTranslation',4709);
-INSERT INTO `globalize_translations` VALUES (2170,'',NULL,1,'','Onsdag','Wednesday [weekday]','ViewTranslation',4709);
-INSERT INTO `globalize_translations` VALUES (2171,'',NULL,1,'','Torsdag','Thursday [weekday]','ViewTranslation',4709);
-INSERT INTO `globalize_translations` VALUES (2172,'',NULL,1,'','Fredag','Friday [weekday]','ViewTranslation',4709);
-INSERT INTO `globalize_translations` VALUES (2173,'',NULL,1,'','Lørdag','Saturday [weekday]','ViewTranslation',4709);
-INSERT INTO `globalize_translations` VALUES (2174,'',NULL,1,'','Søn','Sun [abbreviated weekday]','ViewTranslation',4709);
-INSERT INTO `globalize_translations` VALUES (2175,'',NULL,1,'','Man','Mon [abbreviated weekday]','ViewTranslation',4709);
-INSERT INTO `globalize_translations` VALUES (2176,'',NULL,1,'','Tir','Tue [abbreviated weekday]','ViewTranslation',4709);
-INSERT INTO `globalize_translations` VALUES (2177,'',NULL,1,'','Ons','Wed [abbreviated weekday]','ViewTranslation',4709);
-INSERT INTO `globalize_translations` VALUES (2178,'',NULL,1,'','Tor','Thu [abbreviated weekday]','ViewTranslation',4709);
-INSERT INTO `globalize_translations` VALUES (2179,'',NULL,1,'','Fre','Fri [abbreviated weekday]','ViewTranslation',4709);
-INSERT INTO `globalize_translations` VALUES (2180,'',NULL,1,'','Lør','Sat [abbreviated weekday]','ViewTranslation',4709);
-INSERT INTO `globalize_translations` VALUES (2181,'',NULL,1,'','Januar','January [month]','ViewTranslation',4709);
-INSERT INTO `globalize_translations` VALUES (2182,'',NULL,1,'','Februar','February [month]','ViewTranslation',4709);
-INSERT INTO `globalize_translations` VALUES (2183,'',NULL,1,'','Mars','March [month]','ViewTranslation',4709);
-INSERT INTO `globalize_translations` VALUES (2184,'',NULL,1,'','April','April [month]','ViewTranslation',4709);
-INSERT INTO `globalize_translations` VALUES (2185,'',NULL,1,'','Mai','May [month]','ViewTranslation',4709);
-INSERT INTO `globalize_translations` VALUES (2186,'',NULL,1,'','Juni','June [month]','ViewTranslation',4709);
-INSERT INTO `globalize_translations` VALUES (2187,'',NULL,1,'','Juli','July [month]','ViewTranslation',4709);
-INSERT INTO `globalize_translations` VALUES (2188,'',NULL,1,'','August','August [month]','ViewTranslation',4709);
-INSERT INTO `globalize_translations` VALUES (2189,'',NULL,1,'','September','September [month]','ViewTranslation',4709);
-INSERT INTO `globalize_translations` VALUES (2190,'',NULL,1,'','Oktober','October [month]','ViewTranslation',4709);
-INSERT INTO `globalize_translations` VALUES (2191,'',NULL,1,'','November','November [month]','ViewTranslation',4709);
-INSERT INTO `globalize_translations` VALUES (2192,'',NULL,1,'','Desember','December [month]','ViewTranslation',4709);
-INSERT INTO `globalize_translations` VALUES (2193,'',NULL,1,'','Jan','Jan [abbreviated month]','ViewTranslation',4709);
-INSERT INTO `globalize_translations` VALUES (2194,'',NULL,1,'','Feb','Feb [abbreviated month]','ViewTranslation',4709);
-INSERT INTO `globalize_translations` VALUES (2195,'',NULL,1,'','Mar','Mar [abbreviated month]','ViewTranslation',4709);
-INSERT INTO `globalize_translations` VALUES (2196,'',NULL,1,'','Apr','Apr [abbreviated month]','ViewTranslation',4709);
-INSERT INTO `globalize_translations` VALUES (2197,'',NULL,1,'','Mai','May [abbreviated month]','ViewTranslation',4709);
-INSERT INTO `globalize_translations` VALUES (2198,'',NULL,1,'','Jun','Jun [abbreviated month]','ViewTranslation',4709);
-INSERT INTO `globalize_translations` VALUES (2199,'',NULL,1,'','Jul','Jul [abbreviated month]','ViewTranslation',4709);
-INSERT INTO `globalize_translations` VALUES (2200,'',NULL,1,'','Aug','Aug [abbreviated month]','ViewTranslation',4709);
-INSERT INTO `globalize_translations` VALUES (2201,'',NULL,1,'','Sep','Sep [abbreviated month]','ViewTranslation',4709);
-INSERT INTO `globalize_translations` VALUES (2202,'',NULL,1,'','Okt','Oct [abbreviated month]','ViewTranslation',4709);
-INSERT INTO `globalize_translations` VALUES (2203,'',NULL,1,'','Nov','Nov [abbreviated month]','ViewTranslation',4709);
-INSERT INTO `globalize_translations` VALUES (2204,'',NULL,1,'','Des','Dec [abbreviated month]','ViewTranslation',4709);
-INSERT INTO `globalize_translations` VALUES (2205,'',NULL,1,'','Dimenge','Sunday [weekday]','ViewTranslation',4867);
-INSERT INTO `globalize_translations` VALUES (2206,'',NULL,1,'','Diluns','Monday [weekday]','ViewTranslation',4867);
-INSERT INTO `globalize_translations` VALUES (2207,'',NULL,1,'','Dimars','Tuesday [weekday]','ViewTranslation',4867);
-INSERT INTO `globalize_translations` VALUES (2208,'',NULL,1,'','Dimecres','Wednesday [weekday]','ViewTranslation',4867);
-INSERT INTO `globalize_translations` VALUES (2209,'',NULL,1,'','Dijóus','Thursday [weekday]','ViewTranslation',4867);
-INSERT INTO `globalize_translations` VALUES (2210,'',NULL,1,'','Divendres','Friday [weekday]','ViewTranslation',4867);
-INSERT INTO `globalize_translations` VALUES (2211,'',NULL,1,'','Disabte','Saturday [weekday]','ViewTranslation',4867);
-INSERT INTO `globalize_translations` VALUES (2212,'',NULL,1,'','Dim','Sun [abbreviated weekday]','ViewTranslation',4867);
-INSERT INTO `globalize_translations` VALUES (2213,'',NULL,1,'','Lun','Mon [abbreviated weekday]','ViewTranslation',4867);
-INSERT INTO `globalize_translations` VALUES (2214,'',NULL,1,'','Mar','Tue [abbreviated weekday]','ViewTranslation',4867);
-INSERT INTO `globalize_translations` VALUES (2215,'',NULL,1,'','Mec','Wed [abbreviated weekday]','ViewTranslation',4867);
-INSERT INTO `globalize_translations` VALUES (2216,'',NULL,1,'','Jóu','Thu [abbreviated weekday]','ViewTranslation',4867);
-INSERT INTO `globalize_translations` VALUES (2217,'',NULL,1,'','Ven','Fri [abbreviated weekday]','ViewTranslation',4867);
-INSERT INTO `globalize_translations` VALUES (2218,'',NULL,1,'','Sab','Sat [abbreviated weekday]','ViewTranslation',4867);
-INSERT INTO `globalize_translations` VALUES (2219,'',NULL,1,'','Genièr','January [month]','ViewTranslation',4867);
-INSERT INTO `globalize_translations` VALUES (2220,'',NULL,1,'','Febrièr','February [month]','ViewTranslation',4867);
-INSERT INTO `globalize_translations` VALUES (2221,'',NULL,1,'','Març','March [month]','ViewTranslation',4867);
-INSERT INTO `globalize_translations` VALUES (2222,'',NULL,1,'','Abrial','April [month]','ViewTranslation',4867);
-INSERT INTO `globalize_translations` VALUES (2223,'',NULL,1,'','Mai','May [month]','ViewTranslation',4867);
-INSERT INTO `globalize_translations` VALUES (2224,'',NULL,1,'','Junh','June [month]','ViewTranslation',4867);
-INSERT INTO `globalize_translations` VALUES (2225,'',NULL,1,'','Julhet','July [month]','ViewTranslation',4867);
-INSERT INTO `globalize_translations` VALUES (2226,'',NULL,1,'','Agóst','August [month]','ViewTranslation',4867);
-INSERT INTO `globalize_translations` VALUES (2227,'',NULL,1,'','Setembre','September [month]','ViewTranslation',4867);
-INSERT INTO `globalize_translations` VALUES (2228,'',NULL,1,'','Octobre','October [month]','ViewTranslation',4867);
-INSERT INTO `globalize_translations` VALUES (2229,'',NULL,1,'','Novembre','November [month]','ViewTranslation',4867);
-INSERT INTO `globalize_translations` VALUES (2230,'',NULL,1,'','Decembre','December [month]','ViewTranslation',4867);
-INSERT INTO `globalize_translations` VALUES (2231,'',NULL,1,'','Gen','Jan [abbreviated month]','ViewTranslation',4867);
-INSERT INTO `globalize_translations` VALUES (2232,'',NULL,1,'','Feb','Feb [abbreviated month]','ViewTranslation',4867);
-INSERT INTO `globalize_translations` VALUES (2233,'',NULL,1,'','Mar','Mar [abbreviated month]','ViewTranslation',4867);
-INSERT INTO `globalize_translations` VALUES (2234,'',NULL,1,'','Abr','Apr [abbreviated month]','ViewTranslation',4867);
-INSERT INTO `globalize_translations` VALUES (2235,'',NULL,1,'','Mai','May [abbreviated month]','ViewTranslation',4867);
-INSERT INTO `globalize_translations` VALUES (2236,'',NULL,1,'','Jun','Jun [abbreviated month]','ViewTranslation',4867);
-INSERT INTO `globalize_translations` VALUES (2237,'',NULL,1,'','Jul','Jul [abbreviated month]','ViewTranslation',4867);
-INSERT INTO `globalize_translations` VALUES (2238,'',NULL,1,'','Agó','Aug [abbreviated month]','ViewTranslation',4867);
-INSERT INTO `globalize_translations` VALUES (2239,'',NULL,1,'','Set','Sep [abbreviated month]','ViewTranslation',4867);
-INSERT INTO `globalize_translations` VALUES (2240,'',NULL,1,'','Oct','Oct [abbreviated month]','ViewTranslation',4867);
-INSERT INTO `globalize_translations` VALUES (2241,'',NULL,1,'','Nov','Nov [abbreviated month]','ViewTranslation',4867);
-INSERT INTO `globalize_translations` VALUES (2242,'',NULL,1,'','Dec','Dec [abbreviated month]','ViewTranslation',4867);
-INSERT INTO `globalize_translations` VALUES (2243,'',NULL,1,'','Dilbata','Sunday [weekday]','ViewTranslation',4967);
-INSERT INTO `globalize_translations` VALUES (2244,'',NULL,1,'','Wiixata','Monday [weekday]','ViewTranslation',4967);
-INSERT INTO `globalize_translations` VALUES (2245,'',NULL,1,'','Qibxata','Tuesday [weekday]','ViewTranslation',4967);
-INSERT INTO `globalize_translations` VALUES (2246,'',NULL,1,'','Roobii','Wednesday [weekday]','ViewTranslation',4967);
-INSERT INTO `globalize_translations` VALUES (2247,'',NULL,1,'','Kamiisa','Thursday [weekday]','ViewTranslation',4967);
-INSERT INTO `globalize_translations` VALUES (2248,'',NULL,1,'','Jimaata','Friday [weekday]','ViewTranslation',4967);
-INSERT INTO `globalize_translations` VALUES (2249,'',NULL,1,'','Sanbata','Saturday [weekday]','ViewTranslation',4967);
-INSERT INTO `globalize_translations` VALUES (2250,'',NULL,1,'','Dil','Sun [abbreviated weekday]','ViewTranslation',4967);
-INSERT INTO `globalize_translations` VALUES (2251,'',NULL,1,'','Wix','Mon [abbreviated weekday]','ViewTranslation',4967);
-INSERT INTO `globalize_translations` VALUES (2252,'',NULL,1,'','Qib','Tue [abbreviated weekday]','ViewTranslation',4967);
-INSERT INTO `globalize_translations` VALUES (2253,'',NULL,1,'','Rob','Wed [abbreviated weekday]','ViewTranslation',4967);
-INSERT INTO `globalize_translations` VALUES (2254,'',NULL,1,'','Kam','Thu [abbreviated weekday]','ViewTranslation',4967);
-INSERT INTO `globalize_translations` VALUES (2255,'',NULL,1,'','Jim','Fri [abbreviated weekday]','ViewTranslation',4967);
-INSERT INTO `globalize_translations` VALUES (2256,'',NULL,1,'','San','Sat [abbreviated weekday]','ViewTranslation',4967);
-INSERT INTO `globalize_translations` VALUES (2257,'',NULL,1,'','Amajjii','January [month]','ViewTranslation',4967);
-INSERT INTO `globalize_translations` VALUES (2258,'',NULL,1,'','Guraandhala','February [month]','ViewTranslation',4967);
-INSERT INTO `globalize_translations` VALUES (2259,'',NULL,1,'','Bitooteessa','March [month]','ViewTranslation',4967);
-INSERT INTO `globalize_translations` VALUES (2260,'',NULL,1,'','Elba','April [month]','ViewTranslation',4967);
-INSERT INTO `globalize_translations` VALUES (2261,'',NULL,1,'','Caamsa','May [month]','ViewTranslation',4967);
-INSERT INTO `globalize_translations` VALUES (2262,'',NULL,1,'','Waxabajjii','June [month]','ViewTranslation',4967);
-INSERT INTO `globalize_translations` VALUES (2263,'',NULL,1,'','Adooleessa','July [month]','ViewTranslation',4967);
-INSERT INTO `globalize_translations` VALUES (2264,'',NULL,1,'','Hagayya','August [month]','ViewTranslation',4967);
-INSERT INTO `globalize_translations` VALUES (2265,'',NULL,1,'','Fuulbana','September [month]','ViewTranslation',4967);
-INSERT INTO `globalize_translations` VALUES (2266,'',NULL,1,'','Onkololeessa','October [month]','ViewTranslation',4967);
-INSERT INTO `globalize_translations` VALUES (2267,'',NULL,1,'','Sadaasa','November [month]','ViewTranslation',4967);
-INSERT INTO `globalize_translations` VALUES (2268,'',NULL,1,'','Muddee','December [month]','ViewTranslation',4967);
-INSERT INTO `globalize_translations` VALUES (2269,'',NULL,1,'','Ama','Jan [abbreviated month]','ViewTranslation',4967);
-INSERT INTO `globalize_translations` VALUES (2270,'',NULL,1,'','Gur','Feb [abbreviated month]','ViewTranslation',4967);
-INSERT INTO `globalize_translations` VALUES (2271,'',NULL,1,'','Bit','Mar [abbreviated month]','ViewTranslation',4967);
-INSERT INTO `globalize_translations` VALUES (2272,'',NULL,1,'','Elb','Apr [abbreviated month]','ViewTranslation',4967);
-INSERT INTO `globalize_translations` VALUES (2273,'',NULL,1,'','Cam','May [abbreviated month]','ViewTranslation',4967);
-INSERT INTO `globalize_translations` VALUES (2274,'',NULL,1,'','Wax','Jun [abbreviated month]','ViewTranslation',4967);
-INSERT INTO `globalize_translations` VALUES (2275,'',NULL,1,'','Ado','Jul [abbreviated month]','ViewTranslation',4967);
-INSERT INTO `globalize_translations` VALUES (2276,'',NULL,1,'','Hag','Aug [abbreviated month]','ViewTranslation',4967);
-INSERT INTO `globalize_translations` VALUES (2277,'',NULL,1,'','Ful','Sep [abbreviated month]','ViewTranslation',4967);
-INSERT INTO `globalize_translations` VALUES (2278,'',NULL,1,'','Onk','Oct [abbreviated month]','ViewTranslation',4967);
-INSERT INTO `globalize_translations` VALUES (2279,'',NULL,1,'','Sad','Nov [abbreviated month]','ViewTranslation',4967);
-INSERT INTO `globalize_translations` VALUES (2280,'',NULL,1,'','Mud','Dec [abbreviated month]','ViewTranslation',4967);
-INSERT INTO `globalize_translations` VALUES (2281,'',NULL,1,'','ਆੈਤਵਾਰ ','Sunday [weekday]','ViewTranslation',5031);
-INSERT INTO `globalize_translations` VALUES (2282,'',NULL,1,'','ਸੋਮਵਾਰ ','Monday [weekday]','ViewTranslation',5031);
-INSERT INTO `globalize_translations` VALUES (2283,'',NULL,1,'','ਮੰਗਲਵਾਰ ','Tuesday [weekday]','ViewTranslation',5031);
-INSERT INTO `globalize_translations` VALUES (2284,'',NULL,1,'','ਬੁੱਧਵਾਰ ','Wednesday [weekday]','ViewTranslation',5031);
-INSERT INTO `globalize_translations` VALUES (2285,'',NULL,1,'','ਵੀਰਵਾਰ ','Thursday [weekday]','ViewTranslation',5031);
-INSERT INTO `globalize_translations` VALUES (2286,'',NULL,1,'','ਸ਼ੁਕਰਵਾਰ ','Friday [weekday]','ViewTranslation',5031);
-INSERT INTO `globalize_translations` VALUES (2287,'',NULL,1,'','ਸ਼ਨੀਵਾਰ ','Saturday [weekday]','ViewTranslation',5031);
-INSERT INTO `globalize_translations` VALUES (2288,'',NULL,1,'','ਆੈਤ ','Sun [abbreviated weekday]','ViewTranslation',5031);
-INSERT INTO `globalize_translations` VALUES (2289,'',NULL,1,'','ਸੋਮ ','Mon [abbreviated weekday]','ViewTranslation',5031);
-INSERT INTO `globalize_translations` VALUES (2290,'',NULL,1,'','ਮੰਗਲ ','Tue [abbreviated weekday]','ViewTranslation',5031);
-INSERT INTO `globalize_translations` VALUES (2291,'',NULL,1,'','ਬੁੱਧ ','Wed [abbreviated weekday]','ViewTranslation',5031);
-INSERT INTO `globalize_translations` VALUES (2292,'',NULL,1,'','ਵੀਰ ','Thu [abbreviated weekday]','ViewTranslation',5031);
-INSERT INTO `globalize_translations` VALUES (2293,'',NULL,1,'','ਸ਼ੁਕਰ ','Fri [abbreviated weekday]','ViewTranslation',5031);
-INSERT INTO `globalize_translations` VALUES (2294,'',NULL,1,'','ਸ਼ਨੀ ','Sat [abbreviated weekday]','ViewTranslation',5031);
-INSERT INTO `globalize_translations` VALUES (2295,'',NULL,1,'','ਜਨਵਰੀ','January [month]','ViewTranslation',5031);
-INSERT INTO `globalize_translations` VALUES (2296,'',NULL,1,'','ਫ਼ਰਵਰੀ','February [month]','ViewTranslation',5031);
-INSERT INTO `globalize_translations` VALUES (2297,'',NULL,1,'','ਮਾਰਛ','March [month]','ViewTranslation',5031);
-INSERT INTO `globalize_translations` VALUES (2298,'',NULL,1,'','ਅਪ਼ੈਲ','April [month]','ViewTranslation',5031);
-INSERT INTO `globalize_translations` VALUES (2299,'',NULL,1,'','ਮੲੀ','May [month]','ViewTranslation',5031);
-INSERT INTO `globalize_translations` VALUES (2300,'',NULL,1,'','ਜੂਨ','June [month]','ViewTranslation',5031);
-INSERT INTO `globalize_translations` VALUES (2301,'',NULL,1,'','ਜੁਲਾੲੀ','July [month]','ViewTranslation',5031);
-INSERT INTO `globalize_translations` VALUES (2302,'',NULL,1,'','ਅਗਸਤ','August [month]','ViewTranslation',5031);
-INSERT INTO `globalize_translations` VALUES (2303,'',NULL,1,'','ਸਿਤੰਬਰ','September [month]','ViewTranslation',5031);
-INSERT INTO `globalize_translations` VALUES (2304,'',NULL,1,'','ਅਕਤੂਬਰ','October [month]','ViewTranslation',5031);
-INSERT INTO `globalize_translations` VALUES (2305,'',NULL,1,'','ਨਵੰਬਰ','November [month]','ViewTranslation',5031);
-INSERT INTO `globalize_translations` VALUES (2306,'',NULL,1,'','ਦਿਸੰਬਰ','December [month]','ViewTranslation',5031);
-INSERT INTO `globalize_translations` VALUES (2307,'',NULL,1,'','ਜਨਵਰੀ','Jan [abbreviated month]','ViewTranslation',5031);
-INSERT INTO `globalize_translations` VALUES (2308,'',NULL,1,'','ਫ਼ਰਵਰੀ','Feb [abbreviated month]','ViewTranslation',5031);
-INSERT INTO `globalize_translations` VALUES (2309,'',NULL,1,'','ਮਾਰਛ','Mar [abbreviated month]','ViewTranslation',5031);
-INSERT INTO `globalize_translations` VALUES (2310,'',NULL,1,'','ਅਪ਼ੈਲ','Apr [abbreviated month]','ViewTranslation',5031);
-INSERT INTO `globalize_translations` VALUES (2311,'',NULL,1,'','ਮੲੀ','May [abbreviated month]','ViewTranslation',5031);
-INSERT INTO `globalize_translations` VALUES (2312,'',NULL,1,'','ਜੂਨ','Jun [abbreviated month]','ViewTranslation',5031);
-INSERT INTO `globalize_translations` VALUES (2313,'',NULL,1,'','ਜੁਲਾੲੀ','Jul [abbreviated month]','ViewTranslation',5031);
-INSERT INTO `globalize_translations` VALUES (2314,'',NULL,1,'','ਅਗਸਤ','Aug [abbreviated month]','ViewTranslation',5031);
-INSERT INTO `globalize_translations` VALUES (2315,'',NULL,1,'','ਸਿਤੰਬਰ','Sep [abbreviated month]','ViewTranslation',5031);
-INSERT INTO `globalize_translations` VALUES (2316,'',NULL,1,'','ਅਕਤੂਬਰ','Oct [abbreviated month]','ViewTranslation',5031);
-INSERT INTO `globalize_translations` VALUES (2317,'',NULL,1,'','ਨਵੰਬਰ','Nov [abbreviated month]','ViewTranslation',5031);
-INSERT INTO `globalize_translations` VALUES (2318,'',NULL,1,'','ਦਿਸੰਬਰ','Dec [abbreviated month]','ViewTranslation',5031);
-INSERT INTO `globalize_translations` VALUES (2319,'',NULL,1,'','Niedziela','Sunday [weekday]','ViewTranslation',5244);
-INSERT INTO `globalize_translations` VALUES (2320,'',NULL,1,'','Poniedziałek','Monday [weekday]','ViewTranslation',5244);
-INSERT INTO `globalize_translations` VALUES (2321,'',NULL,1,'','Wtorek','Tuesday [weekday]','ViewTranslation',5244);
-INSERT INTO `globalize_translations` VALUES (2322,'',NULL,1,'','Środa','Wednesday [weekday]','ViewTranslation',5244);
-INSERT INTO `globalize_translations` VALUES (2323,'',NULL,1,'','Czwartek','Thursday [weekday]','ViewTranslation',5244);
-INSERT INTO `globalize_translations` VALUES (2324,'',NULL,1,'','Piątek','Friday [weekday]','ViewTranslation',5244);
-INSERT INTO `globalize_translations` VALUES (2325,'',NULL,1,'','Sobota','Saturday [weekday]','ViewTranslation',5244);
-INSERT INTO `globalize_translations` VALUES (2326,'',NULL,1,'','Nie','Sun [abbreviated weekday]','ViewTranslation',5244);
-INSERT INTO `globalize_translations` VALUES (2327,'',NULL,1,'','Pon','Mon [abbreviated weekday]','ViewTranslation',5244);
-INSERT INTO `globalize_translations` VALUES (2328,'',NULL,1,'','Wto','Tue [abbreviated weekday]','ViewTranslation',5244);
-INSERT INTO `globalize_translations` VALUES (2329,'',NULL,1,'','Śro','Wed [abbreviated weekday]','ViewTranslation',5244);
-INSERT INTO `globalize_translations` VALUES (2330,'',NULL,1,'','Czw','Thu [abbreviated weekday]','ViewTranslation',5244);
-INSERT INTO `globalize_translations` VALUES (2331,'',NULL,1,'','Pią','Fri [abbreviated weekday]','ViewTranslation',5244);
-INSERT INTO `globalize_translations` VALUES (2332,'',NULL,1,'','Sob','Sat [abbreviated weekday]','ViewTranslation',5244);
-INSERT INTO `globalize_translations` VALUES (2333,'',NULL,1,'','Styczeń','January [month]','ViewTranslation',5244);
-INSERT INTO `globalize_translations` VALUES (2334,'',NULL,1,'','Luty','February [month]','ViewTranslation',5244);
-INSERT INTO `globalize_translations` VALUES (2335,'',NULL,1,'','Marzec','March [month]','ViewTranslation',5244);
-INSERT INTO `globalize_translations` VALUES (2336,'',NULL,1,'','Kwiecień','April [month]','ViewTranslation',5244);
-INSERT INTO `globalize_translations` VALUES (2337,'',NULL,1,'','Maj','May [month]','ViewTranslation',5244);
-INSERT INTO `globalize_translations` VALUES (2338,'',NULL,1,'','Czerwiec','June [month]','ViewTranslation',5244);
-INSERT INTO `globalize_translations` VALUES (2339,'',NULL,1,'','Lipiec','July [month]','ViewTranslation',5244);
-INSERT INTO `globalize_translations` VALUES (2340,'',NULL,1,'','Sierpień','August [month]','ViewTranslation',5244);
-INSERT INTO `globalize_translations` VALUES (2341,'',NULL,1,'','Wrzesień','September [month]','ViewTranslation',5244);
-INSERT INTO `globalize_translations` VALUES (2342,'',NULL,1,'','Październik','October [month]','ViewTranslation',5244);
-INSERT INTO `globalize_translations` VALUES (2343,'',NULL,1,'','Listopad','November [month]','ViewTranslation',5244);
-INSERT INTO `globalize_translations` VALUES (2344,'',NULL,1,'','Grudzień','December [month]','ViewTranslation',5244);
-INSERT INTO `globalize_translations` VALUES (2345,'',NULL,1,'','Sty','Jan [abbreviated month]','ViewTranslation',5244);
-INSERT INTO `globalize_translations` VALUES (2346,'',NULL,1,'','Lut','Feb [abbreviated month]','ViewTranslation',5244);
-INSERT INTO `globalize_translations` VALUES (2347,'',NULL,1,'','Mar','Mar [abbreviated month]','ViewTranslation',5244);
-INSERT INTO `globalize_translations` VALUES (2348,'',NULL,1,'','Kwi','Apr [abbreviated month]','ViewTranslation',5244);
-INSERT INTO `globalize_translations` VALUES (2349,'',NULL,1,'','Maj','May [abbreviated month]','ViewTranslation',5244);
-INSERT INTO `globalize_translations` VALUES (2350,'',NULL,1,'','Cze','Jun [abbreviated month]','ViewTranslation',5244);
-INSERT INTO `globalize_translations` VALUES (2351,'',NULL,1,'','Lip','Jul [abbreviated month]','ViewTranslation',5244);
-INSERT INTO `globalize_translations` VALUES (2352,'',NULL,1,'','Sie','Aug [abbreviated month]','ViewTranslation',5244);
-INSERT INTO `globalize_translations` VALUES (2353,'',NULL,1,'','Wrz','Sep [abbreviated month]','ViewTranslation',5244);
-INSERT INTO `globalize_translations` VALUES (2354,'',NULL,1,'','Paź','Oct [abbreviated month]','ViewTranslation',5244);
-INSERT INTO `globalize_translations` VALUES (2355,'',NULL,1,'','Lis','Nov [abbreviated month]','ViewTranslation',5244);
-INSERT INTO `globalize_translations` VALUES (2356,'',NULL,1,'','Gru','Dec [abbreviated month]','ViewTranslation',5244);
-INSERT INTO `globalize_translations` VALUES (2357,'',NULL,1,'','Domingo','Sunday [weekday]','ViewTranslation',5250);
-INSERT INTO `globalize_translations` VALUES (2358,'',NULL,1,'','Segunda','Monday [weekday]','ViewTranslation',5250);
-INSERT INTO `globalize_translations` VALUES (2359,'',NULL,1,'','Terça','Tuesday [weekday]','ViewTranslation',5250);
-INSERT INTO `globalize_translations` VALUES (2360,'',NULL,1,'','Quarta','Wednesday [weekday]','ViewTranslation',5250);
-INSERT INTO `globalize_translations` VALUES (2361,'',NULL,1,'','Quinta','Thursday [weekday]','ViewTranslation',5250);
-INSERT INTO `globalize_translations` VALUES (2362,'',NULL,1,'','Sexta','Friday [weekday]','ViewTranslation',5250);
-INSERT INTO `globalize_translations` VALUES (2363,'',NULL,1,'','Sábado','Saturday [weekday]','ViewTranslation',5250);
-INSERT INTO `globalize_translations` VALUES (2364,'',NULL,1,'','Dom','Sun [abbreviated weekday]','ViewTranslation',5250);
-INSERT INTO `globalize_translations` VALUES (2365,'',NULL,1,'','Seg','Mon [abbreviated weekday]','ViewTranslation',5250);
-INSERT INTO `globalize_translations` VALUES (2366,'',NULL,1,'','Ter','Tue [abbreviated weekday]','ViewTranslation',5250);
-INSERT INTO `globalize_translations` VALUES (2367,'',NULL,1,'','Qua','Wed [abbreviated weekday]','ViewTranslation',5250);
-INSERT INTO `globalize_translations` VALUES (2368,'',NULL,1,'','Qui','Thu [abbreviated weekday]','ViewTranslation',5250);
-INSERT INTO `globalize_translations` VALUES (2369,'',NULL,1,'','Sex','Fri [abbreviated weekday]','ViewTranslation',5250);
-INSERT INTO `globalize_translations` VALUES (2370,'',NULL,1,'','Sáb','Sat [abbreviated weekday]','ViewTranslation',5250);
-INSERT INTO `globalize_translations` VALUES (2371,'',NULL,1,'','Janeiro','January [month]','ViewTranslation',5250);
-INSERT INTO `globalize_translations` VALUES (2372,'',NULL,1,'','Fevereiro','February [month]','ViewTranslation',5250);
-INSERT INTO `globalize_translations` VALUES (2373,'',NULL,1,'','Março','March [month]','ViewTranslation',5250);
-INSERT INTO `globalize_translations` VALUES (2374,'',NULL,1,'','Abril','April [month]','ViewTranslation',5250);
-INSERT INTO `globalize_translations` VALUES (2375,'',NULL,1,'','Maio','May [month]','ViewTranslation',5250);
-INSERT INTO `globalize_translations` VALUES (2376,'',NULL,1,'','Junho','June [month]','ViewTranslation',5250);
-INSERT INTO `globalize_translations` VALUES (2377,'',NULL,1,'','Julho','July [month]','ViewTranslation',5250);
-INSERT INTO `globalize_translations` VALUES (2378,'',NULL,1,'','Agosto','August [month]','ViewTranslation',5250);
-INSERT INTO `globalize_translations` VALUES (2379,'',NULL,1,'','Setembro','September [month]','ViewTranslation',5250);
-INSERT INTO `globalize_translations` VALUES (2380,'',NULL,1,'','Outubro','October [month]','ViewTranslation',5250);
-INSERT INTO `globalize_translations` VALUES (2381,'',NULL,1,'','Novembro','November [month]','ViewTranslation',5250);
-INSERT INTO `globalize_translations` VALUES (2382,'',NULL,1,'','Dezembro','December [month]','ViewTranslation',5250);
-INSERT INTO `globalize_translations` VALUES (2383,'',NULL,1,'','Jan','Jan [abbreviated month]','ViewTranslation',5250);
-INSERT INTO `globalize_translations` VALUES (2384,'',NULL,1,'','Fev','Feb [abbreviated month]','ViewTranslation',5250);
-INSERT INTO `globalize_translations` VALUES (2385,'',NULL,1,'','Mar','Mar [abbreviated month]','ViewTranslation',5250);
-INSERT INTO `globalize_translations` VALUES (2386,'',NULL,1,'','Abr','Apr [abbreviated month]','ViewTranslation',5250);
-INSERT INTO `globalize_translations` VALUES (2387,'',NULL,1,'','Mai','May [abbreviated month]','ViewTranslation',5250);
-INSERT INTO `globalize_translations` VALUES (2388,'',NULL,1,'','Jun','Jun [abbreviated month]','ViewTranslation',5250);
-INSERT INTO `globalize_translations` VALUES (2389,'',NULL,1,'','Jul','Jul [abbreviated month]','ViewTranslation',5250);
-INSERT INTO `globalize_translations` VALUES (2390,'',NULL,1,'','Ago','Aug [abbreviated month]','ViewTranslation',5250);
-INSERT INTO `globalize_translations` VALUES (2391,'',NULL,1,'','Set','Sep [abbreviated month]','ViewTranslation',5250);
-INSERT INTO `globalize_translations` VALUES (2392,'',NULL,1,'','Out','Oct [abbreviated month]','ViewTranslation',5250);
-INSERT INTO `globalize_translations` VALUES (2393,'',NULL,1,'','Nov','Nov [abbreviated month]','ViewTranslation',5250);
-INSERT INTO `globalize_translations` VALUES (2394,'',NULL,1,'','Dez','Dec [abbreviated month]','ViewTranslation',5250);
-INSERT INTO `globalize_translations` VALUES (2395,'',NULL,1,'','Duminică','Sunday [weekday]','ViewTranslation',5528);
-INSERT INTO `globalize_translations` VALUES (2396,'',NULL,1,'','Luni','Monday [weekday]','ViewTranslation',5528);
-INSERT INTO `globalize_translations` VALUES (2397,'',NULL,1,'','Marţi','Tuesday [weekday]','ViewTranslation',5528);
-INSERT INTO `globalize_translations` VALUES (2398,'',NULL,1,'','Miercuri','Wednesday [weekday]','ViewTranslation',5528);
-INSERT INTO `globalize_translations` VALUES (2399,'',NULL,1,'','Joi','Thursday [weekday]','ViewTranslation',5528);
-INSERT INTO `globalize_translations` VALUES (2400,'',NULL,1,'','Vineri','Friday [weekday]','ViewTranslation',5528);
-INSERT INTO `globalize_translations` VALUES (2401,'',NULL,1,'','Sîmbătă','Saturday [weekday]','ViewTranslation',5528);
-INSERT INTO `globalize_translations` VALUES (2402,'',NULL,1,'','Du','Sun [abbreviated weekday]','ViewTranslation',5528);
-INSERT INTO `globalize_translations` VALUES (2403,'',NULL,1,'','Lu','Mon [abbreviated weekday]','ViewTranslation',5528);
-INSERT INTO `globalize_translations` VALUES (2404,'',NULL,1,'','Ma','Tue [abbreviated weekday]','ViewTranslation',5528);
-INSERT INTO `globalize_translations` VALUES (2405,'',NULL,1,'','Mi','Wed [abbreviated weekday]','ViewTranslation',5528);
-INSERT INTO `globalize_translations` VALUES (2406,'',NULL,1,'','Jo','Thu [abbreviated weekday]','ViewTranslation',5528);
-INSERT INTO `globalize_translations` VALUES (2407,'',NULL,1,'','Vi','Fri [abbreviated weekday]','ViewTranslation',5528);
-INSERT INTO `globalize_translations` VALUES (2408,'',NULL,1,'','Sî','Sat [abbreviated weekday]','ViewTranslation',5528);
-INSERT INTO `globalize_translations` VALUES (2409,'',NULL,1,'','Ianuarie','January [month]','ViewTranslation',5528);
-INSERT INTO `globalize_translations` VALUES (2410,'',NULL,1,'','Februarie','February [month]','ViewTranslation',5528);
-INSERT INTO `globalize_translations` VALUES (2411,'',NULL,1,'','Martie','March [month]','ViewTranslation',5528);
-INSERT INTO `globalize_translations` VALUES (2412,'',NULL,1,'','Aprilie','April [month]','ViewTranslation',5528);
-INSERT INTO `globalize_translations` VALUES (2413,'',NULL,1,'','Mai','May [month]','ViewTranslation',5528);
-INSERT INTO `globalize_translations` VALUES (2414,'',NULL,1,'','Iunie','June [month]','ViewTranslation',5528);
-INSERT INTO `globalize_translations` VALUES (2415,'',NULL,1,'','Iulie','July [month]','ViewTranslation',5528);
-INSERT INTO `globalize_translations` VALUES (2416,'',NULL,1,'','August','August [month]','ViewTranslation',5528);
-INSERT INTO `globalize_translations` VALUES (2417,'',NULL,1,'','Septembrie','September [month]','ViewTranslation',5528);
-INSERT INTO `globalize_translations` VALUES (2418,'',NULL,1,'','Octombrie','October [month]','ViewTranslation',5528);
-INSERT INTO `globalize_translations` VALUES (2419,'',NULL,1,'','Noiembrie','November [month]','ViewTranslation',5528);
-INSERT INTO `globalize_translations` VALUES (2420,'',NULL,1,'','Decembrie','December [month]','ViewTranslation',5528);
-INSERT INTO `globalize_translations` VALUES (2421,'',NULL,1,'','Ian','Jan [abbreviated month]','ViewTranslation',5528);
-INSERT INTO `globalize_translations` VALUES (2422,'',NULL,1,'','Feb','Feb [abbreviated month]','ViewTranslation',5528);
-INSERT INTO `globalize_translations` VALUES (2423,'',NULL,1,'','Mar','Mar [abbreviated month]','ViewTranslation',5528);
-INSERT INTO `globalize_translations` VALUES (2424,'',NULL,1,'','Apr','Apr [abbreviated month]','ViewTranslation',5528);
-INSERT INTO `globalize_translations` VALUES (2425,'',NULL,1,'','Mai','May [abbreviated month]','ViewTranslation',5528);
-INSERT INTO `globalize_translations` VALUES (2426,'',NULL,1,'','Iun','Jun [abbreviated month]','ViewTranslation',5528);
-INSERT INTO `globalize_translations` VALUES (2427,'',NULL,1,'','Iul','Jul [abbreviated month]','ViewTranslation',5528);
-INSERT INTO `globalize_translations` VALUES (2428,'',NULL,1,'','Aug','Aug [abbreviated month]','ViewTranslation',5528);
-INSERT INTO `globalize_translations` VALUES (2429,'',NULL,1,'','Sep','Sep [abbreviated month]','ViewTranslation',5528);
-INSERT INTO `globalize_translations` VALUES (2430,'',NULL,1,'','Oct','Oct [abbreviated month]','ViewTranslation',5528);
-INSERT INTO `globalize_translations` VALUES (2431,'',NULL,1,'','Nov','Nov [abbreviated month]','ViewTranslation',5528);
-INSERT INTO `globalize_translations` VALUES (2432,'',NULL,1,'','Dec','Dec [abbreviated month]','ViewTranslation',5528);
-INSERT INTO `globalize_translations` VALUES (2433,'',NULL,1,'','Sotnabeaivi','Sunday [weekday]','ViewTranslation',5819);
-INSERT INTO `globalize_translations` VALUES (2434,'',NULL,1,'','Vuossárga','Monday [weekday]','ViewTranslation',5819);
-INSERT INTO `globalize_translations` VALUES (2435,'',NULL,1,'','Maŋŋebarga','Tuesday [weekday]','ViewTranslation',5819);
-INSERT INTO `globalize_translations` VALUES (2436,'',NULL,1,'','Gaskavahkku','Wednesday [weekday]','ViewTranslation',5819);
-INSERT INTO `globalize_translations` VALUES (2437,'',NULL,1,'','Duorasdat','Thursday [weekday]','ViewTranslation',5819);
-INSERT INTO `globalize_translations` VALUES (2438,'',NULL,1,'','Bearjadat','Friday [weekday]','ViewTranslation',5819);
-INSERT INTO `globalize_translations` VALUES (2439,'',NULL,1,'','Lávvardat','Saturday [weekday]','ViewTranslation',5819);
-INSERT INTO `globalize_translations` VALUES (2440,'',NULL,1,'','Sotn','Sun [abbreviated weekday]','ViewTranslation',5819);
-INSERT INTO `globalize_translations` VALUES (2441,'',NULL,1,'','Vuos','Mon [abbreviated weekday]','ViewTranslation',5819);
-INSERT INTO `globalize_translations` VALUES (2442,'',NULL,1,'','Maŋ','Tue [abbreviated weekday]','ViewTranslation',5819);
-INSERT INTO `globalize_translations` VALUES (2443,'',NULL,1,'','Gask','Wed [abbreviated weekday]','ViewTranslation',5819);
-INSERT INTO `globalize_translations` VALUES (2444,'',NULL,1,'','Duor','Thu [abbreviated weekday]','ViewTranslation',5819);
-INSERT INTO `globalize_translations` VALUES (2445,'',NULL,1,'','Bear','Fri [abbreviated weekday]','ViewTranslation',5819);
-INSERT INTO `globalize_translations` VALUES (2446,'',NULL,1,'','Láv','Sat [abbreviated weekday]','ViewTranslation',5819);
-INSERT INTO `globalize_translations` VALUES (2447,'',NULL,1,'','Ođđajagemánu','January [month]','ViewTranslation',5819);
-INSERT INTO `globalize_translations` VALUES (2448,'',NULL,1,'','Guovvamánu','February [month]','ViewTranslation',5819);
-INSERT INTO `globalize_translations` VALUES (2449,'',NULL,1,'','Njukčamánu','March [month]','ViewTranslation',5819);
-INSERT INTO `globalize_translations` VALUES (2450,'',NULL,1,'','Cuoŋománu','April [month]','ViewTranslation',5819);
-INSERT INTO `globalize_translations` VALUES (2451,'',NULL,1,'','Miessemánu','May [month]','ViewTranslation',5819);
-INSERT INTO `globalize_translations` VALUES (2452,'',NULL,1,'','Geassemánu','June [month]','ViewTranslation',5819);
-INSERT INTO `globalize_translations` VALUES (2453,'',NULL,1,'','Suoidnemánu','July [month]','ViewTranslation',5819);
-INSERT INTO `globalize_translations` VALUES (2454,'',NULL,1,'','Borgemánu','August [month]','ViewTranslation',5819);
-INSERT INTO `globalize_translations` VALUES (2455,'',NULL,1,'','Čakčamánu','September [month]','ViewTranslation',5819);
-INSERT INTO `globalize_translations` VALUES (2456,'',NULL,1,'','Golggotmánu','October [month]','ViewTranslation',5819);
-INSERT INTO `globalize_translations` VALUES (2457,'',NULL,1,'','Skábmamánu','November [month]','ViewTranslation',5819);
-INSERT INTO `globalize_translations` VALUES (2458,'',NULL,1,'','Juovlamánu','December [month]','ViewTranslation',5819);
-INSERT INTO `globalize_translations` VALUES (2459,'',NULL,1,'','Ođđj','Jan [abbreviated month]','ViewTranslation',5819);
-INSERT INTO `globalize_translations` VALUES (2460,'',NULL,1,'','Guov','Feb [abbreviated month]','ViewTranslation',5819);
-INSERT INTO `globalize_translations` VALUES (2461,'',NULL,1,'','Njuk','Mar [abbreviated month]','ViewTranslation',5819);
-INSERT INTO `globalize_translations` VALUES (2462,'',NULL,1,'','Cuoŋ','Apr [abbreviated month]','ViewTranslation',5819);
-INSERT INTO `globalize_translations` VALUES (2463,'',NULL,1,'','Mies','May [abbreviated month]','ViewTranslation',5819);
-INSERT INTO `globalize_translations` VALUES (2464,'',NULL,1,'','Geas','Jun [abbreviated month]','ViewTranslation',5819);
-INSERT INTO `globalize_translations` VALUES (2465,'',NULL,1,'','Suoi','Jul [abbreviated month]','ViewTranslation',5819);
-INSERT INTO `globalize_translations` VALUES (2466,'',NULL,1,'','Borg','Aug [abbreviated month]','ViewTranslation',5819);
-INSERT INTO `globalize_translations` VALUES (2467,'',NULL,1,'','Čakč','Sep [abbreviated month]','ViewTranslation',5819);
-INSERT INTO `globalize_translations` VALUES (2468,'',NULL,1,'','Golg','Oct [abbreviated month]','ViewTranslation',5819);
-INSERT INTO `globalize_translations` VALUES (2469,'',NULL,1,'','Skáb','Nov [abbreviated month]','ViewTranslation',5819);
-INSERT INTO `globalize_translations` VALUES (2470,'',NULL,1,'','Juov','Dec [abbreviated month]','ViewTranslation',5819);
-INSERT INTO `globalize_translations` VALUES (2471,'',NULL,1,'','Sambata','Sunday [weekday]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2472,'',NULL,1,'','Sanyo','Monday [weekday]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2473,'',NULL,1,'','Maakisanyo','Tuesday [weekday]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2474,'',NULL,1,'','Roowe','Wednesday [weekday]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2475,'',NULL,1,'','Hamuse','Thursday [weekday]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2476,'',NULL,1,'','Arbe','Friday [weekday]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2477,'',NULL,1,'','Qidaame','Saturday [weekday]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2478,'',NULL,1,'','Sam','Sun [abbreviated weekday]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2479,'',NULL,1,'','San','Mon [abbreviated weekday]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2480,'',NULL,1,'','Mak','Tue [abbreviated weekday]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2481,'',NULL,1,'','Row','Wed [abbreviated weekday]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2482,'',NULL,1,'','Ham','Thu [abbreviated weekday]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2483,'',NULL,1,'','Arb','Fri [abbreviated weekday]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2484,'',NULL,1,'','Qid','Sat [abbreviated weekday]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2485,'',NULL,1,'','January','January [month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2486,'',NULL,1,'','February','February [month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2487,'',NULL,1,'','March','March [month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2488,'',NULL,1,'','April','April [month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2489,'',NULL,1,'','May','May [month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2490,'',NULL,1,'','June','June [month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2491,'',NULL,1,'','July','July [month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2492,'',NULL,1,'','August','August [month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2493,'',NULL,1,'','September','September [month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2494,'',NULL,1,'','October','October [month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2495,'',NULL,1,'','November','November [month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2496,'',NULL,1,'','December','December [month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2497,'',NULL,1,'','Jan','Jan [abbreviated month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2498,'',NULL,1,'','Feb','Feb [abbreviated month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2499,'',NULL,1,'','Mar','Mar [abbreviated month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2500,'',NULL,1,'','Apr','Apr [abbreviated month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2501,'',NULL,1,'','May','May [abbreviated month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2502,'',NULL,1,'','Jun','Jun [abbreviated month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2503,'',NULL,1,'','Jul','Jul [abbreviated month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2504,'',NULL,1,'','Aug','Aug [abbreviated month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2505,'',NULL,1,'','Sep','Sep [abbreviated month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2506,'',NULL,1,'','Oct','Oct [abbreviated month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2507,'',NULL,1,'','Nov','Nov [abbreviated month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2508,'',NULL,1,'','Dec','Dec [abbreviated month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2509,'',NULL,1,'','Nedeľa','Sunday [weekday]','ViewTranslation',5800);
-INSERT INTO `globalize_translations` VALUES (2510,'',NULL,1,'','Pondelok','Monday [weekday]','ViewTranslation',5800);
-INSERT INTO `globalize_translations` VALUES (2511,'',NULL,1,'','Utorok','Tuesday [weekday]','ViewTranslation',5800);
-INSERT INTO `globalize_translations` VALUES (2512,'',NULL,1,'','Streda','Wednesday [weekday]','ViewTranslation',5800);
-INSERT INTO `globalize_translations` VALUES (2513,'',NULL,1,'','Štvrtok','Thursday [weekday]','ViewTranslation',5800);
-INSERT INTO `globalize_translations` VALUES (2514,'',NULL,1,'','Piatok','Friday [weekday]','ViewTranslation',5800);
-INSERT INTO `globalize_translations` VALUES (2515,'',NULL,1,'','Sobota','Saturday [weekday]','ViewTranslation',5800);
-INSERT INTO `globalize_translations` VALUES (2516,'',NULL,1,'','Ne','Sun [abbreviated weekday]','ViewTranslation',5800);
-INSERT INTO `globalize_translations` VALUES (2517,'',NULL,1,'','Po','Mon [abbreviated weekday]','ViewTranslation',5800);
-INSERT INTO `globalize_translations` VALUES (2518,'',NULL,1,'','Ut','Tue [abbreviated weekday]','ViewTranslation',5800);
-INSERT INTO `globalize_translations` VALUES (2519,'',NULL,1,'','St','Wed [abbreviated weekday]','ViewTranslation',5800);
-INSERT INTO `globalize_translations` VALUES (2520,'',NULL,1,'','Št','Thu [abbreviated weekday]','ViewTranslation',5800);
-INSERT INTO `globalize_translations` VALUES (2521,'',NULL,1,'','Pi','Fri [abbreviated weekday]','ViewTranslation',5800);
-INSERT INTO `globalize_translations` VALUES (2522,'',NULL,1,'','So','Sat [abbreviated weekday]','ViewTranslation',5800);
-INSERT INTO `globalize_translations` VALUES (2523,'',NULL,1,'','Január','January [month]','ViewTranslation',5800);
-INSERT INTO `globalize_translations` VALUES (2524,'',NULL,1,'','Február','February [month]','ViewTranslation',5800);
-INSERT INTO `globalize_translations` VALUES (2525,'',NULL,1,'','Marec','March [month]','ViewTranslation',5800);
-INSERT INTO `globalize_translations` VALUES (2526,'',NULL,1,'','Apríl','April [month]','ViewTranslation',5800);
-INSERT INTO `globalize_translations` VALUES (2527,'',NULL,1,'','Máj','May [month]','ViewTranslation',5800);
-INSERT INTO `globalize_translations` VALUES (2528,'',NULL,1,'','Jún','June [month]','ViewTranslation',5800);
-INSERT INTO `globalize_translations` VALUES (2529,'',NULL,1,'','Júl','July [month]','ViewTranslation',5800);
-INSERT INTO `globalize_translations` VALUES (2530,'',NULL,1,'','August','August [month]','ViewTranslation',5800);
-INSERT INTO `globalize_translations` VALUES (2531,'',NULL,1,'','September','September [month]','ViewTranslation',5800);
-INSERT INTO `globalize_translations` VALUES (2532,'',NULL,1,'','Október','October [month]','ViewTranslation',5800);
-INSERT INTO `globalize_translations` VALUES (2533,'',NULL,1,'','November','November [month]','ViewTranslation',5800);
-INSERT INTO `globalize_translations` VALUES (2534,'',NULL,1,'','December','December [month]','ViewTranslation',5800);
-INSERT INTO `globalize_translations` VALUES (2535,'',NULL,1,'','Jan','Jan [abbreviated month]','ViewTranslation',5800);
-INSERT INTO `globalize_translations` VALUES (2536,'',NULL,1,'','Feb','Feb [abbreviated month]','ViewTranslation',5800);
-INSERT INTO `globalize_translations` VALUES (2537,'',NULL,1,'','Mar','Mar [abbreviated month]','ViewTranslation',5800);
-INSERT INTO `globalize_translations` VALUES (2538,'',NULL,1,'','Apr','Apr [abbreviated month]','ViewTranslation',5800);
-INSERT INTO `globalize_translations` VALUES (2539,'',NULL,1,'','Máj','May [abbreviated month]','ViewTranslation',5800);
-INSERT INTO `globalize_translations` VALUES (2540,'',NULL,1,'','Jún','Jun [abbreviated month]','ViewTranslation',5800);
-INSERT INTO `globalize_translations` VALUES (2541,'',NULL,1,'','Júl','Jul [abbreviated month]','ViewTranslation',5800);
-INSERT INTO `globalize_translations` VALUES (2542,'',NULL,1,'','Aug','Aug [abbreviated month]','ViewTranslation',5800);
-INSERT INTO `globalize_translations` VALUES (2543,'',NULL,1,'','Sep','Sep [abbreviated month]','ViewTranslation',5800);
-INSERT INTO `globalize_translations` VALUES (2544,'',NULL,1,'','Okt','Oct [abbreviated month]','ViewTranslation',5800);
-INSERT INTO `globalize_translations` VALUES (2545,'',NULL,1,'','Nov','Nov [abbreviated month]','ViewTranslation',5800);
-INSERT INTO `globalize_translations` VALUES (2546,'',NULL,1,'','Dec','Dec [abbreviated month]','ViewTranslation',5800);
-INSERT INTO `globalize_translations` VALUES (2547,'',NULL,1,'','Nedelja','Sunday [weekday]','ViewTranslation',5810);
-INSERT INTO `globalize_translations` VALUES (2548,'',NULL,1,'','Ponedeljek','Monday [weekday]','ViewTranslation',5810);
-INSERT INTO `globalize_translations` VALUES (2549,'',NULL,1,'','Torek','Tuesday [weekday]','ViewTranslation',5810);
-INSERT INTO `globalize_translations` VALUES (2550,'',NULL,1,'','Sreda','Wednesday [weekday]','ViewTranslation',5810);
-INSERT INTO `globalize_translations` VALUES (2551,'',NULL,1,'','Četrtek','Thursday [weekday]','ViewTranslation',5810);
-INSERT INTO `globalize_translations` VALUES (2552,'',NULL,1,'','Petek','Friday [weekday]','ViewTranslation',5810);
-INSERT INTO `globalize_translations` VALUES (2553,'',NULL,1,'','Sobota','Saturday [weekday]','ViewTranslation',5810);
-INSERT INTO `globalize_translations` VALUES (2554,'',NULL,1,'','Ned','Sun [abbreviated weekday]','ViewTranslation',5810);
-INSERT INTO `globalize_translations` VALUES (2555,'',NULL,1,'','Pon','Mon [abbreviated weekday]','ViewTranslation',5810);
-INSERT INTO `globalize_translations` VALUES (2556,'',NULL,1,'','Tor','Tue [abbreviated weekday]','ViewTranslation',5810);
-INSERT INTO `globalize_translations` VALUES (2557,'',NULL,1,'','Sre','Wed [abbreviated weekday]','ViewTranslation',5810);
-INSERT INTO `globalize_translations` VALUES (2558,'',NULL,1,'','Čet','Thu [abbreviated weekday]','ViewTranslation',5810);
-INSERT INTO `globalize_translations` VALUES (2559,'',NULL,1,'','Pet','Fri [abbreviated weekday]','ViewTranslation',5810);
-INSERT INTO `globalize_translations` VALUES (2560,'',NULL,1,'','Sob','Sat [abbreviated weekday]','ViewTranslation',5810);
-INSERT INTO `globalize_translations` VALUES (2561,'',NULL,1,'','Januar','January [month]','ViewTranslation',5810);
-INSERT INTO `globalize_translations` VALUES (2562,'',NULL,1,'','Februar','February [month]','ViewTranslation',5810);
-INSERT INTO `globalize_translations` VALUES (2563,'',NULL,1,'','Marec','March [month]','ViewTranslation',5810);
-INSERT INTO `globalize_translations` VALUES (2564,'',NULL,1,'','April','April [month]','ViewTranslation',5810);
-INSERT INTO `globalize_translations` VALUES (2565,'',NULL,1,'','Maj','May [month]','ViewTranslation',5810);
-INSERT INTO `globalize_translations` VALUES (2566,'',NULL,1,'','Junij','June [month]','ViewTranslation',5810);
-INSERT INTO `globalize_translations` VALUES (2567,'',NULL,1,'','Julij','July [month]','ViewTranslation',5810);
-INSERT INTO `globalize_translations` VALUES (2568,'',NULL,1,'','Avgust','August [month]','ViewTranslation',5810);
-INSERT INTO `globalize_translations` VALUES (2569,'',NULL,1,'','September','September [month]','ViewTranslation',5810);
-INSERT INTO `globalize_translations` VALUES (2570,'',NULL,1,'','Oktober','October [month]','ViewTranslation',5810);
-INSERT INTO `globalize_translations` VALUES (2571,'',NULL,1,'','November','November [month]','ViewTranslation',5810);
-INSERT INTO `globalize_translations` VALUES (2572,'',NULL,1,'','December','December [month]','ViewTranslation',5810);
-INSERT INTO `globalize_translations` VALUES (2573,'',NULL,1,'','Jan','Jan [abbreviated month]','ViewTranslation',5810);
-INSERT INTO `globalize_translations` VALUES (2574,'',NULL,1,'','Feb','Feb [abbreviated month]','ViewTranslation',5810);
-INSERT INTO `globalize_translations` VALUES (2575,'',NULL,1,'','Mar','Mar [abbreviated month]','ViewTranslation',5810);
-INSERT INTO `globalize_translations` VALUES (2576,'',NULL,1,'','Apr','Apr [abbreviated month]','ViewTranslation',5810);
-INSERT INTO `globalize_translations` VALUES (2577,'',NULL,1,'','Maj','May [abbreviated month]','ViewTranslation',5810);
-INSERT INTO `globalize_translations` VALUES (2578,'',NULL,1,'','Jun','Jun [abbreviated month]','ViewTranslation',5810);
-INSERT INTO `globalize_translations` VALUES (2579,'',NULL,1,'','Jul','Jul [abbreviated month]','ViewTranslation',5810);
-INSERT INTO `globalize_translations` VALUES (2580,'',NULL,1,'','Avg','Aug [abbreviated month]','ViewTranslation',5810);
-INSERT INTO `globalize_translations` VALUES (2581,'',NULL,1,'','Sep','Sep [abbreviated month]','ViewTranslation',5810);
-INSERT INTO `globalize_translations` VALUES (2582,'',NULL,1,'','Okt','Oct [abbreviated month]','ViewTranslation',5810);
-INSERT INTO `globalize_translations` VALUES (2583,'',NULL,1,'','Nov','Nov [abbreviated month]','ViewTranslation',5810);
-INSERT INTO `globalize_translations` VALUES (2584,'',NULL,1,'','Dec','Dec [abbreviated month]','ViewTranslation',5810);
-INSERT INTO `globalize_translations` VALUES (2585,'',NULL,1,'','Axad','Sunday [weekday]','ViewTranslation',5876);
-INSERT INTO `globalize_translations` VALUES (2586,'',NULL,1,'','Isniin','Monday [weekday]','ViewTranslation',5876);
-INSERT INTO `globalize_translations` VALUES (2587,'',NULL,1,'','Salaaso','Tuesday [weekday]','ViewTranslation',5876);
-INSERT INTO `globalize_translations` VALUES (2588,'',NULL,1,'','Arbaco','Wednesday [weekday]','ViewTranslation',5876);
-INSERT INTO `globalize_translations` VALUES (2589,'',NULL,1,'','Khamiis','Thursday [weekday]','ViewTranslation',5876);
-INSERT INTO `globalize_translations` VALUES (2590,'',NULL,1,'','Jimco','Friday [weekday]','ViewTranslation',5876);
-INSERT INTO `globalize_translations` VALUES (2591,'',NULL,1,'','Sabti','Saturday [weekday]','ViewTranslation',5876);
-INSERT INTO `globalize_translations` VALUES (2592,'',NULL,1,'','Axa','Sun [abbreviated weekday]','ViewTranslation',5876);
-INSERT INTO `globalize_translations` VALUES (2593,'',NULL,1,'','Isn','Mon [abbreviated weekday]','ViewTranslation',5876);
-INSERT INTO `globalize_translations` VALUES (2594,'',NULL,1,'','Sal','Tue [abbreviated weekday]','ViewTranslation',5876);
-INSERT INTO `globalize_translations` VALUES (2595,'',NULL,1,'','Arb','Wed [abbreviated weekday]','ViewTranslation',5876);
-INSERT INTO `globalize_translations` VALUES (2596,'',NULL,1,'','Kha','Thu [abbreviated weekday]','ViewTranslation',5876);
-INSERT INTO `globalize_translations` VALUES (2597,'',NULL,1,'','Jim','Fri [abbreviated weekday]','ViewTranslation',5876);
-INSERT INTO `globalize_translations` VALUES (2598,'',NULL,1,'','Sab','Sat [abbreviated weekday]','ViewTranslation',5876);
-INSERT INTO `globalize_translations` VALUES (2599,'',NULL,1,'','Bisha koobaad','January [month]','ViewTranslation',5876);
-INSERT INTO `globalize_translations` VALUES (2600,'',NULL,1,'','Bisha labaad','February [month]','ViewTranslation',5876);
-INSERT INTO `globalize_translations` VALUES (2601,'',NULL,1,'','Bisha saddexaad','March [month]','ViewTranslation',5876);
-INSERT INTO `globalize_translations` VALUES (2602,'',NULL,1,'','Bisha afraad','April [month]','ViewTranslation',5876);
-INSERT INTO `globalize_translations` VALUES (2603,'',NULL,1,'','Bisha shanaad','May [month]','ViewTranslation',5876);
-INSERT INTO `globalize_translations` VALUES (2604,'',NULL,1,'','Bisha lixaad','June [month]','ViewTranslation',5876);
-INSERT INTO `globalize_translations` VALUES (2605,'',NULL,1,'','Bisha todobaad','July [month]','ViewTranslation',5876);
-INSERT INTO `globalize_translations` VALUES (2606,'',NULL,1,'','Bisha sideedaad','August [month]','ViewTranslation',5876);
-INSERT INTO `globalize_translations` VALUES (2607,'',NULL,1,'','Bisha sagaalaad','September [month]','ViewTranslation',5876);
-INSERT INTO `globalize_translations` VALUES (2608,'',NULL,1,'','Bisha tobnaad','October [month]','ViewTranslation',5876);
-INSERT INTO `globalize_translations` VALUES (2609,'',NULL,1,'','Bisha kow iyo tobnaad','November [month]','ViewTranslation',5876);
-INSERT INTO `globalize_translations` VALUES (2610,'',NULL,1,'','Bisha laba iyo tobnaad','December [month]','ViewTranslation',5876);
-INSERT INTO `globalize_translations` VALUES (2611,'',NULL,1,'','Kob','Jan [abbreviated month]','ViewTranslation',5876);
-INSERT INTO `globalize_translations` VALUES (2612,'',NULL,1,'','Lab','Feb [abbreviated month]','ViewTranslation',5876);
-INSERT INTO `globalize_translations` VALUES (2613,'',NULL,1,'','Sad','Mar [abbreviated month]','ViewTranslation',5876);
-INSERT INTO `globalize_translations` VALUES (2614,'',NULL,1,'','Afr','Apr [abbreviated month]','ViewTranslation',5876);
-INSERT INTO `globalize_translations` VALUES (2615,'',NULL,1,'','Sha','May [abbreviated month]','ViewTranslation',5876);
-INSERT INTO `globalize_translations` VALUES (2616,'',NULL,1,'','Lix','Jun [abbreviated month]','ViewTranslation',5876);
-INSERT INTO `globalize_translations` VALUES (2617,'',NULL,1,'','Tod','Jul [abbreviated month]','ViewTranslation',5876);
-INSERT INTO `globalize_translations` VALUES (2618,'',NULL,1,'','Sid','Aug [abbreviated month]','ViewTranslation',5876);
-INSERT INTO `globalize_translations` VALUES (2619,'',NULL,1,'','Sag','Sep [abbreviated month]','ViewTranslation',5876);
-INSERT INTO `globalize_translations` VALUES (2620,'',NULL,1,'','Tob','Oct [abbreviated month]','ViewTranslation',5876);
-INSERT INTO `globalize_translations` VALUES (2621,'',NULL,1,'','Kit','Nov [abbreviated month]','ViewTranslation',5876);
-INSERT INTO `globalize_translations` VALUES (2622,'',NULL,1,'','Lit','Dec [abbreviated month]','ViewTranslation',5876);
-INSERT INTO `globalize_translations` VALUES (2623,'',NULL,1,'','E diel ','Sunday [weekday]','ViewTranslation',5910);
-INSERT INTO `globalize_translations` VALUES (2624,'',NULL,1,'','E hënë ','Monday [weekday]','ViewTranslation',5910);
-INSERT INTO `globalize_translations` VALUES (2625,'',NULL,1,'','E martë ','Tuesday [weekday]','ViewTranslation',5910);
-INSERT INTO `globalize_translations` VALUES (2626,'',NULL,1,'','E mërkurë ','Wednesday [weekday]','ViewTranslation',5910);
-INSERT INTO `globalize_translations` VALUES (2627,'',NULL,1,'','E enjte ','Thursday [weekday]','ViewTranslation',5910);
-INSERT INTO `globalize_translations` VALUES (2628,'',NULL,1,'','E premte ','Friday [weekday]','ViewTranslation',5910);
-INSERT INTO `globalize_translations` VALUES (2629,'',NULL,1,'','E shtunë ','Saturday [weekday]','ViewTranslation',5910);
-INSERT INTO `globalize_translations` VALUES (2630,'',NULL,1,'','Die ','Sun [abbreviated weekday]','ViewTranslation',5910);
-INSERT INTO `globalize_translations` VALUES (2631,'',NULL,1,'','Hën ','Mon [abbreviated weekday]','ViewTranslation',5910);
-INSERT INTO `globalize_translations` VALUES (2632,'',NULL,1,'','Mar ','Tue [abbreviated weekday]','ViewTranslation',5910);
-INSERT INTO `globalize_translations` VALUES (2633,'',NULL,1,'','Mër ','Wed [abbreviated weekday]','ViewTranslation',5910);
-INSERT INTO `globalize_translations` VALUES (2634,'',NULL,1,'','Enj ','Thu [abbreviated weekday]','ViewTranslation',5910);
-INSERT INTO `globalize_translations` VALUES (2635,'',NULL,1,'','Pre ','Fri [abbreviated weekday]','ViewTranslation',5910);
-INSERT INTO `globalize_translations` VALUES (2636,'',NULL,1,'','Sht ','Sat [abbreviated weekday]','ViewTranslation',5910);
-INSERT INTO `globalize_translations` VALUES (2637,'',NULL,1,'','Janar','January [month]','ViewTranslation',5910);
-INSERT INTO `globalize_translations` VALUES (2638,'',NULL,1,'','Shkurt','February [month]','ViewTranslation',5910);
-INSERT INTO `globalize_translations` VALUES (2639,'',NULL,1,'','Mars','March [month]','ViewTranslation',5910);
-INSERT INTO `globalize_translations` VALUES (2640,'',NULL,1,'','Prill','April [month]','ViewTranslation',5910);
-INSERT INTO `globalize_translations` VALUES (2641,'',NULL,1,'','Maj','May [month]','ViewTranslation',5910);
-INSERT INTO `globalize_translations` VALUES (2642,'',NULL,1,'','Qershor','June [month]','ViewTranslation',5910);
-INSERT INTO `globalize_translations` VALUES (2643,'',NULL,1,'','Korrik','July [month]','ViewTranslation',5910);
-INSERT INTO `globalize_translations` VALUES (2644,'',NULL,1,'','Gusht','August [month]','ViewTranslation',5910);
-INSERT INTO `globalize_translations` VALUES (2645,'',NULL,1,'','Shtator','September [month]','ViewTranslation',5910);
-INSERT INTO `globalize_translations` VALUES (2646,'',NULL,1,'','Tetor','October [month]','ViewTranslation',5910);
-INSERT INTO `globalize_translations` VALUES (2647,'',NULL,1,'','Nëntor','November [month]','ViewTranslation',5910);
-INSERT INTO `globalize_translations` VALUES (2648,'',NULL,1,'','Dhjetor','December [month]','ViewTranslation',5910);
-INSERT INTO `globalize_translations` VALUES (2649,'',NULL,1,'','Jan','Jan [abbreviated month]','ViewTranslation',5910);
-INSERT INTO `globalize_translations` VALUES (2650,'',NULL,1,'','Shk','Feb [abbreviated month]','ViewTranslation',5910);
-INSERT INTO `globalize_translations` VALUES (2651,'',NULL,1,'','Mar','Mar [abbreviated month]','ViewTranslation',5910);
-INSERT INTO `globalize_translations` VALUES (2652,'',NULL,1,'','Pri','Apr [abbreviated month]','ViewTranslation',5910);
-INSERT INTO `globalize_translations` VALUES (2653,'',NULL,1,'','Maj','May [abbreviated month]','ViewTranslation',5910);
-INSERT INTO `globalize_translations` VALUES (2654,'',NULL,1,'','Qer','Jun [abbreviated month]','ViewTranslation',5910);
-INSERT INTO `globalize_translations` VALUES (2655,'',NULL,1,'','Kor','Jul [abbreviated month]','ViewTranslation',5910);
-INSERT INTO `globalize_translations` VALUES (2656,'',NULL,1,'','Gsh','Aug [abbreviated month]','ViewTranslation',5910);
-INSERT INTO `globalize_translations` VALUES (2657,'',NULL,1,'','Sht','Sep [abbreviated month]','ViewTranslation',5910);
-INSERT INTO `globalize_translations` VALUES (2658,'',NULL,1,'','Tet','Oct [abbreviated month]','ViewTranslation',5910);
-INSERT INTO `globalize_translations` VALUES (2659,'',NULL,1,'','Nën','Nov [abbreviated month]','ViewTranslation',5910);
-INSERT INTO `globalize_translations` VALUES (2660,'',NULL,1,'','Dhj','Dec [abbreviated month]','ViewTranslation',5910);
-INSERT INTO `globalize_translations` VALUES (2661,'',NULL,1,'','Nedelja','Sunday [weekday]','ViewTranslation',5933);
-INSERT INTO `globalize_translations` VALUES (2662,'',NULL,1,'','Ponedeljak','Monday [weekday]','ViewTranslation',5933);
-INSERT INTO `globalize_translations` VALUES (2663,'',NULL,1,'','Utorak','Tuesday [weekday]','ViewTranslation',5933);
-INSERT INTO `globalize_translations` VALUES (2664,'',NULL,1,'','Sreda','Wednesday [weekday]','ViewTranslation',5933);
-INSERT INTO `globalize_translations` VALUES (2665,'',NULL,1,'','Četvrtak','Thursday [weekday]','ViewTranslation',5933);
-INSERT INTO `globalize_translations` VALUES (2666,'',NULL,1,'','Petak','Friday [weekday]','ViewTranslation',5933);
-INSERT INTO `globalize_translations` VALUES (2667,'',NULL,1,'','Subota','Saturday [weekday]','ViewTranslation',5933);
-INSERT INTO `globalize_translations` VALUES (2668,'',NULL,1,'','Ned','Sun [abbreviated weekday]','ViewTranslation',5933);
-INSERT INTO `globalize_translations` VALUES (2669,'',NULL,1,'','Pon','Mon [abbreviated weekday]','ViewTranslation',5933);
-INSERT INTO `globalize_translations` VALUES (2670,'',NULL,1,'','Uto','Tue [abbreviated weekday]','ViewTranslation',5933);
-INSERT INTO `globalize_translations` VALUES (2671,'',NULL,1,'','Sre','Wed [abbreviated weekday]','ViewTranslation',5933);
-INSERT INTO `globalize_translations` VALUES (2672,'',NULL,1,'','Čet','Thu [abbreviated weekday]','ViewTranslation',5933);
-INSERT INTO `globalize_translations` VALUES (2673,'',NULL,1,'','Pet','Fri [abbreviated weekday]','ViewTranslation',5933);
-INSERT INTO `globalize_translations` VALUES (2674,'',NULL,1,'','Sub','Sat [abbreviated weekday]','ViewTranslation',5933);
-INSERT INTO `globalize_translations` VALUES (2675,'',NULL,1,'','Januar','January [month]','ViewTranslation',5933);
-INSERT INTO `globalize_translations` VALUES (2676,'',NULL,1,'','Februar','February [month]','ViewTranslation',5933);
-INSERT INTO `globalize_translations` VALUES (2677,'',NULL,1,'','Mart','March [month]','ViewTranslation',5933);
-INSERT INTO `globalize_translations` VALUES (2678,'',NULL,1,'','April','April [month]','ViewTranslation',5933);
-INSERT INTO `globalize_translations` VALUES (2679,'',NULL,1,'','Maj','May [month]','ViewTranslation',5933);
-INSERT INTO `globalize_translations` VALUES (2680,'',NULL,1,'','Juni','June [month]','ViewTranslation',5933);
-INSERT INTO `globalize_translations` VALUES (2681,'',NULL,1,'','Juli','July [month]','ViewTranslation',5933);
-INSERT INTO `globalize_translations` VALUES (2682,'',NULL,1,'','Avgust','August [month]','ViewTranslation',5933);
-INSERT INTO `globalize_translations` VALUES (2683,'',NULL,1,'','Septembar','September [month]','ViewTranslation',5933);
-INSERT INTO `globalize_translations` VALUES (2684,'',NULL,1,'','Oktobar','October [month]','ViewTranslation',5933);
-INSERT INTO `globalize_translations` VALUES (2685,'',NULL,1,'','Novembar','November [month]','ViewTranslation',5933);
-INSERT INTO `globalize_translations` VALUES (2686,'',NULL,1,'','Decembar','December [month]','ViewTranslation',5933);
-INSERT INTO `globalize_translations` VALUES (2687,'',NULL,1,'','Jan','Jan [abbreviated month]','ViewTranslation',5933);
-INSERT INTO `globalize_translations` VALUES (2688,'',NULL,1,'','Feb','Feb [abbreviated month]','ViewTranslation',5933);
-INSERT INTO `globalize_translations` VALUES (2689,'',NULL,1,'','Mar','Mar [abbreviated month]','ViewTranslation',5933);
-INSERT INTO `globalize_translations` VALUES (2690,'',NULL,1,'','Apr','Apr [abbreviated month]','ViewTranslation',5933);
-INSERT INTO `globalize_translations` VALUES (2691,'',NULL,1,'','Maj','May [abbreviated month]','ViewTranslation',5933);
-INSERT INTO `globalize_translations` VALUES (2692,'',NULL,1,'','Jun','Jun [abbreviated month]','ViewTranslation',5933);
-INSERT INTO `globalize_translations` VALUES (2693,'',NULL,1,'','Jul','Jul [abbreviated month]','ViewTranslation',5933);
-INSERT INTO `globalize_translations` VALUES (2694,'',NULL,1,'','Avg','Aug [abbreviated month]','ViewTranslation',5933);
-INSERT INTO `globalize_translations` VALUES (2695,'',NULL,1,'','Sep','Sep [abbreviated month]','ViewTranslation',5933);
-INSERT INTO `globalize_translations` VALUES (2696,'',NULL,1,'','Okt','Oct [abbreviated month]','ViewTranslation',5933);
-INSERT INTO `globalize_translations` VALUES (2697,'',NULL,1,'','Nov','Nov [abbreviated month]','ViewTranslation',5933);
-INSERT INTO `globalize_translations` VALUES (2698,'',NULL,1,'','Dec','Dec [abbreviated month]','ViewTranslation',5933);
-INSERT INTO `globalize_translations` VALUES (2699,'',NULL,1,'','Sontaha','Sunday [weekday]','ViewTranslation',5882);
-INSERT INTO `globalize_translations` VALUES (2700,'',NULL,1,'','Mmantaha','Monday [weekday]','ViewTranslation',5882);
-INSERT INTO `globalize_translations` VALUES (2701,'',NULL,1,'','Labobedi','Tuesday [weekday]','ViewTranslation',5882);
-INSERT INTO `globalize_translations` VALUES (2702,'',NULL,1,'','Laboraru','Wednesday [weekday]','ViewTranslation',5882);
-INSERT INTO `globalize_translations` VALUES (2703,'',NULL,1,'','Labone','Thursday [weekday]','ViewTranslation',5882);
-INSERT INTO `globalize_translations` VALUES (2704,'',NULL,1,'','Labohlane','Friday [weekday]','ViewTranslation',5882);
-INSERT INTO `globalize_translations` VALUES (2705,'',NULL,1,'','Moqebelo','Saturday [weekday]','ViewTranslation',5882);
-INSERT INTO `globalize_translations` VALUES (2706,'',NULL,1,'','Son','Sun [abbreviated weekday]','ViewTranslation',5882);
-INSERT INTO `globalize_translations` VALUES (2707,'',NULL,1,'','Mma','Mon [abbreviated weekday]','ViewTranslation',5882);
-INSERT INTO `globalize_translations` VALUES (2708,'',NULL,1,'','Bed','Tue [abbreviated weekday]','ViewTranslation',5882);
-INSERT INTO `globalize_translations` VALUES (2709,'',NULL,1,'','Rar','Wed [abbreviated weekday]','ViewTranslation',5882);
-INSERT INTO `globalize_translations` VALUES (2710,'',NULL,1,'','Ne','Thu [abbreviated weekday]','ViewTranslation',5882);
-INSERT INTO `globalize_translations` VALUES (2711,'',NULL,1,'','Hla','Fri [abbreviated weekday]','ViewTranslation',5882);
-INSERT INTO `globalize_translations` VALUES (2712,'',NULL,1,'','Moq','Sat [abbreviated weekday]','ViewTranslation',5882);
-INSERT INTO `globalize_translations` VALUES (2713,'',NULL,1,'','Phesekgong','January [month]','ViewTranslation',5882);
-INSERT INTO `globalize_translations` VALUES (2714,'',NULL,1,'','Hlakola','February [month]','ViewTranslation',5882);
-INSERT INTO `globalize_translations` VALUES (2715,'',NULL,1,'','Hlakubele','March [month]','ViewTranslation',5882);
-INSERT INTO `globalize_translations` VALUES (2716,'',NULL,1,'','Mmese','April [month]','ViewTranslation',5882);
-INSERT INTO `globalize_translations` VALUES (2717,'',NULL,1,'','Motsheanong','May [month]','ViewTranslation',5882);
-INSERT INTO `globalize_translations` VALUES (2718,'',NULL,1,'','Phupjane','June [month]','ViewTranslation',5882);
-INSERT INTO `globalize_translations` VALUES (2719,'',NULL,1,'','Phupu','July [month]','ViewTranslation',5882);
-INSERT INTO `globalize_translations` VALUES (2720,'',NULL,1,'','Phata','August [month]','ViewTranslation',5882);
-INSERT INTO `globalize_translations` VALUES (2721,'',NULL,1,'','Leotshe','September [month]','ViewTranslation',5882);
-INSERT INTO `globalize_translations` VALUES (2722,'',NULL,1,'','Mphalane','October [month]','ViewTranslation',5882);
-INSERT INTO `globalize_translations` VALUES (2723,'',NULL,1,'','Pundungwane','November [month]','ViewTranslation',5882);
-INSERT INTO `globalize_translations` VALUES (2724,'',NULL,1,'','Tshitwe','December [month]','ViewTranslation',5882);
-INSERT INTO `globalize_translations` VALUES (2725,'',NULL,1,'','Phe','Jan [abbreviated month]','ViewTranslation',5882);
-INSERT INTO `globalize_translations` VALUES (2726,'',NULL,1,'','Kol','Feb [abbreviated month]','ViewTranslation',5882);
-INSERT INTO `globalize_translations` VALUES (2727,'',NULL,1,'','Ube','Mar [abbreviated month]','ViewTranslation',5882);
-INSERT INTO `globalize_translations` VALUES (2728,'',NULL,1,'','Mme','Apr [abbreviated month]','ViewTranslation',5882);
-INSERT INTO `globalize_translations` VALUES (2729,'',NULL,1,'','Mot','May [abbreviated month]','ViewTranslation',5882);
-INSERT INTO `globalize_translations` VALUES (2730,'',NULL,1,'','Jan','Jun [abbreviated month]','ViewTranslation',5882);
-INSERT INTO `globalize_translations` VALUES (2731,'',NULL,1,'','Upu','Jul [abbreviated month]','ViewTranslation',5882);
-INSERT INTO `globalize_translations` VALUES (2732,'',NULL,1,'','Pha','Aug [abbreviated month]','ViewTranslation',5882);
-INSERT INTO `globalize_translations` VALUES (2733,'',NULL,1,'','Leo','Sep [abbreviated month]','ViewTranslation',5882);
-INSERT INTO `globalize_translations` VALUES (2734,'',NULL,1,'','Mph','Oct [abbreviated month]','ViewTranslation',5882);
-INSERT INTO `globalize_translations` VALUES (2735,'',NULL,1,'','Pun','Nov [abbreviated month]','ViewTranslation',5882);
-INSERT INTO `globalize_translations` VALUES (2736,'',NULL,1,'','Tsh','Dec [abbreviated month]','ViewTranslation',5882);
-INSERT INTO `globalize_translations` VALUES (2737,'',NULL,1,'','Söndag','Sunday [weekday]','ViewTranslation',6024);
-INSERT INTO `globalize_translations` VALUES (2738,'',NULL,1,'','Måndag','Monday [weekday]','ViewTranslation',6024);
-INSERT INTO `globalize_translations` VALUES (2739,'',NULL,1,'','Tisdag','Tuesday [weekday]','ViewTranslation',6024);
-INSERT INTO `globalize_translations` VALUES (2740,'',NULL,1,'','Onsdag','Wednesday [weekday]','ViewTranslation',6024);
-INSERT INTO `globalize_translations` VALUES (2741,'',NULL,1,'','Torsdag','Thursday [weekday]','ViewTranslation',6024);
-INSERT INTO `globalize_translations` VALUES (2742,'',NULL,1,'','Fredag','Friday [weekday]','ViewTranslation',6024);
-INSERT INTO `globalize_translations` VALUES (2743,'',NULL,1,'','Lördag','Saturday [weekday]','ViewTranslation',6024);
-INSERT INTO `globalize_translations` VALUES (2744,'',NULL,1,'','Sön','Sun [abbreviated weekday]','ViewTranslation',6024);
-INSERT INTO `globalize_translations` VALUES (2745,'',NULL,1,'','Mån','Mon [abbreviated weekday]','ViewTranslation',6024);
-INSERT INTO `globalize_translations` VALUES (2746,'',NULL,1,'','Tis','Tue [abbreviated weekday]','ViewTranslation',6024);
-INSERT INTO `globalize_translations` VALUES (2747,'',NULL,1,'','Ons','Wed [abbreviated weekday]','ViewTranslation',6024);
-INSERT INTO `globalize_translations` VALUES (2748,'',NULL,1,'','Tor','Thu [abbreviated weekday]','ViewTranslation',6024);
-INSERT INTO `globalize_translations` VALUES (2749,'',NULL,1,'','Fre','Fri [abbreviated weekday]','ViewTranslation',6024);
-INSERT INTO `globalize_translations` VALUES (2750,'',NULL,1,'','Lör','Sat [abbreviated weekday]','ViewTranslation',6024);
-INSERT INTO `globalize_translations` VALUES (2751,'',NULL,1,'','Januari','January [month]','ViewTranslation',6024);
-INSERT INTO `globalize_translations` VALUES (2752,'',NULL,1,'','Februari','February [month]','ViewTranslation',6024);
-INSERT INTO `globalize_translations` VALUES (2753,'',NULL,1,'','Mars','March [month]','ViewTranslation',6024);
-INSERT INTO `globalize_translations` VALUES (2754,'',NULL,1,'','April','April [month]','ViewTranslation',6024);
-INSERT INTO `globalize_translations` VALUES (2755,'',NULL,1,'','Maj','May [month]','ViewTranslation',6024);
-INSERT INTO `globalize_translations` VALUES (2756,'',NULL,1,'','Juni','June [month]','ViewTranslation',6024);
-INSERT INTO `globalize_translations` VALUES (2757,'',NULL,1,'','Juli','July [month]','ViewTranslation',6024);
-INSERT INTO `globalize_translations` VALUES (2758,'',NULL,1,'','Augusti','August [month]','ViewTranslation',6024);
-INSERT INTO `globalize_translations` VALUES (2759,'',NULL,1,'','September','September [month]','ViewTranslation',6024);
-INSERT INTO `globalize_translations` VALUES (2760,'',NULL,1,'','Oktober','October [month]','ViewTranslation',6024);
-INSERT INTO `globalize_translations` VALUES (2761,'',NULL,1,'','November','November [month]','ViewTranslation',6024);
-INSERT INTO `globalize_translations` VALUES (2762,'',NULL,1,'','December','December [month]','ViewTranslation',6024);
-INSERT INTO `globalize_translations` VALUES (2763,'',NULL,1,'','Jan','Jan [abbreviated month]','ViewTranslation',6024);
-INSERT INTO `globalize_translations` VALUES (2764,'',NULL,1,'','Feb','Feb [abbreviated month]','ViewTranslation',6024);
-INSERT INTO `globalize_translations` VALUES (2765,'',NULL,1,'','Mar','Mar [abbreviated month]','ViewTranslation',6024);
-INSERT INTO `globalize_translations` VALUES (2766,'',NULL,1,'','Apr','Apr [abbreviated month]','ViewTranslation',6024);
-INSERT INTO `globalize_translations` VALUES (2767,'',NULL,1,'','Maj','May [abbreviated month]','ViewTranslation',6024);
-INSERT INTO `globalize_translations` VALUES (2768,'',NULL,1,'','Jun','Jun [abbreviated month]','ViewTranslation',6024);
-INSERT INTO `globalize_translations` VALUES (2769,'',NULL,1,'','Jul','Jul [abbreviated month]','ViewTranslation',6024);
-INSERT INTO `globalize_translations` VALUES (2770,'',NULL,1,'','Aug','Aug [abbreviated month]','ViewTranslation',6024);
-INSERT INTO `globalize_translations` VALUES (2771,'',NULL,1,'','Sep','Sep [abbreviated month]','ViewTranslation',6024);
-INSERT INTO `globalize_translations` VALUES (2772,'',NULL,1,'','Okt','Oct [abbreviated month]','ViewTranslation',6024);
-INSERT INTO `globalize_translations` VALUES (2773,'',NULL,1,'','Nov','Nov [abbreviated month]','ViewTranslation',6024);
-INSERT INTO `globalize_translations` VALUES (2774,'',NULL,1,'','Dec','Dec [abbreviated month]','ViewTranslation',6024);
-INSERT INTO `globalize_translations` VALUES (2775,'',NULL,1,'','ஞாயிறு','Sunday [weekday]','ViewTranslation',6090);
-INSERT INTO `globalize_translations` VALUES (2776,'',NULL,1,'','திங்கள்','Monday [weekday]','ViewTranslation',6090);
-INSERT INTO `globalize_translations` VALUES (2777,'',NULL,1,'','செவ்வாய்','Tuesday [weekday]','ViewTranslation',6090);
-INSERT INTO `globalize_translations` VALUES (2778,'',NULL,1,'','புதன்','Wednesday [weekday]','ViewTranslation',6090);
-INSERT INTO `globalize_translations` VALUES (2779,'',NULL,1,'','வியாழன்','Thursday [weekday]','ViewTranslation',6090);
-INSERT INTO `globalize_translations` VALUES (2780,'',NULL,1,'','வெள்ளி','Friday [weekday]','ViewTranslation',6090);
-INSERT INTO `globalize_translations` VALUES (2781,'',NULL,1,'','சனி','Saturday [weekday]','ViewTranslation',6090);
-INSERT INTO `globalize_translations` VALUES (2782,'',NULL,1,'','ஞ','Sun [abbreviated weekday]','ViewTranslation',6090);
-INSERT INTO `globalize_translations` VALUES (2783,'',NULL,1,'','த','Mon [abbreviated weekday]','ViewTranslation',6090);
-INSERT INTO `globalize_translations` VALUES (2784,'',NULL,1,'','ச','Tue [abbreviated weekday]','ViewTranslation',6090);
-INSERT INTO `globalize_translations` VALUES (2785,'',NULL,1,'','ப','Wed [abbreviated weekday]','ViewTranslation',6090);
-INSERT INTO `globalize_translations` VALUES (2786,'',NULL,1,'','வ','Thu [abbreviated weekday]','ViewTranslation',6090);
-INSERT INTO `globalize_translations` VALUES (2787,'',NULL,1,'','வ','Fri [abbreviated weekday]','ViewTranslation',6090);
-INSERT INTO `globalize_translations` VALUES (2788,'',NULL,1,'','ச','Sat [abbreviated weekday]','ViewTranslation',6090);
-INSERT INTO `globalize_translations` VALUES (2789,'',NULL,1,'','ஜனவரி','January [month]','ViewTranslation',6090);
-INSERT INTO `globalize_translations` VALUES (2790,'',NULL,1,'','பெப்ரவரி','February [month]','ViewTranslation',6090);
-INSERT INTO `globalize_translations` VALUES (2791,'',NULL,1,'','மார்ச்','March [month]','ViewTranslation',6090);
-INSERT INTO `globalize_translations` VALUES (2792,'',NULL,1,'','ஏப்ரல்','April [month]','ViewTranslation',6090);
-INSERT INTO `globalize_translations` VALUES (2793,'',NULL,1,'','மே','May [month]','ViewTranslation',6090);
-INSERT INTO `globalize_translations` VALUES (2794,'',NULL,1,'','ஜூன்','June [month]','ViewTranslation',6090);
-INSERT INTO `globalize_translations` VALUES (2795,'',NULL,1,'','ஜூலை','July [month]','ViewTranslation',6090);
-INSERT INTO `globalize_translations` VALUES (2796,'',NULL,1,'','ஆகஸ்ட்','August [month]','ViewTranslation',6090);
-INSERT INTO `globalize_translations` VALUES (2797,'',NULL,1,'','செப்டம்பர்','September [month]','ViewTranslation',6090);
-INSERT INTO `globalize_translations` VALUES (2798,'',NULL,1,'','அக்டோபர்','October [month]','ViewTranslation',6090);
-INSERT INTO `globalize_translations` VALUES (2799,'',NULL,1,'','நவம்பர்','November [month]','ViewTranslation',6090);
-INSERT INTO `globalize_translations` VALUES (2800,'',NULL,1,'','டிசம்பர்r','December [month]','ViewTranslation',6090);
-INSERT INTO `globalize_translations` VALUES (2801,'',NULL,1,'','ஜனவரி','Jan [abbreviated month]','ViewTranslation',6090);
-INSERT INTO `globalize_translations` VALUES (2802,'',NULL,1,'','பெப்ரவரி','Feb [abbreviated month]','ViewTranslation',6090);
-INSERT INTO `globalize_translations` VALUES (2803,'',NULL,1,'','மார்ச்','Mar [abbreviated month]','ViewTranslation',6090);
-INSERT INTO `globalize_translations` VALUES (2804,'',NULL,1,'','ஏப்ரல்','Apr [abbreviated month]','ViewTranslation',6090);
-INSERT INTO `globalize_translations` VALUES (2805,'',NULL,1,'','மே','May [abbreviated month]','ViewTranslation',6090);
-INSERT INTO `globalize_translations` VALUES (2806,'',NULL,1,'','ஜூன்','Jun [abbreviated month]','ViewTranslation',6090);
-INSERT INTO `globalize_translations` VALUES (2807,'',NULL,1,'','ஜூலை','Jul [abbreviated month]','ViewTranslation',6090);
-INSERT INTO `globalize_translations` VALUES (2808,'',NULL,1,'','ஆகஸ்ட்','Aug [abbreviated month]','ViewTranslation',6090);
-INSERT INTO `globalize_translations` VALUES (2809,'',NULL,1,'','செப்டம்பர்','Sep [abbreviated month]','ViewTranslation',6090);
-INSERT INTO `globalize_translations` VALUES (2810,'',NULL,1,'','அக்டோபர்','Oct [abbreviated month]','ViewTranslation',6090);
-INSERT INTO `globalize_translations` VALUES (2811,'',NULL,1,'','நவம்பர்','Nov [abbreviated month]','ViewTranslation',6090);
-INSERT INTO `globalize_translations` VALUES (2812,'',NULL,1,'','டிசம்பர்r','Dec [abbreviated month]','ViewTranslation',6090);
-INSERT INTO `globalize_translations` VALUES (2813,'',NULL,1,'','ఆదివారం','Sunday [weekday]','ViewTranslation',6182);
-INSERT INTO `globalize_translations` VALUES (2814,'',NULL,1,'','సోమవారం','Monday [weekday]','ViewTranslation',6182);
-INSERT INTO `globalize_translations` VALUES (2815,'',NULL,1,'','మంగళవారం','Tuesday [weekday]','ViewTranslation',6182);
-INSERT INTO `globalize_translations` VALUES (2816,'',NULL,1,'','బుధవారం','Wednesday [weekday]','ViewTranslation',6182);
-INSERT INTO `globalize_translations` VALUES (2817,'',NULL,1,'','గురువారం','Thursday [weekday]','ViewTranslation',6182);
-INSERT INTO `globalize_translations` VALUES (2818,'',NULL,1,'','శుక్రవారం','Friday [weekday]','ViewTranslation',6182);
-INSERT INTO `globalize_translations` VALUES (2819,'',NULL,1,'','శనివారం','Saturday [weekday]','ViewTranslation',6182);
-INSERT INTO `globalize_translations` VALUES (2820,'',NULL,1,'','ఆది','Sun [abbreviated weekday]','ViewTranslation',6182);
-INSERT INTO `globalize_translations` VALUES (2821,'',NULL,1,'','సోమ','Mon [abbreviated weekday]','ViewTranslation',6182);
-INSERT INTO `globalize_translations` VALUES (2822,'',NULL,1,'','మంగళ','Tue [abbreviated weekday]','ViewTranslation',6182);
-INSERT INTO `globalize_translations` VALUES (2823,'',NULL,1,'','బుధ','Wed [abbreviated weekday]','ViewTranslation',6182);
-INSERT INTO `globalize_translations` VALUES (2824,'',NULL,1,'','గురు','Thu [abbreviated weekday]','ViewTranslation',6182);
-INSERT INTO `globalize_translations` VALUES (2825,'',NULL,1,'','శుక్ర','Fri [abbreviated weekday]','ViewTranslation',6182);
-INSERT INTO `globalize_translations` VALUES (2826,'',NULL,1,'','శని','Sat [abbreviated weekday]','ViewTranslation',6182);
-INSERT INTO `globalize_translations` VALUES (2827,'',NULL,1,'','జనవరి','January [month]','ViewTranslation',6182);
-INSERT INTO `globalize_translations` VALUES (2828,'',NULL,1,'','ఫిబ్రవరి','February [month]','ViewTranslation',6182);
-INSERT INTO `globalize_translations` VALUES (2829,'',NULL,1,'','మార్చి','March [month]','ViewTranslation',6182);
-INSERT INTO `globalize_translations` VALUES (2830,'',NULL,1,'','ఏప్రిల్','April [month]','ViewTranslation',6182);
-INSERT INTO `globalize_translations` VALUES (2831,'',NULL,1,'','మే','May [month]','ViewTranslation',6182);
-INSERT INTO `globalize_translations` VALUES (2832,'',NULL,1,'','జూన్','June [month]','ViewTranslation',6182);
-INSERT INTO `globalize_translations` VALUES (2833,'',NULL,1,'','జూలై','July [month]','ViewTranslation',6182);
-INSERT INTO `globalize_translations` VALUES (2834,'',NULL,1,'','ఆగస్టు','August [month]','ViewTranslation',6182);
-INSERT INTO `globalize_translations` VALUES (2835,'',NULL,1,'','సెప్టెంబర్','September [month]','ViewTranslation',6182);
-INSERT INTO `globalize_translations` VALUES (2836,'',NULL,1,'','అక్టోబర్','October [month]','ViewTranslation',6182);
-INSERT INTO `globalize_translations` VALUES (2837,'',NULL,1,'','నవంబర్','November [month]','ViewTranslation',6182);
-INSERT INTO `globalize_translations` VALUES (2838,'',NULL,1,'','డిసెంబర్','December [month]','ViewTranslation',6182);
-INSERT INTO `globalize_translations` VALUES (2839,'',NULL,1,'','జనవరి','Jan [abbreviated month]','ViewTranslation',6182);
-INSERT INTO `globalize_translations` VALUES (2840,'',NULL,1,'','ఫిబ్రవరి','Feb [abbreviated month]','ViewTranslation',6182);
-INSERT INTO `globalize_translations` VALUES (2841,'',NULL,1,'','మార్చి','Mar [abbreviated month]','ViewTranslation',6182);
-INSERT INTO `globalize_translations` VALUES (2842,'',NULL,1,'','ఏప్రిల్','Apr [abbreviated month]','ViewTranslation',6182);
-INSERT INTO `globalize_translations` VALUES (2843,'',NULL,1,'','మే','May [abbreviated month]','ViewTranslation',6182);
-INSERT INTO `globalize_translations` VALUES (2844,'',NULL,1,'','జూన్','Jun [abbreviated month]','ViewTranslation',6182);
-INSERT INTO `globalize_translations` VALUES (2845,'',NULL,1,'','జూలై','Jul [abbreviated month]','ViewTranslation',6182);
-INSERT INTO `globalize_translations` VALUES (2846,'',NULL,1,'','ఆగస్టు','Aug [abbreviated month]','ViewTranslation',6182);
-INSERT INTO `globalize_translations` VALUES (2847,'',NULL,1,'','సెప్టెంబర్','Sep [abbreviated month]','ViewTranslation',6182);
-INSERT INTO `globalize_translations` VALUES (2848,'',NULL,1,'','అక్టోబర్','Oct [abbreviated month]','ViewTranslation',6182);
-INSERT INTO `globalize_translations` VALUES (2849,'',NULL,1,'','నవంబర్','Nov [abbreviated month]','ViewTranslation',6182);
-INSERT INTO `globalize_translations` VALUES (2850,'',NULL,1,'','డిసెంబర్','Dec [abbreviated month]','ViewTranslation',6182);
-INSERT INTO `globalize_translations` VALUES (2851,'',NULL,1,'','Воскресенье','Sunday [weekday]','ViewTranslation',6210);
-INSERT INTO `globalize_translations` VALUES (2852,'',NULL,1,'','Понедельник','Monday [weekday]','ViewTranslation',6210);
-INSERT INTO `globalize_translations` VALUES (2853,'',NULL,1,'','Вторник','Tuesday [weekday]','ViewTranslation',6210);
-INSERT INTO `globalize_translations` VALUES (2854,'',NULL,1,'','Среда','Wednesday [weekday]','ViewTranslation',6210);
-INSERT INTO `globalize_translations` VALUES (2855,'',NULL,1,'','Четверг','Thursday [weekday]','ViewTranslation',6210);
-INSERT INTO `globalize_translations` VALUES (2856,'',NULL,1,'','Пятница','Friday [weekday]','ViewTranslation',6210);
-INSERT INTO `globalize_translations` VALUES (2857,'',NULL,1,'','Суббота','Saturday [weekday]','ViewTranslation',6210);
-INSERT INTO `globalize_translations` VALUES (2858,'',NULL,1,'','Вск','Sun [abbreviated weekday]','ViewTranslation',6210);
-INSERT INTO `globalize_translations` VALUES (2859,'',NULL,1,'','Пнд','Mon [abbreviated weekday]','ViewTranslation',6210);
-INSERT INTO `globalize_translations` VALUES (2860,'',NULL,1,'','Втр','Tue [abbreviated weekday]','ViewTranslation',6210);
-INSERT INTO `globalize_translations` VALUES (2861,'',NULL,1,'','Срд','Wed [abbreviated weekday]','ViewTranslation',6210);
-INSERT INTO `globalize_translations` VALUES (2862,'',NULL,1,'','Чтв','Thu [abbreviated weekday]','ViewTranslation',6210);
-INSERT INTO `globalize_translations` VALUES (2863,'',NULL,1,'','Птн','Fri [abbreviated weekday]','ViewTranslation',6210);
-INSERT INTO `globalize_translations` VALUES (2864,'',NULL,1,'','Сбт','Sat [abbreviated weekday]','ViewTranslation',6210);
-INSERT INTO `globalize_translations` VALUES (2865,'',NULL,1,'','Января','January [month]','ViewTranslation',6210);
-INSERT INTO `globalize_translations` VALUES (2866,'',NULL,1,'','Февраля','February [month]','ViewTranslation',6210);
-INSERT INTO `globalize_translations` VALUES (2867,'',NULL,1,'','Марта','March [month]','ViewTranslation',6210);
-INSERT INTO `globalize_translations` VALUES (2868,'',NULL,1,'','Апреля','April [month]','ViewTranslation',6210);
-INSERT INTO `globalize_translations` VALUES (2869,'',NULL,1,'','Мая','May [month]','ViewTranslation',6210);
-INSERT INTO `globalize_translations` VALUES (2870,'',NULL,1,'','Июня','June [month]','ViewTranslation',6210);
-INSERT INTO `globalize_translations` VALUES (2871,'',NULL,1,'','Июля','July [month]','ViewTranslation',6210);
-INSERT INTO `globalize_translations` VALUES (2872,'',NULL,1,'','Августа','August [month]','ViewTranslation',6210);
-INSERT INTO `globalize_translations` VALUES (2873,'',NULL,1,'','Сентября','September [month]','ViewTranslation',6210);
-INSERT INTO `globalize_translations` VALUES (2874,'',NULL,1,'','Октября','October [month]','ViewTranslation',6210);
-INSERT INTO `globalize_translations` VALUES (2875,'',NULL,1,'','Ноября','November [month]','ViewTranslation',6210);
-INSERT INTO `globalize_translations` VALUES (2876,'',NULL,1,'','Декабря','December [month]','ViewTranslation',6210);
-INSERT INTO `globalize_translations` VALUES (2877,'',NULL,1,'','Янв','Jan [abbreviated month]','ViewTranslation',6210);
-INSERT INTO `globalize_translations` VALUES (2878,'',NULL,1,'','Фев','Feb [abbreviated month]','ViewTranslation',6210);
-INSERT INTO `globalize_translations` VALUES (2879,'',NULL,1,'','Мар','Mar [abbreviated month]','ViewTranslation',6210);
-INSERT INTO `globalize_translations` VALUES (2880,'',NULL,1,'','Апр','Apr [abbreviated month]','ViewTranslation',6210);
-INSERT INTO `globalize_translations` VALUES (2881,'',NULL,1,'','Май','May [abbreviated month]','ViewTranslation',6210);
-INSERT INTO `globalize_translations` VALUES (2882,'',NULL,1,'','Июн','Jun [abbreviated month]','ViewTranslation',6210);
-INSERT INTO `globalize_translations` VALUES (2883,'',NULL,1,'','Июл','Jul [abbreviated month]','ViewTranslation',6210);
-INSERT INTO `globalize_translations` VALUES (2884,'',NULL,1,'','Авг','Aug [abbreviated month]','ViewTranslation',6210);
-INSERT INTO `globalize_translations` VALUES (2885,'',NULL,1,'','Сен','Sep [abbreviated month]','ViewTranslation',6210);
-INSERT INTO `globalize_translations` VALUES (2886,'',NULL,1,'','Окт','Oct [abbreviated month]','ViewTranslation',6210);
-INSERT INTO `globalize_translations` VALUES (2887,'',NULL,1,'','Ноя','Nov [abbreviated month]','ViewTranslation',6210);
-INSERT INTO `globalize_translations` VALUES (2888,'',NULL,1,'','Дек','Dec [abbreviated month]','ViewTranslation',6210);
-INSERT INTO `globalize_translations` VALUES (2889,'',NULL,1,'','อาทิตย์','Sunday [weekday]','ViewTranslation',6223);
-INSERT INTO `globalize_translations` VALUES (2890,'',NULL,1,'','จันทร์','Monday [weekday]','ViewTranslation',6223);
-INSERT INTO `globalize_translations` VALUES (2891,'',NULL,1,'','อังคาร','Tuesday [weekday]','ViewTranslation',6223);
-INSERT INTO `globalize_translations` VALUES (2892,'',NULL,1,'','พุธ','Wednesday [weekday]','ViewTranslation',6223);
-INSERT INTO `globalize_translations` VALUES (2893,'',NULL,1,'','พฤหัสบดี','Thursday [weekday]','ViewTranslation',6223);
-INSERT INTO `globalize_translations` VALUES (2894,'',NULL,1,'','ศุกร์','Friday [weekday]','ViewTranslation',6223);
-INSERT INTO `globalize_translations` VALUES (2895,'',NULL,1,'','เสาร์','Saturday [weekday]','ViewTranslation',6223);
-INSERT INTO `globalize_translations` VALUES (2896,'',NULL,1,'','อา.','Sun [abbreviated weekday]','ViewTranslation',6223);
-INSERT INTO `globalize_translations` VALUES (2897,'',NULL,1,'','จ.','Mon [abbreviated weekday]','ViewTranslation',6223);
-INSERT INTO `globalize_translations` VALUES (2898,'',NULL,1,'','อ.','Tue [abbreviated weekday]','ViewTranslation',6223);
-INSERT INTO `globalize_translations` VALUES (2899,'',NULL,1,'','พ.','Wed [abbreviated weekday]','ViewTranslation',6223);
-INSERT INTO `globalize_translations` VALUES (2900,'',NULL,1,'','พฤ.','Thu [abbreviated weekday]','ViewTranslation',6223);
-INSERT INTO `globalize_translations` VALUES (2901,'',NULL,1,'','ศ.','Fri [abbreviated weekday]','ViewTranslation',6223);
-INSERT INTO `globalize_translations` VALUES (2902,'',NULL,1,'','ส.','Sat [abbreviated weekday]','ViewTranslation',6223);
-INSERT INTO `globalize_translations` VALUES (2903,'',NULL,1,'','มกราคม','January [month]','ViewTranslation',6223);
-INSERT INTO `globalize_translations` VALUES (2904,'',NULL,1,'','กุมภาพันธ์','February [month]','ViewTranslation',6223);
-INSERT INTO `globalize_translations` VALUES (2905,'',NULL,1,'','มีนาคม','March [month]','ViewTranslation',6223);
-INSERT INTO `globalize_translations` VALUES (2906,'',NULL,1,'','เมษายน','April [month]','ViewTranslation',6223);
-INSERT INTO `globalize_translations` VALUES (2907,'',NULL,1,'','พฤษภาคม','May [month]','ViewTranslation',6223);
-INSERT INTO `globalize_translations` VALUES (2908,'',NULL,1,'','มิถุนายน','June [month]','ViewTranslation',6223);
-INSERT INTO `globalize_translations` VALUES (2909,'',NULL,1,'','กรกฎาคม','July [month]','ViewTranslation',6223);
-INSERT INTO `globalize_translations` VALUES (2910,'',NULL,1,'','สิงหาคม','August [month]','ViewTranslation',6223);
-INSERT INTO `globalize_translations` VALUES (2911,'',NULL,1,'','กันยายน','September [month]','ViewTranslation',6223);
-INSERT INTO `globalize_translations` VALUES (2912,'',NULL,1,'','ตุลาคม','October [month]','ViewTranslation',6223);
-INSERT INTO `globalize_translations` VALUES (2913,'',NULL,1,'','พฤศจิกายน','November [month]','ViewTranslation',6223);
-INSERT INTO `globalize_translations` VALUES (2914,'',NULL,1,'','ธันวาคม','December [month]','ViewTranslation',6223);
-INSERT INTO `globalize_translations` VALUES (2915,'',NULL,1,'','ม.ค.','Jan [abbreviated month]','ViewTranslation',6223);
-INSERT INTO `globalize_translations` VALUES (2916,'',NULL,1,'','ก.พ.','Feb [abbreviated month]','ViewTranslation',6223);
-INSERT INTO `globalize_translations` VALUES (2917,'',NULL,1,'','มี.ค.','Mar [abbreviated month]','ViewTranslation',6223);
-INSERT INTO `globalize_translations` VALUES (2918,'',NULL,1,'','เม.ย.','Apr [abbreviated month]','ViewTranslation',6223);
-INSERT INTO `globalize_translations` VALUES (2919,'',NULL,1,'','พ.ค.','May [abbreviated month]','ViewTranslation',6223);
-INSERT INTO `globalize_translations` VALUES (2920,'',NULL,1,'','มิ.ย.','Jun [abbreviated month]','ViewTranslation',6223);
-INSERT INTO `globalize_translations` VALUES (2921,'',NULL,1,'','ก.ค.','Jul [abbreviated month]','ViewTranslation',6223);
-INSERT INTO `globalize_translations` VALUES (2922,'',NULL,1,'','ส.ค.','Aug [abbreviated month]','ViewTranslation',6223);
-INSERT INTO `globalize_translations` VALUES (2923,'',NULL,1,'','ก.ย.','Sep [abbreviated month]','ViewTranslation',6223);
-INSERT INTO `globalize_translations` VALUES (2924,'',NULL,1,'','ต.ค.','Oct [abbreviated month]','ViewTranslation',6223);
-INSERT INTO `globalize_translations` VALUES (2925,'',NULL,1,'','พ.ย.','Nov [abbreviated month]','ViewTranslation',6223);
-INSERT INTO `globalize_translations` VALUES (2926,'',NULL,1,'','ธ.ค.','Dec [abbreviated month]','ViewTranslation',6223);
-INSERT INTO `globalize_translations` VALUES (2927,'',NULL,1,'','ሰንበት ዓባይ','Sunday [weekday]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2928,'',NULL,1,'','ሰኖ','Monday [weekday]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2929,'',NULL,1,'','ታላሸኖ','Tuesday [weekday]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2930,'',NULL,1,'','ኣረርባዓ','Wednesday [weekday]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2931,'',NULL,1,'','ከሚሽ','Thursday [weekday]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2932,'',NULL,1,'','ጅምዓት','Friday [weekday]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2933,'',NULL,1,'','ሰንበት ንኢሽ','Saturday [weekday]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2934,'',NULL,1,'','ሰ/ዓ','Sun [abbreviated weekday]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2935,'',NULL,1,'','ሰኖ ','Mon [abbreviated weekday]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2936,'',NULL,1,'','ታላሸ','Tue [abbreviated weekday]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2937,'',NULL,1,'','ኣረር','Wed [abbreviated weekday]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2938,'',NULL,1,'','ከሚሽ','Thu [abbreviated weekday]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2939,'',NULL,1,'','ጅምዓ','Fri [abbreviated weekday]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2940,'',NULL,1,'','ሰ/ን','Sat [abbreviated weekday]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2941,'',NULL,1,'','ጥሪ','January [month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2942,'',NULL,1,'','ለካቲት','February [month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2943,'',NULL,1,'','መጋቢት','March [month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2944,'',NULL,1,'','ሚያዝያ','April [month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2945,'',NULL,1,'','ግንቦት','May [month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2946,'',NULL,1,'','ሰነ','June [month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2947,'',NULL,1,'','ሓምለ','July [month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2948,'',NULL,1,'','ነሓሰ','August [month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2949,'',NULL,1,'','መስከረም','September [month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2950,'',NULL,1,'','ጥቅምቲ','October [month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2951,'',NULL,1,'','ሕዳር','November [month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2952,'',NULL,1,'','ታሕሳስ','December [month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2953,'',NULL,1,'','ጥሪ ','Jan [abbreviated month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2954,'',NULL,1,'','ለካቲ','Feb [abbreviated month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2955,'',NULL,1,'','መጋቢ','Mar [abbreviated month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2956,'',NULL,1,'','ሚያዝ','Apr [abbreviated month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2957,'',NULL,1,'','ግንቦ','May [abbreviated month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2958,'',NULL,1,'','ሰነ ','Jun [abbreviated month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2959,'',NULL,1,'','ሓምለ','Jul [abbreviated month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2960,'',NULL,1,'','ነሓሰ','Aug [abbreviated month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2961,'',NULL,1,'','መስከ','Sep [abbreviated month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2962,'',NULL,1,'','ጥቅም','Oct [abbreviated month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2963,'',NULL,1,'','ሕዳር','Nov [abbreviated month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2964,'',NULL,1,'','ታሕሳ','Dec [abbreviated month]','ViewTranslation',NULL);
-INSERT INTO `globalize_translations` VALUES (2965,'',NULL,1,'','Linggo','Sunday [weekday]','ViewTranslation',6211);
-INSERT INTO `globalize_translations` VALUES (2966,'',NULL,1,'','Lunes','Monday [weekday]','ViewTranslation',6211);
-INSERT INTO `globalize_translations` VALUES (2967,'',NULL,1,'','Martes','Tuesday [weekday]','ViewTranslation',6211);
-INSERT INTO `globalize_translations` VALUES (2968,'',NULL,1,'','Miyerkoles','Wednesday [weekday]','ViewTranslation',6211);
-INSERT INTO `globalize_translations` VALUES (2969,'',NULL,1,'','Huwebes','Thursday [weekday]','ViewTranslation',6211);
-INSERT INTO `globalize_translations` VALUES (2970,'',NULL,1,'','Biyernes','Friday [weekday]','ViewTranslation',6211);
-INSERT INTO `globalize_translations` VALUES (2971,'',NULL,1,'','Sabado','Saturday [weekday]','ViewTranslation',6211);
-INSERT INTO `globalize_translations` VALUES (2972,'',NULL,1,'','Lin','Sun [abbreviated weekday]','ViewTranslation',6211);
-INSERT INTO `globalize_translations` VALUES (2973,'',NULL,1,'','Lun','Mon [abbreviated weekday]','ViewTranslation',6211);
-INSERT INTO `globalize_translations` VALUES (2974,'',NULL,1,'','Mar','Tue [abbreviated weekday]','ViewTranslation',6211);
-INSERT INTO `globalize_translations` VALUES (2975,'',NULL,1,'','Miy','Wed [abbreviated weekday]','ViewTranslation',6211);
-INSERT INTO `globalize_translations` VALUES (2976,'',NULL,1,'','Huw','Thu [abbreviated weekday]','ViewTranslation',6211);
-INSERT INTO `globalize_translations` VALUES (2977,'',NULL,1,'','Biy','Fri [abbreviated weekday]','ViewTranslation',6211);
-INSERT INTO `globalize_translations` VALUES (2978,'',NULL,1,'','Sab','Sat [abbreviated weekday]','ViewTranslation',6211);
-INSERT INTO `globalize_translations` VALUES (2979,'',NULL,1,'','Enero','January [month]','ViewTranslation',6211);
-INSERT INTO `globalize_translations` VALUES (2980,'',NULL,1,'','Pebrero','February [month]','ViewTranslation',6211);
-INSERT INTO `globalize_translations` VALUES (2981,'',NULL,1,'','Marso','March [month]','ViewTranslation',6211);
-INSERT INTO `globalize_translations` VALUES (2982,'',NULL,1,'','Abril','April [month]','ViewTranslation',6211);
-INSERT INTO `globalize_translations` VALUES (2983,'',NULL,1,'','Mayo','May [month]','ViewTranslation',6211);
-INSERT INTO `globalize_translations` VALUES (2984,'',NULL,1,'','Hunyo','June [month]','ViewTranslation',6211);
-INSERT INTO `globalize_translations` VALUES (2985,'',NULL,1,'','Hulyo','July [month]','ViewTranslation',6211);
-INSERT INTO `globalize_translations` VALUES (2986,'',NULL,1,'','Agosto','August [month]','ViewTranslation',6211);
-INSERT INTO `globalize_translations` VALUES (2987,'',NULL,1,'','Septiyembre','September [month]','ViewTranslation',6211);
-INSERT INTO `globalize_translations` VALUES (2988,'',NULL,1,'','Oktubre','October [month]','ViewTranslation',6211);
-INSERT INTO `globalize_translations` VALUES (2989,'',NULL,1,'','Nobiyembre','November [month]','ViewTranslation',6211);
-INSERT INTO `globalize_translations` VALUES (2990,'',NULL,1,'','Disyembre','December [month]','ViewTranslation',6211);
-INSERT INTO `globalize_translations` VALUES (2991,'',NULL,1,'','Ene','Jan [abbreviated month]','ViewTranslation',6211);
-INSERT INTO `globalize_translations` VALUES (2992,'',NULL,1,'','Peb','Feb [abbreviated month]','ViewTranslation',6211);
-INSERT INTO `globalize_translations` VALUES (2993,'',NULL,1,'','Mar','Mar [abbreviated month]','ViewTranslation',6211);
-INSERT INTO `globalize_translations` VALUES (2994,'',NULL,1,'','Abr','Apr [abbreviated month]','ViewTranslation',6211);
-INSERT INTO `globalize_translations` VALUES (2995,'',NULL,1,'','May','May [abbreviated month]','ViewTranslation',6211);
-INSERT INTO `globalize_translations` VALUES (2996,'',NULL,1,'','Hun','Jun [abbreviated month]','ViewTranslation',6211);
-INSERT INTO `globalize_translations` VALUES (2997,'',NULL,1,'','Hul','Jul [abbreviated month]','ViewTranslation',6211);
-INSERT INTO `globalize_translations` VALUES (2998,'',NULL,1,'','Ago','Aug [abbreviated month]','ViewTranslation',6211);
-INSERT INTO `globalize_translations` VALUES (2999,'',NULL,1,'','Sep','Sep [abbreviated month]','ViewTranslation',6211);
-INSERT INTO `globalize_translations` VALUES (3000,'',NULL,1,'','Okt','Oct [abbreviated month]','ViewTranslation',6211);
-INSERT INTO `globalize_translations` VALUES (3001,'',NULL,1,'','Nob','Nov [abbreviated month]','ViewTranslation',6211);
-INSERT INTO `globalize_translations` VALUES (3002,'',NULL,1,'','Dis','Dec [abbreviated month]','ViewTranslation',6211);
-INSERT INTO `globalize_translations` VALUES (3003,'',NULL,1,'','Pazar','Sunday [weekday]','ViewTranslation',6519);
-INSERT INTO `globalize_translations` VALUES (3004,'',NULL,1,'','Pazartesi','Monday [weekday]','ViewTranslation',6519);
-INSERT INTO `globalize_translations` VALUES (3005,'',NULL,1,'','Salı','Tuesday [weekday]','ViewTranslation',6519);
-INSERT INTO `globalize_translations` VALUES (3006,'',NULL,1,'','Çarşamba','Wednesday [weekday]','ViewTranslation',6519);
-INSERT INTO `globalize_translations` VALUES (3007,'',NULL,1,'','Perşembe','Thursday [weekday]','ViewTranslation',6519);
-INSERT INTO `globalize_translations` VALUES (3008,'',NULL,1,'','Cuma','Friday [weekday]','ViewTranslation',6519);
-INSERT INTO `globalize_translations` VALUES (3009,'',NULL,1,'','Cumartesi','Saturday [weekday]','ViewTranslation',6519);
-INSERT INTO `globalize_translations` VALUES (3010,'',NULL,1,'','Paz','Sun [abbreviated weekday]','ViewTranslation',6519);
-INSERT INTO `globalize_translations` VALUES (3011,'',NULL,1,'','Pzt','Mon [abbreviated weekday]','ViewTranslation',6519);
-INSERT INTO `globalize_translations` VALUES (3012,'',NULL,1,'','Sal','Tue [abbreviated weekday]','ViewTranslation',6519);
-INSERT INTO `globalize_translations` VALUES (3013,'',NULL,1,'','Çrş','Wed [abbreviated weekday]','ViewTranslation',6519);
-INSERT INTO `globalize_translations` VALUES (3014,'',NULL,1,'','Prş','Thu [abbreviated weekday]','ViewTranslation',6519);
-INSERT INTO `globalize_translations` VALUES (3015,'',NULL,1,'','Cum','Fri [abbreviated weekday]','ViewTranslation',6519);
-INSERT INTO `globalize_translations` VALUES (3016,'',NULL,1,'','Cts','Sat [abbreviated weekday]','ViewTranslation',6519);
-INSERT INTO `globalize_translations` VALUES (3017,'',NULL,1,'','Ocak','January [month]','ViewTranslation',6519);
-INSERT INTO `globalize_translations` VALUES (3018,'',NULL,1,'','Şubat','February [month]','ViewTranslation',6519);
-INSERT INTO `globalize_translations` VALUES (3019,'',NULL,1,'','Mart','March [month]','ViewTranslation',6519);
-INSERT INTO `globalize_translations` VALUES (3020,'',NULL,1,'','Nisan','April [month]','ViewTranslation',6519);
-INSERT INTO `globalize_translations` VALUES (3021,'',NULL,1,'','Mayıs','May [month]','ViewTranslation',6519);
-INSERT INTO `globalize_translations` VALUES (3022,'',NULL,1,'','Haziran','June [month]','ViewTranslation',6519);
-INSERT INTO `globalize_translations` VALUES (3023,'',NULL,1,'','Temmuz','July [month]','ViewTranslation',6519);
-INSERT INTO `globalize_translations` VALUES (3024,'',NULL,1,'','Ağustos','August [month]','ViewTranslation',6519);
-INSERT INTO `globalize_translations` VALUES (3025,'',NULL,1,'','Eylül','September [month]','ViewTranslation',6519);
-INSERT INTO `globalize_translations` VALUES (3026,'',NULL,1,'','Ekim','October [month]','ViewTranslation',6519);
-INSERT INTO `globalize_translations` VALUES (3027,'',NULL,1,'','Kasım','November [month]','ViewTranslation',6519);
-INSERT INTO `globalize_translations` VALUES (3028,'',NULL,1,'','Aralık','December [month]','ViewTranslation',6519);
-INSERT INTO `globalize_translations` VALUES (3029,'',NULL,1,'','Oca','Jan [abbreviated month]','ViewTranslation',6519);
-INSERT INTO `globalize_translations` VALUES (3030,'',NULL,1,'','Şub','Feb [abbreviated month]','ViewTranslation',6519);
-INSERT INTO `globalize_translations` VALUES (3031,'',NULL,1,'','Mar','Mar [abbreviated month]','ViewTranslation',6519);
-INSERT INTO `globalize_translations` VALUES (3032,'',NULL,1,'','Nis','Apr [abbreviated month]','ViewTranslation',6519);
-INSERT INTO `globalize_translations` VALUES (3033,'',NULL,1,'','May','May [abbreviated month]','ViewTranslation',6519);
-INSERT INTO `globalize_translations` VALUES (3034,'',NULL,1,'','Haz','Jun [abbreviated month]','ViewTranslation',6519);
-INSERT INTO `globalize_translations` VALUES (3035,'',NULL,1,'','Tem','Jul [abbreviated month]','ViewTranslation',6519);
-INSERT INTO `globalize_translations` VALUES (3036,'',NULL,1,'','Ağu','Aug [abbreviated month]','ViewTranslation',6519);
-INSERT INTO `globalize_translations` VALUES (3037,'',NULL,1,'','Eyl','Sep [abbreviated month]','ViewTranslation',6519);
-INSERT INTO `globalize_translations` VALUES (3038,'',NULL,1,'','Eki','Oct [abbreviated month]','ViewTranslation',6519);
-INSERT INTO `globalize_translations` VALUES (3039,'',NULL,1,'','Kas','Nov [abbreviated month]','ViewTranslation',6519);
-INSERT INTO `globalize_translations` VALUES (3040,'',NULL,1,'','Ara','Dec [abbreviated month]','ViewTranslation',6519);
-INSERT INTO `globalize_translations` VALUES (3041,'',NULL,1,'','Якшәмбе','Sunday [weekday]','ViewTranslation',6097);
-INSERT INTO `globalize_translations` VALUES (3042,'',NULL,1,'','Дышәмбе','Monday [weekday]','ViewTranslation',6097);
-INSERT INTO `globalize_translations` VALUES (3043,'',NULL,1,'','Сишәмбе','Tuesday [weekday]','ViewTranslation',6097);
-INSERT INTO `globalize_translations` VALUES (3044,'',NULL,1,'','Чәршәәмбе','Wednesday [weekday]','ViewTranslation',6097);
-INSERT INTO `globalize_translations` VALUES (3045,'',NULL,1,'','Пәнҗешмбе','Thursday [weekday]','ViewTranslation',6097);
-INSERT INTO `globalize_translations` VALUES (3046,'',NULL,1,'','Җомга','Friday [weekday]','ViewTranslation',6097);
-INSERT INTO `globalize_translations` VALUES (3047,'',NULL,1,'','Шимбә','Saturday [weekday]','ViewTranslation',6097);
-INSERT INTO `globalize_translations` VALUES (3048,'',NULL,1,'','Якш','Sun [abbreviated weekday]','ViewTranslation',6097);
-INSERT INTO `globalize_translations` VALUES (3049,'',NULL,1,'','Дыш','Mon [abbreviated weekday]','ViewTranslation',6097);
-INSERT INTO `globalize_translations` VALUES (3050,'',NULL,1,'','Сиш','Tue [abbreviated weekday]','ViewTranslation',6097);
-INSERT INTO `globalize_translations` VALUES (3051,'',NULL,1,'','Чәрш','Wed [abbreviated weekday]','ViewTranslation',6097);
-INSERT INTO `globalize_translations` VALUES (3052,'',NULL,1,'','Пәнҗ','Thu [abbreviated weekday]','ViewTranslation',6097);
-INSERT INTO `globalize_translations` VALUES (3053,'',NULL,1,'','Җом','Fri [abbreviated weekday]','ViewTranslation',6097);
-INSERT INTO `globalize_translations` VALUES (3054,'',NULL,1,'','Шим','Sat [abbreviated weekday]','ViewTranslation',6097);
-INSERT INTO `globalize_translations` VALUES (3055,'',NULL,1,'','Января','January [month]','ViewTranslation',6097);
-INSERT INTO `globalize_translations` VALUES (3056,'',NULL,1,'','Февраля','February [month]','ViewTranslation',6097);
-INSERT INTO `globalize_translations` VALUES (3057,'',NULL,1,'','Марта','March [month]','ViewTranslation',6097);
-INSERT INTO `globalize_translations` VALUES (3058,'',NULL,1,'','Апреля','April [month]','ViewTranslation',6097);
-INSERT INTO `globalize_translations` VALUES (3059,'',NULL,1,'','Мая','May [month]','ViewTranslation',6097);
-INSERT INTO `globalize_translations` VALUES (3060,'',NULL,1,'','Июня','June [month]','ViewTranslation',6097);
-INSERT INTO `globalize_translations` VALUES (3061,'',NULL,1,'','Июля','July [month]','ViewTranslation',6097);
-INSERT INTO `globalize_translations` VALUES (3062,'',NULL,1,'','Августа','August [month]','ViewTranslation',6097);
-INSERT INTO `globalize_translations` VALUES (3063,'',NULL,1,'','Сентября','September [month]','ViewTranslation',6097);
-INSERT INTO `globalize_translations` VALUES (3064,'',NULL,1,'','Октября','October [month]','ViewTranslation',6097);
-INSERT INTO `globalize_translations` VALUES (3065,'',NULL,1,'','Ноября','November [month]','ViewTranslation',6097);
-INSERT INTO `globalize_translations` VALUES (3066,'',NULL,1,'','Декабря','December [month]','ViewTranslation',6097);
-INSERT INTO `globalize_translations` VALUES (3067,'',NULL,1,'','Янв','Jan [abbreviated month]','ViewTranslation',6097);
-INSERT INTO `globalize_translations` VALUES (3068,'',NULL,1,'','Фев','Feb [abbreviated month]','ViewTranslation',6097);
-INSERT INTO `globalize_translations` VALUES (3069,'',NULL,1,'','Мар','Mar [abbreviated month]','ViewTranslation',6097);
-INSERT INTO `globalize_translations` VALUES (3070,'',NULL,1,'','Апр','Apr [abbreviated month]','ViewTranslation',6097);
-INSERT INTO `globalize_translations` VALUES (3071,'',NULL,1,'','Май','May [abbreviated month]','ViewTranslation',6097);
-INSERT INTO `globalize_translations` VALUES (3072,'',NULL,1,'','Июн','Jun [abbreviated month]','ViewTranslation',6097);
-INSERT INTO `globalize_translations` VALUES (3073,'',NULL,1,'','Июл','Jul [abbreviated month]','ViewTranslation',6097);
-INSERT INTO `globalize_translations` VALUES (3074,'',NULL,1,'','Авг','Aug [abbreviated month]','ViewTranslation',6097);
-INSERT INTO `globalize_translations` VALUES (3075,'',NULL,1,'','Сен','Sep [abbreviated month]','ViewTranslation',6097);
-INSERT INTO `globalize_translations` VALUES (3076,'',NULL,1,'','Окт','Oct [abbreviated month]','ViewTranslation',6097);
-INSERT INTO `globalize_translations` VALUES (3077,'',NULL,1,'','Ноя','Nov [abbreviated month]','ViewTranslation',6097);
-INSERT INTO `globalize_translations` VALUES (3078,'',NULL,1,'','Дек','Dec [abbreviated month]','ViewTranslation',6097);
-INSERT INTO `globalize_translations` VALUES (3079,'',NULL,1,'','Неділя','Sunday [weekday]','ViewTranslation',6640);
-INSERT INTO `globalize_translations` VALUES (3080,'',NULL,1,'','Понеділок','Monday [weekday]','ViewTranslation',6640);
-INSERT INTO `globalize_translations` VALUES (3081,'',NULL,1,'','Вівторок','Tuesday [weekday]','ViewTranslation',6640);
-INSERT INTO `globalize_translations` VALUES (3082,'',NULL,1,'','Середа','Wednesday [weekday]','ViewTranslation',6640);
-INSERT INTO `globalize_translations` VALUES (3083,'',NULL,1,'','Четвер','Thursday [weekday]','ViewTranslation',6640);
-INSERT INTO `globalize_translations` VALUES (3084,'',NULL,1,'',"П'ятниця",'Friday [weekday]','ViewTranslation',6640);
-INSERT INTO `globalize_translations` VALUES (3085,'',NULL,1,'','Субота','Saturday [weekday]','ViewTranslation',6640);
-INSERT INTO `globalize_translations` VALUES (3086,'',NULL,1,'','Ндл','Sun [abbreviated weekday]','ViewTranslation',6640);
-INSERT INTO `globalize_translations` VALUES (3087,'',NULL,1,'','Пнд','Mon [abbreviated weekday]','ViewTranslation',6640);
-INSERT INTO `globalize_translations` VALUES (3088,'',NULL,1,'','Втр','Tue [abbreviated weekday]','ViewTranslation',6640);
-INSERT INTO `globalize_translations` VALUES (3089,'',NULL,1,'','Срд','Wed [abbreviated weekday]','ViewTranslation',6640);
-INSERT INTO `globalize_translations` VALUES (3090,'',NULL,1,'','Чтв','Thu [abbreviated weekday]','ViewTranslation',6640);
-INSERT INTO `globalize_translations` VALUES (3091,'',NULL,1,'','Птн','Fri [abbreviated weekday]','ViewTranslation',6640);
-INSERT INTO `globalize_translations` VALUES (3092,'',NULL,1,'','Сбт','Sat [abbreviated weekday]','ViewTranslation',6640);
-INSERT INTO `globalize_translations` VALUES (3093,'',NULL,1,'','Січень','January [month]','ViewTranslation',6640);
-INSERT INTO `globalize_translations` VALUES (3094,'',NULL,1,'','Лютий','February [month]','ViewTranslation',6640);
-INSERT INTO `globalize_translations` VALUES (3095,'',NULL,1,'','Березень','March [month]','ViewTranslation',6640);
-INSERT INTO `globalize_translations` VALUES (3096,'',NULL,1,'','Квітень','April [month]','ViewTranslation',6640);
-INSERT INTO `globalize_translations` VALUES (3097,'',NULL,1,'','Травень','May [month]','ViewTranslation',6640);
-INSERT INTO `globalize_translations` VALUES (3098,'',NULL,1,'','Червень','June [month]','ViewTranslation',6640);
-INSERT INTO `globalize_translations` VALUES (3099,'',NULL,1,'','Липень','July [month]','ViewTranslation',6640);
-INSERT INTO `globalize_translations` VALUES (3100,'',NULL,1,'','Серпень','August [month]','ViewTranslation',6640);
-INSERT INTO `globalize_translations` VALUES (3101,'',NULL,1,'','Вересень','September [month]','ViewTranslation',6640);
-INSERT INTO `globalize_translations` VALUES (3102,'',NULL,1,'','Жовтень','October [month]','ViewTranslation',6640);
-INSERT INTO `globalize_translations` VALUES (3103,'',NULL,1,'','Листопад','November [month]','ViewTranslation',6640);
-INSERT INTO `globalize_translations` VALUES (3104,'',NULL,1,'','Грудень','December [month]','ViewTranslation',6640);
-INSERT INTO `globalize_translations` VALUES (3105,'',NULL,1,'','Січ','Jan [abbreviated month]','ViewTranslation',6640);
-INSERT INTO `globalize_translations` VALUES (3106,'',NULL,1,'','Лют','Feb [abbreviated month]','ViewTranslation',6640);
-INSERT INTO `globalize_translations` VALUES (3107,'',NULL,1,'','Бер','Mar [abbreviated month]','ViewTranslation',6640);
-INSERT INTO `globalize_translations` VALUES (3108,'',NULL,1,'','Кві','Apr [abbreviated month]','ViewTranslation',6640);
-INSERT INTO `globalize_translations` VALUES (3109,'',NULL,1,'','Тра','May [abbreviated month]','ViewTranslation',6640);
-INSERT INTO `globalize_translations` VALUES (3110,'',NULL,1,'','Чер','Jun [abbreviated month]','ViewTranslation',6640);
-INSERT INTO `globalize_translations` VALUES (3111,'',NULL,1,'','Лип','Jul [abbreviated month]','ViewTranslation',6640);
-INSERT INTO `globalize_translations` VALUES (3112,'',NULL,1,'','Сер','Aug [abbreviated month]','ViewTranslation',6640);
-INSERT INTO `globalize_translations` VALUES (3113,'',NULL,1,'','Вер','Sep [abbreviated month]','ViewTranslation',6640);
-INSERT INTO `globalize_translations` VALUES (3114,'',NULL,1,'','Жов','Oct [abbreviated month]','ViewTranslation',6640);
-INSERT INTO `globalize_translations` VALUES (3115,'',NULL,1,'','Лис','Nov [abbreviated month]','ViewTranslation',6640);
-INSERT INTO `globalize_translations` VALUES (3116,'',NULL,1,'','Гру','Dec [abbreviated month]','ViewTranslation',6640);
-INSERT INTO `globalize_translations` VALUES (3117,'',NULL,1,'','اتوار','Sunday [weekday]','ViewTranslation',6679);
-INSERT INTO `globalize_translations` VALUES (3118,'',NULL,1,'','پير','Monday [weekday]','ViewTranslation',6679);
-INSERT INTO `globalize_translations` VALUES (3119,'',NULL,1,'','منگل','Tuesday [weekday]','ViewTranslation',6679);
-INSERT INTO `globalize_translations` VALUES (3120,'',NULL,1,'','بدھ','Wednesday [weekday]','ViewTranslation',6679);
-INSERT INTO `globalize_translations` VALUES (3121,'',NULL,1,'','جمعرات','Thursday [weekday]','ViewTranslation',6679);
-INSERT INTO `globalize_translations` VALUES (3122,'',NULL,1,'','جمعه','Friday [weekday]','ViewTranslation',6679);
-INSERT INTO `globalize_translations` VALUES (3123,'',NULL,1,'','هفته','Saturday [weekday]','ViewTranslation',6679);
-INSERT INTO `globalize_translations` VALUES (3124,'',NULL,1,'','اتوار','Sun [abbreviated weekday]','ViewTranslation',6679);
-INSERT INTO `globalize_translations` VALUES (3125,'',NULL,1,'','پير','Mon [abbreviated weekday]','ViewTranslation',6679);
-INSERT INTO `globalize_translations` VALUES (3126,'',NULL,1,'','منگل','Tue [abbreviated weekday]','ViewTranslation',6679);
-INSERT INTO `globalize_translations` VALUES (3127,'',NULL,1,'','بدھ','Wed [abbreviated weekday]','ViewTranslation',6679);
-INSERT INTO `globalize_translations` VALUES (3128,'',NULL,1,'','جمعرات','Thu [abbreviated weekday]','ViewTranslation',6679);
-INSERT INTO `globalize_translations` VALUES (3129,'',NULL,1,'','جمعه','Fri [abbreviated weekday]','ViewTranslation',6679);
-INSERT INTO `globalize_translations` VALUES (3130,'',NULL,1,'','هفته','Sat [abbreviated weekday]','ViewTranslation',6679);
-INSERT INTO `globalize_translations` VALUES (3131,'',NULL,1,'','جنوري','January [month]','ViewTranslation',6679);
-INSERT INTO `globalize_translations` VALUES (3132,'',NULL,1,'','فروري','February [month]','ViewTranslation',6679);
-INSERT INTO `globalize_translations` VALUES (3133,'',NULL,1,'','مارچ','March [month]','ViewTranslation',6679);
-INSERT INTO `globalize_translations` VALUES (3134,'',NULL,1,'','اپريل','April [month]','ViewTranslation',6679);
-INSERT INTO `globalize_translations` VALUES (3135,'',NULL,1,'','مٓی','May [month]','ViewTranslation',6679);
-INSERT INTO `globalize_translations` VALUES (3136,'',NULL,1,'','جون','June [month]','ViewTranslation',6679);
-INSERT INTO `globalize_translations` VALUES (3137,'',NULL,1,'','جولاي','July [month]','ViewTranslation',6679);
-INSERT INTO `globalize_translations` VALUES (3138,'',NULL,1,'','اگست','August [month]','ViewTranslation',6679);
-INSERT INTO `globalize_translations` VALUES (3139,'',NULL,1,'','ستمبر','September [month]','ViewTranslation',6679);
-INSERT INTO `globalize_translations` VALUES (3140,'',NULL,1,'','اكتوبر','October [month]','ViewTranslation',6679);
-INSERT INTO `globalize_translations` VALUES (3141,'',NULL,1,'','نومبر','November [month]','ViewTranslation',6679);
-INSERT INTO `globalize_translations` VALUES (3142,'',NULL,1,'','دسمبر','December [month]','ViewTranslation',6679);
-INSERT INTO `globalize_translations` VALUES (3143,'',NULL,1,'','جنوري','Jan [abbreviated month]','ViewTranslation',6679);
-INSERT INTO `globalize_translations` VALUES (3144,'',NULL,1,'','فروري','Feb [abbreviated month]','ViewTranslation',6679);
-INSERT INTO `globalize_translations` VALUES (3145,'',NULL,1,'','مارچ','Mar [abbreviated month]','ViewTranslation',6679);
-INSERT INTO `globalize_translations` VALUES (3146,'',NULL,1,'','اپريل','Apr [abbreviated month]','ViewTranslation',6679);
-INSERT INTO `globalize_translations` VALUES (3147,'',NULL,1,'','مٓی','May [abbreviated month]','ViewTranslation',6679);
-INSERT INTO `globalize_translations` VALUES (3148,'',NULL,1,'','جون','Jun [abbreviated month]','ViewTranslation',6679);
-INSERT INTO `globalize_translations` VALUES (3149,'',NULL,1,'','جولاي','Jul [abbreviated month]','ViewTranslation',6679);
-INSERT INTO `globalize_translations` VALUES (3150,'',NULL,1,'','اگست','Aug [abbreviated month]','ViewTranslation',6679);
-INSERT INTO `globalize_translations` VALUES (3151,'',NULL,1,'','ستمبر','Sep [abbreviated month]','ViewTranslation',6679);
-INSERT INTO `globalize_translations` VALUES (3152,'',NULL,1,'','اكتوبر','Oct [abbreviated month]','ViewTranslation',6679);
-INSERT INTO `globalize_translations` VALUES (3153,'',NULL,1,'','نومبر','Nov [abbreviated month]','ViewTranslation',6679);
-INSERT INTO `globalize_translations` VALUES (3154,'',NULL,1,'','دسمبر','Dec [abbreviated month]','ViewTranslation',6679);
-INSERT INTO `globalize_translations` VALUES (3155,'',NULL,1,'','Якшанба','Sunday [weekday]','ViewTranslation',6719);
-INSERT INTO `globalize_translations` VALUES (3156,'',NULL,1,'','Душанба','Monday [weekday]','ViewTranslation',6719);
-INSERT INTO `globalize_translations` VALUES (3157,'',NULL,1,'','Сешанба','Tuesday [weekday]','ViewTranslation',6719);
-INSERT INTO `globalize_translations` VALUES (3158,'',NULL,1,'','Чоршанба','Wednesday [weekday]','ViewTranslation',6719);
-INSERT INTO `globalize_translations` VALUES (3159,'',NULL,1,'','Пайшанба','Thursday [weekday]','ViewTranslation',6719);
-INSERT INTO `globalize_translations` VALUES (3160,'',NULL,1,'','Жума','Friday [weekday]','ViewTranslation',6719);
-INSERT INTO `globalize_translations` VALUES (3161,'',NULL,1,'','Шанба','Saturday [weekday]','ViewTranslation',6719);
-INSERT INTO `globalize_translations` VALUES (3162,'',NULL,1,'','Якш','Sun [abbreviated weekday]','ViewTranslation',6719);
-INSERT INTO `globalize_translations` VALUES (3163,'',NULL,1,'','Душ','Mon [abbreviated weekday]','ViewTranslation',6719);
-INSERT INTO `globalize_translations` VALUES (3164,'',NULL,1,'','Сеш','Tue [abbreviated weekday]','ViewTranslation',6719);
-INSERT INTO `globalize_translations` VALUES (3165,'',NULL,1,'','Чор','Wed [abbreviated weekday]','ViewTranslation',6719);
-INSERT INTO `globalize_translations` VALUES (3166,'',NULL,1,'','Пай','Thu [abbreviated weekday]','ViewTranslation',6719);
-INSERT INTO `globalize_translations` VALUES (3167,'',NULL,1,'','Жум','Fri [abbreviated weekday]','ViewTranslation',6719);
-INSERT INTO `globalize_translations` VALUES (3168,'',NULL,1,'','Шан','Sat [abbreviated weekday]','ViewTranslation',6719);
-INSERT INTO `globalize_translations` VALUES (3169,'',NULL,1,'','Январь','January [month]','ViewTranslation',6719);
-INSERT INTO `globalize_translations` VALUES (3170,'',NULL,1,'','Февраль','February [month]','ViewTranslation',6719);
-INSERT INTO `globalize_translations` VALUES (3171,'',NULL,1,'','Март','March [month]','ViewTranslation',6719);
-INSERT INTO `globalize_translations` VALUES (3172,'',NULL,1,'','Апрель','April [month]','ViewTranslation',6719);
-INSERT INTO `globalize_translations` VALUES (3173,'',NULL,1,'','Май','May [month]','ViewTranslation',6719);
-INSERT INTO `globalize_translations` VALUES (3174,'',NULL,1,'','Июнь','June [month]','ViewTranslation',6719);
-INSERT INTO `globalize_translations` VALUES (3175,'',NULL,1,'','Июль','July [month]','ViewTranslation',6719);
-INSERT INTO `globalize_translations` VALUES (3176,'',NULL,1,'','Август','August [month]','ViewTranslation',6719);
-INSERT INTO `globalize_translations` VALUES (3177,'',NULL,1,'','Сентябрь','September [month]','ViewTranslation',6719);
-INSERT INTO `globalize_translations` VALUES (3178,'',NULL,1,'','Октябрь','October [month]','ViewTranslation',6719);
-INSERT INTO `globalize_translations` VALUES (3179,'',NULL,1,'','Ноябрь','November [month]','ViewTranslation',6719);
-INSERT INTO `globalize_translations` VALUES (3180,'',NULL,1,'','Декабрь','December [month]','ViewTranslation',6719);
-INSERT INTO `globalize_translations` VALUES (3181,'',NULL,1,'','Янв','Jan [abbreviated month]','ViewTranslation',6719);
-INSERT INTO `globalize_translations` VALUES (3182,'',NULL,1,'','Фев','Feb [abbreviated month]','ViewTranslation',6719);
-INSERT INTO `globalize_translations` VALUES (3183,'',NULL,1,'','Мар','Mar [abbreviated month]','ViewTranslation',6719);
-INSERT INTO `globalize_translations` VALUES (3184,'',NULL,1,'','Апр','Apr [abbreviated month]','ViewTranslation',6719);
-INSERT INTO `globalize_translations` VALUES (3185,'',NULL,1,'','Май','May [abbreviated month]','ViewTranslation',6719);
-INSERT INTO `globalize_translations` VALUES (3186,'',NULL,1,'','Июн','Jun [abbreviated month]','ViewTranslation',6719);
-INSERT INTO `globalize_translations` VALUES (3187,'',NULL,1,'','Июл','Jul [abbreviated month]','ViewTranslation',6719);
-INSERT INTO `globalize_translations` VALUES (3188,'',NULL,1,'','Авг','Aug [abbreviated month]','ViewTranslation',6719);
-INSERT INTO `globalize_translations` VALUES (3189,'',NULL,1,'','Сен','Sep [abbreviated month]','ViewTranslation',6719);
-INSERT INTO `globalize_translations` VALUES (3190,'',NULL,1,'','Окт','Oct [abbreviated month]','ViewTranslation',6719);
-INSERT INTO `globalize_translations` VALUES (3191,'',NULL,1,'','Ноя','Nov [abbreviated month]','ViewTranslation',6719);
-INSERT INTO `globalize_translations` VALUES (3192,'',NULL,1,'','Дек','Dec [abbreviated month]','ViewTranslation',6719);
-INSERT INTO `globalize_translations` VALUES (3193,'',NULL,1,'','Chủ nhật ','Sunday [weekday]','ViewTranslation',6751);
-INSERT INTO `globalize_translations` VALUES (3194,'',NULL,1,'','Thứ hai ','Monday [weekday]','ViewTranslation',6751);
-INSERT INTO `globalize_translations` VALUES (3195,'',NULL,1,'','Thứ ba ','Tuesday [weekday]','ViewTranslation',6751);
-INSERT INTO `globalize_translations` VALUES (3196,'',NULL,1,'','Thứ tư ','Wednesday [weekday]','ViewTranslation',6751);
-INSERT INTO `globalize_translations` VALUES (3197,'',NULL,1,'','Thứ năm ','Thursday [weekday]','ViewTranslation',6751);
-INSERT INTO `globalize_translations` VALUES (3198,'',NULL,1,'','Thứ sáu ','Friday [weekday]','ViewTranslation',6751);
-INSERT INTO `globalize_translations` VALUES (3199,'',NULL,1,'','Thứ bảy ','Saturday [weekday]','ViewTranslation',6751);
-INSERT INTO `globalize_translations` VALUES (3200,'',NULL,1,'','Cn ','Sun [abbreviated weekday]','ViewTranslation',6751);
-INSERT INTO `globalize_translations` VALUES (3201,'',NULL,1,'','Th 2 ','Mon [abbreviated weekday]','ViewTranslation',6751);
-INSERT INTO `globalize_translations` VALUES (3202,'',NULL,1,'','Th 3 ','Tue [abbreviated weekday]','ViewTranslation',6751);
-INSERT INTO `globalize_translations` VALUES (3203,'',NULL,1,'','Th 4 ','Wed [abbreviated weekday]','ViewTranslation',6751);
-INSERT INTO `globalize_translations` VALUES (3204,'',NULL,1,'','Th 5 ','Thu [abbreviated weekday]','ViewTranslation',6751);
-INSERT INTO `globalize_translations` VALUES (3205,'',NULL,1,'','Th 6 ','Fri [abbreviated weekday]','ViewTranslation',6751);
-INSERT INTO `globalize_translations` VALUES (3206,'',NULL,1,'','Th 7 ','Sat [abbreviated weekday]','ViewTranslation',6751);
-INSERT INTO `globalize_translations` VALUES (3207,'',NULL,1,'','Tháng một','January [month]','ViewTranslation',6751);
-INSERT INTO `globalize_translations` VALUES (3208,'',NULL,1,'','Tháng hai','February [month]','ViewTranslation',6751);
-INSERT INTO `globalize_translations` VALUES (3209,'',NULL,1,'','Tháng ba','March [month]','ViewTranslation',6751);
-INSERT INTO `globalize_translations` VALUES (3210,'',NULL,1,'','Tháng tư','April [month]','ViewTranslation',6751);
-INSERT INTO `globalize_translations` VALUES (3211,'',NULL,1,'','Tháng năm','May [month]','ViewTranslation',6751);
-INSERT INTO `globalize_translations` VALUES (3212,'',NULL,1,'','Tháng sáu','June [month]','ViewTranslation',6751);
-INSERT INTO `globalize_translations` VALUES (3213,'',NULL,1,'','Tháng bảy','July [month]','ViewTranslation',6751);
-INSERT INTO `globalize_translations` VALUES (3214,'',NULL,1,'','Tháng tám','August [month]','ViewTranslation',6751);
-INSERT INTO `globalize_translations` VALUES (3215,'',NULL,1,'','Tháng chín','September [month]','ViewTranslation',6751);
-INSERT INTO `globalize_translations` VALUES (3216,'',NULL,1,'','Tháng mười','October [month]','ViewTranslation',6751);
-INSERT INTO `globalize_translations` VALUES (3217,'',NULL,1,'','Tháng mười một','November [month]','ViewTranslation',6751);
-INSERT INTO `globalize_translations` VALUES (3218,'',NULL,1,'','Tháng mười hai','December [month]','ViewTranslation',6751);
-INSERT INTO `globalize_translations` VALUES (3219,'',NULL,1,'','Thg 1','Jan [abbreviated month]','ViewTranslation',6751);
-INSERT INTO `globalize_translations` VALUES (3220,'',NULL,1,'','Thg 2','Feb [abbreviated month]','ViewTranslation',6751);
-INSERT INTO `globalize_translations` VALUES (3221,'',NULL,1,'','Thg 3','Mar [abbreviated month]','ViewTranslation',6751);
-INSERT INTO `globalize_translations` VALUES (3222,'',NULL,1,'','Thg 4','Apr [abbreviated month]','ViewTranslation',6751);
-INSERT INTO `globalize_translations` VALUES (3223,'',NULL,1,'','Thg 5','May [abbreviated month]','ViewTranslation',6751);
-INSERT INTO `globalize_translations` VALUES (3224,'',NULL,1,'','Thg 6','Jun [abbreviated month]','ViewTranslation',6751);
-INSERT INTO `globalize_translations` VALUES (3225,'',NULL,1,'','Thg 7','Jul [abbreviated month]','ViewTranslation',6751);
-INSERT INTO `globalize_translations` VALUES (3226,'',NULL,1,'','Thg 8','Aug [abbreviated month]','ViewTranslation',6751);
-INSERT INTO `globalize_translations` VALUES (3227,'',NULL,1,'','Thg 9','Sep [abbreviated month]','ViewTranslation',6751);
-INSERT INTO `globalize_translations` VALUES (3228,'',NULL,1,'','Thg 10','Oct [abbreviated month]','ViewTranslation',6751);
-INSERT INTO `globalize_translations` VALUES (3229,'',NULL,1,'','Thg 11','Nov [abbreviated month]','ViewTranslation',6751);
-INSERT INTO `globalize_translations` VALUES (3230,'',NULL,1,'','Thg 12','Dec [abbreviated month]','ViewTranslation',6751);
-INSERT INTO `globalize_translations` VALUES (3231,'',NULL,1,'','Dîmegne','Sunday [weekday]','ViewTranslation',6911);
-INSERT INTO `globalize_translations` VALUES (3232,'',NULL,1,'','Londi','Monday [weekday]','ViewTranslation',6911);
-INSERT INTO `globalize_translations` VALUES (3233,'',NULL,1,'','Mårdi','Tuesday [weekday]','ViewTranslation',6911);
-INSERT INTO `globalize_translations` VALUES (3234,'',NULL,1,'','Merkidi','Wednesday [weekday]','ViewTranslation',6911);
-INSERT INTO `globalize_translations` VALUES (3235,'',NULL,1,'','Djudi','Thursday [weekday]','ViewTranslation',6911);
-INSERT INTO `globalize_translations` VALUES (3236,'',NULL,1,'','Vinrdi','Friday [weekday]','ViewTranslation',6911);
-INSERT INTO `globalize_translations` VALUES (3237,'',NULL,1,'','Semdi','Saturday [weekday]','ViewTranslation',6911);
-INSERT INTO `globalize_translations` VALUES (3238,'',NULL,1,'','Dîm','Sun [abbreviated weekday]','ViewTranslation',6911);
-INSERT INTO `globalize_translations` VALUES (3239,'',NULL,1,'','Lon','Mon [abbreviated weekday]','ViewTranslation',6911);
-INSERT INTO `globalize_translations` VALUES (3240,'',NULL,1,'','Mår','Tue [abbreviated weekday]','ViewTranslation',6911);
-INSERT INTO `globalize_translations` VALUES (3241,'',NULL,1,'','Mer','Wed [abbreviated weekday]','ViewTranslation',6911);
-INSERT INTO `globalize_translations` VALUES (3242,'',NULL,1,'','Dju','Thu [abbreviated weekday]','ViewTranslation',6911);
-INSERT INTO `globalize_translations` VALUES (3243,'',NULL,1,'','Vin','Fri [abbreviated weekday]','ViewTranslation',6911);
-INSERT INTO `globalize_translations` VALUES (3244,'',NULL,1,'','Sem','Sat [abbreviated weekday]','ViewTranslation',6911);
-INSERT INTO `globalize_translations` VALUES (3245,'',NULL,1,'','Djanvî','January [month]','ViewTranslation',6911);
-INSERT INTO `globalize_translations` VALUES (3246,'',NULL,1,'','Fevrî','February [month]','ViewTranslation',6911);
-INSERT INTO `globalize_translations` VALUES (3247,'',NULL,1,'','Måss','March [month]','ViewTranslation',6911);
-INSERT INTO `globalize_translations` VALUES (3248,'',NULL,1,'','Avri','April [month]','ViewTranslation',6911);
-INSERT INTO `globalize_translations` VALUES (3249,'',NULL,1,'','May','May [month]','ViewTranslation',6911);
-INSERT INTO `globalize_translations` VALUES (3250,'',NULL,1,'','Djun','June [month]','ViewTranslation',6911);
-INSERT INTO `globalize_translations` VALUES (3251,'',NULL,1,'','Djulete','July [month]','ViewTranslation',6911);
-INSERT INTO `globalize_translations` VALUES (3252,'',NULL,1,'','Awousse','August [month]','ViewTranslation',6911);
-INSERT INTO `globalize_translations` VALUES (3253,'',NULL,1,'','Setimbe','September [month]','ViewTranslation',6911);
-INSERT INTO `globalize_translations` VALUES (3254,'',NULL,1,'','Octôbe','October [month]','ViewTranslation',6911);
-INSERT INTO `globalize_translations` VALUES (3255,'',NULL,1,'','Nôvimbe','November [month]','ViewTranslation',6911);
-INSERT INTO `globalize_translations` VALUES (3256,'',NULL,1,'','Decimbe','December [month]','ViewTranslation',6911);
-INSERT INTO `globalize_translations` VALUES (3257,'',NULL,1,'','Dja','Jan [abbreviated month]','ViewTranslation',6911);
-INSERT INTO `globalize_translations` VALUES (3258,'',NULL,1,'','Fev','Feb [abbreviated month]','ViewTranslation',6911);
-INSERT INTO `globalize_translations` VALUES (3259,'',NULL,1,'','Mås','Mar [abbreviated month]','ViewTranslation',6911);
-INSERT INTO `globalize_translations` VALUES (3260,'',NULL,1,'','Avr','Apr [abbreviated month]','ViewTranslation',6911);
-INSERT INTO `globalize_translations` VALUES (3261,'',NULL,1,'','May','May [abbreviated month]','ViewTranslation',6911);
-INSERT INTO `globalize_translations` VALUES (3262,'',NULL,1,'','Djn','Jun [abbreviated month]','ViewTranslation',6911);
-INSERT INTO `globalize_translations` VALUES (3263,'',NULL,1,'','Djl','Jul [abbreviated month]','ViewTranslation',6911);
-INSERT INTO `globalize_translations` VALUES (3264,'',NULL,1,'','Awo','Aug [abbreviated month]','ViewTranslation',6911);
-INSERT INTO `globalize_translations` VALUES (3265,'',NULL,1,'','Set','Sep [abbreviated month]','ViewTranslation',6911);
-INSERT INTO `globalize_translations` VALUES (3266,'',NULL,1,'','Oct','Oct [abbreviated month]','ViewTranslation',6911);
-INSERT INTO `globalize_translations` VALUES (3267,'',NULL,1,'','Nôv','Nov [abbreviated month]','ViewTranslation',6911);
-INSERT INTO `globalize_translations` VALUES (3268,'',NULL,1,'','Dec','Dec [abbreviated month]','ViewTranslation',6911);
-INSERT INTO `globalize_translations` VALUES (3269,'',NULL,1,'','Cawe','Sunday [weekday]','ViewTranslation',7078);
-INSERT INTO `globalize_translations` VALUES (3270,'',NULL,1,'','Mvulo','Monday [weekday]','ViewTranslation',7078);
-INSERT INTO `globalize_translations` VALUES (3271,'',NULL,1,'','Lwesibini','Tuesday [weekday]','ViewTranslation',7078);
-INSERT INTO `globalize_translations` VALUES (3272,'',NULL,1,'','Lwesithathu','Wednesday [weekday]','ViewTranslation',7078);
-INSERT INTO `globalize_translations` VALUES (3273,'',NULL,1,'','Lwesine','Thursday [weekday]','ViewTranslation',7078);
-INSERT INTO `globalize_translations` VALUES (3274,'',NULL,1,'','Lwesihlanu','Friday [weekday]','ViewTranslation',7078);
-INSERT INTO `globalize_translations` VALUES (3275,'',NULL,1,'','Mgqibelo','Saturday [weekday]','ViewTranslation',7078);
-INSERT INTO `globalize_translations` VALUES (3276,'',NULL,1,'','Caw','Sun [abbreviated weekday]','ViewTranslation',7078);
-INSERT INTO `globalize_translations` VALUES (3277,'',NULL,1,'','Mvu','Mon [abbreviated weekday]','ViewTranslation',7078);
-INSERT INTO `globalize_translations` VALUES (3278,'',NULL,1,'','Bin','Tue [abbreviated weekday]','ViewTranslation',7078);
-INSERT INTO `globalize_translations` VALUES (3279,'',NULL,1,'','Tha','Wed [abbreviated weekday]','ViewTranslation',7078);
-INSERT INTO `globalize_translations` VALUES (3280,'',NULL,1,'','Sin','Thu [abbreviated weekday]','ViewTranslation',7078);
-INSERT INTO `globalize_translations` VALUES (3281,'',NULL,1,'','Hla','Fri [abbreviated weekday]','ViewTranslation',7078);
-INSERT INTO `globalize_translations` VALUES (3282,'',NULL,1,'','Mgq','Sat [abbreviated weekday]','ViewTranslation',7078);
-INSERT INTO `globalize_translations` VALUES (3283,'',NULL,1,'','Janyuwari','January [month]','ViewTranslation',7078);
-INSERT INTO `globalize_translations` VALUES (3284,'',NULL,1,'','Februwari','February [month]','ViewTranslation',7078);
-INSERT INTO `globalize_translations` VALUES (3285,'',NULL,1,'','Matshi','March [month]','ViewTranslation',7078);
-INSERT INTO `globalize_translations` VALUES (3286,'',NULL,1,'','Epreli','April [month]','ViewTranslation',7078);
-INSERT INTO `globalize_translations` VALUES (3287,'',NULL,1,'','Meyi','May [month]','ViewTranslation',7078);
-INSERT INTO `globalize_translations` VALUES (3288,'',NULL,1,'','Juni','June [month]','ViewTranslation',7078);
-INSERT INTO `globalize_translations` VALUES (3289,'',NULL,1,'','Julayi','July [month]','ViewTranslation',7078);
-INSERT INTO `globalize_translations` VALUES (3290,'',NULL,1,'','Agasti','August [month]','ViewTranslation',7078);
-INSERT INTO `globalize_translations` VALUES (3291,'',NULL,1,'','Septemba','September [month]','ViewTranslation',7078);
-INSERT INTO `globalize_translations` VALUES (3292,'',NULL,1,'','Okthoba','October [month]','ViewTranslation',7078);
-INSERT INTO `globalize_translations` VALUES (3293,'',NULL,1,'','Novemba','November [month]','ViewTranslation',7078);
-INSERT INTO `globalize_translations` VALUES (3294,'',NULL,1,'','Disemba','December [month]','ViewTranslation',7078);
-INSERT INTO `globalize_translations` VALUES (3295,'',NULL,1,'','Jan','Jan [abbreviated month]','ViewTranslation',7078);
-INSERT INTO `globalize_translations` VALUES (3296,'',NULL,1,'','Feb','Feb [abbreviated month]','ViewTranslation',7078);
-INSERT INTO `globalize_translations` VALUES (3297,'',NULL,1,'','Mat','Mar [abbreviated month]','ViewTranslation',7078);
-INSERT INTO `globalize_translations` VALUES (3298,'',NULL,1,'','Epr','Apr [abbreviated month]','ViewTranslation',7078);
-INSERT INTO `globalize_translations` VALUES (3299,'',NULL,1,'','Mey','May [abbreviated month]','ViewTranslation',7078);
-INSERT INTO `globalize_translations` VALUES (3300,'',NULL,1,'','Jun','Jun [abbreviated month]','ViewTranslation',7078);
-INSERT INTO `globalize_translations` VALUES (3301,'',NULL,1,'','Jul','Jul [abbreviated month]','ViewTranslation',7078);
-INSERT INTO `globalize_translations` VALUES (3302,'',NULL,1,'','Aga','Aug [abbreviated month]','ViewTranslation',7078);
-INSERT INTO `globalize_translations` VALUES (3303,'',NULL,1,'','Sep','Sep [abbreviated month]','ViewTranslation',7078);
-INSERT INTO `globalize_translations` VALUES (3304,'',NULL,1,'','Okt','Oct [abbreviated month]','ViewTranslation',7078);
-INSERT INTO `globalize_translations` VALUES (3305,'',NULL,1,'','Nov','Nov [abbreviated month]','ViewTranslation',7078);
-INSERT INTO `globalize_translations` VALUES (3306,'',NULL,1,'','Dis','Dec [abbreviated month]','ViewTranslation',7078);
-INSERT INTO `globalize_translations` VALUES (3307,'',NULL,1,'','זונטיק','Sunday [weekday]','ViewTranslation',7324);
-INSERT INTO `globalize_translations` VALUES (3308,'',NULL,1,'','מאָנטיק','Monday [weekday]','ViewTranslation',7324);
-INSERT INTO `globalize_translations` VALUES (3309,'',NULL,1,'','דינסטיק','Tuesday [weekday]','ViewTranslation',7324);
-INSERT INTO `globalize_translations` VALUES (3310,'',NULL,1,'','מיטװאָך','Wednesday [weekday]','ViewTranslation',7324);
-INSERT INTO `globalize_translations` VALUES (3311,'',NULL,1,'','דאָנערשטיק','Thursday [weekday]','ViewTranslation',7324);
-INSERT INTO `globalize_translations` VALUES (3312,'',NULL,1,'','פֿרײַטיק','Friday [weekday]','ViewTranslation',7324);
-INSERT INTO `globalize_translations` VALUES (3313,'',NULL,1,'','שבת','Saturday [weekday]','ViewTranslation',7324);
-INSERT INTO `globalize_translations` VALUES (3314,'',NULL,1,'',"זונ'",'Sun [abbreviated weekday]','ViewTranslation',7324);
-INSERT INTO `globalize_translations` VALUES (3315,'',NULL,1,'',"מאָנ'",'Mon [abbreviated weekday]','ViewTranslation',7324);
-INSERT INTO `globalize_translations` VALUES (3316,'',NULL,1,'',"דינ'",'Tue [abbreviated weekday]','ViewTranslation',7324);
-INSERT INTO `globalize_translations` VALUES (3317,'',NULL,1,'',"מיט'",'Wed [abbreviated weekday]','ViewTranslation',7324);
-INSERT INTO `globalize_translations` VALUES (3318,'',NULL,1,'',"דאָנ'",'Thu [abbreviated weekday]','ViewTranslation',7324);
-INSERT INTO `globalize_translations` VALUES (3319,'',NULL,1,'',"פֿרײַ'",'Fri [abbreviated weekday]','ViewTranslation',7324);
-INSERT INTO `globalize_translations` VALUES (3320,'',NULL,1,'','שבת','Sat [abbreviated weekday]','ViewTranslation',7324);
-INSERT INTO `globalize_translations` VALUES (3321,'',NULL,1,'','יאַנואַר','January [month]','ViewTranslation',7324);
-INSERT INTO `globalize_translations` VALUES (3322,'',NULL,1,'','פֿעברואַר','February [month]','ViewTranslation',7324);
-INSERT INTO `globalize_translations` VALUES (3323,'',NULL,1,'','מאַרץ','March [month]','ViewTranslation',7324);
-INSERT INTO `globalize_translations` VALUES (3324,'',NULL,1,'','אַפּריל','April [month]','ViewTranslation',7324);
-INSERT INTO `globalize_translations` VALUES (3325,'',NULL,1,'','מײַ','May [month]','ViewTranslation',7324);
-INSERT INTO `globalize_translations` VALUES (3326,'',NULL,1,'','יוני','June [month]','ViewTranslation',7324);
-INSERT INTO `globalize_translations` VALUES (3327,'',NULL,1,'','יולי','July [month]','ViewTranslation',7324);
-INSERT INTO `globalize_translations` VALUES (3328,'',NULL,1,'','אױגסט','August [month]','ViewTranslation',7324);
-INSERT INTO `globalize_translations` VALUES (3329,'',NULL,1,'','סעפּטעמבער','September [month]','ViewTranslation',7324);
-INSERT INTO `globalize_translations` VALUES (3330,'',NULL,1,'','אָקטאָבער','October [month]','ViewTranslation',7324);
-INSERT INTO `globalize_translations` VALUES (3331,'',NULL,1,'','נaָװעמבער','November [month]','ViewTranslation',7324);
-INSERT INTO `globalize_translations` VALUES (3332,'',NULL,1,'','דצמבר','December [month]','ViewTranslation',7324);
-INSERT INTO `globalize_translations` VALUES (3333,'',NULL,1,'',"יאַנ'",'Jan [abbreviated month]','ViewTranslation',7324);
-INSERT INTO `globalize_translations` VALUES (3334,'',NULL,1,'',"פֿעב'",'Feb [abbreviated month]','ViewTranslation',7324);
-INSERT INTO `globalize_translations` VALUES (3335,'',NULL,1,'',"מאַר'",'Mar [abbreviated month]','ViewTranslation',7324);
-INSERT INTO `globalize_translations` VALUES (3336,'',NULL,1,'',"אַפּר'",'Apr [abbreviated month]','ViewTranslation',7324);
-INSERT INTO `globalize_translations` VALUES (3337,'',NULL,1,'','מײַ','May [abbreviated month]','ViewTranslation',7324);
-INSERT INTO `globalize_translations` VALUES (3338,'',NULL,1,'',"יונ'",'Jun [abbreviated month]','ViewTranslation',7324);
-INSERT INTO `globalize_translations` VALUES (3339,'',NULL,1,'',"יול'",'Jul [abbreviated month]','ViewTranslation',7324);
-INSERT INTO `globalize_translations` VALUES (3340,'',NULL,1,'',"אױג'",'Aug [abbreviated month]','ViewTranslation',7324);
-INSERT INTO `globalize_translations` VALUES (3341,'',NULL,1,'',"סעפּ'",'Sep [abbreviated month]','ViewTranslation',7324);
-INSERT INTO `globalize_translations` VALUES (3342,'',NULL,1,'',"אָקט'",'Oct [abbreviated month]','ViewTranslation',7324);
-INSERT INTO `globalize_translations` VALUES (3343,'',NULL,1,'',"נאָװ'",'Nov [abbreviated month]','ViewTranslation',7324);
-INSERT INTO `globalize_translations` VALUES (3344,'',NULL,1,'',"דעצ'",'Dec [abbreviated month]','ViewTranslation',7324);
-INSERT INTO `globalize_translations` VALUES (3345,'',NULL,1,'','星期日','Sunday [weekday]','ViewTranslation',7484);
-INSERT INTO `globalize_translations` VALUES (3346,'',NULL,1,'','星期一','Monday [weekday]','ViewTranslation',7484);
-INSERT INTO `globalize_translations` VALUES (3347,'',NULL,1,'','星期二','Tuesday [weekday]','ViewTranslation',7484);
-INSERT INTO `globalize_translations` VALUES (3348,'',NULL,1,'','星期三','Wednesday [weekday]','ViewTranslation',7484);
-INSERT INTO `globalize_translations` VALUES (3349,'',NULL,1,'','星期四','Thursday [weekday]','ViewTranslation',7484);
-INSERT INTO `globalize_translations` VALUES (3350,'',NULL,1,'','星期五','Friday [weekday]','ViewTranslation',7484);
-INSERT INTO `globalize_translations` VALUES (3351,'',NULL,1,'','星期六','Saturday [weekday]','ViewTranslation',7484);
-INSERT INTO `globalize_translations` VALUES (3352,'',NULL,1,'','日','Sun [abbreviated weekday]','ViewTranslation',7484);
-INSERT INTO `globalize_translations` VALUES (3353,'',NULL,1,'','一','Mon [abbreviated weekday]','ViewTranslation',7484);
-INSERT INTO `globalize_translations` VALUES (3354,'',NULL,1,'','二','Tue [abbreviated weekday]','ViewTranslation',7484);
-INSERT INTO `globalize_translations` VALUES (3355,'',NULL,1,'','三','Wed [abbreviated weekday]','ViewTranslation',7484);
-INSERT INTO `globalize_translations` VALUES (3356,'',NULL,1,'','四','Thu [abbreviated weekday]','ViewTranslation',7484);
-INSERT INTO `globalize_translations` VALUES (3357,'',NULL,1,'','五','Fri [abbreviated weekday]','ViewTranslation',7484);
-INSERT INTO `globalize_translations` VALUES (3358,'',NULL,1,'','六','Sat [abbreviated weekday]','ViewTranslation',7484);
-INSERT INTO `globalize_translations` VALUES (3359,'',NULL,1,'','一月','January [month]','ViewTranslation',7484);
-INSERT INTO `globalize_translations` VALUES (3360,'',NULL,1,'','二月','February [month]','ViewTranslation',7484);
-INSERT INTO `globalize_translations` VALUES (3361,'',NULL,1,'','三月','March [month]','ViewTranslation',7484);
-INSERT INTO `globalize_translations` VALUES (3362,'',NULL,1,'','四月','April [month]','ViewTranslation',7484);
-INSERT INTO `globalize_translations` VALUES (3363,'',NULL,1,'','五月','May [month]','ViewTranslation',7484);
-INSERT INTO `globalize_translations` VALUES (3364,'',NULL,1,'','六月','June [month]','ViewTranslation',7484);
-INSERT INTO `globalize_translations` VALUES (3365,'',NULL,1,'','七月','July [month]','ViewTranslation',7484);
-INSERT INTO `globalize_translations` VALUES (3366,'',NULL,1,'','八月','August [month]','ViewTranslation',7484);
-INSERT INTO `globalize_translations` VALUES (3367,'',NULL,1,'','九月','September [month]','ViewTranslation',7484);
-INSERT INTO `globalize_translations` VALUES (3368,'',NULL,1,'','十月','October [month]','ViewTranslation',7484);
-INSERT INTO `globalize_translations` VALUES (3369,'',NULL,1,'','十一月','November [month]','ViewTranslation',7484);
-INSERT INTO `globalize_translations` VALUES (3370,'',NULL,1,'','十二月','December [month]','ViewTranslation',7484);
-INSERT INTO `globalize_translations` VALUES (3371,'',NULL,1,'',' 1月','Jan [abbreviated month]','ViewTranslation',7484);
-INSERT INTO `globalize_translations` VALUES (3372,'',NULL,1,'',' 2月','Feb [abbreviated month]','ViewTranslation',7484);
-INSERT INTO `globalize_translations` VALUES (3373,'',NULL,1,'',' 3月','Mar [abbreviated month]','ViewTranslation',7484);
-INSERT INTO `globalize_translations` VALUES (3374,'',NULL,1,'',' 4月','Apr [abbreviated month]','ViewTranslation',7484);
-INSERT INTO `globalize_translations` VALUES (3375,'',NULL,1,'',' 5月','May [abbreviated month]','ViewTranslation',7484);
-INSERT INTO `globalize_translations` VALUES (3376,'',NULL,1,'',' 6月','Jun [abbreviated month]','ViewTranslation',7484);
-INSERT INTO `globalize_translations` VALUES (3377,'',NULL,1,'',' 7月','Jul [abbreviated month]','ViewTranslation',7484);
-INSERT INTO `globalize_translations` VALUES (3378,'',NULL,1,'',' 8月','Aug [abbreviated month]','ViewTranslation',7484);
-INSERT INTO `globalize_translations` VALUES (3379,'',NULL,1,'',' 9月','Sep [abbreviated month]','ViewTranslation',7484);
-INSERT INTO `globalize_translations` VALUES (3380,'',NULL,1,'','10月','Oct [abbreviated month]','ViewTranslation',7484);
-INSERT INTO `globalize_translations` VALUES (3381,'',NULL,1,'','11月','Nov [abbreviated month]','ViewTranslation',7484);
-INSERT INTO `globalize_translations` VALUES (3382,'',NULL,1,'','12月','Dec [abbreviated month]','ViewTranslation',7484);
-INSERT INTO `globalize_translations` VALUES (3383,'',NULL,1,'','Sonto','Sunday [weekday]','ViewTranslation',7594);
-INSERT INTO `globalize_translations` VALUES (3384,'',NULL,1,'','Msombuluko','Monday [weekday]','ViewTranslation',7594);
-INSERT INTO `globalize_translations` VALUES (3385,'',NULL,1,'','Lwesibili','Tuesday [weekday]','ViewTranslation',7594);
-INSERT INTO `globalize_translations` VALUES (3386,'',NULL,1,'','Lwesithathu','Wednesday [weekday]','ViewTranslation',7594);
-INSERT INTO `globalize_translations` VALUES (3387,'',NULL,1,'','Lwesine','Thursday [weekday]','ViewTranslation',7594);
-INSERT INTO `globalize_translations` VALUES (3388,'',NULL,1,'','Lwesihlanu','Friday [weekday]','ViewTranslation',7594);
-INSERT INTO `globalize_translations` VALUES (3389,'',NULL,1,'','Mgqibelo','Saturday [weekday]','ViewTranslation',7594);
-INSERT INTO `globalize_translations` VALUES (3390,'',NULL,1,'','Son','Sun [abbreviated weekday]','ViewTranslation',7594);
-INSERT INTO `globalize_translations` VALUES (3391,'',NULL,1,'','Mso','Mon [abbreviated weekday]','ViewTranslation',7594);
-INSERT INTO `globalize_translations` VALUES (3392,'',NULL,1,'','Bil','Tue [abbreviated weekday]','ViewTranslation',7594);
-INSERT INTO `globalize_translations` VALUES (3393,'',NULL,1,'','Tha','Wed [abbreviated weekday]','ViewTranslation',7594);
-INSERT INTO `globalize_translations` VALUES (3394,'',NULL,1,'','Sin','Thu [abbreviated weekday]','ViewTranslation',7594);
-INSERT INTO `globalize_translations` VALUES (3395,'',NULL,1,'','Hla','Fri [abbreviated weekday]','ViewTranslation',7594);
-INSERT INTO `globalize_translations` VALUES (3396,'',NULL,1,'','Mgq','Sat [abbreviated weekday]','ViewTranslation',7594);
-INSERT INTO `globalize_translations` VALUES (3397,'',NULL,1,'','Januwari','January [month]','ViewTranslation',7594);
-INSERT INTO `globalize_translations` VALUES (3398,'',NULL,1,'','Februwari','February [month]','ViewTranslation',7594);
-INSERT INTO `globalize_translations` VALUES (3399,'',NULL,1,'','Mashi','March [month]','ViewTranslation',7594);
-INSERT INTO `globalize_translations` VALUES (3400,'',NULL,1,'','Apreli','April [month]','ViewTranslation',7594);
-INSERT INTO `globalize_translations` VALUES (3401,'',NULL,1,'','Meyi','May [month]','ViewTranslation',7594);
-INSERT INTO `globalize_translations` VALUES (3402,'',NULL,1,'','Juni','June [month]','ViewTranslation',7594);
-INSERT INTO `globalize_translations` VALUES (3403,'',NULL,1,'','Julayi','July [month]','ViewTranslation',7594);
-INSERT INTO `globalize_translations` VALUES (3404,'',NULL,1,'','Agasti','August [month]','ViewTranslation',7594);
-INSERT INTO `globalize_translations` VALUES (3405,'',NULL,1,'','Septemba','September [month]','ViewTranslation',7594);
-INSERT INTO `globalize_translations` VALUES (3406,'',NULL,1,'','Okthoba','October [month]','ViewTranslation',7594);
-INSERT INTO `globalize_translations` VALUES (3407,'',NULL,1,'','Novemba','November [month]','ViewTranslation',7594);
-INSERT INTO `globalize_translations` VALUES (3408,'',NULL,1,'','Disemba','December [month]','ViewTranslation',7594);
-INSERT INTO `globalize_translations` VALUES (3409,'',NULL,1,'','Jan','Jan [abbreviated month]','ViewTranslation',7594);
-INSERT INTO `globalize_translations` VALUES (3410,'',NULL,1,'','Feb','Feb [abbreviated month]','ViewTranslation',7594);
-INSERT INTO `globalize_translations` VALUES (3411,'',NULL,1,'','Mas','Mar [abbreviated month]','ViewTranslation',7594);
-INSERT INTO `globalize_translations` VALUES (3412,'',NULL,1,'','Apr','Apr [abbreviated month]','ViewTranslation',7594);
-INSERT INTO `globalize_translations` VALUES (3413,'',NULL,1,'','Mey','May [abbreviated month]','ViewTranslation',7594);
-INSERT INTO `globalize_translations` VALUES (3414,'',NULL,1,'','Jun','Jun [abbreviated month]','ViewTranslation',7594);
-INSERT INTO `globalize_translations` VALUES (3415,'',NULL,1,'','Jul','Jul [abbreviated month]','ViewTranslation',7594);
-INSERT INTO `globalize_translations` VALUES (3416,'',NULL,1,'','Aga','Aug [abbreviated month]','ViewTranslation',7594);
-INSERT INTO `globalize_translations` VALUES (3417,'',NULL,1,'','Sep','Sep [abbreviated month]','ViewTranslation',7594);
-INSERT INTO `globalize_translations` VALUES (3418,'',NULL,1,'','Okt','Oct [abbreviated month]','ViewTranslation',7594);
-INSERT INTO `globalize_translations` VALUES (3419,'',NULL,1,'','Nov','Nov [abbreviated month]','ViewTranslation',7594);
-INSERT INTO `globalize_translations` VALUES (3420,'',NULL,1,'','Dis','Dec [abbreviated month]','ViewTranslation',7594);

Added: trunk/src/main/resources/db/lang-dateformat.txt
===================================================================
--- trunk/src/main/resources/db/lang-dateformat.txt	2008-11-11 13:33:36 UTC (rev 949)
+++ trunk/src/main/resources/db/lang-dateformat.txt	2008-11-12 04:32:06 UTC (rev 950)
@@ -0,0 +1,233 @@
+# cd com/google/gwt/i18n/client/constants ; grep dateFormats DateTimeConstants_*.p* | cut -d"_" -f 2- | sed 's/\.properties:dateFormats //g' | sed 's/\\,/¡/g' | sed "s/, /${CH}/g" | cut -d$CH -f1,3   | sed "s/= .*$CH/=/g" | sed 's/¡/,/g'
+aa_DJ=dd-MMM-yyyy
+aa_ER_SAAHO=dd-MMM-yyyy
+aa=dd-MMM-yyyy
+af_NA=d MMM yyyy
+af=dd MMM yyyy
+ak=yyyy MMM d
+am=MMM d yyyy
+ar_EG=dd‏/MM‏/yyyy
+ar_JO=dd‏/MM‏/yyyy
+ar_LB=dd‏/MM‏/yyyy
+ar=dd‏/MM‏/yyyy
+ar_QA=dd‏/MM‏/yyyy
+ar_SA=dd‏/MM‏/yyyy
+ar_SY=dd‏/MM‏/yyyy
+ar_TN=dd‏/MM‏/yyyy
+ar_YE=dd‏/MM‏/yyyy
+as_IN=dd-MM-yyyy
+as=dd-MM-yyyy
+az_Cyrl=yyyy MMM d
+az=yyyy MMM d
+be=d.M.yyyy
+bg=dd.MM.yyyy
+bn_IN=dd-MM-yyyy
+bn=dd-MM-yyyy
+bo_IN=yyyy ལོ་འི་MMMཙེས་d
+bo=yyyy ལོ་འི་MMMཙེས་d
+bs=yyyy MMM d
+byn=dd-MMM-yyyy
+ca=dd/MM/yyyy
+cch=yyyy MMM d
+cop=yyyy MMM d
+cs=d.M.yyyy
+cy=d MMM yyyy
+da=dd/MM/yyyy
+de_AT=dd.MM.yyyy
+de_BE=dd.MM.yyyy
+de=dd.MM.yyyy
+dv=dd-MM-yyyy
+dz=སྤྱི་ལོ་yyyy ཟླ་ MMM ཚེས་ dd
+ee=yyyy MMM d
+el_POLYTON=dd MMM yyyy
+el=dd MMM yyyy
+en_AU=dd/MM/yyyy
+en_BE=dd MMM yyyy
+en_BW=MMM d\, yyyy
+en_BZ=dd-MMM-yyyy
+en_CA=yyyy-MM-dd
+en_GB=d MMM yyyy
+en_HK=d MMM yyyy
+en_IE=d MMM yyyy
+en_IN=dd-MMM-yyyy
+en_MT=dd MMM yyyy
+en_NA=MMM d\, yyyy
+en_NZ=d/MM/yyyy
+en_PK=dd-MMM-yyyy
+en=MMM d\, yyyy
+en_SG=dd-MMM-yyyy
+en_ZA=dd MMM yyyy
+en_ZW=dd MMM\,yyyy
+eo=yyyy-MMM-dd
+es_AR=dd/MM/yyyy
+es_CL=dd-MM-yyyy
+es_CO=d/MM/yyyy
+es_EC=dd/MM/yyyy
+es_ES=dd/MM/yyyy
+es_GT=d/MM/yyyy
+es_HN=dd/MM/yyyy
+es_PA=MM/dd/yyyy
+es_PE=dd/MM/yyyy
+es=dd/MM/yyyy
+es_PR=MM/dd/yyyy
+es_US=MMM d\, yyyy
+et=dd.MM.yyyy
+eu=yyyy-MMM-dd
+fa_AF=yyyy/M/d
+fa=yyyy/M/d
+fil=MMM d\, yyyy
+fi=d.M.yyyy
+fo=dd-MM-yyyy
+fr_BE=d MMM yyyy
+fr_CA=yyyy-MM-dd
+fr_CH=d MMM yyyy
+fr=d MMM yyyy
+fur=d MMM yyyy
+gaa=yyyy MMM d
+ga=d MMM yyyy
+gez=dd-MMM-yyyy
+gl=MMM dd\, yyyy
+gu_IN=dd-MM-yyyy
+gu=dd-MM-yyyy
+gv=MMM dd\, yyyy
+ha_Arab=yyyy MMM d
+ha_Latn_GH=yyyy MMM d
+ha_Latn_NE=yyyy MMM d
+ha_NE=yyyy MMM d
+ha=yyyy MMM d
+haw=d MMM yyyy
+he=dd/MM/yyyy
+hi=dd-MM-yyyy
+hr=yyyy.MM.dd
+hu=yyyy.MM.dd.
+hy=MMM d\, yyyy
+ia=yyyy MMM d
+id=dd MMM yyyy
+ig=yyyy MMM d
+ii=MMM d\, yyyy
+is=d.M.yyyy
+it_CH=d-MMM-yyyy
+it=dd/MMM/yyyy
+iu=yyyy MMM d
+ja=yyyy/MM/dd
+kaj=yyyy MMM d
+kam=yyyy MMM d
+ka=yyyy MMM d
+kcg=yyyy MMM d
+kfo=yyyy MMM d
+kk=dd.MM.yyyy
+kl=MMM dd\, yyyy
+km=d MMM yyyy
+kn=dd-MM-yyyy
+kok_IN=dd-MM-yyyy
+kok=dd-MM-yyyy
+ko=yyyy. M. d.
+kpe=yyyy MMM d
+ku_IQ=yyyy MMM d
+ku_IR=yyyy MMM d
+ku_Latn_IQ=yyyy MMM d
+ku_Latn_IR=yyyy MMM d
+ku_Latn_SY=yyyy MMM d
+ku_Latn_TR=yyyy MMM d
+ku=yyyy MMM d
+ku_SY=yyyy MMM d
+ku_TR=yyyy MMM d
+kw=d MMM yyyy
+ky=yyyy MMM d
+ln=yyyy MMM d
+lo=d MMM yyyy
+lt=yyyy.MM.dd
+lv=yyyy.d.M
+mk=dd.M.yyyy
+ml_IN=yyyy\, MMM d
+ml=yyyy\, MMM d
+mn=yyyy MMM d
+mr_IN=dd-MM-yyyy
+mr=dd-MM-yyyy
+ms_BN=dd/MM/yyyy
+ms=dd MMM yyyy
+mt=dd MMM yyyy
+my=yyyy MMM d
+nb=d. MMM. yyyy
+ne=yyyy MMM d
+nl_BE=d-MMM-yyyy
+nl=d MMM yyyy
+nn=d. MMM. yyyy
+nr=yyyy MMM d
+nso=yyyy MMM d
+ny=yyyy MMM d
+om=dd-MMM-yyyy
+or=dd-MM-yyyy
+pa_Arab=yyyy MMM d
+pa_Guru=yyyy MMM d
+pa_IN=yyyy MMM d
+pa_PK=yyyy MMM d
+pa=yyyy MMM d
+pl=yyyy-MM-dd
+ps=d MMM yyyy
+pt=dd/MM/yyyy
+pt_PT=yyyy/MM/dd
+root=yyyy MMM d
+ro=dd.MM.yyyy
+ru=dd.MM.yyyy
+ru_UA=d MMM yyyy
+rw=yyyy MMM d
+sa_IN=dd-MM-yyyy
+sa=dd-MM-yyyy
+se_FI=yyyy MMM d
+se=yyyy MMM d
+sh=MMM d\, yyyy
+sid=dd-MMM-yyyy
+sk=d.M.yyyy
+sl=d.M.yyyy
+so=dd-MMM-yyyy
+sq=yyyy-MM-dd
+sr_Cyrl_BA=yyyy-MM-dd
+sr_Latn_ME=dd.MM.yyyy.
+sr_Latn=dd.MM.yyyy.
+sr_Latn_RS=dd.MM.yyyy.
+sr=dd.MM.yyyy.
+ss=yyyy MMM d
+ssy=MMM d\, yyyy
+st=yyyy MMM d
+sv=d MMM yyyy
+sw_KE=yyyy MMM d
+sw=yyyy MMM d
+syr=dd/MM/yyyy
+ta_IN=dd-MM-yyyy
+ta=dd-MM-yyyy
+te_IN=dd-MM-yyyy
+te=dd-MM-yyyy
+tg=yyyy MMM d
+th=d MMM yyyy
+ti_ER=dd-MMM-yyyy
+tig=dd-MMM-yyyy
+ti=dd-MMM-yyyy
+tn=yyyy MMM d
+to=d MMM yyyy
+tr=dd.MMM.yyyy
+ts=yyyy MMM d
+tt=dd.MM.yyyy
+ug=yyyy MMM d
+uk=d MMM yyyy
+und=MMM d\, yyyy
+ur_IN=yyyy MMM d
+ur_PK=yyyy MMM d
+ur=yyyy MMM d
+uz_AF=yyyy MMM d
+uz_Arab_AF=d MMM yyyy
+uz_Arab=d MMM yyyy
+uz_Latn=yyyy MMM d
+uz=yyyy MMM d
+ve=yyyy MMM d
+vi=dd-MM-yyyy
+wal=dd-MMM-yyyy
+wo=yyyy MMM d
+xh=yyyy MMM d
+yo=yyyy MMM d
+zh_Hans_SG=yyyy-M-d
+zh_Hant_HK=yyyy年M月d日
+zh_Hant_MO=yyyy年M月d日
+zh_Hant=yyyy/M/d
+zh=yyyy-M-d
+zu=yyyy MMM d

Added: trunk/src/main/resources/db/lang-dateformatshort.txt
===================================================================
--- trunk/src/main/resources/db/lang-dateformatshort.txt	2008-11-11 13:33:36 UTC (rev 949)
+++ trunk/src/main/resources/db/lang-dateformatshort.txt	2008-11-12 04:32:06 UTC (rev 950)
@@ -0,0 +1,232 @@
+aa_DJ=dd/MM/yy
+aa_ER_SAAHO=dd/MM/yy
+aa=dd/MM/yy
+af_NA=yyyy-MM-dd
+af=yyyy/MM/dd
+ak=yy/MM/dd
+am=dd/MM/yy
+ar_EG=d‏/M‏/yyyy
+ar_JO=d‏/M‏/yyyy
+ar_LB=d‏/M‏/yyyy
+ar=d‏/M‏/yyyy
+ar_QA=d‏/M‏/yyyy
+ar_SA=d‏/M‏/yyyy
+ar_SY=d‏/M‏/yyyy
+ar_TN=d‏/M‏/yyyy
+ar_YE=d‏/M‏/yyyy
+as_IN=d-M-yyyy
+as=d-M-yyyy
+az_Cyrl=yy/MM/dd
+az=yy/MM/dd
+be=d.M.yy
+bg=dd.MM.yy
+bn_IN=d-M-yy
+bn=d-M-yy
+bo_IN=M/d/yy
+bo=M/d/yy
+bs=yy/MM/dd
+byn=dd/MM/yy
+ca=dd/MM/yy
+cch=yy/MM/dd
+cop=yy/MM/dd
+cs=d.M.yy
+cy=dd/MM/yyyy
+da=dd/MM/yy
+de_AT=dd.MM.yy
+de_BE=d/MM/yy
+de=dd.MM.yy
+dv=d-M-yy
+dz=སྤྱི་ལོ་ yyyy ཟླ་ MM ཚེས་ dd
+ee=yy/MM/dd
+el_POLYTON=dd/MM/yyyy
+el=dd/MM/yyyy
+en_AU=d/MM/yy
+en_BE=dd/MM/yy
+en_BW=dd/MM/yy
+en_BZ=dd/MM/yy
+en_CA=yy-MM-dd
+en_GB=dd/MM/yyyy
+en_HK=dd/MM/yyyy
+en_IE=dd/MM/yyyy
+en_IN=dd/MM/yy
+en_MT=dd/MM/yyyy
+en_NA=M/d/yy
+en_NZ=d/MM/yy
+en_PK=dd/MM/yy
+en=M/d/yy
+en_SG=dd/MM/yy
+en_ZA=yyyy/MM/dd
+en_ZW=d/M/yyyy
+eo=yy-MM-dd
+es_AR=dd/MM/yy
+es_CL=dd-MM-yy
+es_CO=d/MM/yy
+es_EC=dd/MM/yy
+es_ES=dd/MM/yy
+es_GT=d/MM/yy
+es_HN=dd/MM/yy
+es_PA=MM/dd/yy
+es_PE=d/MM/yy
+es=dd/MM/yy
+es_PR=MM/dd/yy
+es_US=M/d/yy
+et=dd.MM.yy
+eu=yy-MM-dd
+fa_AF=yy/M/d
+fa=yy/M/d
+fil=M/d/yy
+fi=d.M.yyyy
+fo=dd-MM-yy
+fr_BE=d/MM/yy
+fr_CA=yy-MM-dd
+fr_CH=dd.MM.yy
+fr=dd/MM/yy
+fur=d/MM/yy
+gaa=yy/MM/dd
+ga=dd/MM/yyyy
+gez=dd/MM/yy
+gl=dd/MM/yy
+gu_IN=d-MM-yy
+gu=d-MM-yy
+gv=dd/MM/yy
+ha_Arab=yy/MM/dd
+ha_Latn_GH=yy/MM/dd
+ha_Latn_NE=yy/MM/dd
+ha_NE=yy/MM/dd
+ha=yy/MM/dd
+haw=d/M/yy
+he=dd/MM/yy
+hi=d-M-yy
+hr=yyyy.MM.dd
+hu=yyyy.MM.dd.
+hy=MM/dd/yy
+ia=yy/MM/dd
+id=dd/MM/yy
+ig=yy/MM/dd
+ii=M/d/yy
+is=d.M.yyyy
+it_CH=dd.MM.yy
+it=dd/MM/yy
+iu=yy/MM/dd
+ja=yy/MM/dd
+kaj=yy/MM/dd
+kam=yy/MM/dd
+ka=yy/MM/dd
+kcg=yy/MM/dd
+kfo=yy/MM/dd
+kk=dd.MM.yy
+kl=dd/MM/yy
+km=d/M/yyyy
+kn=d-M-yy
+kok_IN=d-M-yy
+kok=d-M-yy
+ko=yy. M. d.
+kpe=yy/MM/dd
+ku_IQ=yy/MM/dd
+ku_IR=yy/MM/dd
+ku_Latn_IQ=yy/MM/dd
+ku_Latn_IR=yy/MM/dd
+ku_Latn_SY=yy/MM/dd
+ku_Latn_TR=yy/MM/dd
+ku=yy/MM/dd
+ku_SY=yy/MM/dd
+ku_TR=yy/MM/dd
+kw=dd/MM/yyyy
+ky=yy/MM/dd
+ln=yy/MM/dd
+lo=d/M/yyyy
+lt=yyyy-MM-dd
+lv=yy.d.M
+mk=dd.M.yy
+ml_IN=dd-MM-yy
+ml=dd-MM-yy
+mn=yy/MM/dd
+mr_IN=d-M-yy
+mr=d-M-yy
+ms_BN=dd/MM/yyyy
+ms=dd/MM/yyyy
+mt=dd/MM/yyyy
+my=yy/MM/dd
+nb=dd.MM.yy
+ne=yy/MM/dd
+nl_BE=d/MM/yy
+nl=dd-MM-yy
+nn=dd.MM.yy
+nr=yy/MM/dd
+nso=yy/MM/dd
+ny=yy/MM/dd
+om=dd/MM/yy
+or=dd-MM-yy
+pa_Arab=dd/MM/yyy
+pa_Guru=dd/MM/yyy
+pa_IN=dd/MM/yyy
+pa_PK=dd/MM/yyy
+pa=dd/MM/yyy
+pl=yy-MM-dd
+ps=yyyy/M/d
+pt=dd/MM/yy
+pt_PT=yy/MM/dd
+root=yyyy-MM-dd
+ro=dd.MM.yyyy
+ru=dd.MM.yy
+ru_UA=dd.MM.yy
+rw=yy/MM/dd
+sa_IN=d-MM-yy
+sa=d-MM-yy
+se_FI=yy/MM/dd
+se=yy/MM/dd
+sh=M/d/yy
+sid=dd/MM/yy
+sk=d.M.yyyy
+sl=d.M.yy
+so=dd/MM/yy
+sq=yy-MM-dd
+sr_Cyrl_BA=yy-MM-dd
+sr_Latn_ME=d.M.yy.
+sr_Latn=d.M.yy.
+sr_Latn_RS=d.M.yy.
+sr=d.M.yy.
+ss=yy/MM/dd
+ssy=M/d/yy
+st=yy/MM/dd
+sv=yyyy-MM-dd
+sw_KE=yy/MM/dd
+sw=yy/MM/dd
+syr=dd/MM/yyyy
+ta_IN=d-M-yy
+ta=d-M-yy
+te_IN=dd-MM-yy
+te=dd-MM-yy
+tg=yy/MM/dd
+th=d/M/yyyy
+ti_ER=dd/MM/yy
+tig=dd/MM/yy
+ti=dd/MM/yy
+tn=yy/MM/dd
+to=dd-MM-yyyy
+tr=dd.MM.yyyy
+ts=yy/MM/dd
+tt=dd.MM.yyyy
+ug=yy/MM/dd
+uk=dd.MM.yy
+und=M/d/yy
+ur_IN=yyyy-MM-dd
+ur_PK=yyyy-MM-dd
+ur=yyyy-MM-dd
+uz_AF=yy/MM/dd
+uz_Arab_AF=yyyy/M/d
+uz_Arab=yyyy/M/d
+uz_Latn=yy/MM/dd
+uz=yy/MM/dd
+ve=yy/MM/dd
+vi=dd/MM/yyyy
+wal=dd/MM/yy
+wo=yy/MM/dd
+xh=yy/MM/dd
+yo=yy/MM/dd
+zh_Hans_SG=dd/MM/yy
+zh_Hant_HK=yy年M月d日
+zh_Hant_MO=yy年M月d日
+zh_Hant=yyyy/M/d
+zh=yy-M-d
+zu=yy/MM/dd

Modified: trunk/src/main/resources/db/liquibase_changelog.xml
===================================================================
--- trunk/src/main/resources/db/liquibase_changelog.xml	2008-11-11 13:33:36 UTC (rev 949)
+++ trunk/src/main/resources/db/liquibase_changelog.xml	2008-11-12 04:32:06 UTC (rev 950)
@@ -107,4 +107,16 @@
       encoding="utf8" stripComments="1" />
     <rollback>DELETE FROM globalize_translations WHERE id BETWEEN 1 AND 4003;</rollback>
   </changeSet>
+  <changeSet id="16" author="vjrj">
+    <comment>English and spanish translations (continuation)</comment>
+    <sqlFile path="src/main/resources/db/update-0012-i18n.sql"
+      encoding="utf8" stripComments="1" />
+    <rollback>SELECT * FROM globalize_countries;</rollback>
+  </changeSet>
+  <changeSet id="17" author="vjrj">
+    <comment>English and spanish translations (continuation)</comment>
+    <sqlFile path="src/main/resources/db/update-0013-i18n.sql"
+      encoding="utf8" stripComments="1" />
+    <rollback>SELECT * FROM globalize_countries;</rollback>
+  </changeSet>
 </databaseChangeLog>

Modified: trunk/src/main/resources/db/update-0008-i18n.sql
===================================================================
--- trunk/src/main/resources/db/update-0008-i18n.sql	2008-11-11 13:33:36 UTC (rev 949)
+++ trunk/src/main/resources/db/update-0008-i18n.sql	2008-11-12 04:32:06 UTC (rev 950)
@@ -1,4 +1,4 @@
-INSERT INTO `globalize_languages` VALUES (7597,'pt-br','ltr','Brazilian Portuguese','','','',NULL,NULL,'\0','português do Brasil','','pt-br','c == 1 ? 1 : 2','','L');
+INSERT INTO `globalize_languages` VALUES (7597,'pt-br','','','ltr','Brazilian Portuguese','','','',NULL,NULL,'\0','português do Brasil','','pt-br','c == 1 ? 1 : 2','','L');
 INSERT INTO `globalize_translations` VALUES (NULL,'',NULL,1,'','Content not found','Content not found','kune_core',1819);
 INSERT INTO `globalize_translations` VALUES (NULL,'',NULL,1,'','Double click to rename','Double click to rename','kune_core',1819);
 INSERT INTO `globalize_translations` VALUES (NULL,'',NULL,1,'','Contenido no encontrado','Content not found','kune_core',5889);

Added: trunk/src/main/resources/db/update-0012-i18n.sql
===================================================================
--- trunk/src/main/resources/db/update-0012-i18n.sql	2008-11-11 13:33:36 UTC (rev 949)
+++ trunk/src/main/resources/db/update-0012-i18n.sql	2008-11-12 04:32:06 UTC (rev 950)
@@ -0,0 +1,232 @@
+UPDATE globalize_languages SET date_format='dd-MMM-yyyy' WHERE code='aa_DJ';
+UPDATE globalize_languages SET date_format='dd-MMM-yyyy' WHERE code='aa_ER_SAAHO';
+UPDATE globalize_languages SET date_format='dd-MMM-yyyy' WHERE code='aa';
+UPDATE globalize_languages SET date_format='d MMM yyyy' WHERE code='af_NA';
+UPDATE globalize_languages SET date_format='dd MMM yyyy' WHERE code='af';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='ak';
+UPDATE globalize_languages SET date_format='MMM d yyyy' WHERE code='am';
+UPDATE globalize_languages SET date_format='dd‏/MM‏/yyyy' WHERE code='ar_EG';
+UPDATE globalize_languages SET date_format='dd‏/MM‏/yyyy' WHERE code='ar_JO';
+UPDATE globalize_languages SET date_format='dd‏/MM‏/yyyy' WHERE code='ar_LB';
+UPDATE globalize_languages SET date_format='dd‏/MM‏/yyyy' WHERE code='ar';
+UPDATE globalize_languages SET date_format='dd‏/MM‏/yyyy' WHERE code='ar_QA';
+UPDATE globalize_languages SET date_format='dd‏/MM‏/yyyy' WHERE code='ar_SA';
+UPDATE globalize_languages SET date_format='dd‏/MM‏/yyyy' WHERE code='ar_SY';
+UPDATE globalize_languages SET date_format='dd‏/MM‏/yyyy' WHERE code='ar_TN';
+UPDATE globalize_languages SET date_format='dd‏/MM‏/yyyy' WHERE code='ar_YE';
+UPDATE globalize_languages SET date_format='dd-MM-yyyy' WHERE code='as_IN';
+UPDATE globalize_languages SET date_format='dd-MM-yyyy' WHERE code='as';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='az_Cyrl';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='az';
+UPDATE globalize_languages SET date_format='d.M.yyyy' WHERE code='be';
+UPDATE globalize_languages SET date_format='dd.MM.yyyy' WHERE code='bg';
+UPDATE globalize_languages SET date_format='dd-MM-yyyy' WHERE code='bn_IN';
+UPDATE globalize_languages SET date_format='dd-MM-yyyy' WHERE code='bn';
+UPDATE globalize_languages SET date_format='yyyy ལོ་འི་MMMཙེས་d' WHERE code='bo_IN';
+UPDATE globalize_languages SET date_format='yyyy ལོ་འི་MMMཙེས་d' WHERE code='bo';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='bs';
+UPDATE globalize_languages SET date_format='dd-MMM-yyyy' WHERE code='byn';
+UPDATE globalize_languages SET date_format='dd/MM/yyyy' WHERE code='ca';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='cch';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='cop';
+UPDATE globalize_languages SET date_format='d.M.yyyy' WHERE code='cs';
+UPDATE globalize_languages SET date_format='d MMM yyyy' WHERE code='cy';
+UPDATE globalize_languages SET date_format='dd/MM/yyyy' WHERE code='da';
+UPDATE globalize_languages SET date_format='dd.MM.yyyy' WHERE code='de_AT';
+UPDATE globalize_languages SET date_format='dd.MM.yyyy' WHERE code='de_BE';
+UPDATE globalize_languages SET date_format='dd.MM.yyyy' WHERE code='de';
+UPDATE globalize_languages SET date_format='dd-MM-yyyy' WHERE code='dv';
+UPDATE globalize_languages SET date_format='སྤྱི་ལོ་yyyy ཟླ་ MMM ཚེས་ dd' WHERE code='dz';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='ee';
+UPDATE globalize_languages SET date_format='dd MMM yyyy' WHERE code='el_POLYTON';
+UPDATE globalize_languages SET date_format='dd MMM yyyy' WHERE code='el';
+UPDATE globalize_languages SET date_format='dd/MM/yyyy' WHERE code='en_AU';
+UPDATE globalize_languages SET date_format='dd MMM yyyy' WHERE code='en_BE';
+UPDATE globalize_languages SET date_format='MMM d\, yyyy' WHERE code='en_BW';
+UPDATE globalize_languages SET date_format='dd-MMM-yyyy' WHERE code='en_BZ';
+UPDATE globalize_languages SET date_format='yyyy-MM-dd' WHERE code='en_CA';
+UPDATE globalize_languages SET date_format='d MMM yyyy' WHERE code='en_GB';
+UPDATE globalize_languages SET date_format='d MMM yyyy' WHERE code='en_HK';
+UPDATE globalize_languages SET date_format='d MMM yyyy' WHERE code='en_IE';
+UPDATE globalize_languages SET date_format='dd-MMM-yyyy' WHERE code='en_IN';
+UPDATE globalize_languages SET date_format='dd MMM yyyy' WHERE code='en_MT';
+UPDATE globalize_languages SET date_format='MMM d\, yyyy' WHERE code='en_NA';
+UPDATE globalize_languages SET date_format='d/MM/yyyy' WHERE code='en_NZ';
+UPDATE globalize_languages SET date_format='dd-MMM-yyyy' WHERE code='en_PK';
+UPDATE globalize_languages SET date_format='MMM d\, yyyy' WHERE code='en';
+UPDATE globalize_languages SET date_format='dd-MMM-yyyy' WHERE code='en_SG';
+UPDATE globalize_languages SET date_format='dd MMM yyyy' WHERE code='en_ZA';
+UPDATE globalize_languages SET date_format='dd MMM\,yyyy' WHERE code='en_ZW';
+UPDATE globalize_languages SET date_format='yyyy-MMM-dd' WHERE code='eo';
+UPDATE globalize_languages SET date_format='dd/MM/yyyy' WHERE code='es_AR';
+UPDATE globalize_languages SET date_format='dd-MM-yyyy' WHERE code='es_CL';
+UPDATE globalize_languages SET date_format='d/MM/yyyy' WHERE code='es_CO';
+UPDATE globalize_languages SET date_format='dd/MM/yyyy' WHERE code='es_EC';
+UPDATE globalize_languages SET date_format='dd/MM/yyyy' WHERE code='es_ES';
+UPDATE globalize_languages SET date_format='d/MM/yyyy' WHERE code='es_GT';
+UPDATE globalize_languages SET date_format='dd/MM/yyyy' WHERE code='es_HN';
+UPDATE globalize_languages SET date_format='MM/dd/yyyy' WHERE code='es_PA';
+UPDATE globalize_languages SET date_format='dd/MM/yyyy' WHERE code='es_PE';
+UPDATE globalize_languages SET date_format='dd/MM/yyyy' WHERE code='es';
+UPDATE globalize_languages SET date_format='MM/dd/yyyy' WHERE code='es_PR';
+UPDATE globalize_languages SET date_format='MMM d\, yyyy' WHERE code='es_US';
+UPDATE globalize_languages SET date_format='dd.MM.yyyy' WHERE code='et';
+UPDATE globalize_languages SET date_format='yyyy-MMM-dd' WHERE code='eu';
+UPDATE globalize_languages SET date_format='yyyy/M/d' WHERE code='fa_AF';
+UPDATE globalize_languages SET date_format='yyyy/M/d' WHERE code='fa';
+UPDATE globalize_languages SET date_format='MMM d\, yyyy' WHERE code='fil';
+UPDATE globalize_languages SET date_format='d.M.yyyy' WHERE code='fi';
+UPDATE globalize_languages SET date_format='dd-MM-yyyy' WHERE code='fo';
+UPDATE globalize_languages SET date_format='d MMM yyyy' WHERE code='fr_BE';
+UPDATE globalize_languages SET date_format='yyyy-MM-dd' WHERE code='fr_CA';
+UPDATE globalize_languages SET date_format='d MMM yyyy' WHERE code='fr_CH';
+UPDATE globalize_languages SET date_format='d MMM yyyy' WHERE code='fr';
+UPDATE globalize_languages SET date_format='d MMM yyyy' WHERE code='fur';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='gaa';
+UPDATE globalize_languages SET date_format='d MMM yyyy' WHERE code='ga';
+UPDATE globalize_languages SET date_format='dd-MMM-yyyy' WHERE code='gez';
+UPDATE globalize_languages SET date_format='MMM dd\, yyyy' WHERE code='gl';
+UPDATE globalize_languages SET date_format='dd-MM-yyyy' WHERE code='gu_IN';
+UPDATE globalize_languages SET date_format='dd-MM-yyyy' WHERE code='gu';
+UPDATE globalize_languages SET date_format='MMM dd\, yyyy' WHERE code='gv';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='ha_Arab';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='ha_Latn_GH';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='ha_Latn_NE';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='ha_NE';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='ha';
+UPDATE globalize_languages SET date_format='d MMM yyyy' WHERE code='haw';
+UPDATE globalize_languages SET date_format='dd/MM/yyyy' WHERE code='he';
+UPDATE globalize_languages SET date_format='dd-MM-yyyy' WHERE code='hi';
+UPDATE globalize_languages SET date_format='yyyy.MM.dd' WHERE code='hr';
+UPDATE globalize_languages SET date_format='yyyy.MM.dd.' WHERE code='hu';
+UPDATE globalize_languages SET date_format='MMM d\, yyyy' WHERE code='hy';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='ia';
+UPDATE globalize_languages SET date_format='dd MMM yyyy' WHERE code='id';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='ig';
+UPDATE globalize_languages SET date_format='MMM d\, yyyy' WHERE code='ii';
+UPDATE globalize_languages SET date_format='d.M.yyyy' WHERE code='is';
+UPDATE globalize_languages SET date_format='d-MMM-yyyy' WHERE code='it_CH';
+UPDATE globalize_languages SET date_format='dd/MMM/yyyy' WHERE code='it';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='iu';
+UPDATE globalize_languages SET date_format='yyyy/MM/dd' WHERE code='ja';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='kaj';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='kam';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='ka';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='kcg';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='kfo';
+UPDATE globalize_languages SET date_format='dd.MM.yyyy' WHERE code='kk';
+UPDATE globalize_languages SET date_format='MMM dd\, yyyy' WHERE code='kl';
+UPDATE globalize_languages SET date_format='d MMM yyyy' WHERE code='km';
+UPDATE globalize_languages SET date_format='dd-MM-yyyy' WHERE code='kn';
+UPDATE globalize_languages SET date_format='dd-MM-yyyy' WHERE code='kok_IN';
+UPDATE globalize_languages SET date_format='dd-MM-yyyy' WHERE code='kok';
+UPDATE globalize_languages SET date_format='yyyy. M. d.' WHERE code='ko';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='kpe';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='ku_IQ';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='ku_IR';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='ku_Latn_IQ';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='ku_Latn_IR';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='ku_Latn_SY';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='ku_Latn_TR';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='ku';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='ku_SY';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='ku_TR';
+UPDATE globalize_languages SET date_format='d MMM yyyy' WHERE code='kw';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='ky';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='ln';
+UPDATE globalize_languages SET date_format='d MMM yyyy' WHERE code='lo';
+UPDATE globalize_languages SET date_format='yyyy.MM.dd' WHERE code='lt';
+UPDATE globalize_languages SET date_format='yyyy.d.M' WHERE code='lv';
+UPDATE globalize_languages SET date_format='dd.M.yyyy' WHERE code='mk';
+UPDATE globalize_languages SET date_format='yyyy\, MMM d' WHERE code='ml_IN';
+UPDATE globalize_languages SET date_format='yyyy\, MMM d' WHERE code='ml';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='mn';
+UPDATE globalize_languages SET date_format='dd-MM-yyyy' WHERE code='mr_IN';
+UPDATE globalize_languages SET date_format='dd-MM-yyyy' WHERE code='mr';
+UPDATE globalize_languages SET date_format='dd/MM/yyyy' WHERE code='ms_BN';
+UPDATE globalize_languages SET date_format='dd MMM yyyy' WHERE code='ms';
+UPDATE globalize_languages SET date_format='dd MMM yyyy' WHERE code='mt';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='my';
+UPDATE globalize_languages SET date_format='d. MMM. yyyy' WHERE code='nb';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='ne';
+UPDATE globalize_languages SET date_format='d-MMM-yyyy' WHERE code='nl_BE';
+UPDATE globalize_languages SET date_format='d MMM yyyy' WHERE code='nl';
+UPDATE globalize_languages SET date_format='d. MMM. yyyy' WHERE code='nn';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='nr';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='nso';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='ny';
+UPDATE globalize_languages SET date_format='dd-MMM-yyyy' WHERE code='om';
+UPDATE globalize_languages SET date_format='dd-MM-yyyy' WHERE code='or';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='pa_Arab';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='pa_Guru';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='pa_IN';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='pa_PK';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='pa';
+UPDATE globalize_languages SET date_format='yyyy-MM-dd' WHERE code='pl';
+UPDATE globalize_languages SET date_format='d MMM yyyy' WHERE code='ps';
+UPDATE globalize_languages SET date_format='dd/MM/yyyy' WHERE code='pt';
+UPDATE globalize_languages SET date_format='yyyy/MM/dd' WHERE code='pt_PT';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='root';
+UPDATE globalize_languages SET date_format='dd.MM.yyyy' WHERE code='ro';
+UPDATE globalize_languages SET date_format='dd.MM.yyyy' WHERE code='ru';
+UPDATE globalize_languages SET date_format='d MMM yyyy' WHERE code='ru_UA';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='rw';
+UPDATE globalize_languages SET date_format='dd-MM-yyyy' WHERE code='sa_IN';
+UPDATE globalize_languages SET date_format='dd-MM-yyyy' WHERE code='sa';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='se_FI';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='se';
+UPDATE globalize_languages SET date_format='MMM d\, yyyy' WHERE code='sh';
+UPDATE globalize_languages SET date_format='dd-MMM-yyyy' WHERE code='sid';
+UPDATE globalize_languages SET date_format='d.M.yyyy' WHERE code='sk';
+UPDATE globalize_languages SET date_format='d.M.yyyy' WHERE code='sl';
+UPDATE globalize_languages SET date_format='dd-MMM-yyyy' WHERE code='so';
+UPDATE globalize_languages SET date_format='yyyy-MM-dd' WHERE code='sq';
+UPDATE globalize_languages SET date_format='yyyy-MM-dd' WHERE code='sr_Cyrl_BA';
+UPDATE globalize_languages SET date_format='dd.MM.yyyy.' WHERE code='sr_Latn_ME';
+UPDATE globalize_languages SET date_format='dd.MM.yyyy.' WHERE code='sr_Latn';
+UPDATE globalize_languages SET date_format='dd.MM.yyyy.' WHERE code='sr_Latn_RS';
+UPDATE globalize_languages SET date_format='dd.MM.yyyy.' WHERE code='sr';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='ss';
+UPDATE globalize_languages SET date_format='MMM d\, yyyy' WHERE code='ssy';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='st';
+UPDATE globalize_languages SET date_format='d MMM yyyy' WHERE code='sv';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='sw_KE';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='sw';
+UPDATE globalize_languages SET date_format='dd/MM/yyyy' WHERE code='syr';
+UPDATE globalize_languages SET date_format='dd-MM-yyyy' WHERE code='ta_IN';
+UPDATE globalize_languages SET date_format='dd-MM-yyyy' WHERE code='ta';
+UPDATE globalize_languages SET date_format='dd-MM-yyyy' WHERE code='te_IN';
+UPDATE globalize_languages SET date_format='dd-MM-yyyy' WHERE code='te';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='tg';
+UPDATE globalize_languages SET date_format='d MMM yyyy' WHERE code='th';
+UPDATE globalize_languages SET date_format='dd-MMM-yyyy' WHERE code='ti_ER';
+UPDATE globalize_languages SET date_format='dd-MMM-yyyy' WHERE code='tig';
+UPDATE globalize_languages SET date_format='dd-MMM-yyyy' WHERE code='ti';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='tn';
+UPDATE globalize_languages SET date_format='d MMM yyyy' WHERE code='to';
+UPDATE globalize_languages SET date_format='dd.MMM.yyyy' WHERE code='tr';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='ts';
+UPDATE globalize_languages SET date_format='dd.MM.yyyy' WHERE code='tt';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='ug';
+UPDATE globalize_languages SET date_format='d MMM yyyy' WHERE code='uk';
+UPDATE globalize_languages SET date_format='MMM d\, yyyy' WHERE code='und';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='ur_IN';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='ur_PK';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='ur';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='uz_AF';
+UPDATE globalize_languages SET date_format='d MMM yyyy' WHERE code='uz_Arab_AF';
+UPDATE globalize_languages SET date_format='d MMM yyyy' WHERE code='uz_Arab';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='uz_Latn';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='uz';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='ve';
+UPDATE globalize_languages SET date_format='dd-MM-yyyy' WHERE code='vi';
+UPDATE globalize_languages SET date_format='dd-MMM-yyyy' WHERE code='wal';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='wo';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='xh';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='yo';
+UPDATE globalize_languages SET date_format='yyyy-M-d' WHERE code='zh_Hans_SG';
+UPDATE globalize_languages SET date_format='yyyy年M月d日' WHERE code='zh_Hant_HK';
+UPDATE globalize_languages SET date_format='yyyy年M月d日' WHERE code='zh_Hant_MO';
+UPDATE globalize_languages SET date_format='yyyy/M/d' WHERE code='zh_Hant';
+UPDATE globalize_languages SET date_format='yyyy-M-d' WHERE code='zh';
+UPDATE globalize_languages SET date_format='yyyy MMM d' WHERE code='zu';

Added: trunk/src/main/resources/db/update-0013-i18n.sql
===================================================================
--- trunk/src/main/resources/db/update-0013-i18n.sql	2008-11-11 13:33:36 UTC (rev 949)
+++ trunk/src/main/resources/db/update-0013-i18n.sql	2008-11-12 04:32:06 UTC (rev 950)
@@ -0,0 +1,232 @@
+UPDATE globalize_languages SET date_format_short='dd/MM/yy' WHERE code='aa_DJ';
+UPDATE globalize_languages SET date_format_short='dd/MM/yy' WHERE code='aa_ER_SAAHO';
+UPDATE globalize_languages SET date_format_short='dd/MM/yy' WHERE code='aa';
+UPDATE globalize_languages SET date_format_short='yyyy-MM-dd' WHERE code='af_NA';
+UPDATE globalize_languages SET date_format_short='yyyy/MM/dd' WHERE code='af';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='ak';
+UPDATE globalize_languages SET date_format_short='dd/MM/yy' WHERE code='am';
+UPDATE globalize_languages SET date_format_short='d‏/M‏/yyyy' WHERE code='ar_EG';
+UPDATE globalize_languages SET date_format_short='d‏/M‏/yyyy' WHERE code='ar_JO';
+UPDATE globalize_languages SET date_format_short='d‏/M‏/yyyy' WHERE code='ar_LB';
+UPDATE globalize_languages SET date_format_short='d‏/M‏/yyyy' WHERE code='ar';
+UPDATE globalize_languages SET date_format_short='d‏/M‏/yyyy' WHERE code='ar_QA';
+UPDATE globalize_languages SET date_format_short='d‏/M‏/yyyy' WHERE code='ar_SA';
+UPDATE globalize_languages SET date_format_short='d‏/M‏/yyyy' WHERE code='ar_SY';
+UPDATE globalize_languages SET date_format_short='d‏/M‏/yyyy' WHERE code='ar_TN';
+UPDATE globalize_languages SET date_format_short='d‏/M‏/yyyy' WHERE code='ar_YE';
+UPDATE globalize_languages SET date_format_short='d-M-yyyy' WHERE code='as_IN';
+UPDATE globalize_languages SET date_format_short='d-M-yyyy' WHERE code='as';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='az_Cyrl';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='az';
+UPDATE globalize_languages SET date_format_short='d.M.yy' WHERE code='be';
+UPDATE globalize_languages SET date_format_short='dd.MM.yy' WHERE code='bg';
+UPDATE globalize_languages SET date_format_short='d-M-yy' WHERE code='bn_IN';
+UPDATE globalize_languages SET date_format_short='d-M-yy' WHERE code='bn';
+UPDATE globalize_languages SET date_format_short='M/d/yy' WHERE code='bo_IN';
+UPDATE globalize_languages SET date_format_short='M/d/yy' WHERE code='bo';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='bs';
+UPDATE globalize_languages SET date_format_short='dd/MM/yy' WHERE code='byn';
+UPDATE globalize_languages SET date_format_short='dd/MM/yy' WHERE code='ca';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='cch';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='cop';
+UPDATE globalize_languages SET date_format_short='d.M.yy' WHERE code='cs';
+UPDATE globalize_languages SET date_format_short='dd/MM/yyyy' WHERE code='cy';
+UPDATE globalize_languages SET date_format_short='dd/MM/yy' WHERE code='da';
+UPDATE globalize_languages SET date_format_short='dd.MM.yy' WHERE code='de_AT';
+UPDATE globalize_languages SET date_format_short='d/MM/yy' WHERE code='de_BE';
+UPDATE globalize_languages SET date_format_short='dd.MM.yy' WHERE code='de';
+UPDATE globalize_languages SET date_format_short='d-M-yy' WHERE code='dv';
+UPDATE globalize_languages SET date_format_short='སྤྱི་ལོ་ yyyy ཟླ་ MM ཚེས་ dd' WHERE code='dz';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='ee';
+UPDATE globalize_languages SET date_format_short='dd/MM/yyyy' WHERE code='el_POLYTON';
+UPDATE globalize_languages SET date_format_short='dd/MM/yyyy' WHERE code='el';
+UPDATE globalize_languages SET date_format_short='d/MM/yy' WHERE code='en_AU';
+UPDATE globalize_languages SET date_format_short='dd/MM/yy' WHERE code='en_BE';
+UPDATE globalize_languages SET date_format_short='dd/MM/yy' WHERE code='en_BW';
+UPDATE globalize_languages SET date_format_short='dd/MM/yy' WHERE code='en_BZ';
+UPDATE globalize_languages SET date_format_short='yy-MM-dd' WHERE code='en_CA';
+UPDATE globalize_languages SET date_format_short='dd/MM/yyyy' WHERE code='en_GB';
+UPDATE globalize_languages SET date_format_short='dd/MM/yyyy' WHERE code='en_HK';
+UPDATE globalize_languages SET date_format_short='dd/MM/yyyy' WHERE code='en_IE';
+UPDATE globalize_languages SET date_format_short='dd/MM/yy' WHERE code='en_IN';
+UPDATE globalize_languages SET date_format_short='dd/MM/yyyy' WHERE code='en_MT';
+UPDATE globalize_languages SET date_format_short='M/d/yy' WHERE code='en_NA';
+UPDATE globalize_languages SET date_format_short='d/MM/yy' WHERE code='en_NZ';
+UPDATE globalize_languages SET date_format_short='dd/MM/yy' WHERE code='en_PK';
+UPDATE globalize_languages SET date_format_short='M/d/yy' WHERE code='en';
+UPDATE globalize_languages SET date_format_short='dd/MM/yy' WHERE code='en_SG';
+UPDATE globalize_languages SET date_format_short='yyyy/MM/dd' WHERE code='en_ZA';
+UPDATE globalize_languages SET date_format_short='d/M/yyyy' WHERE code='en_ZW';
+UPDATE globalize_languages SET date_format_short='yy-MM-dd' WHERE code='eo';
+UPDATE globalize_languages SET date_format_short='dd/MM/yy' WHERE code='es_AR';
+UPDATE globalize_languages SET date_format_short='dd-MM-yy' WHERE code='es_CL';
+UPDATE globalize_languages SET date_format_short='d/MM/yy' WHERE code='es_CO';
+UPDATE globalize_languages SET date_format_short='dd/MM/yy' WHERE code='es_EC';
+UPDATE globalize_languages SET date_format_short='dd/MM/yy' WHERE code='es_ES';
+UPDATE globalize_languages SET date_format_short='d/MM/yy' WHERE code='es_GT';
+UPDATE globalize_languages SET date_format_short='dd/MM/yy' WHERE code='es_HN';
+UPDATE globalize_languages SET date_format_short='MM/dd/yy' WHERE code='es_PA';
+UPDATE globalize_languages SET date_format_short='d/MM/yy' WHERE code='es_PE';
+UPDATE globalize_languages SET date_format_short='dd/MM/yy' WHERE code='es';
+UPDATE globalize_languages SET date_format_short='MM/dd/yy' WHERE code='es_PR';
+UPDATE globalize_languages SET date_format_short='M/d/yy' WHERE code='es_US';
+UPDATE globalize_languages SET date_format_short='dd.MM.yy' WHERE code='et';
+UPDATE globalize_languages SET date_format_short='yy-MM-dd' WHERE code='eu';
+UPDATE globalize_languages SET date_format_short='yy/M/d' WHERE code='fa_AF';
+UPDATE globalize_languages SET date_format_short='yy/M/d' WHERE code='fa';
+UPDATE globalize_languages SET date_format_short='M/d/yy' WHERE code='fil';
+UPDATE globalize_languages SET date_format_short='d.M.yyyy' WHERE code='fi';
+UPDATE globalize_languages SET date_format_short='dd-MM-yy' WHERE code='fo';
+UPDATE globalize_languages SET date_format_short='d/MM/yy' WHERE code='fr_BE';
+UPDATE globalize_languages SET date_format_short='yy-MM-dd' WHERE code='fr_CA';
+UPDATE globalize_languages SET date_format_short='dd.MM.yy' WHERE code='fr_CH';
+UPDATE globalize_languages SET date_format_short='dd/MM/yy' WHERE code='fr';
+UPDATE globalize_languages SET date_format_short='d/MM/yy' WHERE code='fur';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='gaa';
+UPDATE globalize_languages SET date_format_short='dd/MM/yyyy' WHERE code='ga';
+UPDATE globalize_languages SET date_format_short='dd/MM/yy' WHERE code='gez';
+UPDATE globalize_languages SET date_format_short='dd/MM/yy' WHERE code='gl';
+UPDATE globalize_languages SET date_format_short='d-MM-yy' WHERE code='gu_IN';
+UPDATE globalize_languages SET date_format_short='d-MM-yy' WHERE code='gu';
+UPDATE globalize_languages SET date_format_short='dd/MM/yy' WHERE code='gv';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='ha_Arab';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='ha_Latn_GH';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='ha_Latn_NE';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='ha_NE';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='ha';
+UPDATE globalize_languages SET date_format_short='d/M/yy' WHERE code='haw';
+UPDATE globalize_languages SET date_format_short='dd/MM/yy' WHERE code='he';
+UPDATE globalize_languages SET date_format_short='d-M-yy' WHERE code='hi';
+UPDATE globalize_languages SET date_format_short='yyyy.MM.dd' WHERE code='hr';
+UPDATE globalize_languages SET date_format_short='yyyy.MM.dd.' WHERE code='hu';
+UPDATE globalize_languages SET date_format_short='MM/dd/yy' WHERE code='hy';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='ia';
+UPDATE globalize_languages SET date_format_short='dd/MM/yy' WHERE code='id';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='ig';
+UPDATE globalize_languages SET date_format_short='M/d/yy' WHERE code='ii';
+UPDATE globalize_languages SET date_format_short='d.M.yyyy' WHERE code='is';
+UPDATE globalize_languages SET date_format_short='dd.MM.yy' WHERE code='it_CH';
+UPDATE globalize_languages SET date_format_short='dd/MM/yy' WHERE code='it';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='iu';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='ja';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='kaj';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='kam';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='ka';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='kcg';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='kfo';
+UPDATE globalize_languages SET date_format_short='dd.MM.yy' WHERE code='kk';
+UPDATE globalize_languages SET date_format_short='dd/MM/yy' WHERE code='kl';
+UPDATE globalize_languages SET date_format_short='d/M/yyyy' WHERE code='km';
+UPDATE globalize_languages SET date_format_short='d-M-yy' WHERE code='kn';
+UPDATE globalize_languages SET date_format_short='d-M-yy' WHERE code='kok_IN';
+UPDATE globalize_languages SET date_format_short='d-M-yy' WHERE code='kok';
+UPDATE globalize_languages SET date_format_short='yy. M. d.' WHERE code='ko';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='kpe';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='ku_IQ';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='ku_IR';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='ku_Latn_IQ';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='ku_Latn_IR';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='ku_Latn_SY';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='ku_Latn_TR';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='ku';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='ku_SY';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='ku_TR';
+UPDATE globalize_languages SET date_format_short='dd/MM/yyyy' WHERE code='kw';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='ky';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='ln';
+UPDATE globalize_languages SET date_format_short='d/M/yyyy' WHERE code='lo';
+UPDATE globalize_languages SET date_format_short='yyyy-MM-dd' WHERE code='lt';
+UPDATE globalize_languages SET date_format_short='yy.d.M' WHERE code='lv';
+UPDATE globalize_languages SET date_format_short='dd.M.yy' WHERE code='mk';
+UPDATE globalize_languages SET date_format_short='dd-MM-yy' WHERE code='ml_IN';
+UPDATE globalize_languages SET date_format_short='dd-MM-yy' WHERE code='ml';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='mn';
+UPDATE globalize_languages SET date_format_short='d-M-yy' WHERE code='mr_IN';
+UPDATE globalize_languages SET date_format_short='d-M-yy' WHERE code='mr';
+UPDATE globalize_languages SET date_format_short='dd/MM/yyyy' WHERE code='ms_BN';
+UPDATE globalize_languages SET date_format_short='dd/MM/yyyy' WHERE code='ms';
+UPDATE globalize_languages SET date_format_short='dd/MM/yyyy' WHERE code='mt';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='my';
+UPDATE globalize_languages SET date_format_short='dd.MM.yy' WHERE code='nb';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='ne';
+UPDATE globalize_languages SET date_format_short='d/MM/yy' WHERE code='nl_BE';
+UPDATE globalize_languages SET date_format_short='dd-MM-yy' WHERE code='nl';
+UPDATE globalize_languages SET date_format_short='dd.MM.yy' WHERE code='nn';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='nr';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='nso';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='ny';
+UPDATE globalize_languages SET date_format_short='dd/MM/yy' WHERE code='om';
+UPDATE globalize_languages SET date_format_short='dd-MM-yy' WHERE code='or';
+UPDATE globalize_languages SET date_format_short='dd/MM/yyy' WHERE code='pa_Arab';
+UPDATE globalize_languages SET date_format_short='dd/MM/yyy' WHERE code='pa_Guru';
+UPDATE globalize_languages SET date_format_short='dd/MM/yyy' WHERE code='pa_IN';
+UPDATE globalize_languages SET date_format_short='dd/MM/yyy' WHERE code='pa_PK';
+UPDATE globalize_languages SET date_format_short='dd/MM/yyy' WHERE code='pa';
+UPDATE globalize_languages SET date_format_short='yy-MM-dd' WHERE code='pl';
+UPDATE globalize_languages SET date_format_short='yyyy/M/d' WHERE code='ps';
+UPDATE globalize_languages SET date_format_short='dd/MM/yy' WHERE code='pt';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='pt_PT';
+UPDATE globalize_languages SET date_format_short='yyyy-MM-dd' WHERE code='root';
+UPDATE globalize_languages SET date_format_short='dd.MM.yyyy' WHERE code='ro';
+UPDATE globalize_languages SET date_format_short='dd.MM.yy' WHERE code='ru';
+UPDATE globalize_languages SET date_format_short='dd.MM.yy' WHERE code='ru_UA';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='rw';
+UPDATE globalize_languages SET date_format_short='d-MM-yy' WHERE code='sa_IN';
+UPDATE globalize_languages SET date_format_short='d-MM-yy' WHERE code='sa';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='se_FI';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='se';
+UPDATE globalize_languages SET date_format_short='M/d/yy' WHERE code='sh';
+UPDATE globalize_languages SET date_format_short='dd/MM/yy' WHERE code='sid';
+UPDATE globalize_languages SET date_format_short='d.M.yyyy' WHERE code='sk';
+UPDATE globalize_languages SET date_format_short='d.M.yy' WHERE code='sl';
+UPDATE globalize_languages SET date_format_short='dd/MM/yy' WHERE code='so';
+UPDATE globalize_languages SET date_format_short='yy-MM-dd' WHERE code='sq';
+UPDATE globalize_languages SET date_format_short='yy-MM-dd' WHERE code='sr_Cyrl_BA';
+UPDATE globalize_languages SET date_format_short='d.M.yy.' WHERE code='sr_Latn_ME';
+UPDATE globalize_languages SET date_format_short='d.M.yy.' WHERE code='sr_Latn';
+UPDATE globalize_languages SET date_format_short='d.M.yy.' WHERE code='sr_Latn_RS';
+UPDATE globalize_languages SET date_format_short='d.M.yy.' WHERE code='sr';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='ss';
+UPDATE globalize_languages SET date_format_short='M/d/yy' WHERE code='ssy';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='st';
+UPDATE globalize_languages SET date_format_short='yyyy-MM-dd' WHERE code='sv';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='sw_KE';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='sw';
+UPDATE globalize_languages SET date_format_short='dd/MM/yyyy' WHERE code='syr';
+UPDATE globalize_languages SET date_format_short='d-M-yy' WHERE code='ta_IN';
+UPDATE globalize_languages SET date_format_short='d-M-yy' WHERE code='ta';
+UPDATE globalize_languages SET date_format_short='dd-MM-yy' WHERE code='te_IN';
+UPDATE globalize_languages SET date_format_short='dd-MM-yy' WHERE code='te';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='tg';
+UPDATE globalize_languages SET date_format_short='d/M/yyyy' WHERE code='th';
+UPDATE globalize_languages SET date_format_short='dd/MM/yy' WHERE code='ti_ER';
+UPDATE globalize_languages SET date_format_short='dd/MM/yy' WHERE code='tig';
+UPDATE globalize_languages SET date_format_short='dd/MM/yy' WHERE code='ti';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='tn';
+UPDATE globalize_languages SET date_format_short='dd-MM-yyyy' WHERE code='to';
+UPDATE globalize_languages SET date_format_short='dd.MM.yyyy' WHERE code='tr';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='ts';
+UPDATE globalize_languages SET date_format_short='dd.MM.yyyy' WHERE code='tt';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='ug';
+UPDATE globalize_languages SET date_format_short='dd.MM.yy' WHERE code='uk';
+UPDATE globalize_languages SET date_format_short='M/d/yy' WHERE code='und';
+UPDATE globalize_languages SET date_format_short='yyyy-MM-dd' WHERE code='ur_IN';
+UPDATE globalize_languages SET date_format_short='yyyy-MM-dd' WHERE code='ur_PK';
+UPDATE globalize_languages SET date_format_short='yyyy-MM-dd' WHERE code='ur';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='uz_AF';
+UPDATE globalize_languages SET date_format_short='yyyy/M/d' WHERE code='uz_Arab_AF';
+UPDATE globalize_languages SET date_format_short='yyyy/M/d' WHERE code='uz_Arab';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='uz_Latn';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='uz';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='ve';
+UPDATE globalize_languages SET date_format_short='dd/MM/yyyy' WHERE code='vi';
+UPDATE globalize_languages SET date_format_short='dd/MM/yy' WHERE code='wal';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='wo';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='xh';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='yo';
+UPDATE globalize_languages SET date_format_short='dd/MM/yy' WHERE code='zh_Hans_SG';
+UPDATE globalize_languages SET date_format_short='yy年M月d日' WHERE code='zh_Hant_HK';
+UPDATE globalize_languages SET date_format_short='yy年M月d日' WHERE code='zh_Hant_MO';
+UPDATE globalize_languages SET date_format_short='yyyy/M/d' WHERE code='zh_Hant';
+UPDATE globalize_languages SET date_format_short='yy-M-d' WHERE code='zh';
+UPDATE globalize_languages SET date_format_short='yy/MM/dd' WHERE code='zu';




More information about the kune-commits mailing list