aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLouise Crow <louise.crow@gmail.com>2014-12-02 13:03:36 +0000
committerLouise Crow <louise.crow@gmail.com>2014-12-02 13:21:39 +0000
commitd05082c1cf1ddec789e547b54943f6e7d5bdffc1 (patch)
tree702d5d93935c8c143abfe24074fc35dee735804e
parent482fef538b45d5322c4bb6336d8dba177a4de229 (diff)
Don't translate validation messages for models created/edited in admin interfacerelease/0.20
-rw-r--r--app/models/public_body_category.rb8
-rw-r--r--app/models/public_body_category_link.rb2
-rw-r--r--app/models/public_body_heading.rb6
-rw-r--r--locale/aln/app.po19
-rw-r--r--locale/app.pot17
-rw-r--r--locale/ar/app.po19
-rw-r--r--locale/bg/app.po19
-rw-r--r--locale/bs/app.po19
-rw-r--r--locale/ca/app.po19
-rw-r--r--locale/cs/app.po19
-rw-r--r--locale/cy/app.po19
-rw-r--r--locale/de/app.po19
-rw-r--r--locale/en/app.po17
-rw-r--r--locale/en_IE/app.po19
-rw-r--r--locale/en_RW/app.po19
-rw-r--r--locale/en_UG/app.po19
-rw-r--r--locale/es/app.po19
-rw-r--r--locale/es_NI/app.po19
-rw-r--r--locale/eu/app.po19
-rw-r--r--locale/fi/app.po19
-rw-r--r--locale/fr/app.po19
-rw-r--r--locale/fr_CA/app.po19
-rw-r--r--locale/gl/app.po19
-rw-r--r--locale/he_IL/app.po19
-rw-r--r--locale/hr/app.po19
-rw-r--r--locale/hr_HR/app.po19
-rw-r--r--locale/hu_HU/app.po19
-rw-r--r--locale/id/app.po19
-rw-r--r--locale/is_IS/app.po19
-rw-r--r--locale/it/app.po19
-rw-r--r--locale/mk_MK/app.po19
-rw-r--r--locale/nb_NO/app.po19
-rw-r--r--locale/nl/app.po19
-rw-r--r--locale/nn/app.po19
-rw-r--r--locale/pl/app.po19
-rw-r--r--locale/pt_BR/app.po19
-rw-r--r--locale/pt_PT/app.po19
-rw-r--r--locale/ro_RO/app.po19
-rw-r--r--locale/rw/app.po19
-rw-r--r--locale/sl/app.po19
-rw-r--r--locale/sq/app.po19
-rw-r--r--locale/sr@latin/app.po19
-rw-r--r--locale/sv/app.po19
-rw-r--r--locale/sw_KE/app.po19
-rw-r--r--locale/tr/app.po19
-rw-r--r--locale/uk/app.po19
-rw-r--r--locale/vi/app.po19
-rw-r--r--locale/zh_HK/app.po19
48 files changed, 96 insertions, 771 deletions
diff --git a/app/models/public_body_category.rb b/app/models/public_body_category.rb
index 2dfdde41a..bb83c4c82 100644
--- a/app/models/public_body_category.rb
+++ b/app/models/public_body_category.rb
@@ -19,10 +19,10 @@ class PublicBodyCategory < ActiveRecord::Base
has_many :public_body_headings, :through => :public_body_category_links
translates :title, :description
- validates_uniqueness_of :category_tag, :message => N_('Tag is already taken')
- validates_presence_of :title, :message => N_("Title can't be blank")
- validates_presence_of :category_tag, :message => N_("Tag can't be blank")
- validates_presence_of :description, :message => N_("Description can't be blank")
+ validates_uniqueness_of :category_tag, :message => 'Tag is already taken'
+ validates_presence_of :title, :message => "Title can't be blank"
+ validates_presence_of :category_tag, :message => "Tag can't be blank"
+ validates_presence_of :description, :message => "Description can't be blank"
def self.get
locale = I18n.locale.to_s || default_locale.to_s || ""
diff --git a/app/models/public_body_category_link.rb b/app/models/public_body_category_link.rb
index eb233b56f..ba3ff1f95 100644
--- a/app/models/public_body_category_link.rb
+++ b/app/models/public_body_category_link.rb
@@ -15,7 +15,7 @@ class PublicBodyCategoryLink < ActiveRecord::Base
validates_presence_of :public_body_category
validates_presence_of :public_body_heading
validates :category_display_order, :numericality => { :only_integer => true,
- :message => N_('Display order must be a number') }
+ :message => 'Display order must be a number' }
before_validation :on => :create do
unless self.category_display_order
diff --git a/app/models/public_body_heading.rb b/app/models/public_body_heading.rb
index c38800561..f1916d233 100644
--- a/app/models/public_body_heading.rb
+++ b/app/models/public_body_heading.rb
@@ -16,10 +16,10 @@ class PublicBodyHeading < ActiveRecord::Base
translates :name
- validates_uniqueness_of :name, :message => N_('Name is already taken')
- validates_presence_of :name, :message => N_('Name can\'t be blank')
+ validates_uniqueness_of :name, :message => 'Name is already taken'
+ validates_presence_of :name, :message => 'Name can\'t be blank'
validates :display_order, :numericality => { :only_integer => true,
- :message => N_('Display order must be a number') }
+ :message => 'Display order must be a number' }
before_validation :on => :create do
unless self.display_order
diff --git a/locale/aln/app.po b/locale/aln/app.po
index 0c0cc1fde..c21ef0f92 100644
--- a/locale/aln/app.po
+++ b/locale/aln/app.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: alaveteli\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-12-02 11:15+0000\n"
-"PO-Revision-Date: 2014-12-02 11:26+0000\n"
+"POT-Creation-Date: 2014-12-02 13:14+0000\n"
+"PO-Revision-Date: 2014-12-02 13:17+0000\n"
"Last-Translator: louisecrow <louise@mysociety.org>\n"
"Language-Team: Albanian Gheg (http://www.transifex.com/projects/p/alaveteli/language/aln/)\n"
"Language: aln\n"
@@ -700,9 +700,6 @@ msgstr ""
msgid "Delivery error"
msgstr ""
-msgid "Description can't be blank"
-msgstr ""
-
msgid "Destroy {{name}}"
msgstr ""
@@ -721,9 +718,6 @@ msgstr ""
msgid "Disclosure log URL"
msgstr ""
-msgid "Display order must be a number"
-msgstr ""
-
msgid "Do not fill in this field"
msgstr ""
@@ -2419,12 +2413,6 @@ msgstr ""
msgid "Table of varieties"
msgstr ""
-msgid "Tag can't be blank"
-msgstr ""
-
-msgid "Tag is already taken"
-msgstr ""
-
msgid "Tags"
msgstr ""
@@ -2845,9 +2833,6 @@ msgstr ""
msgid "This was not possible because there is already an account using \\nthe email address {{email}}."
msgstr ""
-msgid "Title can't be blank"
-msgstr ""
-
msgid "To cancel these alerts"
msgstr ""
diff --git a/locale/app.pot b/locale/app.pot
index bbd4f98bb..cf7fb2ed8 100644
--- a/locale/app.pot
+++ b/locale/app.pot
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: version 0.0.1\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-12-02 11:15+0000\n"
+"POT-Creation-Date: 2014-12-02 13:14+0000\n"
"PO-Revision-Date: 2011-10-09 01:10+0200\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -697,9 +697,6 @@ msgstr ""
msgid "Delivery error"
msgstr ""
-msgid "Description can't be blank"
-msgstr ""
-
msgid "Destroy {{name}}"
msgstr ""
@@ -718,9 +715,6 @@ msgstr ""
msgid "Disclosure log URL"
msgstr ""
-msgid "Display order must be a number"
-msgstr ""
-
msgid "Do not fill in this field"
msgstr ""
@@ -2416,12 +2410,6 @@ msgstr ""
msgid "Table of varieties"
msgstr ""
-msgid "Tag can't be blank"
-msgstr ""
-
-msgid "Tag is already taken"
-msgstr ""
-
msgid "Tags"
msgstr ""
@@ -2842,9 +2830,6 @@ msgstr ""
msgid "This was not possible because there is already an account using \\nthe email address {{email}}."
msgstr ""
-msgid "Title can't be blank"
-msgstr ""
-
msgid "To cancel these alerts"
msgstr ""
diff --git a/locale/ar/app.po b/locale/ar/app.po
index c74c7e2dd..34506c5b5 100644
--- a/locale/ar/app.po
+++ b/locale/ar/app.po
@@ -16,8 +16,8 @@ msgid ""
msgstr ""
"Project-Id-Version: alaveteli\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-12-02 11:15+0000\n"
-"PO-Revision-Date: 2014-12-02 11:52+0000\n"
+"POT-Creation-Date: 2014-12-02 13:14+0000\n"
+"PO-Revision-Date: 2014-12-02 13:17+0000\n"
"Last-Translator: louisecrow <louise@mysociety.org>\n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/alaveteli/language/ar/)\n"
"Language: ar\n"
@@ -707,9 +707,6 @@ msgstr "مؤجل"
msgid "Delivery error"
msgstr "خطأ ارسال"
-msgid "Description can't be blank"
-msgstr ""
-
msgid "Destroy {{name}}"
msgstr ""
@@ -728,9 +725,6 @@ msgstr "سجل الكشف"
msgid "Disclosure log URL"
msgstr ""
-msgid "Display order must be a number"
-msgstr ""
-
msgid "Do not fill in this field"
msgstr ""
@@ -2438,12 +2432,6 @@ msgstr "جدول الحالات"
msgid "Table of varieties"
msgstr "جدول الخيارات"
-msgid "Tag can't be blank"
-msgstr ""
-
-msgid "Tag is already taken"
-msgstr ""
-
msgid "Tags"
msgstr ""
@@ -2876,9 +2864,6 @@ msgstr "تم منع هذا المستخدم من {{site_name}} "
msgid "This was not possible because there is already an account using \\nthe email address {{email}}."
msgstr "هذا الطلب غير ممكن اذ يوجد حساب اخر يستعمل \\nنفس البريد الالكتروني {{email}}."
-msgid "Title can't be blank"
-msgstr ""
-
msgid "To cancel these alerts"
msgstr "لالغاء اشارات التنبيه"
diff --git a/locale/bg/app.po b/locale/bg/app.po
index 8194f897b..1aefd8ff8 100644
--- a/locale/bg/app.po
+++ b/locale/bg/app.po
@@ -12,8 +12,8 @@ msgid ""
msgstr ""
"Project-Id-Version: alaveteli\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-12-02 11:15+0000\n"
-"PO-Revision-Date: 2014-12-02 12:47+0000\n"
+"POT-Creation-Date: 2014-12-02 13:14+0000\n"
+"PO-Revision-Date: 2014-12-02 13:17+0000\n"
"Last-Translator: louisecrow <louise@mysociety.org>\n"
"Language-Team: Bulgarian (http://www.transifex.com/projects/p/alaveteli/language/bg/)\n"
"Language: bg\n"
@@ -703,9 +703,6 @@ msgstr "Закъснялo."
msgid "Delivery error"
msgstr "Грешка при доставка"
-msgid "Description can't be blank"
-msgstr ""
-
msgid "Destroy {{name}}"
msgstr ""
@@ -724,9 +721,6 @@ msgstr ""
msgid "Disclosure log URL"
msgstr ""
-msgid "Display order must be a number"
-msgstr ""
-
msgid "Do not fill in this field"
msgstr "Не пишете в това поле"
@@ -2422,12 +2416,6 @@ msgstr "Таблица на състоянията"
msgid "Table of varieties"
msgstr "Таблица на разновидностите"
-msgid "Tag can't be blank"
-msgstr ""
-
-msgid "Tag is already taken"
-msgstr ""
-
msgid "Tags"
msgstr "Маркери"
@@ -2848,9 +2836,6 @@ msgstr "Този потребител беше блокиран от {{site_name
msgid "This was not possible because there is already an account using \\nthe email address {{email}}."
msgstr "Това не е възможно, понеже вече има регистрация, използваща\\nимейл адрес {{email}}."
-msgid "Title can't be blank"
-msgstr ""
-
msgid "To cancel these alerts"
msgstr "За да спрете тези известявания"
diff --git a/locale/bs/app.po b/locale/bs/app.po
index 8214e0dca..671236f21 100644
--- a/locale/bs/app.po
+++ b/locale/bs/app.po
@@ -14,8 +14,8 @@ msgid ""
msgstr ""
"Project-Id-Version: alaveteli\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-12-02 11:15+0000\n"
-"PO-Revision-Date: 2014-12-02 11:54+0000\n"
+"POT-Creation-Date: 2014-12-02 13:14+0000\n"
+"PO-Revision-Date: 2014-12-02 13:17+0000\n"
"Last-Translator: louisecrow <louise@mysociety.org>\n"
"Language-Team: Bosnian (http://www.transifex.com/projects/p/alaveteli/language/bs/)\n"
"Language: bs\n"
@@ -749,9 +749,6 @@ msgstr "Odgođen"
msgid "Delivery error"
msgstr "Greška u isporuci"
-msgid "Description can't be blank"
-msgstr ""
-
msgid "Destroy {{name}}"
msgstr ""
@@ -770,9 +767,6 @@ msgstr ""
msgid "Disclosure log URL"
msgstr ""
-msgid "Display order must be a number"
-msgstr ""
-
msgid "Do not fill in this field"
msgstr ""
@@ -2538,12 +2532,6 @@ msgstr "Pregled statusa"
msgid "Table of varieties"
msgstr "Tabela vrsta"
-msgid "Tag can't be blank"
-msgstr ""
-
-msgid "Tag is already taken"
-msgstr ""
-
msgid "Tags"
msgstr ""
@@ -2996,9 +2984,6 @@ msgstr "Ovaj korisnik je isključen sa {{site_name}} "
msgid "This was not possible because there is already an account using \\nthe email address {{email}}."
msgstr "To nije bilo moguće jer već postoji račun koji koristi ovu e-mail adresu {{email}}."
-msgid "Title can't be blank"
-msgstr ""
-
msgid "To cancel these alerts"
msgstr "Da biste poništili ova upozorenja"
diff --git a/locale/ca/app.po b/locale/ca/app.po
index 095ce4cb7..c868f5e8c 100644
--- a/locale/ca/app.po
+++ b/locale/ca/app.po
@@ -13,8 +13,8 @@ msgid ""
msgstr ""
"Project-Id-Version: alaveteli\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-12-02 11:15+0000\n"
-"PO-Revision-Date: 2014-12-02 12:48+0000\n"
+"POT-Creation-Date: 2014-12-02 13:14+0000\n"
+"PO-Revision-Date: 2014-12-02 13:17+0000\n"
"Last-Translator: louisecrow <louise@mysociety.org>\n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/alaveteli/language/ca/)\n"
"Language: ca\n"
@@ -763,9 +763,6 @@ msgstr "Endarrerit."
msgid "Delivery error"
msgstr "Error en el lliurament"
-msgid "Description can't be blank"
-msgstr ""
-
msgid "Destroy {{name}}"
msgstr ""
@@ -784,9 +781,6 @@ msgstr ""
msgid "Disclosure log URL"
msgstr ""
-msgid "Display order must be a number"
-msgstr ""
-
msgid "Do not fill in this field"
msgstr ""
@@ -2554,12 +2548,6 @@ msgstr "Tabla de estados"
msgid "Table of varieties"
msgstr "Tabla de tipos de objetos"
-msgid "Tag can't be blank"
-msgstr ""
-
-msgid "Tag is already taken"
-msgstr ""
-
msgid "Tags"
msgstr ""
@@ -3019,9 +3007,6 @@ msgstr ""
"No es posible porque ya existe una cuenta usando la dirección \n"
"de correo {{email}}."
-msgid "Title can't be blank"
-msgstr ""
-
msgid "To cancel these alerts"
msgstr "Cancelar estas alertas"
diff --git a/locale/cs/app.po b/locale/cs/app.po
index ccbb83332..ffea5be36 100644
--- a/locale/cs/app.po
+++ b/locale/cs/app.po
@@ -20,8 +20,8 @@ msgid ""
msgstr ""
"Project-Id-Version: alaveteli\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-12-02 11:15+0000\n"
-"PO-Revision-Date: 2014-12-02 11:57+0000\n"
+"POT-Creation-Date: 2014-12-02 13:14+0000\n"
+"PO-Revision-Date: 2014-12-02 13:17+0000\n"
"Last-Translator: louisecrow <louise@mysociety.org>\n"
"Language-Team: Czech (http://www.transifex.com/projects/p/alaveteli/language/cs/)\n"
"Language: cs\n"
@@ -768,9 +768,6 @@ msgstr "Zpoždění."
msgid "Delivery error"
msgstr "Chyba při doručení"
-msgid "Description can't be blank"
-msgstr ""
-
msgid "Destroy {{name}}"
msgstr "Zrušit {{name}}"
@@ -789,9 +786,6 @@ msgstr "Disclosure log"
msgid "Disclosure log URL"
msgstr "Disclosure log URL"
-msgid "Display order must be a number"
-msgstr "Pořadí musí být vyjádřeno číslem"
-
msgid "Do not fill in this field"
msgstr "Toto pole nevyplňujte"
@@ -2541,12 +2535,6 @@ msgstr "Tabulka stavů"
msgid "Table of varieties"
msgstr "Tabulka možností"
-msgid "Tag can't be blank"
-msgstr "Tag nemůže zůstat prázdný"
-
-msgid "Tag is already taken"
-msgstr "Tag je již obsazen"
-
msgid "Tags"
msgstr "Tagy"
@@ -2999,9 +2987,6 @@ msgstr ""
"Nepodařilo se, protože už jeden účet \n"
"používá e-mailovou adresu {{email}}."
-msgid "Title can't be blank"
-msgstr "Název nemůže zůstat prázdný"
-
msgid "To cancel these alerts"
msgstr "Pro zrušení těchto upozornění"
diff --git a/locale/cy/app.po b/locale/cy/app.po
index 8f6ce7db0..7de80fd15 100644
--- a/locale/cy/app.po
+++ b/locale/cy/app.po
@@ -21,8 +21,8 @@ msgid ""
msgstr ""
"Project-Id-Version: alaveteli\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-12-02 11:15+0000\n"
-"PO-Revision-Date: 2014-12-02 12:49+0000\n"
+"POT-Creation-Date: 2014-12-02 13:14+0000\n"
+"PO-Revision-Date: 2014-12-02 13:17+0000\n"
"Last-Translator: louisecrow <louise@mysociety.org>\n"
"Language-Team: Welsh (http://www.transifex.com/projects/p/alaveteli/language/cy/)\n"
"Language: cy\n"
@@ -712,9 +712,6 @@ msgstr "Hwyr."
msgid "Delivery error"
msgstr "Methiant cyflwyno"
-msgid "Description can't be blank"
-msgstr ""
-
msgid "Destroy {{name}}"
msgstr "Dinistrio {{name}}"
@@ -733,9 +730,6 @@ msgstr "Log datgelu"
msgid "Disclosure log URL"
msgstr "URL log datgelu"
-msgid "Display order must be a number"
-msgstr ""
-
msgid "Do not fill in this field"
msgstr "Peidiwch â llenwi'r maes hwn"
@@ -2437,12 +2431,6 @@ msgstr "Tabl o statws"
msgid "Table of varieties"
msgstr "Tabl o fathau"
-msgid "Tag can't be blank"
-msgstr ""
-
-msgid "Tag is already taken"
-msgstr ""
-
msgid "Tags"
msgstr "Tagiau"
@@ -2869,9 +2857,6 @@ msgstr "Mae'r defnyddiwr hwn wedi ei wahardd o {{site_name}} "
msgid "This was not possible because there is already an account using \\nthe email address {{email}}."
msgstr "Nid oedd hyn yn bosibl gan fod cyfrif sydd eisoes yn defnyddio'r cyfeiriad e-bost {{email}}."
-msgid "Title can't be blank"
-msgstr ""
-
msgid "To cancel these alerts"
msgstr "I ganslo'r rhybuddion hyn"
diff --git a/locale/de/app.po b/locale/de/app.po
index 10fb8623a..0f6b86713 100644
--- a/locale/de/app.po
+++ b/locale/de/app.po
@@ -14,8 +14,8 @@ msgid ""
msgstr ""
"Project-Id-Version: alaveteli\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-12-02 11:15+0000\n"
-"PO-Revision-Date: 2014-12-02 11:28+0000\n"
+"POT-Creation-Date: 2014-12-02 13:14+0000\n"
+"PO-Revision-Date: 2014-12-02 13:17+0000\n"
"Last-Translator: louisecrow <louise@mysociety.org>\n"
"Language-Team: German (http://www.transifex.com/projects/p/alaveteli/language/de/)\n"
"Language: de\n"
@@ -735,9 +735,6 @@ msgstr "Verzögert."
msgid "Delivery error"
msgstr "Übertragungsfehler"
-msgid "Description can't be blank"
-msgstr ""
-
msgid "Destroy {{name}}"
msgstr ""
@@ -758,9 +755,6 @@ msgstr ""
msgid "Disclosure log URL"
msgstr ""
-msgid "Display order must be a number"
-msgstr ""
-
msgid "Do not fill in this field"
msgstr ""
@@ -2482,12 +2476,6 @@ msgstr "Statusliste"
msgid "Table of varieties"
msgstr ""
-msgid "Tag can't be blank"
-msgstr ""
-
-msgid "Tag is already taken"
-msgstr ""
-
msgid "Tags"
msgstr ""
@@ -2919,9 +2907,6 @@ msgstr "Dieser Nutzer wurde von {{site_name}} entfernt"
msgid "This was not possible because there is already an account using \\nthe email address {{email}}."
msgstr "Dieser Vorgang war nicht möglich, da bereits ein Nutzerkonto mit der Email-Adresse {{email}} besteht."
-msgid "Title can't be blank"
-msgstr ""
-
msgid "To cancel these alerts"
msgstr "Um diese Benachrichtigungen zu löschen"
diff --git a/locale/en/app.po b/locale/en/app.po
index 23291bcdd..9c1573877 100644
--- a/locale/en/app.po
+++ b/locale/en/app.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: alaveteli\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-12-02 11:15+0000\n"
+"POT-Creation-Date: 2014-12-02 13:14+0000\n"
"PO-Revision-Date: 2011-02-24 07:11-0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -698,9 +698,6 @@ msgstr ""
msgid "Delivery error"
msgstr ""
-msgid "Description can't be blank"
-msgstr ""
-
msgid "Destroy {{name}}"
msgstr ""
@@ -719,9 +716,6 @@ msgstr ""
msgid "Disclosure log URL"
msgstr ""
-msgid "Display order must be a number"
-msgstr ""
-
msgid "Do not fill in this field"
msgstr ""
@@ -2417,12 +2411,6 @@ msgstr ""
msgid "Table of varieties"
msgstr ""
-msgid "Tag can't be blank"
-msgstr ""
-
-msgid "Tag is already taken"
-msgstr ""
-
msgid "Tags"
msgstr ""
@@ -2843,9 +2831,6 @@ msgstr ""
msgid "This was not possible because there is already an account using \\nthe email address {{email}}."
msgstr ""
-msgid "Title can't be blank"
-msgstr ""
-
msgid "To cancel these alerts"
msgstr ""
diff --git a/locale/en_IE/app.po b/locale/en_IE/app.po
index e240e32e1..0bb25ea4e 100644
--- a/locale/en_IE/app.po
+++ b/locale/en_IE/app.po
@@ -12,8 +12,8 @@ msgid ""
msgstr ""
"Project-Id-Version: alaveteli\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-12-02 11:15+0000\n"
-"PO-Revision-Date: 2014-12-02 11:26+0000\n"
+"POT-Creation-Date: 2014-12-02 13:14+0000\n"
+"PO-Revision-Date: 2014-12-02 13:17+0000\n"
"Last-Translator: louisecrow <louise@mysociety.org>\n"
"Language-Team: English (Ireland) (http://www.transifex.com/projects/p/alaveteli/language/en_IE/)\n"
"Language: en_IE\n"
@@ -703,9 +703,6 @@ msgstr ""
msgid "Delivery error"
msgstr ""
-msgid "Description can't be blank"
-msgstr ""
-
msgid "Destroy {{name}}"
msgstr ""
@@ -724,9 +721,6 @@ msgstr ""
msgid "Disclosure log URL"
msgstr ""
-msgid "Display order must be a number"
-msgstr ""
-
msgid "Do not fill in this field"
msgstr ""
@@ -2422,12 +2416,6 @@ msgstr ""
msgid "Table of varieties"
msgstr ""
-msgid "Tag can't be blank"
-msgstr ""
-
-msgid "Tag is already taken"
-msgstr ""
-
msgid "Tags"
msgstr ""
@@ -2848,9 +2836,6 @@ msgstr ""
msgid "This was not possible because there is already an account using \\nthe email address {{email}}."
msgstr ""
-msgid "Title can't be blank"
-msgstr ""
-
msgid "To cancel these alerts"
msgstr ""
diff --git a/locale/en_RW/app.po b/locale/en_RW/app.po
index f6219f536..3ab45042c 100644
--- a/locale/en_RW/app.po
+++ b/locale/en_RW/app.po
@@ -5,9 +5,9 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: alaveteli\n"
+"Project-Id-Version: version 0.0.1\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-12-02 11:15+0000\n"
+"POT-Creation-Date: 2014-12-02 13:14+0000\n"
"PO-Revision-Date: 2014-11-18 19:29+0200\n"
"Last-Translator: Stephen Abbott Pugh <stephendabbott@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -699,9 +699,6 @@ msgstr ""
msgid "Delivery error"
msgstr ""
-msgid "Description can't be blank"
-msgstr ""
-
msgid "Destroy {{name}}"
msgstr ""
@@ -720,9 +717,6 @@ msgstr ""
msgid "Disclosure log URL"
msgstr ""
-msgid "Display order must be a number"
-msgstr ""
-
msgid "Do not fill in this field"
msgstr ""
@@ -2418,12 +2412,6 @@ msgstr ""
msgid "Table of varieties"
msgstr ""
-msgid "Tag can't be blank"
-msgstr ""
-
-msgid "Tag is already taken"
-msgstr ""
-
msgid "Tags"
msgstr ""
@@ -2844,9 +2832,6 @@ msgstr ""
msgid "This was not possible because there is already an account using \\nthe email address {{email}}."
msgstr ""
-msgid "Title can't be blank"
-msgstr ""
-
msgid "To cancel these alerts"
msgstr ""
diff --git a/locale/en_UG/app.po b/locale/en_UG/app.po
index 1bc795097..e4e6cd51f 100644
--- a/locale/en_UG/app.po
+++ b/locale/en_UG/app.po
@@ -4,9 +4,9 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: alaveteli\n"
+"Project-Id-Version: version 0.0.1\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-12-02 11:15+0000\n"
+"POT-Creation-Date: 2014-12-02 13:14+0000\n"
"PO-Revision-Date: 2014-01-31 09:14+0000\n"
"Last-Translator: Louise Crow <louise@mysociety.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -698,9 +698,6 @@ msgstr ""
msgid "Delivery error"
msgstr ""
-msgid "Description can't be blank"
-msgstr ""
-
msgid "Destroy {{name}}"
msgstr ""
@@ -719,9 +716,6 @@ msgstr ""
msgid "Disclosure log URL"
msgstr ""
-msgid "Display order must be a number"
-msgstr ""
-
msgid "Do not fill in this field"
msgstr ""
@@ -2417,12 +2411,6 @@ msgstr ""
msgid "Table of varieties"
msgstr ""
-msgid "Tag can't be blank"
-msgstr ""
-
-msgid "Tag is already taken"
-msgstr ""
-
msgid "Tags"
msgstr ""
@@ -2843,9 +2831,6 @@ msgstr ""
msgid "This was not possible because there is already an account using \\nthe email address {{email}}."
msgstr ""
-msgid "Title can't be blank"
-msgstr ""
-
msgid "To cancel these alerts"
msgstr ""
diff --git a/locale/es/app.po b/locale/es/app.po
index 7304aa833..c1592f4a1 100644
--- a/locale/es/app.po
+++ b/locale/es/app.po
@@ -19,8 +19,8 @@ msgid ""
msgstr ""
"Project-Id-Version: alaveteli\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-12-02 11:15+0000\n"
-"PO-Revision-Date: 2014-12-02 12:49+0000\n"
+"POT-Creation-Date: 2014-12-02 13:14+0000\n"
+"PO-Revision-Date: 2014-12-02 13:17+0000\n"
"Last-Translator: louisecrow <louise@mysociety.org>\n"
"Language-Team: Spanish (http://www.transifex.com/projects/p/alaveteli/language/es/)\n"
"Language: es\n"
@@ -761,9 +761,6 @@ msgstr "Retrasado."
msgid "Delivery error"
msgstr "Error en la entrega"
-msgid "Description can't be blank"
-msgstr ""
-
msgid "Destroy {{name}}"
msgstr "Borrar {{name}}"
@@ -782,9 +779,6 @@ msgstr "Registro de declaraciones"
msgid "Disclosure log URL"
msgstr "URL del registro de declaraciones"
-msgid "Display order must be a number"
-msgstr ""
-
msgid "Do not fill in this field"
msgstr "No escriba en este espacio"
@@ -2556,12 +2550,6 @@ msgstr "Tabla de estados"
msgid "Table of varieties"
msgstr "Tabla de tipos de objetos"
-msgid "Tag can't be blank"
-msgstr ""
-
-msgid "Tag is already taken"
-msgstr ""
-
msgid "Tags"
msgstr "Etiquetas"
@@ -3022,9 +3010,6 @@ msgstr ""
"No es posible porque ya existe una cuenta usando la dirección \n"
"de correo {{email}}."
-msgid "Title can't be blank"
-msgstr ""
-
msgid "To cancel these alerts"
msgstr "Cancelar estas alertas"
diff --git a/locale/es_NI/app.po b/locale/es_NI/app.po
index f89acb0da..916f2bb46 100644
--- a/locale/es_NI/app.po
+++ b/locale/es_NI/app.po
@@ -14,8 +14,8 @@ msgid ""
msgstr ""
"Project-Id-Version: alaveteli\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-12-02 11:15+0000\n"
-"PO-Revision-Date: 2014-12-02 12:49+0000\n"
+"POT-Creation-Date: 2014-12-02 13:14+0000\n"
+"PO-Revision-Date: 2014-12-02 13:17+0000\n"
"Last-Translator: louisecrow <louise@mysociety.org>\n"
"Language-Team: Spanish (Nicaragua) (http://www.transifex.com/projects/p/alaveteli/language/es_NI/)\n"
"Language: es_NI\n"
@@ -783,9 +783,6 @@ msgstr "Retrasado."
msgid "Delivery error"
msgstr "Error en la entrega"
-msgid "Description can't be blank"
-msgstr ""
-
msgid "Destroy {{name}}"
msgstr "Borrar {{name}}"
@@ -804,9 +801,6 @@ msgstr "Registro de declaraciones"
msgid "Disclosure log URL"
msgstr "URL del registro de declaraciones"
-msgid "Display order must be a number"
-msgstr ""
-
msgid "Do not fill in this field"
msgstr "No escriba en este espacio"
@@ -2578,12 +2572,6 @@ msgstr "Tabla de estados"
msgid "Table of varieties"
msgstr "Tabla de tipos de objetos"
-msgid "Tag can't be blank"
-msgstr ""
-
-msgid "Tag is already taken"
-msgstr ""
-
msgid "Tags"
msgstr "Etiquetas"
@@ -3044,9 +3032,6 @@ msgstr ""
"No es posible porque ya existe una cuenta usando la dirección \n"
"de correo {{email}}."
-msgid "Title can't be blank"
-msgstr ""
-
msgid "To cancel these alerts"
msgstr "Cancelar estas alertas"
diff --git a/locale/eu/app.po b/locale/eu/app.po
index fa4c2efcb..d29156ecc 100644
--- a/locale/eu/app.po
+++ b/locale/eu/app.po
@@ -11,8 +11,8 @@ msgid ""
msgstr ""
"Project-Id-Version: alaveteli\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-12-02 11:15+0000\n"
-"PO-Revision-Date: 2014-12-02 12:50+0000\n"
+"POT-Creation-Date: 2014-12-02 13:14+0000\n"
+"PO-Revision-Date: 2014-12-02 13:17+0000\n"
"Last-Translator: louisecrow <louise@mysociety.org>\n"
"Language-Team: Basque (http://www.transifex.com/projects/p/alaveteli/language/eu/)\n"
"Language: eu\n"
@@ -731,9 +731,6 @@ msgstr "Atzeratuta."
msgid "Delivery error"
msgstr "Akatsa ematean"
-msgid "Description can't be blank"
-msgstr ""
-
msgid "Destroy {{name}}"
msgstr ""
@@ -752,9 +749,6 @@ msgstr ""
msgid "Disclosure log URL"
msgstr ""
-msgid "Display order must be a number"
-msgstr ""
-
msgid "Do not fill in this field"
msgstr ""
@@ -2472,12 +2466,6 @@ msgstr "Egoeren taula"
msgid "Table of varieties"
msgstr "Objektu desberdinen taula"
-msgid "Tag can't be blank"
-msgstr ""
-
-msgid "Tag is already taken"
-msgstr ""
-
msgid "Tags"
msgstr ""
@@ -2912,9 +2900,6 @@ msgstr "Erabiltzaile hau {{site_name}}-tik kanporatuta dago. "
msgid "This was not possible because there is already an account using \\nthe email address {{email}}."
msgstr "Ezinezkoa da, {{email}} helbidea erabiltzen ari den beste kontu bat dagoelako."
-msgid "Title can't be blank"
-msgstr ""
-
msgid "To cancel these alerts"
msgstr "Baliogabetu alerta hauek"
diff --git a/locale/fi/app.po b/locale/fi/app.po
index 1204e3279..b20a12674 100644
--- a/locale/fi/app.po
+++ b/locale/fi/app.po
@@ -11,8 +11,8 @@ msgid ""
msgstr ""
"Project-Id-Version: alaveteli\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-12-02 11:15+0000\n"
-"PO-Revision-Date: 2014-12-02 11:26+0000\n"
+"POT-Creation-Date: 2014-12-02 13:14+0000\n"
+"PO-Revision-Date: 2014-12-02 13:17+0000\n"
"Last-Translator: louisecrow <louise@mysociety.org>\n"
"Language-Team: Finnish (http://www.transifex.com/projects/p/alaveteli/language/fi/)\n"
"Language: fi\n"
@@ -702,9 +702,6 @@ msgstr ""
msgid "Delivery error"
msgstr ""
-msgid "Description can't be blank"
-msgstr ""
-
msgid "Destroy {{name}}"
msgstr ""
@@ -723,9 +720,6 @@ msgstr ""
msgid "Disclosure log URL"
msgstr ""
-msgid "Display order must be a number"
-msgstr ""
-
msgid "Do not fill in this field"
msgstr ""
@@ -2421,12 +2415,6 @@ msgstr ""
msgid "Table of varieties"
msgstr ""
-msgid "Tag can't be blank"
-msgstr ""
-
-msgid "Tag is already taken"
-msgstr ""
-
msgid "Tags"
msgstr ""
@@ -2847,9 +2835,6 @@ msgstr ""
msgid "This was not possible because there is already an account using \\nthe email address {{email}}."
msgstr ""
-msgid "Title can't be blank"
-msgstr ""
-
msgid "To cancel these alerts"
msgstr ""
diff --git a/locale/fr/app.po b/locale/fr/app.po
index 9ac96435c..27b4d9efd 100644
--- a/locale/fr/app.po
+++ b/locale/fr/app.po
@@ -36,8 +36,8 @@ msgid ""
msgstr ""
"Project-Id-Version: alaveteli\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-12-02 11:15+0000\n"
-"PO-Revision-Date: 2014-12-02 12:50+0000\n"
+"POT-Creation-Date: 2014-12-02 13:14+0000\n"
+"PO-Revision-Date: 2014-12-02 13:17+0000\n"
"Last-Translator: louisecrow <louise@mysociety.org>\n"
"Language-Team: French (http://www.transifex.com/projects/p/alaveteli/language/fr/)\n"
"Language: fr\n"
@@ -731,9 +731,6 @@ msgstr "En retard"
msgid "Delivery error"
msgstr "Erreur lors de l'envoi"
-msgid "Description can't be blank"
-msgstr ""
-
msgid "Destroy {{name}}"
msgstr "Détruire {{name}}"
@@ -752,9 +749,6 @@ msgstr "Journal d'information"
msgid "Disclosure log URL"
msgstr "adresse du journal d'information"
-msgid "Display order must be a number"
-msgstr ""
-
msgid "Do not fill in this field"
msgstr ""
@@ -2450,12 +2444,6 @@ msgstr "Table des statuts"
msgid "Table of varieties"
msgstr "Tables des variétés "
-msgid "Tag can't be blank"
-msgstr ""
-
-msgid "Tag is already taken"
-msgstr ""
-
msgid "Tags"
msgstr "Tags"
@@ -2876,9 +2864,6 @@ msgstr "Cet utilisateur a été banni de {{site_name}}"
msgid "This was not possible because there is already an account using \\nthe email address {{email}}."
msgstr "Ceci n'est pas possible parce qu'il existe deja un compte utilisant l'adresse mail {{email}}."
-msgid "Title can't be blank"
-msgstr ""
-
msgid "To cancel these alerts"
msgstr "Pour annuler ces alertes"
diff --git a/locale/fr_CA/app.po b/locale/fr_CA/app.po
index aa3349c14..e26dd2cbd 100644
--- a/locale/fr_CA/app.po
+++ b/locale/fr_CA/app.po
@@ -22,8 +22,8 @@ msgid ""
msgstr ""
"Project-Id-Version: alaveteli\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-12-02 11:15+0000\n"
-"PO-Revision-Date: 2014-12-02 12:50+0000\n"
+"POT-Creation-Date: 2014-12-02 13:14+0000\n"
+"PO-Revision-Date: 2014-12-02 13:17+0000\n"
"Last-Translator: louisecrow <louise@mysociety.org>\n"
"Language-Team: French (Canada) (http://www.transifex.com/projects/p/alaveteli/language/fr_CA/)\n"
"Language: fr_CA\n"
@@ -715,9 +715,6 @@ msgstr "Différé."
msgid "Delivery error"
msgstr "Erreur lors de l'envoi"
-msgid "Description can't be blank"
-msgstr ""
-
msgid "Destroy {{name}}"
msgstr "Détruire {{name}}"
@@ -736,9 +733,6 @@ msgstr "Disclosure log"
msgid "Disclosure log URL"
msgstr "Disclosure log URL"
-msgid "Display order must be a number"
-msgstr ""
-
msgid "Do not fill in this field"
msgstr ""
@@ -2434,12 +2428,6 @@ msgstr "Tableau des statuts"
msgid "Table of varieties"
msgstr "Tableau des variétés "
-msgid "Tag can't be blank"
-msgstr ""
-
-msgid "Tag is already taken"
-msgstr ""
-
msgid "Tags"
msgstr "Tags"
@@ -2860,9 +2848,6 @@ msgstr "Cet utilisateur a été banni de {{site_name}}"
msgid "This was not possible because there is already an account using \\nthe email address {{email}}."
msgstr "Cela est impossible: un compte existant utilise déjà \\n l'adresse courriel {{email}}."
-msgid "Title can't be blank"
-msgstr ""
-
msgid "To cancel these alerts"
msgstr "Pour annuler ces alertes"
diff --git a/locale/gl/app.po b/locale/gl/app.po
index dfc21c73d..d7a431f65 100644
--- a/locale/gl/app.po
+++ b/locale/gl/app.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: alaveteli\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-12-02 11:15+0000\n"
-"PO-Revision-Date: 2014-12-02 12:01+0000\n"
+"POT-Creation-Date: 2014-12-02 13:14+0000\n"
+"PO-Revision-Date: 2014-12-02 13:17+0000\n"
"Last-Translator: louisecrow <louise@mysociety.org>\n"
"Language-Team: Galician (http://www.transifex.com/projects/p/alaveteli/language/gl/)\n"
"Language: gl\n"
@@ -763,9 +763,6 @@ msgstr "Retrasado."
msgid "Delivery error"
msgstr "Error en la entrega"
-msgid "Description can't be blank"
-msgstr ""
-
msgid "Destroy {{name}}"
msgstr ""
@@ -784,9 +781,6 @@ msgstr ""
msgid "Disclosure log URL"
msgstr ""
-msgid "Display order must be a number"
-msgstr ""
-
msgid "Do not fill in this field"
msgstr ""
@@ -2558,12 +2552,6 @@ msgstr "Tabla de estados"
msgid "Table of varieties"
msgstr "Tabla de tipos de objetos"
-msgid "Tag can't be blank"
-msgstr ""
-
-msgid "Tag is already taken"
-msgstr ""
-
msgid "Tags"
msgstr ""
@@ -3024,9 +3012,6 @@ msgstr ""
"No es posible porque ya existe una cuenta usando la dirección \n"
"de correo {{email}}."
-msgid "Title can't be blank"
-msgstr ""
-
msgid "To cancel these alerts"
msgstr "Cancelar estas alertas"
diff --git a/locale/he_IL/app.po b/locale/he_IL/app.po
index 0fddf2654..d856dda72 100644
--- a/locale/he_IL/app.po
+++ b/locale/he_IL/app.po
@@ -22,8 +22,8 @@ msgid ""
msgstr ""
"Project-Id-Version: alaveteli\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-12-02 11:15+0000\n"
-"PO-Revision-Date: 2014-12-02 12:51+0000\n"
+"POT-Creation-Date: 2014-12-02 13:14+0000\n"
+"PO-Revision-Date: 2014-12-02 13:17+0000\n"
"Last-Translator: louisecrow <louise@mysociety.org>\n"
"Language-Team: Hebrew (Israel) (http://www.transifex.com/projects/p/alaveteli/language/he_IL/)\n"
"Language: he_IL\n"
@@ -718,9 +718,6 @@ msgstr "מעוכב."
msgid "Delivery error"
msgstr "שגיאה בשליחה"
-msgid "Description can't be blank"
-msgstr ""
-
msgid "Destroy {{name}}"
msgstr "השמד {{name}}"
@@ -739,9 +736,6 @@ msgstr "יומן גילוי נאות"
msgid "Disclosure log URL"
msgstr "כתובת יומן גילוי נאות"
-msgid "Display order must be a number"
-msgstr ""
-
msgid "Do not fill in this field"
msgstr ""
@@ -2437,12 +2431,6 @@ msgstr "טבלת סטטוסים"
msgid "Table of varieties"
msgstr "טבלת משתנים"
-msgid "Tag can't be blank"
-msgstr ""
-
-msgid "Tag is already taken"
-msgstr ""
-
msgid "Tags"
msgstr "תגיות"
@@ -2863,9 +2851,6 @@ msgstr "המשתמש הזה נחסם מהאתר {{site_name}}"
msgid "This was not possible because there is already an account using \\nthe email address {{email}}."
msgstr "לא ניתן ליצור חשבון מכיוון שיש כבר חשבון קיים עם כתובת המייל {{email}}."
-msgid "Title can't be blank"
-msgstr ""
-
msgid "To cancel these alerts"
msgstr "לבטל את ההתראות הללו"
diff --git a/locale/hr/app.po b/locale/hr/app.po
index 6d46c0e00..f1e83fe6d 100644
--- a/locale/hr/app.po
+++ b/locale/hr/app.po
@@ -11,8 +11,8 @@ msgid ""
msgstr ""
"Project-Id-Version: alaveteli\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-12-02 11:15+0000\n"
-"PO-Revision-Date: 2014-12-02 11:27+0000\n"
+"POT-Creation-Date: 2014-12-02 13:14+0000\n"
+"PO-Revision-Date: 2014-12-02 13:17+0000\n"
"Last-Translator: louisecrow <louise@mysociety.org>\n"
"Language-Team: Croatian (http://www.transifex.com/projects/p/alaveteli/language/hr/)\n"
"Language: hr\n"
@@ -746,9 +746,6 @@ msgstr "Odgođen"
msgid "Delivery error"
msgstr "Greška u isporuci"
-msgid "Description can't be blank"
-msgstr ""
-
msgid "Destroy {{name}}"
msgstr ""
@@ -767,9 +764,6 @@ msgstr ""
msgid "Disclosure log URL"
msgstr ""
-msgid "Display order must be a number"
-msgstr ""
-
msgid "Do not fill in this field"
msgstr ""
@@ -2535,12 +2529,6 @@ msgstr "Pregled statusa"
msgid "Table of varieties"
msgstr "Tabela vrsta"
-msgid "Tag can't be blank"
-msgstr ""
-
-msgid "Tag is already taken"
-msgstr ""
-
msgid "Tags"
msgstr ""
@@ -2993,9 +2981,6 @@ msgstr "Ovaj korisnik je isključen sa {{site_name}} "
msgid "This was not possible because there is already an account using \\nthe email address {{email}}."
msgstr "To nije bilo moguće jer već postoji račun koji koristi ovu e-mail adresu {{email}}."
-msgid "Title can't be blank"
-msgstr ""
-
msgid "To cancel these alerts"
msgstr "Da biste poništili ova upozorenja"
diff --git a/locale/hr_HR/app.po b/locale/hr_HR/app.po
index 4fdcacfb5..10e4ac2d0 100644
--- a/locale/hr_HR/app.po
+++ b/locale/hr_HR/app.po
@@ -11,8 +11,8 @@ msgid ""
msgstr ""
"Project-Id-Version: alaveteli\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-12-02 11:15+0000\n"
-"PO-Revision-Date: 2014-12-02 11:26+0000\n"
+"POT-Creation-Date: 2014-12-02 13:14+0000\n"
+"PO-Revision-Date: 2014-12-02 13:17+0000\n"
"Last-Translator: louisecrow <louise@mysociety.org>\n"
"Language-Team: Croatian (Croatia) (http://www.transifex.com/projects/p/alaveteli/language/hr_HR/)\n"
"Language: hr_HR\n"
@@ -702,9 +702,6 @@ msgstr ""
msgid "Delivery error"
msgstr ""
-msgid "Description can't be blank"
-msgstr ""
-
msgid "Destroy {{name}}"
msgstr ""
@@ -723,9 +720,6 @@ msgstr ""
msgid "Disclosure log URL"
msgstr ""
-msgid "Display order must be a number"
-msgstr ""
-
msgid "Do not fill in this field"
msgstr ""
@@ -2424,12 +2418,6 @@ msgstr ""
msgid "Table of varieties"
msgstr ""
-msgid "Tag can't be blank"
-msgstr ""
-
-msgid "Tag is already taken"
-msgstr ""
-
msgid "Tags"
msgstr ""
@@ -2853,9 +2841,6 @@ msgstr ""
msgid "This was not possible because there is already an account using \\nthe email address {{email}}."
msgstr ""
-msgid "Title can't be blank"
-msgstr ""
-
msgid "To cancel these alerts"
msgstr ""
diff --git a/locale/hu_HU/app.po b/locale/hu_HU/app.po
index c8bdab8eb..75f60aa51 100644
--- a/locale/hu_HU/app.po
+++ b/locale/hu_HU/app.po
@@ -12,8 +12,8 @@ msgid ""
msgstr ""
"Project-Id-Version: alaveteli\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-12-02 11:15+0000\n"
-"PO-Revision-Date: 2014-12-02 12:51+0000\n"
+"POT-Creation-Date: 2014-12-02 13:14+0000\n"
+"PO-Revision-Date: 2014-12-02 13:17+0000\n"
"Last-Translator: louisecrow <louise@mysociety.org>\n"
"Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/alaveteli/language/hu_HU/)\n"
"Language: hu_HU\n"
@@ -755,9 +755,6 @@ msgstr "Késedelmes. "
msgid "Delivery error"
msgstr "Továbbítási hiba "
-msgid "Description can't be blank"
-msgstr ""
-
msgid "Destroy {{name}}"
msgstr ""
@@ -776,9 +773,6 @@ msgstr "Közzétételi napló"
msgid "Disclosure log URL"
msgstr ""
-msgid "Display order must be a number"
-msgstr ""
-
msgid "Do not fill in this field"
msgstr ""
@@ -2559,12 +2553,6 @@ msgstr "Állapottáblázat"
msgid "Table of varieties"
msgstr "Választéktáblázat"
-msgid "Tag can't be blank"
-msgstr ""
-
-msgid "Tag is already taken"
-msgstr ""
-
msgid "Tags"
msgstr ""
@@ -3025,9 +3013,6 @@ msgstr ""
"Ez nem lehetséges, mert \n"
"ezzel a(z) {{email}} e-mail címmel már létezik fiók. "
-msgid "Title can't be blank"
-msgstr ""
-
msgid "To cancel these alerts"
msgstr "Ha törölni szeretné ezeket az értesítőket "
diff --git a/locale/id/app.po b/locale/id/app.po
index 6d3498aab..fc3a7001b 100644
--- a/locale/id/app.po
+++ b/locale/id/app.po
@@ -17,8 +17,8 @@ msgid ""
msgstr ""
"Project-Id-Version: alaveteli\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-12-02 11:15+0000\n"
-"PO-Revision-Date: 2014-12-02 12:51+0000\n"
+"POT-Creation-Date: 2014-12-02 13:14+0000\n"
+"PO-Revision-Date: 2014-12-02 13:17+0000\n"
"Last-Translator: louisecrow <louise@mysociety.org>\n"
"Language-Team: Indonesian (http://www.transifex.com/projects/p/alaveteli/language/id/)\n"
"Language: id\n"
@@ -785,9 +785,6 @@ msgstr "Tertunda."
msgid "Delivery error"
msgstr "Kesalahan pengiriman"
-msgid "Description can't be blank"
-msgstr ""
-
msgid "Destroy {{name}}"
msgstr "Menghapus {{name}}"
@@ -806,9 +803,6 @@ msgstr "Pembukaan log"
msgid "Disclosure log URL"
msgstr "Pembukaan riwayat URL"
-msgid "Display order must be a number"
-msgstr ""
-
msgid "Do not fill in this field"
msgstr ""
@@ -2582,12 +2576,6 @@ msgstr "Tabel status"
msgid "Table of varieties"
msgstr "Tabel jenis"
-msgid "Tag can't be blank"
-msgstr ""
-
-msgid "Tag is already taken"
-msgstr ""
-
msgid "Tags"
msgstr "Label"
@@ -3045,9 +3033,6 @@ msgstr ""
"Hal ini tidak memungkinkan karena sudah ada akun yang menggunakan \n"
"alamat email ini {{email}}."
-msgid "Title can't be blank"
-msgstr ""
-
msgid "To cancel these alerts"
msgstr "Untuk membatalkan tanda notifikasi"
diff --git a/locale/is_IS/app.po b/locale/is_IS/app.po
index 765e7a716..55d7f3796 100644
--- a/locale/is_IS/app.po
+++ b/locale/is_IS/app.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: alaveteli\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-12-02 11:15+0000\n"
-"PO-Revision-Date: 2014-12-02 11:26+0000\n"
+"POT-Creation-Date: 2014-12-02 13:14+0000\n"
+"PO-Revision-Date: 2014-12-02 13:17+0000\n"
"Last-Translator: louisecrow <louise@mysociety.org>\n"
"Language-Team: Icelandic (Iceland) (http://www.transifex.com/projects/p/alaveteli/language/is_IS/)\n"
"Language: is_IS\n"
@@ -698,9 +698,6 @@ msgstr ""
msgid "Delivery error"
msgstr ""
-msgid "Description can't be blank"
-msgstr ""
-
msgid "Destroy {{name}}"
msgstr ""
@@ -719,9 +716,6 @@ msgstr ""
msgid "Disclosure log URL"
msgstr ""
-msgid "Display order must be a number"
-msgstr ""
-
msgid "Do not fill in this field"
msgstr ""
@@ -2417,12 +2411,6 @@ msgstr ""
msgid "Table of varieties"
msgstr ""
-msgid "Tag can't be blank"
-msgstr ""
-
-msgid "Tag is already taken"
-msgstr ""
-
msgid "Tags"
msgstr ""
@@ -2843,9 +2831,6 @@ msgstr ""
msgid "This was not possible because there is already an account using \\nthe email address {{email}}."
msgstr ""
-msgid "Title can't be blank"
-msgstr ""
-
msgid "To cancel these alerts"
msgstr ""
diff --git a/locale/it/app.po b/locale/it/app.po
index 7c5b405e8..5493efd8a 100644
--- a/locale/it/app.po
+++ b/locale/it/app.po
@@ -11,8 +11,8 @@ msgid ""
msgstr ""
"Project-Id-Version: alaveteli\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-12-02 11:15+0000\n"
-"PO-Revision-Date: 2014-12-02 12:52+0000\n"
+"POT-Creation-Date: 2014-12-02 13:14+0000\n"
+"PO-Revision-Date: 2014-12-02 13:17+0000\n"
"Last-Translator: louisecrow <louise@mysociety.org>\n"
"Language-Team: Italian (http://www.transifex.com/projects/p/alaveteli/language/it/)\n"
"Language: it\n"
@@ -708,9 +708,6 @@ msgstr "In attesa"
msgid "Delivery error"
msgstr "Errore di invio"
-msgid "Description can't be blank"
-msgstr ""
-
msgid "Destroy {{name}}"
msgstr "Cancella {{name}}"
@@ -729,9 +726,6 @@ msgstr ""
msgid "Disclosure log URL"
msgstr ""
-msgid "Display order must be a number"
-msgstr ""
-
msgid "Do not fill in this field"
msgstr "Non scrivere qui"
@@ -2427,12 +2421,6 @@ msgstr ""
msgid "Table of varieties"
msgstr ""
-msgid "Tag can't be blank"
-msgstr ""
-
-msgid "Tag is already taken"
-msgstr ""
-
msgid "Tags"
msgstr "Tag"
@@ -2855,9 +2843,6 @@ msgstr ""
msgid "This was not possible because there is already an account using \\nthe email address {{email}}."
msgstr ""
-msgid "Title can't be blank"
-msgstr ""
-
msgid "To cancel these alerts"
msgstr ""
diff --git a/locale/mk_MK/app.po b/locale/mk_MK/app.po
index 72f074baf..32ef96e52 100644
--- a/locale/mk_MK/app.po
+++ b/locale/mk_MK/app.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: alaveteli\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-12-02 11:15+0000\n"
-"PO-Revision-Date: 2014-12-02 12:52+0000\n"
+"POT-Creation-Date: 2014-12-02 13:14+0000\n"
+"PO-Revision-Date: 2014-12-02 13:17+0000\n"
"Last-Translator: louisecrow <louise@mysociety.org>\n"
"Language-Team: Macedonian (Macedonia) (http://www.transifex.com/projects/p/alaveteli/language/mk_MK/)\n"
"Language: mk_MK\n"
@@ -699,9 +699,6 @@ msgstr "Одложен."
msgid "Delivery error"
msgstr "Грешка при испорака"
-msgid "Description can't be blank"
-msgstr ""
-
msgid "Destroy {{name}}"
msgstr "Уништи {{name}}"
@@ -720,9 +717,6 @@ msgstr "Дневник на објави"
msgid "Disclosure log URL"
msgstr "URL на дневник на објави"
-msgid "Display order must be a number"
-msgstr ""
-
msgid "Do not fill in this field"
msgstr ""
@@ -2418,12 +2412,6 @@ msgstr "Табела од статуси"
msgid "Table of varieties"
msgstr "Табела од разноличности"
-msgid "Tag can't be blank"
-msgstr ""
-
-msgid "Tag is already taken"
-msgstr ""
-
msgid "Tags"
msgstr "Тагови"
@@ -2844,9 +2832,6 @@ msgstr "Овој корисник има забрана за пристап до
msgid "This was not possible because there is already an account using \\nthe email address {{email}}."
msgstr "Ова не е возможно бидејќи веќе постои сметка која ја користи \\nоваа адреса за е-пошта {{email}}."
-msgid "Title can't be blank"
-msgstr ""
-
msgid "To cancel these alerts"
msgstr "За да ги откажете овие предупредувања"
diff --git a/locale/nb_NO/app.po b/locale/nb_NO/app.po
index 0bf46ad33..0f2c25f7c 100644
--- a/locale/nb_NO/app.po
+++ b/locale/nb_NO/app.po
@@ -19,8 +19,8 @@ msgid ""
msgstr ""
"Project-Id-Version: alaveteli\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-12-02 11:15+0000\n"
-"PO-Revision-Date: 2014-12-02 12:52+0000\n"
+"POT-Creation-Date: 2014-12-02 13:14+0000\n"
+"PO-Revision-Date: 2014-12-02 13:17+0000\n"
"Last-Translator: louisecrow <louise@mysociety.org>\n"
"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/alaveteli/language/nb_NO/)\n"
"Language: nb_NO\n"
@@ -715,9 +715,6 @@ msgstr "Forsinket."
msgid "Delivery error"
msgstr "Leveringsfeil"
-msgid "Description can't be blank"
-msgstr ""
-
msgid "Destroy {{name}}"
msgstr "Fjern {{name}}"
@@ -738,9 +735,6 @@ msgstr "Utleveringslogg"
msgid "Disclosure log URL"
msgstr ""
-msgid "Display order must be a number"
-msgstr ""
-
msgid "Do not fill in this field"
msgstr ""
@@ -2438,12 +2432,6 @@ msgstr "Tabell over statuser"
msgid "Table of varieties"
msgstr "Tabell over typer"
-msgid "Tag can't be blank"
-msgstr ""
-
-msgid "Tag is already taken"
-msgstr ""
-
msgid "Tags"
msgstr "Tagger"
@@ -2866,9 +2854,6 @@ msgstr "Denne brukeren er sperret ute fra {{site_name}}"
msgid "This was not possible because there is already an account using \\nthe email address {{email}}."
msgstr "Dette var ikke mulig da det allerede er en konto som bruker epostadressen {{email}}."
-msgid "Title can't be blank"
-msgstr ""
-
msgid "To cancel these alerts"
msgstr "For å avbryte varslingen."
diff --git a/locale/nl/app.po b/locale/nl/app.po
index cebe54a5e..5a9948451 100644
--- a/locale/nl/app.po
+++ b/locale/nl/app.po
@@ -10,8 +10,8 @@ msgid ""
msgstr ""
"Project-Id-Version: alaveteli\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-12-02 11:15+0000\n"
-"PO-Revision-Date: 2014-12-02 11:26+0000\n"
+"POT-Creation-Date: 2014-12-02 13:14+0000\n"
+"PO-Revision-Date: 2014-12-02 13:17+0000\n"
"Last-Translator: louisecrow <louise@mysociety.org>\n"
"Language-Team: Dutch (http://www.transifex.com/projects/p/alaveteli/language/nl/)\n"
"Language: nl\n"
@@ -701,9 +701,6 @@ msgstr "Vertraagd."
msgid "Delivery error"
msgstr ""
-msgid "Description can't be blank"
-msgstr ""
-
msgid "Destroy {{name}}"
msgstr ""
@@ -722,9 +719,6 @@ msgstr ""
msgid "Disclosure log URL"
msgstr ""
-msgid "Display order must be a number"
-msgstr ""
-
msgid "Do not fill in this field"
msgstr ""
@@ -2420,12 +2414,6 @@ msgstr ""
msgid "Table of varieties"
msgstr ""
-msgid "Tag can't be blank"
-msgstr ""
-
-msgid "Tag is already taken"
-msgstr ""
-
msgid "Tags"
msgstr ""
@@ -2846,9 +2834,6 @@ msgstr ""
msgid "This was not possible because there is already an account using \\nthe email address {{email}}."
msgstr ""
-msgid "Title can't be blank"
-msgstr ""
-
msgid "To cancel these alerts"
msgstr ""
diff --git a/locale/nn/app.po b/locale/nn/app.po
index f15f52f60..3de9a5f7a 100644
--- a/locale/nn/app.po
+++ b/locale/nn/app.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: alaveteli\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-12-02 11:15+0000\n"
-"PO-Revision-Date: 2014-12-02 11:26+0000\n"
+"POT-Creation-Date: 2014-12-02 13:14+0000\n"
+"PO-Revision-Date: 2014-12-02 13:17+0000\n"
"Last-Translator: louisecrow <louise@mysociety.org>\n"
"Language-Team: Norwegian Nynorsk (http://www.transifex.com/projects/p/alaveteli/language/nn/)\n"
"Language: nn\n"
@@ -698,9 +698,6 @@ msgstr ""
msgid "Delivery error"
msgstr ""
-msgid "Description can't be blank"
-msgstr ""
-
msgid "Destroy {{name}}"
msgstr ""
@@ -719,9 +716,6 @@ msgstr ""
msgid "Disclosure log URL"
msgstr ""
-msgid "Display order must be a number"
-msgstr ""
-
msgid "Do not fill in this field"
msgstr ""
@@ -2417,12 +2411,6 @@ msgstr ""
msgid "Table of varieties"
msgstr ""
-msgid "Tag can't be blank"
-msgstr ""
-
-msgid "Tag is already taken"
-msgstr ""
-
msgid "Tags"
msgstr ""
@@ -2843,9 +2831,6 @@ msgstr ""
msgid "This was not possible because there is already an account using \\nthe email address {{email}}."
msgstr ""
-msgid "Title can't be blank"
-msgstr ""
-
msgid "To cancel these alerts"
msgstr ""
diff --git a/locale/pl/app.po b/locale/pl/app.po
index 879d1cf5e..a7d605849 100644
--- a/locale/pl/app.po
+++ b/locale/pl/app.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: alaveteli\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-12-02 11:15+0000\n"
-"PO-Revision-Date: 2014-12-02 11:26+0000\n"
+"POT-Creation-Date: 2014-12-02 13:14+0000\n"
+"PO-Revision-Date: 2014-12-02 13:17+0000\n"
"Last-Translator: louisecrow <louise@mysociety.org>\n"
"Language-Team: Polish (http://www.transifex.com/projects/p/alaveteli/language/pl/)\n"
"Language: pl\n"
@@ -700,9 +700,6 @@ msgstr ""
msgid "Delivery error"
msgstr ""
-msgid "Description can't be blank"
-msgstr ""
-
msgid "Destroy {{name}}"
msgstr ""
@@ -721,9 +718,6 @@ msgstr ""
msgid "Disclosure log URL"
msgstr ""
-msgid "Display order must be a number"
-msgstr ""
-
msgid "Do not fill in this field"
msgstr ""
@@ -2422,12 +2416,6 @@ msgstr ""
msgid "Table of varieties"
msgstr ""
-msgid "Tag can't be blank"
-msgstr ""
-
-msgid "Tag is already taken"
-msgstr ""
-
msgid "Tags"
msgstr ""
@@ -2851,9 +2839,6 @@ msgstr ""
msgid "This was not possible because there is already an account using \\nthe email address {{email}}."
msgstr ""
-msgid "Title can't be blank"
-msgstr ""
-
msgid "To cancel these alerts"
msgstr ""
diff --git a/locale/pt_BR/app.po b/locale/pt_BR/app.po
index 326bea017..f5a7ec6c1 100644
--- a/locale/pt_BR/app.po
+++ b/locale/pt_BR/app.po
@@ -44,8 +44,8 @@ msgid ""
msgstr ""
"Project-Id-Version: alaveteli\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-12-02 11:15+0000\n"
-"PO-Revision-Date: 2014-12-02 12:53+0000\n"
+"POT-Creation-Date: 2014-12-02 13:14+0000\n"
+"PO-Revision-Date: 2014-12-02 13:17+0000\n"
"Last-Translator: louisecrow <louise@mysociety.org>\n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/alaveteli/language/pt_BR/)\n"
"Language: pt_BR\n"
@@ -753,9 +753,6 @@ msgstr "Atrasado."
msgid "Delivery error"
msgstr "Erro de entrega"
-msgid "Description can't be blank"
-msgstr ""
-
msgid "Destroy {{name}}"
msgstr ""
@@ -774,9 +771,6 @@ msgstr ""
msgid "Disclosure log URL"
msgstr ""
-msgid "Display order must be a number"
-msgstr ""
-
msgid "Do not fill in this field"
msgstr ""
@@ -2483,12 +2477,6 @@ msgstr "Tabela de situações"
msgid "Table of varieties"
msgstr "Tabela de variedades"
-msgid "Tag can't be blank"
-msgstr ""
-
-msgid "Tag is already taken"
-msgstr ""
-
msgid "Tags"
msgstr ""
@@ -2917,9 +2905,6 @@ msgstr "Este usuário foi banido do {{site_name}}"
msgid "This was not possible because there is already an account using \\nthe email address {{email}}."
msgstr "Isto não foi possível porque já existe uma conta usando o email {{email}}"
-msgid "Title can't be blank"
-msgstr ""
-
msgid "To cancel these alerts"
msgstr "Cancelar estes alertas"
diff --git a/locale/pt_PT/app.po b/locale/pt_PT/app.po
index c0f3e27d8..44737a64b 100644
--- a/locale/pt_PT/app.po
+++ b/locale/pt_PT/app.po
@@ -28,8 +28,8 @@ msgid ""
msgstr ""
"Project-Id-Version: alaveteli\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-12-02 11:15+0000\n"
-"PO-Revision-Date: 2014-12-02 12:53+0000\n"
+"POT-Creation-Date: 2014-12-02 13:14+0000\n"
+"PO-Revision-Date: 2014-12-02 13:17+0000\n"
"Last-Translator: louisecrow <louise@mysociety.org>\n"
"Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/alaveteli/language/pt_PT/)\n"
"Language: pt_PT\n"
@@ -739,9 +739,6 @@ msgstr "Atrasado."
msgid "Delivery error"
msgstr "Erro de entrega"
-msgid "Description can't be blank"
-msgstr ""
-
msgid "Destroy {{name}}"
msgstr ""
@@ -760,9 +757,6 @@ msgstr ""
msgid "Disclosure log URL"
msgstr ""
-msgid "Display order must be a number"
-msgstr ""
-
msgid "Do not fill in this field"
msgstr "Não preencha este campo"
@@ -2469,12 +2463,6 @@ msgstr "Tabela de situações"
msgid "Table of varieties"
msgstr "Tabela de variedades"
-msgid "Tag can't be blank"
-msgstr ""
-
-msgid "Tag is already taken"
-msgstr "A tag já está em utilização"
-
msgid "Tags"
msgstr "Tags"
@@ -2903,9 +2891,6 @@ msgstr "Este usuário foi banido do {{site_name}}"
msgid "This was not possible because there is already an account using \\nthe email address {{email}}."
msgstr "Isto não foi possível porque já existe uma conta usando o email {{email}}"
-msgid "Title can't be blank"
-msgstr ""
-
msgid "To cancel these alerts"
msgstr "Cancelar estes alertas"
diff --git a/locale/ro_RO/app.po b/locale/ro_RO/app.po
index 367e66dc0..9d9f65014 100644
--- a/locale/ro_RO/app.po
+++ b/locale/ro_RO/app.po
@@ -24,8 +24,8 @@ msgid ""
msgstr ""
"Project-Id-Version: alaveteli\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-12-02 11:15+0000\n"
-"PO-Revision-Date: 2014-12-02 12:53+0000\n"
+"POT-Creation-Date: 2014-12-02 13:14+0000\n"
+"PO-Revision-Date: 2014-12-02 13:17+0000\n"
"Last-Translator: louisecrow <louise@mysociety.org>\n"
"Language-Team: Romanian (Romania) (http://www.transifex.com/projects/p/alaveteli/language/ro_RO/)\n"
"Language: ro_RO\n"
@@ -715,9 +715,6 @@ msgstr "Amânat."
msgid "Delivery error"
msgstr "Eroare de livrare"
-msgid "Description can't be blank"
-msgstr ""
-
msgid "Destroy {{name}}"
msgstr "Distruge {{name}}"
@@ -736,9 +733,6 @@ msgstr "Disclosure log"
msgid "Disclosure log URL"
msgstr "Disclosure log URL"
-msgid "Display order must be a number"
-msgstr ""
-
msgid "Do not fill in this field"
msgstr ""
@@ -2439,12 +2433,6 @@ msgstr "Tabelul stărilor"
msgid "Table of varieties"
msgstr "Tabelul varietăţilor"
-msgid "Tag can't be blank"
-msgstr ""
-
-msgid "Tag is already taken"
-msgstr ""
-
msgid "Tags"
msgstr "Etichete"
@@ -2868,9 +2856,6 @@ msgstr "Acest utilizator a fost blocat pentru {{site_name}} "
msgid "This was not possible because there is already an account using \\nthe email address {{email}}."
msgstr "Acest lucru nu a fost posibil pentru că există deja un cont care utilizează\\nadresa de email {{email}}."
-msgid "Title can't be blank"
-msgstr ""
-
msgid "To cancel these alerts"
msgstr "Pentru a anula aceste alerte"
diff --git a/locale/rw/app.po b/locale/rw/app.po
index 4d600ae90..167be4ec2 100644
--- a/locale/rw/app.po
+++ b/locale/rw/app.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: alaveteli\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-12-02 11:15+0000\n"
-"PO-Revision-Date: 2014-12-02 11:26+0000\n"
+"POT-Creation-Date: 2014-12-02 13:14+0000\n"
+"PO-Revision-Date: 2014-12-02 13:17+0000\n"
"Last-Translator: louisecrow <louise@mysociety.org>\n"
"Language-Team: Kinyarwanda (http://www.transifex.com/projects/p/alaveteli/language/rw/)\n"
"Language: rw\n"
@@ -698,9 +698,6 @@ msgstr ""
msgid "Delivery error"
msgstr ""
-msgid "Description can't be blank"
-msgstr ""
-
msgid "Destroy {{name}}"
msgstr ""
@@ -719,9 +716,6 @@ msgstr ""
msgid "Disclosure log URL"
msgstr ""
-msgid "Display order must be a number"
-msgstr ""
-
msgid "Do not fill in this field"
msgstr ""
@@ -2417,12 +2411,6 @@ msgstr ""
msgid "Table of varieties"
msgstr ""
-msgid "Tag can't be blank"
-msgstr ""
-
-msgid "Tag is already taken"
-msgstr ""
-
msgid "Tags"
msgstr ""
@@ -2843,9 +2831,6 @@ msgstr ""
msgid "This was not possible because there is already an account using \\nthe email address {{email}}."
msgstr ""
-msgid "Title can't be blank"
-msgstr ""
-
msgid "To cancel these alerts"
msgstr ""
diff --git a/locale/sl/app.po b/locale/sl/app.po
index b2ad1263d..07538c0c0 100644
--- a/locale/sl/app.po
+++ b/locale/sl/app.po
@@ -10,8 +10,8 @@ msgid ""
msgstr ""
"Project-Id-Version: alaveteli\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-12-02 11:15+0000\n"
-"PO-Revision-Date: 2014-12-02 12:53+0000\n"
+"POT-Creation-Date: 2014-12-02 13:14+0000\n"
+"PO-Revision-Date: 2014-12-02 13:17+0000\n"
"Last-Translator: louisecrow <louise@mysociety.org>\n"
"Language-Team: Slovenian (http://www.transifex.com/projects/p/alaveteli/language/sl/)\n"
"Language: sl\n"
@@ -701,9 +701,6 @@ msgstr "Pozen."
msgid "Delivery error"
msgstr "Napaka pri dostavi"
-msgid "Description can't be blank"
-msgstr ""
-
msgid "Destroy {{name}}"
msgstr "Uniči {{name}}"
@@ -722,9 +719,6 @@ msgstr "Dnevnik razkritij"
msgid "Disclosure log URL"
msgstr "URL za dnevnik razkritij"
-msgid "Display order must be a number"
-msgstr ""
-
msgid "Do not fill in this field"
msgstr "Ne izpolnjujte tega polja"
@@ -2426,12 +2420,6 @@ msgstr "Preglednica stanj"
msgid "Table of varieties"
msgstr "Preglednica tipov"
-msgid "Tag can't be blank"
-msgstr ""
-
-msgid "Tag is already taken"
-msgstr ""
-
msgid "Tags"
msgstr "Značke"
@@ -2858,9 +2846,6 @@ msgstr "Temu uporabniku je bil onemogočen dostop do {{site_name}}"
msgid "This was not possible because there is already an account using \\nthe email address {{email}}."
msgstr "Tega ni bilo možno narediti, ker že obstaja uporabnik z e-poštnim naslovom {{email}}."
-msgid "Title can't be blank"
-msgstr ""
-
msgid "To cancel these alerts"
msgstr "Za preklic teh opozoril"
diff --git a/locale/sq/app.po b/locale/sq/app.po
index 1e2e967dc..89e251453 100644
--- a/locale/sq/app.po
+++ b/locale/sq/app.po
@@ -18,8 +18,8 @@ msgid ""
msgstr ""
"Project-Id-Version: alaveteli\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-12-02 11:15+0000\n"
-"PO-Revision-Date: 2014-12-02 12:54+0000\n"
+"POT-Creation-Date: 2014-12-02 13:14+0000\n"
+"PO-Revision-Date: 2014-12-02 13:17+0000\n"
"Last-Translator: louisecrow <louise@mysociety.org>\n"
"Language-Team: Albanian (http://www.transifex.com/projects/p/alaveteli/language/sq/)\n"
"Language: sq\n"
@@ -755,9 +755,6 @@ msgstr "Vonuar."
msgid "Delivery error"
msgstr "Gabim gjatë dorëzimit"
-msgid "Description can't be blank"
-msgstr ""
-
msgid "Destroy {{name}}"
msgstr ""
@@ -776,9 +773,6 @@ msgstr ""
msgid "Disclosure log URL"
msgstr ""
-msgid "Display order must be a number"
-msgstr ""
-
msgid "Do not fill in this field"
msgstr ""
@@ -2530,12 +2524,6 @@ msgstr "Tabela e statuseve"
msgid "Table of varieties"
msgstr "Tabela e varianteve"
-msgid "Tag can't be blank"
-msgstr ""
-
-msgid "Tag is already taken"
-msgstr ""
-
msgid "Tags"
msgstr ""
@@ -2974,9 +2962,6 @@ msgstr ""
"Kjo nuk ishte e mundur sepse egziston një llogari duke\n"
"përdorur këtë adresë të emailit {{email}}."
-msgid "Title can't be blank"
-msgstr ""
-
msgid "To cancel these alerts"
msgstr "Për të anuluar njoftimet"
diff --git a/locale/sr@latin/app.po b/locale/sr@latin/app.po
index 8209a6539..769f00262 100644
--- a/locale/sr@latin/app.po
+++ b/locale/sr@latin/app.po
@@ -16,8 +16,8 @@ msgid ""
msgstr ""
"Project-Id-Version: alaveteli\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-12-02 11:15+0000\n"
-"PO-Revision-Date: 2014-12-02 12:54+0000\n"
+"POT-Creation-Date: 2014-12-02 13:14+0000\n"
+"PO-Revision-Date: 2014-12-02 13:17+0000\n"
"Last-Translator: louisecrow <louise@mysociety.org>\n"
"Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/alaveteli/language/sr@latin/)\n"
"Language: sr@latin\n"
@@ -717,9 +717,6 @@ msgstr "Odložen"
msgid "Delivery error"
msgstr "Greška u isporuci"
-msgid "Description can't be blank"
-msgstr ""
-
msgid "Destroy {{name}}"
msgstr "Uništi {{name}}"
@@ -738,9 +735,6 @@ msgstr "Dnevnik objava"
msgid "Disclosure log URL"
msgstr "URL za dnevnik objava"
-msgid "Display order must be a number"
-msgstr ""
-
msgid "Do not fill in this field"
msgstr ""
@@ -2469,12 +2463,6 @@ msgstr "Tabela statusa"
msgid "Table of varieties"
msgstr "Tabela vrsta"
-msgid "Tag can't be blank"
-msgstr ""
-
-msgid "Tag is already taken"
-msgstr ""
-
msgid "Tags"
msgstr "Privesci"
@@ -2926,9 +2914,6 @@ msgstr "Ovaj korisnik je isključen sa {{site_name}} "
msgid "This was not possible because there is already an account using \\nthe email address {{email}}."
msgstr "To nije bilo moguće jer već postoji račun koji koristi e-mail adresu {{email}}."
-msgid "Title can't be blank"
-msgstr ""
-
msgid "To cancel these alerts"
msgstr "Da biste opozvali ova upozorenja"
diff --git a/locale/sv/app.po b/locale/sv/app.po
index 10e0fbfd4..afa670489 100644
--- a/locale/sv/app.po
+++ b/locale/sv/app.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: alaveteli\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-12-02 11:15+0000\n"
-"PO-Revision-Date: 2014-12-02 11:26+0000\n"
+"POT-Creation-Date: 2014-12-02 13:14+0000\n"
+"PO-Revision-Date: 2014-12-02 13:17+0000\n"
"Last-Translator: louisecrow <louise@mysociety.org>\n"
"Language-Team: Swedish (http://www.transifex.com/projects/p/alaveteli/language/sv/)\n"
"Language: sv\n"
@@ -698,9 +698,6 @@ msgstr ""
msgid "Delivery error"
msgstr ""
-msgid "Description can't be blank"
-msgstr ""
-
msgid "Destroy {{name}}"
msgstr ""
@@ -719,9 +716,6 @@ msgstr ""
msgid "Disclosure log URL"
msgstr ""
-msgid "Display order must be a number"
-msgstr ""
-
msgid "Do not fill in this field"
msgstr ""
@@ -2417,12 +2411,6 @@ msgstr ""
msgid "Table of varieties"
msgstr ""
-msgid "Tag can't be blank"
-msgstr ""
-
-msgid "Tag is already taken"
-msgstr ""
-
msgid "Tags"
msgstr ""
@@ -2843,9 +2831,6 @@ msgstr ""
msgid "This was not possible because there is already an account using \\nthe email address {{email}}."
msgstr ""
-msgid "Title can't be blank"
-msgstr ""
-
msgid "To cancel these alerts"
msgstr ""
diff --git a/locale/sw_KE/app.po b/locale/sw_KE/app.po
index ce116eaa1..0f7d5c2c8 100644
--- a/locale/sw_KE/app.po
+++ b/locale/sw_KE/app.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: alaveteli\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-12-02 11:15+0000\n"
-"PO-Revision-Date: 2014-12-02 11:26+0000\n"
+"POT-Creation-Date: 2014-12-02 13:14+0000\n"
+"PO-Revision-Date: 2014-12-02 13:17+0000\n"
"Last-Translator: louisecrow <louise@mysociety.org>\n"
"Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/alaveteli/language/sw_KE/)\n"
"Language: sw_KE\n"
@@ -698,9 +698,6 @@ msgstr ""
msgid "Delivery error"
msgstr ""
-msgid "Description can't be blank"
-msgstr ""
-
msgid "Destroy {{name}}"
msgstr ""
@@ -719,9 +716,6 @@ msgstr ""
msgid "Disclosure log URL"
msgstr ""
-msgid "Display order must be a number"
-msgstr ""
-
msgid "Do not fill in this field"
msgstr ""
@@ -2417,12 +2411,6 @@ msgstr ""
msgid "Table of varieties"
msgstr ""
-msgid "Tag can't be blank"
-msgstr ""
-
-msgid "Tag is already taken"
-msgstr ""
-
msgid "Tags"
msgstr ""
@@ -2843,9 +2831,6 @@ msgstr ""
msgid "This was not possible because there is already an account using \\nthe email address {{email}}."
msgstr ""
-msgid "Title can't be blank"
-msgstr ""
-
msgid "To cancel these alerts"
msgstr ""
diff --git a/locale/tr/app.po b/locale/tr/app.po
index 9df1792f5..dc72b5ee6 100644
--- a/locale/tr/app.po
+++ b/locale/tr/app.po
@@ -11,8 +11,8 @@ msgid ""
msgstr ""
"Project-Id-Version: alaveteli\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-12-02 11:15+0000\n"
-"PO-Revision-Date: 2014-12-02 11:26+0000\n"
+"POT-Creation-Date: 2014-12-02 13:14+0000\n"
+"PO-Revision-Date: 2014-12-02 13:17+0000\n"
"Last-Translator: louisecrow <louise@mysociety.org>\n"
"Language-Team: Turkish (http://www.transifex.com/projects/p/alaveteli/language/tr/)\n"
"Language: tr\n"
@@ -702,9 +702,6 @@ msgstr ""
msgid "Delivery error"
msgstr ""
-msgid "Description can't be blank"
-msgstr ""
-
msgid "Destroy {{name}}"
msgstr ""
@@ -723,9 +720,6 @@ msgstr ""
msgid "Disclosure log URL"
msgstr ""
-msgid "Display order must be a number"
-msgstr ""
-
msgid "Do not fill in this field"
msgstr ""
@@ -2421,12 +2415,6 @@ msgstr ""
msgid "Table of varieties"
msgstr ""
-msgid "Tag can't be blank"
-msgstr ""
-
-msgid "Tag is already taken"
-msgstr ""
-
msgid "Tags"
msgstr ""
@@ -2847,9 +2835,6 @@ msgstr ""
msgid "This was not possible because there is already an account using \\nthe email address {{email}}."
msgstr ""
-msgid "Title can't be blank"
-msgstr ""
-
msgid "To cancel these alerts"
msgstr ""
diff --git a/locale/uk/app.po b/locale/uk/app.po
index 71852a94d..994f4ccc6 100644
--- a/locale/uk/app.po
+++ b/locale/uk/app.po
@@ -15,8 +15,8 @@ msgid ""
msgstr ""
"Project-Id-Version: alaveteli\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-12-02 11:15+0000\n"
-"PO-Revision-Date: 2014-12-02 12:55+0000\n"
+"POT-Creation-Date: 2014-12-02 13:14+0000\n"
+"PO-Revision-Date: 2014-12-02 13:17+0000\n"
"Last-Translator: louisecrow <louise@mysociety.org>\n"
"Language-Team: Ukrainian (http://www.transifex.com/projects/p/alaveteli/language/uk/)\n"
"Language: uk\n"
@@ -752,9 +752,6 @@ msgstr "Затримується"
msgid "Delivery error"
msgstr "Помилка доставки"
-msgid "Description can't be blank"
-msgstr ""
-
msgid "Destroy {{name}}"
msgstr ""
@@ -773,9 +770,6 @@ msgstr ""
msgid "Disclosure log URL"
msgstr ""
-msgid "Display order must be a number"
-msgstr ""
-
msgid "Do not fill in this field"
msgstr ""
@@ -2527,12 +2521,6 @@ msgstr "Таблиця статусів"
msgid "Table of varieties"
msgstr ""
-msgid "Tag can't be blank"
-msgstr ""
-
-msgid "Tag is already taken"
-msgstr ""
-
msgid "Tags"
msgstr ""
@@ -2964,9 +2952,6 @@ msgstr ""
"Це неможливо, оскільки інший акаунт вже використовує \n"
"електронну адресу {{email}}."
-msgid "Title can't be blank"
-msgstr ""
-
msgid "To cancel these alerts"
msgstr ""
diff --git a/locale/vi/app.po b/locale/vi/app.po
index 10bb77bc2..501f34c80 100644
--- a/locale/vi/app.po
+++ b/locale/vi/app.po
@@ -12,8 +12,8 @@ msgid ""
msgstr ""
"Project-Id-Version: alaveteli\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-12-02 11:15+0000\n"
-"PO-Revision-Date: 2014-12-02 11:26+0000\n"
+"POT-Creation-Date: 2014-12-02 13:14+0000\n"
+"PO-Revision-Date: 2014-12-02 13:17+0000\n"
"Last-Translator: louisecrow <louise@mysociety.org>\n"
"Language-Team: Vietnamese (http://www.transifex.com/projects/p/alaveteli/language/vi/)\n"
"Language: vi\n"
@@ -703,9 +703,6 @@ msgstr ""
msgid "Delivery error"
msgstr ""
-msgid "Description can't be blank"
-msgstr ""
-
msgid "Destroy {{name}}"
msgstr ""
@@ -724,9 +721,6 @@ msgstr ""
msgid "Disclosure log URL"
msgstr ""
-msgid "Display order must be a number"
-msgstr ""
-
msgid "Do not fill in this field"
msgstr ""
@@ -2419,12 +2413,6 @@ msgstr ""
msgid "Table of varieties"
msgstr ""
-msgid "Tag can't be blank"
-msgstr ""
-
-msgid "Tag is already taken"
-msgstr ""
-
msgid "Tags"
msgstr ""
@@ -2842,9 +2830,6 @@ msgstr ""
msgid "This was not possible because there is already an account using \\nthe email address {{email}}."
msgstr ""
-msgid "Title can't be blank"
-msgstr ""
-
msgid "To cancel these alerts"
msgstr ""
diff --git a/locale/zh_HK/app.po b/locale/zh_HK/app.po
index a0ceb7ce7..c73244bc7 100644
--- a/locale/zh_HK/app.po
+++ b/locale/zh_HK/app.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: alaveteli\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-12-02 11:15+0000\n"
-"PO-Revision-Date: 2014-12-02 11:26+0000\n"
+"POT-Creation-Date: 2014-12-02 13:14+0000\n"
+"PO-Revision-Date: 2014-12-02 13:17+0000\n"
"Last-Translator: louisecrow <louise@mysociety.org>\n"
"Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/alaveteli/language/zh_HK/)\n"
"Language: zh_HK\n"
@@ -700,9 +700,6 @@ msgstr ""
msgid "Delivery error"
msgstr ""
-msgid "Description can't be blank"
-msgstr ""
-
msgid "Destroy {{name}}"
msgstr ""
@@ -721,9 +718,6 @@ msgstr ""
msgid "Disclosure log URL"
msgstr ""
-msgid "Display order must be a number"
-msgstr ""
-
msgid "Do not fill in this field"
msgstr ""
@@ -2416,12 +2410,6 @@ msgstr ""
msgid "Table of varieties"
msgstr ""
-msgid "Tag can't be blank"
-msgstr ""
-
-msgid "Tag is already taken"
-msgstr ""
-
msgid "Tags"
msgstr ""
@@ -2839,9 +2827,6 @@ msgstr ""
msgid "This was not possible because there is already an account using \\nthe email address {{email}}."
msgstr ""
-msgid "Title can't be blank"
-msgstr ""
-
msgid "To cancel these alerts"
msgstr ""