From 60f26b77482dea8684f8e232812d379f3234c3c1 Mon Sep 17 00:00:00 2001 From: Danilo Bargen Date: Tue, 9 Jul 2013 11:14:45 +0200 Subject: [PATCH 01/12] Added i18n.sh script (refs #314) --- i18n.sh | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100755 i18n.sh diff --git a/i18n.sh b/i18n.sh new file mode 100755 index 0000000..f18a4ae --- /dev/null +++ b/i18n.sh @@ -0,0 +1,44 @@ +#!/bin/bash + +# Make sure `django-admin.py` is available + +hash django-admin.py 2>/dev/null || + { echo >&2 "django-admin.py not found. Please install Django."; exit 1; } + + +# Functions + +function makemessages() { + echo "### Processing djadmin2..." + ( cd djadmin2; django-admin.py makemessages -a ) + echo "### Processing example app..." + ( cd example/blog; django-admin.py makemessages -a ) + echo "### Processing example2 app..." + ( cd example2/polls; django-admin.py makemessages -a ) +} + +function compilemessages() { + echo "### Processing djadmin2..." + ( cd djadmin2; django-admin.py compilemessages ) + echo "### Processing example app..." + ( cd example/blog; django-admin.py compilemessages ) + echo "### Processing example2 app..." + ( cd example2/polls; django-admin.py compilemessages ) +} + + +# Parse arguments + +case $1 in + "") + echo "Available commands:" + echo "--- makemessages" + echo "--- compilemessages"; + ;; + "makemessages") + makemessages + ;; + "compilemessages") + compilemessages + ;; +esac From bb33879e3b15ef4fe2147f13a808b34ce0bc2cb7 Mon Sep 17 00:00:00 2001 From: Danilo Bargen Date: Tue, 9 Jul 2013 11:27:14 +0200 Subject: [PATCH 02/12] Added transifex-client configfile --- .tx/config | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .tx/config diff --git a/.tx/config b/.tx/config new file mode 100644 index 0000000..c7fbae0 --- /dev/null +++ b/.tx/config @@ -0,0 +1,21 @@ +[main] +host = https://www.transifex.com +lang_map = sr@latin:sr_Latn + +[django-admin2.djadmin2po] +file_filter = djadmin2/locale//LC_MESSAGES/django.po +source_filter = djadmin2/locale/en/LC_MESSAGES/django.po +source_lang = en_US +minimum_perc = 80 + +[django-admin2.example-app] +file_filter = example/blog/locale//LC_MESSAGES/django.po +source_filter = example/blog/locale/en/LC_MESSAGES/django.po +source_lang = en_US +minimum_perc = 50 + +[django-admin2.example2-app] +file_filter = example2/polls/locale//LC_MESSAGES/django.po +source_filter = example2/polls/locale/en/LC_MESSAGES/django.po +source_lang = en_US +minimum_perc = 50 From aeb8a84726eb06924732c8cd172e24512321bfea Mon Sep 17 00:00:00 2001 From: Danilo Bargen Date: Tue, 9 Jul 2013 11:34:40 +0200 Subject: [PATCH 03/12] Pulled new translations --- djadmin2/locale/bs/LC_MESSAGES/django.po | 266 +++++++++++++++++ djadmin2/locale/nl/LC_MESSAGES/django.po | 263 +++++++++++++++++ djadmin2/locale/pl_PL/LC_MESSAGES/django.po | 268 ++++++++++++++++++ djadmin2/locale/pt_BR/LC_MESSAGES/django.po | 264 +++++++++++++++++ djadmin2/locale/zh/LC_MESSAGES/django.po | 261 +++++++++++++++++ example/blog/locale/it/LC_MESSAGES/django.po | 155 ++++++++++ example/blog/locale/nl/LC_MESSAGES/django.po | 155 ++++++++++ .../blog/locale/pl_PL/LC_MESSAGES/django.po | 157 ++++++++++ .../blog/locale/pt_BR/LC_MESSAGES/django.po | 156 ++++++++++ example/blog/locale/zh/LC_MESSAGES/django.po | 155 ++++++++++ .../polls/locale/it/LC_MESSAGES/django.po | 63 ++++ .../polls/locale/nl/LC_MESSAGES/django.po | 63 ++++ .../polls/locale/pl_PL/LC_MESSAGES/django.po | 64 +++++ .../polls/locale/pt_BR/LC_MESSAGES/django.po | 62 ++++ .../polls/locale/tl_PH/LC_MESSAGES/django.po | 63 ++++ .../polls/locale/zh/LC_MESSAGES/django.po | 63 ++++ 16 files changed, 2478 insertions(+) create mode 100644 djadmin2/locale/bs/LC_MESSAGES/django.po create mode 100644 djadmin2/locale/nl/LC_MESSAGES/django.po create mode 100644 djadmin2/locale/pl_PL/LC_MESSAGES/django.po create mode 100644 djadmin2/locale/pt_BR/LC_MESSAGES/django.po create mode 100644 djadmin2/locale/zh/LC_MESSAGES/django.po create mode 100644 example/blog/locale/it/LC_MESSAGES/django.po create mode 100644 example/blog/locale/nl/LC_MESSAGES/django.po create mode 100644 example/blog/locale/pl_PL/LC_MESSAGES/django.po create mode 100644 example/blog/locale/pt_BR/LC_MESSAGES/django.po create mode 100644 example/blog/locale/zh/LC_MESSAGES/django.po create mode 100644 example2/polls/locale/it/LC_MESSAGES/django.po create mode 100644 example2/polls/locale/nl/LC_MESSAGES/django.po create mode 100644 example2/polls/locale/pl_PL/LC_MESSAGES/django.po create mode 100644 example2/polls/locale/pt_BR/LC_MESSAGES/django.po create mode 100644 example2/polls/locale/tl_PH/LC_MESSAGES/django.po create mode 100644 example2/polls/locale/zh/LC_MESSAGES/django.po diff --git a/djadmin2/locale/bs/LC_MESSAGES/django.po b/djadmin2/locale/bs/LC_MESSAGES/django.po new file mode 100644 index 0000000..f2d3e68 --- /dev/null +++ b/djadmin2/locale/bs/LC_MESSAGES/django.po @@ -0,0 +1,266 @@ +# This file is distributed under the same license as the django-admin2 package. +# +# Translators: +# Translators: +# amarsahinovic, 2013 +msgid "" +msgstr "" +"Project-Id-Version: django-admin2\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-07-07 11:01+0200\n" +"PO-Revision-Date: 2013-07-07 21:32+0000\n" +"Last-Translator: amarsahinovic\n" +"Language-Team: Bosnian (http://www.transifex.com/projects/p/django-admin2/language/bs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bs\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#: actions.py:26 +msgid "" +"Items must be selected in order to perform actions on them. No items have " +"been changed." +msgstr "Stavke moraju biti odabrane da bi se nad njima izvodile akcije. Nijedna stavka nije promijenjena." + +#: actions.py:147 +msgid "Delete selected items" +msgstr "Izbrišite odabrane stavke" + +#: actions.py:151 +#, python-format +msgctxt "singular form" +msgid "Successfully deleted %(count)s %(items)s" +msgstr "Uspješno izbrisano %(count)s %(items)s" + +#: actions.py:155 +#, python-format +msgctxt "plural form" +msgid "Successfully deleted %(count)s %(items)s" +msgstr "Uspješno izbrisano %(count)s %(items)s" + +#: filters.py:40 +msgid "Unknown" +msgstr "Nepoznato" + +#: filters.py:41 +msgid "Yes" +msgstr "Da" + +#: filters.py:42 +msgid "No" +msgstr "Ne" + +#. Translators : %(username)s will be replaced by the username_field name +#. (default : username, but could be email, or something else) +#: forms.py:240 +#, python-format +msgid "" +"Please enter the correct %(username)s and password for a staff account. Note" +" that both fields may be case-sensitive." +msgstr "Molimo unesite ispravno %(username)s i lozinku za račun osoblja. Imajte na umu da oba polja mogu sadržavati velika i mala slova." + +#: forms.py:251 +msgid "Please log in again, because your session has expired." +msgstr "Molimo prijavite se ponovo, vaša sesija je istekla." + +#: views.py:200 templates/djadmin2/bootstrap/model_update_form.html:31 +#: templates/djadmin2/bootstrap/includes/app_model_list.html:38 +msgid "Change" +msgstr "Promijeni" + +#: views.py:221 templates/djadmin2/bootstrap/includes/app_model_list.html:30 +msgid "Add" +msgstr "Dodaj" + +#: templates/djadmin2/bootstrap/app_index.html:6 +#: templates/djadmin2/bootstrap/base.html:55 +#: templates/djadmin2/bootstrap/model_confirm_delete.html:10 +#: templates/djadmin2/bootstrap/model_detail.html:11 +#: templates/djadmin2/bootstrap/model_list.html:14 +#: templates/djadmin2/bootstrap/model_update_form.html:13 +#: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:10 +#: templates/djadmin2/bootstrap/auth/logout.html:8 +#: templates/djadmin2/bootstrap/auth/password_change_done.html:11 +#: templates/djadmin2/bootstrap/auth/password_change_form.html:10 +msgid "Home" +msgstr "Početna" + +#: templates/djadmin2/bootstrap/app_index.html:12 +#, python-format +msgid "%(app_label)s administration" +msgstr "%(app_label)s administracija" + +#: templates/djadmin2/bootstrap/base.html:6 +#: templates/djadmin2/bootstrap/base.html:71 +#: templates/djadmin2/bootstrap/auth/login.html:15 +msgid "Site administration" +msgstr "Administracija stranice" + +#: templates/djadmin2/bootstrap/base.html:22 +msgid "API" +msgstr "API" + +#: templates/djadmin2/bootstrap/base.html:25 +msgid "Documentation" +msgstr "Dokumentacija" + +#: templates/djadmin2/bootstrap/base.html:34 +#, python-format +msgid "Logged in as %(user)s" +msgstr "Prijavljen kao %(user)s" + +#: templates/djadmin2/bootstrap/base.html:40 +msgid "Change password" +msgstr "Promijeni lozinku" + +#: templates/djadmin2/bootstrap/base.html:42 +#: templates/djadmin2/bootstrap/auth/logout.html:11 +msgid "Log out" +msgstr "Odjavi se" + +#: templates/djadmin2/bootstrap/index.html:13 +msgid "Recent Actions" +msgstr "Nedavne akcije" + +#: templates/djadmin2/bootstrap/index.html:14 +msgid "My Actions" +msgstr "Moje akcije" + +#: templates/djadmin2/bootstrap/model_confirm_delete.html:4 +#: templates/djadmin2/bootstrap/model_confirm_delete.html:6 +#: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:4 +#: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:6 +msgid "Are you sure?" +msgstr "Da li ste sigurni?" + +#: templates/djadmin2/bootstrap/model_confirm_delete.html:25 +#: templates/djadmin2/bootstrap/model_update_form.html:76 +#: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:21 +msgid "Delete" +msgstr "Izbriši" + +#. Translators : this is singular, example : delete the post "My Title" +#: templates/djadmin2/bootstrap/model_confirm_delete.html:32 +#, python-format +msgid "" +"\n" +"Are you sure you want to delete the %(model_name)s \"%(object)s\"?\n" +msgstr "Da li ste sigurni da želite obrisati %(model_name)s \"%(object)s\"? Sve navedene stavke će biti obrisane:" + +#: templates/djadmin2/bootstrap/model_confirm_delete.html:36 +msgid "" +"\n" +"The following item will be deleted:\n" +msgid_plural "" +"\n" +"All of the following items will be deleted:\n" +msgstr[0] "\nSve navedene stavke će biti obrisane:\n" +msgstr[1] "\nSve navedene stavke će biti obrisane:\n" +msgstr[2] "\nSve navedene stavke će biti obrisane:\n" + +#: templates/djadmin2/bootstrap/model_confirm_delete.html:50 +#: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:44 +msgid "Yes, I'm sure" +msgstr "Da, siguran sam" + +#: templates/djadmin2/bootstrap/model_list.html:4 +#: templates/djadmin2/bootstrap/model_list.html:6 +#, python-format +msgid "Select %(model_name)s to change" +msgstr "Odaberite %(model_name)s za izmjenu" + +#: templates/djadmin2/bootstrap/model_list.html:31 +msgid "Search Term" +msgstr "Pojam za pretragu" + +#: templates/djadmin2/bootstrap/model_list.html:32 +msgid "Search" +msgstr "Traži" + +#: templates/djadmin2/bootstrap/model_list.html:59 +#, python-format +msgid "%(selected)s of %(total)s selected" +msgstr "%(selected)s od %(total)s ukupno" + +#: templates/djadmin2/bootstrap/model_list.html:63 +#, python-format +msgid "Add %(model_verbose_name)s" +msgstr "Dodaj %(model_verbose_name)s" + +#. Translators : examples : Add post, Change object +#: templates/djadmin2/bootstrap/model_update_form.html:6 +#: templates/djadmin2/bootstrap/model_update_form.html:9 +#, python-format +msgid "%(action_name)s %(model_name)s" +msgstr "%(action)s %(model_name)s" + +#: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:27 +#, python-format +msgid "" +"\n" +"Are you sure you want to delete the selected %(objects_name)s? The following item will be deleted:\n" +msgid_plural "" +"\n" +"Are you sure you want to delete the selected %(objects_name)s? The following items will be deleted:\n" +msgstr[0] "Da li ste sigurni da želite obrisati odabrani %(objects_name)s? Sve navedene stavke će biti obrisane:" +msgstr[1] "Da li ste sigurni da želite obrisati odabrane %(objects_name)s? Sve navedene stavke će biti obrisane:" +msgstr[2] "Da li ste sigurni da želite obrisati odabrane %(objects_name)s? Sve navedene stavke će biti obrisane:" + +#: templates/djadmin2/bootstrap/auth/login.html:15 +#: templates/djadmin2/bootstrap/auth/login.html:52 +msgid "Log in" +msgstr "Prijavi se" + +#: templates/djadmin2/bootstrap/auth/login.html:27 +#: templates/djadmin2/bootstrap/auth/password_change_form.html:24 +msgid "Please correct the error below." +msgid_plural "Please correct the errors below." +msgstr[0] "Molimo ispravite dole navedenu grešku." +msgstr[1] "Molimo ispravite dole navedene greške." +msgstr[2] "Molimo ispravite dole navedene greške." + +#: templates/djadmin2/bootstrap/auth/logout.html:17 +msgid "Thanks for spending some quality time with the Web site today." +msgstr "Hvala što ste proveli kvalitetno vrijeme na stranici danas." + +#: templates/djadmin2/bootstrap/auth/logout.html:18 +msgid "Log in again" +msgstr "Prijavite se ponovo" + +#: templates/djadmin2/bootstrap/auth/password_change_done.html:6 +#: templates/djadmin2/bootstrap/auth/password_change_done.html:7 +#: templates/djadmin2/bootstrap/auth/password_change_done.html:14 +msgid "Password change successful" +msgstr "Promjena lozinke uspješna" + +#: templates/djadmin2/bootstrap/auth/password_change_done.html:20 +msgid "Your password was changed." +msgstr "Vaša lozinka je promijenjena." + +#: templates/djadmin2/bootstrap/auth/password_change_form.html:6 +#: templates/djadmin2/bootstrap/auth/password_change_form.html:13 +msgid "Password change" +msgstr "Promjena lozinke" + +#: templates/djadmin2/bootstrap/auth/password_change_form.html:20 +msgid "" +"Please enter your old password, for security's sake, and then enter your new" +" password twice so we can verify you typed it in correctly." +msgstr "Molimo unesite vašu staru lozinku, iz sigurnosnih razloga, a zatim unesite Vašu novu lozinku dva puta da bi mogli biti sigurni da ste je unijeli ispravno." + +#: templates/djadmin2/bootstrap/auth/password_change_form.html:31 +msgid "Change my password" +msgstr "Promijeni moju lozinku" + +#: templates/djadmin2/bootstrap/includes/action_buttons.html:3 +msgid "Save and add another" +msgstr "Sačuvaj i dodaj još jedan" + +#: templates/djadmin2/bootstrap/includes/action_buttons.html:4 +msgid "Save and continue editing" +msgstr "Sačuvaj i nastavi sa izmjenama" + +#: templates/djadmin2/bootstrap/includes/action_buttons.html:5 +msgid "Save" +msgstr "Sačuvaj" diff --git a/djadmin2/locale/nl/LC_MESSAGES/django.po b/djadmin2/locale/nl/LC_MESSAGES/django.po new file mode 100644 index 0000000..3e5935f --- /dev/null +++ b/djadmin2/locale/nl/LC_MESSAGES/django.po @@ -0,0 +1,263 @@ +# This file is distributed under the same license as the django-admin2 package. +# +# Translators: +# Translators: +# Density21.5 , 2013 +msgid "" +msgstr "" +"Project-Id-Version: django-admin2\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-07-07 11:01+0200\n" +"PO-Revision-Date: 2013-07-08 10:54+0000\n" +"Last-Translator: Density21.5 \n" +"Language-Team: Dutch (http://www.transifex.com/projects/p/django-admin2/language/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: actions.py:26 +msgid "" +"Items must be selected in order to perform actions on them. No items have " +"been changed." +msgstr "Om acties uit kunnen voeren moeten er onderdelen geselecteerd zijn. Er zijn geen onderdelen gewijzigd." + +#: actions.py:147 +msgid "Delete selected items" +msgstr "Verwijder geselecteerde onderdelen" + +#: actions.py:151 +#, python-format +msgctxt "singular form" +msgid "Successfully deleted %(count)s %(items)s" +msgstr "%(count)s %(items)s succesvol verwijderd" + +#: actions.py:155 +#, python-format +msgctxt "plural form" +msgid "Successfully deleted %(count)s %(items)s" +msgstr "%(count)s %(items)s succesvol verwijderd" + +#: filters.py:40 +msgid "Unknown" +msgstr "Onbekend" + +#: filters.py:41 +msgid "Yes" +msgstr "Ja" + +#: filters.py:42 +msgid "No" +msgstr "Nee" + +#. Translators : %(username)s will be replaced by the username_field name +#. (default : username, but could be email, or something else) +#: forms.py:240 +#, python-format +msgid "" +"Please enter the correct %(username)s and password for a staff account. Note" +" that both fields may be case-sensitive." +msgstr "Voer alstublieft een correcte %(username)s en wachtwoord combinatie met beheer privileges in. Let er op dat beide velden hoofdletter-gevoelig zijn." + +#: forms.py:251 +msgid "Please log in again, because your session has expired." +msgstr "Uw sessie is verlopen, logt u alstublieft opnieuw in." + +#: views.py:200 templates/djadmin2/bootstrap/model_update_form.html:31 +#: templates/djadmin2/bootstrap/includes/app_model_list.html:38 +msgid "Change" +msgstr "Wijzigen" + +#: views.py:221 templates/djadmin2/bootstrap/includes/app_model_list.html:30 +msgid "Add" +msgstr "Toevoegen" + +#: templates/djadmin2/bootstrap/app_index.html:6 +#: templates/djadmin2/bootstrap/base.html:55 +#: templates/djadmin2/bootstrap/model_confirm_delete.html:10 +#: templates/djadmin2/bootstrap/model_detail.html:11 +#: templates/djadmin2/bootstrap/model_list.html:14 +#: templates/djadmin2/bootstrap/model_update_form.html:13 +#: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:10 +#: templates/djadmin2/bootstrap/auth/logout.html:8 +#: templates/djadmin2/bootstrap/auth/password_change_done.html:11 +#: templates/djadmin2/bootstrap/auth/password_change_form.html:10 +msgid "Home" +msgstr "Home" + +#: templates/djadmin2/bootstrap/app_index.html:12 +#, python-format +msgid "%(app_label)s administration" +msgstr "%(app_label)s beheer" + +#: templates/djadmin2/bootstrap/base.html:6 +#: templates/djadmin2/bootstrap/base.html:71 +#: templates/djadmin2/bootstrap/auth/login.html:15 +msgid "Site administration" +msgstr "Site beheer" + +#: templates/djadmin2/bootstrap/base.html:22 +msgid "API" +msgstr "API" + +#: templates/djadmin2/bootstrap/base.html:25 +msgid "Documentation" +msgstr "Documentatie" + +#: templates/djadmin2/bootstrap/base.html:34 +#, python-format +msgid "Logged in as %(user)s" +msgstr "Ingelogd als %(user)s" + +#: templates/djadmin2/bootstrap/base.html:40 +msgid "Change password" +msgstr "Wijzig wachtwoord" + +#: templates/djadmin2/bootstrap/base.html:42 +#: templates/djadmin2/bootstrap/auth/logout.html:11 +msgid "Log out" +msgstr "Uitloggen" + +#: templates/djadmin2/bootstrap/index.html:13 +msgid "Recent Actions" +msgstr "Recente acties" + +#: templates/djadmin2/bootstrap/index.html:14 +msgid "My Actions" +msgstr "Mijn acties" + +#: templates/djadmin2/bootstrap/model_confirm_delete.html:4 +#: templates/djadmin2/bootstrap/model_confirm_delete.html:6 +#: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:4 +#: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:6 +msgid "Are you sure?" +msgstr "Weet u het zeker?" + +#: templates/djadmin2/bootstrap/model_confirm_delete.html:25 +#: templates/djadmin2/bootstrap/model_update_form.html:76 +#: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:21 +msgid "Delete" +msgstr "Verwijderen" + +#. Translators : this is singular, example : delete the post "My Title" +#: templates/djadmin2/bootstrap/model_confirm_delete.html:32 +#, python-format +msgid "" +"\n" +"Are you sure you want to delete the %(model_name)s \"%(object)s\"?\n" +msgstr "Weet u zeker dat u %(model_name)s \"%(object)s\" wilt verwijderen? De volgende onderdelen zullen verwijderd worden:" + +#: templates/djadmin2/bootstrap/model_confirm_delete.html:36 +msgid "" +"\n" +"The following item will be deleted:\n" +msgid_plural "" +"\n" +"All of the following items will be deleted:\n" +msgstr[0] "\nHet volgende onderdeel zal verwijderd worden:\n" +msgstr[1] "\nDe volgende onderdelen zullen verwijderd worden:\n" + +#: templates/djadmin2/bootstrap/model_confirm_delete.html:50 +#: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:44 +msgid "Yes, I'm sure" +msgstr "Ja, Ik weet het zeker" + +#: templates/djadmin2/bootstrap/model_list.html:4 +#: templates/djadmin2/bootstrap/model_list.html:6 +#, python-format +msgid "Select %(model_name)s to change" +msgstr "Selecteer te wijzigen %(model_name)s" + +#: templates/djadmin2/bootstrap/model_list.html:31 +msgid "Search Term" +msgstr "Zoekterm" + +#: templates/djadmin2/bootstrap/model_list.html:32 +msgid "Search" +msgstr "Zoek" + +#: templates/djadmin2/bootstrap/model_list.html:59 +#, python-format +msgid "%(selected)s of %(total)s selected" +msgstr "%(selected)s van %(total)s geselecteerd" + +#: templates/djadmin2/bootstrap/model_list.html:63 +#, python-format +msgid "Add %(model_verbose_name)s" +msgstr "Voeg %(model_verbose_name)s toe" + +#. Translators : examples : Add post, Change object +#: templates/djadmin2/bootstrap/model_update_form.html:6 +#: templates/djadmin2/bootstrap/model_update_form.html:9 +#, python-format +msgid "%(action_name)s %(model_name)s" +msgstr "%(model_name)s %(action)s" + +#: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:27 +#, python-format +msgid "" +"\n" +"Are you sure you want to delete the selected %(objects_name)s? The following item will be deleted:\n" +msgid_plural "" +"\n" +"Are you sure you want to delete the selected %(objects_name)s? The following items will be deleted:\n" +msgstr[0] "Weet u zeker dat u geselecteerd \"%(objects_name)s\" wilt verwijderen? De volgende onderdelen zullen allemaal verwijderd worden:" +msgstr[1] "Weet u zeker dat u geselecteerde \"%(objects_name)s\" wilt verwijderen? De volgende onderdelen zullen allemaal verwijderd worden:" + +#: templates/djadmin2/bootstrap/auth/login.html:15 +#: templates/djadmin2/bootstrap/auth/login.html:52 +msgid "Log in" +msgstr "Inloggen" + +#: templates/djadmin2/bootstrap/auth/login.html:27 +#: templates/djadmin2/bootstrap/auth/password_change_form.html:24 +msgid "Please correct the error below." +msgid_plural "Please correct the errors below." +msgstr[0] "Corrigeert u alstublieft de onderstaande fout." +msgstr[1] "Corrigeert u alstublieft de onderstaande fouten" + +#: templates/djadmin2/bootstrap/auth/logout.html:17 +msgid "Thanks for spending some quality time with the Web site today." +msgstr "Hartelijk dank voor het doorbrengen van enige momenten van uw waardevolle tijd met de website." + +#: templates/djadmin2/bootstrap/auth/logout.html:18 +msgid "Log in again" +msgstr "Opnieuw inloggen" + +#: templates/djadmin2/bootstrap/auth/password_change_done.html:6 +#: templates/djadmin2/bootstrap/auth/password_change_done.html:7 +#: templates/djadmin2/bootstrap/auth/password_change_done.html:14 +msgid "Password change successful" +msgstr "Wachtwoord succesvol gewijzigd" + +#: templates/djadmin2/bootstrap/auth/password_change_done.html:20 +msgid "Your password was changed." +msgstr "Uw wachtwoord is gewijzigd" + +#: templates/djadmin2/bootstrap/auth/password_change_form.html:6 +#: templates/djadmin2/bootstrap/auth/password_change_form.html:13 +msgid "Password change" +msgstr "Wachtwoord wijzigen" + +#: templates/djadmin2/bootstrap/auth/password_change_form.html:20 +msgid "" +"Please enter your old password, for security's sake, and then enter your new" +" password twice so we can verify you typed it in correctly." +msgstr "Voert u alstublieft, om veiligheidsredenen, uw oude wachtwoord in en voer vervolgens uw nieuwe wachtwoord tweemaal in om te verifiëren dat u het wachtwoord correct intypt." + +#: templates/djadmin2/bootstrap/auth/password_change_form.html:31 +msgid "Change my password" +msgstr "Wijzig mijn wachtwoord" + +#: templates/djadmin2/bootstrap/includes/action_buttons.html:3 +msgid "Save and add another" +msgstr "Opslaan en een nieuwe toevoegen" + +#: templates/djadmin2/bootstrap/includes/action_buttons.html:4 +msgid "Save and continue editing" +msgstr "Opslaan en doorgaan met wijzigen" + +#: templates/djadmin2/bootstrap/includes/action_buttons.html:5 +msgid "Save" +msgstr "Opslaan" diff --git a/djadmin2/locale/pl_PL/LC_MESSAGES/django.po b/djadmin2/locale/pl_PL/LC_MESSAGES/django.po new file mode 100644 index 0000000..9cb0bfd --- /dev/null +++ b/djadmin2/locale/pl_PL/LC_MESSAGES/django.po @@ -0,0 +1,268 @@ +# This file is distributed under the same license as the django-admin2 package. +# +# Translators: +# Translators: +# dasm , 2013 +# Marcin Jabrzyk , 2013 +# Marcin Jabrzyk , 2013 +msgid "" +msgstr "" +"Project-Id-Version: django-admin2\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-07-07 11:01+0200\n" +"PO-Revision-Date: 2013-07-08 17:49+0000\n" +"Last-Translator: dasm \n" +"Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/django-admin2/language/pl_PL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pl_PL\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#: actions.py:26 +msgid "" +"Items must be selected in order to perform actions on them. No items have " +"been changed." +msgstr "Wykonanie akcji wymaga wybrania elementów. Żaden element nie został zmieniony." + +#: actions.py:147 +msgid "Delete selected items" +msgstr "Usuń wybrane obiekty" + +#: actions.py:151 +#, python-format +msgctxt "singular form" +msgid "Successfully deleted %(count)s %(items)s" +msgstr "Pomyślnie usunięto %(count)s %(items)s" + +#: actions.py:155 +#, python-format +msgctxt "plural form" +msgid "Successfully deleted %(count)s %(items)s" +msgstr "Pomyślnie usunięto %(count)s %(items)s" + +#: filters.py:40 +msgid "Unknown" +msgstr "Nieznany" + +#: filters.py:41 +msgid "Yes" +msgstr "Tak" + +#: filters.py:42 +msgid "No" +msgstr "Nie" + +#. Translators : %(username)s will be replaced by the username_field name +#. (default : username, but could be email, or something else) +#: forms.py:240 +#, python-format +msgid "" +"Please enter the correct %(username)s and password for a staff account. Note" +" that both fields may be case-sensitive." +msgstr "Proszę wprowadzić poprawne %(username)s i hasło do konta administratora. Należy pamiętać, że oba pola mogą rozróżniać wielkość wprowadzonych znaków." + +#: forms.py:251 +msgid "Please log in again, because your session has expired." +msgstr "Proszę zalogować się ponownie, ponieważ twoja sesja wygasła." + +#: views.py:200 templates/djadmin2/bootstrap/model_update_form.html:31 +#: templates/djadmin2/bootstrap/includes/app_model_list.html:38 +msgid "Change" +msgstr "Zmień" + +#: views.py:221 templates/djadmin2/bootstrap/includes/app_model_list.html:30 +msgid "Add" +msgstr "Dodaj" + +#: templates/djadmin2/bootstrap/app_index.html:6 +#: templates/djadmin2/bootstrap/base.html:55 +#: templates/djadmin2/bootstrap/model_confirm_delete.html:10 +#: templates/djadmin2/bootstrap/model_detail.html:11 +#: templates/djadmin2/bootstrap/model_list.html:14 +#: templates/djadmin2/bootstrap/model_update_form.html:13 +#: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:10 +#: templates/djadmin2/bootstrap/auth/logout.html:8 +#: templates/djadmin2/bootstrap/auth/password_change_done.html:11 +#: templates/djadmin2/bootstrap/auth/password_change_form.html:10 +msgid "Home" +msgstr "Początek" + +#: templates/djadmin2/bootstrap/app_index.html:12 +#, python-format +msgid "%(app_label)s administration" +msgstr "%(app_label)s - administracja" + +#: templates/djadmin2/bootstrap/base.html:6 +#: templates/djadmin2/bootstrap/base.html:71 +#: templates/djadmin2/bootstrap/auth/login.html:15 +msgid "Site administration" +msgstr "Administracja stroną" + +#: templates/djadmin2/bootstrap/base.html:22 +msgid "API" +msgstr "API" + +#: templates/djadmin2/bootstrap/base.html:25 +msgid "Documentation" +msgstr "Dokumentacja" + +#: templates/djadmin2/bootstrap/base.html:34 +#, python-format +msgid "Logged in as %(user)s" +msgstr "Zalogowano jako %(user)s" + +#: templates/djadmin2/bootstrap/base.html:40 +msgid "Change password" +msgstr "Zmień hasło" + +#: templates/djadmin2/bootstrap/base.html:42 +#: templates/djadmin2/bootstrap/auth/logout.html:11 +msgid "Log out" +msgstr "Wyloguj się" + +#: templates/djadmin2/bootstrap/index.html:13 +msgid "Recent Actions" +msgstr "Ostatnie akcje" + +#: templates/djadmin2/bootstrap/index.html:14 +msgid "My Actions" +msgstr "Moje akcje" + +#: templates/djadmin2/bootstrap/model_confirm_delete.html:4 +#: templates/djadmin2/bootstrap/model_confirm_delete.html:6 +#: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:4 +#: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:6 +msgid "Are you sure?" +msgstr "Jesteś pewien?" + +#: templates/djadmin2/bootstrap/model_confirm_delete.html:25 +#: templates/djadmin2/bootstrap/model_update_form.html:76 +#: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:21 +msgid "Delete" +msgstr "Usuń" + +#. Translators : this is singular, example : delete the post "My Title" +#: templates/djadmin2/bootstrap/model_confirm_delete.html:32 +#, python-format +msgid "" +"\n" +"Are you sure you want to delete the %(model_name)s \"%(object)s\"?\n" +msgstr "Czy chcesz skasować %(model_name)s \"%(object)s\"? Następujące elementy zostaną usunięte:" + +#: templates/djadmin2/bootstrap/model_confirm_delete.html:36 +msgid "" +"\n" +"The following item will be deleted:\n" +msgid_plural "" +"\n" +"All of the following items will be deleted:\n" +msgstr[0] "\nNastępujące element zostanie skasowany:\n" +msgstr[1] "\nNastępujące elementy zostaną skasowane:\n" +msgstr[2] "\nNastępujące elementy zostaną skasowane:\n\n" + +#: templates/djadmin2/bootstrap/model_confirm_delete.html:50 +#: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:44 +msgid "Yes, I'm sure" +msgstr "Tak, na pewno" + +#: templates/djadmin2/bootstrap/model_list.html:4 +#: templates/djadmin2/bootstrap/model_list.html:6 +#, python-format +msgid "Select %(model_name)s to change" +msgstr "Wybierz %(model_name)s aby zmienić" + +#: templates/djadmin2/bootstrap/model_list.html:31 +msgid "Search Term" +msgstr "Poszukiwane wyrażenie" + +#: templates/djadmin2/bootstrap/model_list.html:32 +msgid "Search" +msgstr "Szukaj" + +#: templates/djadmin2/bootstrap/model_list.html:59 +#, python-format +msgid "%(selected)s of %(total)s selected" +msgstr "%(selected)s z %(total)s wybranych" + +#: templates/djadmin2/bootstrap/model_list.html:63 +#, python-format +msgid "Add %(model_verbose_name)s" +msgstr "Dodaj %(model_verbose_name)s" + +#. Translators : examples : Add post, Change object +#: templates/djadmin2/bootstrap/model_update_form.html:6 +#: templates/djadmin2/bootstrap/model_update_form.html:9 +#, python-format +msgid "%(action_name)s %(model_name)s" +msgstr "%(action)s %(model_name)s" + +#: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:27 +#, python-format +msgid "" +"\n" +"Are you sure you want to delete the selected %(objects_name)s? The following item will be deleted:\n" +msgid_plural "" +"\n" +"Are you sure you want to delete the selected %(objects_name)s? The following items will be deleted:\n" +msgstr[0] "Czy chcesz skasować wybrany %(objects_name)s? Następujący obiekt zostanie usunięty:" +msgstr[1] "Czy chcesz skasować wybrane %(objects_name)s? Następujące obiekty zostaną usunięte:" +msgstr[2] "Czy chcesz skasować wybrane %(objects_name)s? Następujące elementy zostaną usunięte:" + +#: templates/djadmin2/bootstrap/auth/login.html:15 +#: templates/djadmin2/bootstrap/auth/login.html:52 +msgid "Log in" +msgstr "Zaloguj się" + +#: templates/djadmin2/bootstrap/auth/login.html:27 +#: templates/djadmin2/bootstrap/auth/password_change_form.html:24 +msgid "Please correct the error below." +msgid_plural "Please correct the errors below." +msgstr[0] "Proszę, popraw poniższy błąd." +msgstr[1] "Proszę, popraw poniższe błędy." +msgstr[2] "Proszę popraw poniższe błędy." + +#: templates/djadmin2/bootstrap/auth/logout.html:17 +msgid "Thanks for spending some quality time with the Web site today." +msgstr "Dziękujemy za czas spędzony na tej stronie." + +#: templates/djadmin2/bootstrap/auth/logout.html:18 +msgid "Log in again" +msgstr "Zaloguj się ponownie" + +#: templates/djadmin2/bootstrap/auth/password_change_done.html:6 +#: templates/djadmin2/bootstrap/auth/password_change_done.html:7 +#: templates/djadmin2/bootstrap/auth/password_change_done.html:14 +msgid "Password change successful" +msgstr "Hasło zostało pomyślnie zmienione" + +#: templates/djadmin2/bootstrap/auth/password_change_done.html:20 +msgid "Your password was changed." +msgstr "Twoje hasło zostało zmienione." + +#: templates/djadmin2/bootstrap/auth/password_change_form.html:6 +#: templates/djadmin2/bootstrap/auth/password_change_form.html:13 +msgid "Password change" +msgstr "Zmiana hasła" + +#: templates/djadmin2/bootstrap/auth/password_change_form.html:20 +msgid "" +"Please enter your old password, for security's sake, and then enter your new" +" password twice so we can verify you typed it in correctly." +msgstr "W celach bezpieczeństwa podaj swoje stare hasło oraz wprowadź dwukrotnie nowe hasło, by można było zweryfikować jego poprawność." + +#: templates/djadmin2/bootstrap/auth/password_change_form.html:31 +msgid "Change my password" +msgstr "Zmień moje hasło" + +#: templates/djadmin2/bootstrap/includes/action_buttons.html:3 +msgid "Save and add another" +msgstr "Zapisz i dodaj nowe" + +#: templates/djadmin2/bootstrap/includes/action_buttons.html:4 +msgid "Save and continue editing" +msgstr "Zapisz i kontynuuj edycję" + +#: templates/djadmin2/bootstrap/includes/action_buttons.html:5 +msgid "Save" +msgstr "Zapisz" diff --git a/djadmin2/locale/pt_BR/LC_MESSAGES/django.po b/djadmin2/locale/pt_BR/LC_MESSAGES/django.po new file mode 100644 index 0000000..b6d04bd --- /dev/null +++ b/djadmin2/locale/pt_BR/LC_MESSAGES/django.po @@ -0,0 +1,264 @@ +# This file is distributed under the same license as the django-admin2 package. +# +# Translators: +# Translators: +# andrewsmedina , 2013 +# Douglas Miranda , 2013 +msgid "" +msgstr "" +"Project-Id-Version: django-admin2\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-07-07 11:01+0200\n" +"PO-Revision-Date: 2013-07-09 05:03+0000\n" +"Last-Translator: Douglas Miranda \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/django-admin2/language/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: actions.py:26 +msgid "" +"Items must be selected in order to perform actions on them. No items have " +"been changed." +msgstr "Os itens devem ser selecionados, a fim de executar ações sobre eles. Não há itens que foram alterados." + +#: actions.py:147 +msgid "Delete selected items" +msgstr "Remover itens selecionados" + +#: actions.py:151 +#, python-format +msgctxt "singular form" +msgid "Successfully deleted %(count)s %(items)s" +msgstr "%(count)s %(items)s removidos com sucesso" + +#: actions.py:155 +#, python-format +msgctxt "plural form" +msgid "Successfully deleted %(count)s %(items)s" +msgstr "%(count)s %(items)s removidos com sucesso" + +#: filters.py:40 +msgid "Unknown" +msgstr "Desconhecido" + +#: filters.py:41 +msgid "Yes" +msgstr "Sim" + +#: filters.py:42 +msgid "No" +msgstr "Não" + +#. Translators : %(username)s will be replaced by the username_field name +#. (default : username, but could be email, or something else) +#: forms.py:240 +#, python-format +msgid "" +"Please enter the correct %(username)s and password for a staff account. Note" +" that both fields may be case-sensitive." +msgstr "Por favor digite o %(username)s e senha corretos para uma conta pessoal. Note-se que ambos os campos podem diferenciar maiúsculas de minúsculas." + +#: forms.py:251 +msgid "Please log in again, because your session has expired." +msgstr "Por favor autentique-se novamente, porque sua sessão expirou." + +#: views.py:200 templates/djadmin2/bootstrap/model_update_form.html:31 +#: templates/djadmin2/bootstrap/includes/app_model_list.html:38 +msgid "Change" +msgstr "Alterar" + +#: views.py:221 templates/djadmin2/bootstrap/includes/app_model_list.html:30 +msgid "Add" +msgstr "Adicionar" + +#: templates/djadmin2/bootstrap/app_index.html:6 +#: templates/djadmin2/bootstrap/base.html:55 +#: templates/djadmin2/bootstrap/model_confirm_delete.html:10 +#: templates/djadmin2/bootstrap/model_detail.html:11 +#: templates/djadmin2/bootstrap/model_list.html:14 +#: templates/djadmin2/bootstrap/model_update_form.html:13 +#: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:10 +#: templates/djadmin2/bootstrap/auth/logout.html:8 +#: templates/djadmin2/bootstrap/auth/password_change_done.html:11 +#: templates/djadmin2/bootstrap/auth/password_change_form.html:10 +msgid "Home" +msgstr "Página inicial" + +#: templates/djadmin2/bootstrap/app_index.html:12 +#, python-format +msgid "%(app_label)s administration" +msgstr "%(app_label)s administração" + +#: templates/djadmin2/bootstrap/base.html:6 +#: templates/djadmin2/bootstrap/base.html:71 +#: templates/djadmin2/bootstrap/auth/login.html:15 +msgid "Site administration" +msgstr "Administração" + +#: templates/djadmin2/bootstrap/base.html:22 +msgid "API" +msgstr "API" + +#: templates/djadmin2/bootstrap/base.html:25 +msgid "Documentation" +msgstr "Documentação" + +#: templates/djadmin2/bootstrap/base.html:34 +#, python-format +msgid "Logged in as %(user)s" +msgstr "Autenticado como %(user)s" + +#: templates/djadmin2/bootstrap/base.html:40 +msgid "Change password" +msgstr "Alterar senha" + +#: templates/djadmin2/bootstrap/base.html:42 +#: templates/djadmin2/bootstrap/auth/logout.html:11 +msgid "Log out" +msgstr "Sair" + +#: templates/djadmin2/bootstrap/index.html:13 +msgid "Recent Actions" +msgstr "Ações Recentes" + +#: templates/djadmin2/bootstrap/index.html:14 +msgid "My Actions" +msgstr "Minhas Ações" + +#: templates/djadmin2/bootstrap/model_confirm_delete.html:4 +#: templates/djadmin2/bootstrap/model_confirm_delete.html:6 +#: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:4 +#: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:6 +msgid "Are you sure?" +msgstr "Você está certo?" + +#: templates/djadmin2/bootstrap/model_confirm_delete.html:25 +#: templates/djadmin2/bootstrap/model_update_form.html:76 +#: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:21 +msgid "Delete" +msgstr "Remover" + +#. Translators : this is singular, example : delete the post "My Title" +#: templates/djadmin2/bootstrap/model_confirm_delete.html:32 +#, python-format +msgid "" +"\n" +"Are you sure you want to delete the %(model_name)s \"%(object)s\"?\n" +msgstr "Você está certo em querer remover os %(model_name)s \"%(object)s\"? Todos os seguintes itens serão removidos:" + +#: templates/djadmin2/bootstrap/model_confirm_delete.html:36 +msgid "" +"\n" +"The following item will be deleted:\n" +msgid_plural "" +"\n" +"All of the following items will be deleted:\n" +msgstr[0] "\nO item seguinte será removido:\n" +msgstr[1] "\nTodos os itens seguintes serão removidos:\n" + +#: templates/djadmin2/bootstrap/model_confirm_delete.html:50 +#: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:44 +msgid "Yes, I'm sure" +msgstr "Sim, eu estou certo" + +#: templates/djadmin2/bootstrap/model_list.html:4 +#: templates/djadmin2/bootstrap/model_list.html:6 +#, python-format +msgid "Select %(model_name)s to change" +msgstr "Selecione %(model_name)s para alterar" + +#: templates/djadmin2/bootstrap/model_list.html:31 +msgid "Search Term" +msgstr "Buscar Termo" + +#: templates/djadmin2/bootstrap/model_list.html:32 +msgid "Search" +msgstr "Buscar" + +#: templates/djadmin2/bootstrap/model_list.html:59 +#, python-format +msgid "%(selected)s of %(total)s selected" +msgstr "%(selected)s de %(total)s selecionados" + +#: templates/djadmin2/bootstrap/model_list.html:63 +#, python-format +msgid "Add %(model_verbose_name)s" +msgstr "Adicionar %(model_verbose_name)s" + +#. Translators : examples : Add post, Change object +#: templates/djadmin2/bootstrap/model_update_form.html:6 +#: templates/djadmin2/bootstrap/model_update_form.html:9 +#, python-format +msgid "%(action_name)s %(model_name)s" +msgstr "%(action)s %(model_name)s" + +#: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:27 +#, python-format +msgid "" +"\n" +"Are you sure you want to delete the selected %(objects_name)s? The following item will be deleted:\n" +msgid_plural "" +"\n" +"Are you sure you want to delete the selected %(objects_name)s? The following items will be deleted:\n" +msgstr[0] "Você está certo em querer remover o %(objects_name)s selecionado? Todos os itens seguintes serão removidos:" +msgstr[1] "Você está certo em querer remover os %(objects_name)s selecionados? Todo os itens seguintes serão removidos:" + +#: templates/djadmin2/bootstrap/auth/login.html:15 +#: templates/djadmin2/bootstrap/auth/login.html:52 +msgid "Log in" +msgstr "Autentique-se" + +#: templates/djadmin2/bootstrap/auth/login.html:27 +#: templates/djadmin2/bootstrap/auth/password_change_form.html:24 +msgid "Please correct the error below." +msgid_plural "Please correct the errors below." +msgstr[0] "Por favor corrija o erro abaixo." +msgstr[1] "Por favor, corrija os erros abaixo." + +#: templates/djadmin2/bootstrap/auth/logout.html:17 +msgid "Thanks for spending some quality time with the Web site today." +msgstr "Obrigado por passar algum tempo com o site hoje." + +#: templates/djadmin2/bootstrap/auth/logout.html:18 +msgid "Log in again" +msgstr "Autentique-se novamente" + +#: templates/djadmin2/bootstrap/auth/password_change_done.html:6 +#: templates/djadmin2/bootstrap/auth/password_change_done.html:7 +#: templates/djadmin2/bootstrap/auth/password_change_done.html:14 +msgid "Password change successful" +msgstr "Senha alterada com sucesso" + +#: templates/djadmin2/bootstrap/auth/password_change_done.html:20 +msgid "Your password was changed." +msgstr "Sua senha foi alterada." + +#: templates/djadmin2/bootstrap/auth/password_change_form.html:6 +#: templates/djadmin2/bootstrap/auth/password_change_form.html:13 +msgid "Password change" +msgstr "Alterar senha" + +#: templates/djadmin2/bootstrap/auth/password_change_form.html:20 +msgid "" +"Please enter your old password, for security's sake, and then enter your new" +" password twice so we can verify you typed it in correctly." +msgstr "Por favor, digite sua senha antiga, por questões de segurança, e, em seguida, digite a nova senha duas vezes, para que possamos verificar se você digitou corretamente." + +#: templates/djadmin2/bootstrap/auth/password_change_form.html:31 +msgid "Change my password" +msgstr "Alterar minha senha" + +#: templates/djadmin2/bootstrap/includes/action_buttons.html:3 +msgid "Save and add another" +msgstr "Salvar e adicionar outro" + +#: templates/djadmin2/bootstrap/includes/action_buttons.html:4 +msgid "Save and continue editing" +msgstr "Salvar e continuar editando" + +#: templates/djadmin2/bootstrap/includes/action_buttons.html:5 +msgid "Save" +msgstr "Salvar" diff --git a/djadmin2/locale/zh/LC_MESSAGES/django.po b/djadmin2/locale/zh/LC_MESSAGES/django.po new file mode 100644 index 0000000..59aa369 --- /dev/null +++ b/djadmin2/locale/zh/LC_MESSAGES/django.po @@ -0,0 +1,261 @@ +# This file is distributed under the same license as the django-admin2 package. +# +# Translators: +# Translators: +# EricHo , 2013 +# introom , 2013 +msgid "" +msgstr "" +"Project-Id-Version: django-admin2\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-07-07 11:01+0200\n" +"PO-Revision-Date: 2013-07-08 07:10+0000\n" +"Last-Translator: introom \n" +"Language-Team: Chinese (http://www.transifex.com/projects/p/django-admin2/language/zh/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: actions.py:26 +msgid "" +"Items must be selected in order to perform actions on them. No items have " +"been changed." +msgstr "请选择项目以进行后续操作。当前没有修改的项目。" + +#: actions.py:147 +msgid "Delete selected items" +msgstr "删除所选择的项目" + +#: actions.py:151 +#, python-format +msgctxt "singular form" +msgid "Successfully deleted %(count)s %(items)s" +msgstr "已成功地刪除%(count)s %(items)s " + +#: actions.py:155 +#, python-format +msgctxt "plural form" +msgid "Successfully deleted %(count)s %(items)s" +msgstr "已成功地刪除%(count)s %(items)s " + +#: filters.py:40 +msgid "Unknown" +msgstr "未知" + +#: filters.py:41 +msgid "Yes" +msgstr "是" + +#: filters.py:42 +msgid "No" +msgstr "否" + +#. Translators : %(username)s will be replaced by the username_field name +#. (default : username, but could be email, or something else) +#: forms.py:240 +#, python-format +msgid "" +"Please enter the correct %(username)s and password for a staff account. Note" +" that both fields may be case-sensitive." +msgstr "请输入正确的%(username)s和密码。注意大小写。" + +#: forms.py:251 +msgid "Please log in again, because your session has expired." +msgstr "由于您的会话已经过期,请重新登录。" + +#: views.py:200 templates/djadmin2/bootstrap/model_update_form.html:31 +#: templates/djadmin2/bootstrap/includes/app_model_list.html:38 +msgid "Change" +msgstr "修改" + +#: views.py:221 templates/djadmin2/bootstrap/includes/app_model_list.html:30 +msgid "Add" +msgstr "增加" + +#: templates/djadmin2/bootstrap/app_index.html:6 +#: templates/djadmin2/bootstrap/base.html:55 +#: templates/djadmin2/bootstrap/model_confirm_delete.html:10 +#: templates/djadmin2/bootstrap/model_detail.html:11 +#: templates/djadmin2/bootstrap/model_list.html:14 +#: templates/djadmin2/bootstrap/model_update_form.html:13 +#: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:10 +#: templates/djadmin2/bootstrap/auth/logout.html:8 +#: templates/djadmin2/bootstrap/auth/password_change_done.html:11 +#: templates/djadmin2/bootstrap/auth/password_change_form.html:10 +msgid "Home" +msgstr "首页" + +#: templates/djadmin2/bootstrap/app_index.html:12 +#, python-format +msgid "%(app_label)s administration" +msgstr "%(app_label)s 管理" + +#: templates/djadmin2/bootstrap/base.html:6 +#: templates/djadmin2/bootstrap/base.html:71 +#: templates/djadmin2/bootstrap/auth/login.html:15 +msgid "Site administration" +msgstr "站点管理" + +#: templates/djadmin2/bootstrap/base.html:22 +msgid "API" +msgstr "API" + +#: templates/djadmin2/bootstrap/base.html:25 +msgid "Documentation" +msgstr "文档" + +#: templates/djadmin2/bootstrap/base.html:34 +#, python-format +msgid "Logged in as %(user)s" +msgstr "登入用户:%(user)s" + +#: templates/djadmin2/bootstrap/base.html:40 +msgid "Change password" +msgstr "修改密码" + +#: templates/djadmin2/bootstrap/base.html:42 +#: templates/djadmin2/bootstrap/auth/logout.html:11 +msgid "Log out" +msgstr "登出" + +#: templates/djadmin2/bootstrap/index.html:13 +msgid "Recent Actions" +msgstr "最近的动作" + +#: templates/djadmin2/bootstrap/index.html:14 +msgid "My Actions" +msgstr "我的动作" + +#: templates/djadmin2/bootstrap/model_confirm_delete.html:4 +#: templates/djadmin2/bootstrap/model_confirm_delete.html:6 +#: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:4 +#: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:6 +msgid "Are you sure?" +msgstr "您确定吗?" + +#: templates/djadmin2/bootstrap/model_confirm_delete.html:25 +#: templates/djadmin2/bootstrap/model_update_form.html:76 +#: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:21 +msgid "Delete" +msgstr "删除" + +#. Translators : this is singular, example : delete the post "My Title" +#: templates/djadmin2/bootstrap/model_confirm_delete.html:32 +#, python-format +msgid "" +"\n" +"Are you sure you want to delete the %(model_name)s \"%(object)s\"?\n" +msgstr "您确定要删除 %(model_name)s \"%(object)s\"吗?所有以下项目将会被删除:" + +#: templates/djadmin2/bootstrap/model_confirm_delete.html:36 +msgid "" +"\n" +"The following item will be deleted:\n" +msgid_plural "" +"\n" +"All of the following items will be deleted:\n" +msgstr[0] "\n以下所有項目將被刪除:\n" + +#: templates/djadmin2/bootstrap/model_confirm_delete.html:50 +#: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:44 +msgid "Yes, I'm sure" +msgstr "是,我确定" + +#: templates/djadmin2/bootstrap/model_list.html:4 +#: templates/djadmin2/bootstrap/model_list.html:6 +#, python-format +msgid "Select %(model_name)s to change" +msgstr "选择修改 %(model_name)s" + +#: templates/djadmin2/bootstrap/model_list.html:31 +msgid "Search Term" +msgstr "搜索条目" + +#: templates/djadmin2/bootstrap/model_list.html:32 +msgid "Search" +msgstr "搜索" + +#: templates/djadmin2/bootstrap/model_list.html:59 +#, python-format +msgid "%(selected)s of %(total)s selected" +msgstr "共选择了%(selected)s/%(total)s" + +#: templates/djadmin2/bootstrap/model_list.html:63 +#, python-format +msgid "Add %(model_verbose_name)s" +msgstr "增加%(model_verbose_name)s" + +#. Translators : examples : Add post, Change object +#: templates/djadmin2/bootstrap/model_update_form.html:6 +#: templates/djadmin2/bootstrap/model_update_form.html:9 +#, python-format +msgid "%(action_name)s %(model_name)s" +msgstr "%(action)s %(model_name)s" + +#: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:27 +#, python-format +msgid "" +"\n" +"Are you sure you want to delete the selected %(objects_name)s? The following item will be deleted:\n" +msgid_plural "" +"\n" +"Are you sure you want to delete the selected %(objects_name)s? The following items will be deleted:\n" +msgstr[0] "您确定要删除所选择的%(objects_name)s吗?以下所有项目都将被删除:" + +#: templates/djadmin2/bootstrap/auth/login.html:15 +#: templates/djadmin2/bootstrap/auth/login.html:52 +msgid "Log in" +msgstr "登入" + +#: templates/djadmin2/bootstrap/auth/login.html:27 +#: templates/djadmin2/bootstrap/auth/password_change_form.html:24 +msgid "Please correct the error below." +msgid_plural "Please correct the errors below." +msgstr[0] "请更正以下错误。" + +#: templates/djadmin2/bootstrap/auth/logout.html:17 +msgid "Thanks for spending some quality time with the Web site today." +msgstr "感谢您访问本网站。" + +#: templates/djadmin2/bootstrap/auth/logout.html:18 +msgid "Log in again" +msgstr "重新登入" + +#: templates/djadmin2/bootstrap/auth/password_change_done.html:6 +#: templates/djadmin2/bootstrap/auth/password_change_done.html:7 +#: templates/djadmin2/bootstrap/auth/password_change_done.html:14 +msgid "Password change successful" +msgstr "密码已成功被修改" + +#: templates/djadmin2/bootstrap/auth/password_change_done.html:20 +msgid "Your password was changed." +msgstr "您的密码已被修改" + +#: templates/djadmin2/bootstrap/auth/password_change_form.html:6 +#: templates/djadmin2/bootstrap/auth/password_change_form.html:13 +msgid "Password change" +msgstr "修改密码" + +#: templates/djadmin2/bootstrap/auth/password_change_form.html:20 +msgid "" +"Please enter your old password, for security's sake, and then enter your new" +" password twice so we can verify you typed it in correctly." +msgstr "出于安全因素,请您输入旧密码。然后再输入两次新密码以便我们确保您正确地输入了新密码。" + +#: templates/djadmin2/bootstrap/auth/password_change_form.html:31 +msgid "Change my password" +msgstr "修改我的密码" + +#: templates/djadmin2/bootstrap/includes/action_buttons.html:3 +msgid "Save and add another" +msgstr "保存并且增加下一个" + +#: templates/djadmin2/bootstrap/includes/action_buttons.html:4 +msgid "Save and continue editing" +msgstr "保存并且继续编辑" + +#: templates/djadmin2/bootstrap/includes/action_buttons.html:5 +msgid "Save" +msgstr "保存" diff --git a/example/blog/locale/it/LC_MESSAGES/django.po b/example/blog/locale/it/LC_MESSAGES/django.po new file mode 100644 index 0000000..e8d9b69 --- /dev/null +++ b/example/blog/locale/it/LC_MESSAGES/django.po @@ -0,0 +1,155 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# brente , 2013 +msgid "" +msgstr "" +"Project-Id-Version: django-admin2\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-07-07 11:13+0200\n" +"PO-Revision-Date: 2013-07-07 17:42+0000\n" +"Last-Translator: brente \n" +"Language-Team: Italian (http://www.transifex.com/projects/p/django-admin2/language/it/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: it\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: actions.py:13 +msgid "Publish selected items" +msgstr "Pubblica gli elementi selezionati" + +#: actions.py:14 +#, python-format +msgctxt "singular form" +msgid "Successfully published %(count)s %(items)s" +msgstr "%(items)s pubblicate/i con successo: %(count)s" + +#: actions.py:15 +#, python-format +msgctxt "plural form" +msgid "Successfully published %(count)s %(items)s" +msgstr "%(items)s pubblicate/i con successo: %(count)s" + +#: admin2.py:18 +msgid "Items unpublished" +msgstr "" + +#. Translators : action description +#: admin2.py:21 +msgid "Unpublish selected items" +msgstr "" + +#: models.py:8 +msgid "title" +msgstr "titolo" + +#: models.py:9 models.py:22 +msgid "body" +msgstr "contenuto" + +#: models.py:10 +msgid "published" +msgstr "pubblicato" + +#: models.py:16 models.py:21 +msgid "post" +msgstr "post" + +#: models.py:17 +msgid "posts" +msgstr "post" + +#: models.py:28 +msgid "comment" +msgstr "commento" + +#: models.py:29 +msgid "comments" +msgstr "commenti" + +#: templates/blog/home.html:9 +msgid "Imagine that this is a real site" +msgstr "Immagina che questo sia un sito reale" + +#: templates/blog/home.html:11 +msgid "Pretend that this is the homepage of a big Django site." +msgstr "Questa potrebbe essere la home page di un grande sito web Django." + +#: templates/blog/home.html:13 +msgid "Imagine lots of things are here:" +msgstr "Immagina di trovare qui molte cose:" + +#: templates/blog/home.html:15 +msgid "A blog" +msgstr "Un blog" + +#: templates/blog/home.html:16 +msgid "Comments" +msgstr "Commenti" + +#: templates/blog/home.html:17 +msgid "And so on..." +msgstr "E così via..." + +#: templates/blog/home.html:20 +msgid "" +"In other words, these are items that we can introspect through the Django " +"admin." +msgstr "In altre parole, questi sono gli elementi su cui possiamo usare l'introspezione attraverso l'admin di Django." + +#: templates/blog/home.html:22 +msgid "Under the hood" +msgstr "" + +#: templates/blog/home.html:24 +msgid "" +"Now, explore the Django admin for example.com. Click on either of the " +"following:" +msgstr "" + +#: templates/blog/home.html:30 +#, python-format +msgid "The original Django Admin" +msgstr "" + +#: templates/blog/home.html:36 +msgid "Powered by django.contrib.admin. This is just here for reference." +msgstr "Powered by django.contrib.admin. Disponibile solo come riferimento." + +#: templates/blog/home.html:39 +#, python-format +msgid "The new Admin2" +msgstr "Il nuovo Admin2" + +#: templates/blog/home.html:45 +msgid "Powered by django-admin2." +msgstr "Powered by django-admin2." + +#: templates/djadmin2/bootstrap/actions/publish_selected_items.html:4 +#: templates/djadmin2/bootstrap/actions/publish_selected_items.html:6 +msgid "Are you sure?" +msgstr "Confermi?" + +#: templates/djadmin2/bootstrap/actions/publish_selected_items.html:9 +msgid "Home" +msgstr "Home" + +#: templates/djadmin2/bootstrap/actions/publish_selected_items.html:12 +#: templates/djadmin2/bootstrap/actions/publish_selected_items.html:37 +msgid "Publish" +msgstr "Pubblica" + +#: templates/djadmin2/bootstrap/actions/publish_selected_items.html:19 +#, python-format +msgid "" +"Are you sure you want to publish the selected %(objects_name)s?\n" +" The following item will be published:\n" +msgid_plural "" +"Are you sure you want to publish the selected %(objects_name)s?\n" +" The following items will be published:\n" +msgstr[0] "" +msgstr[1] "" diff --git a/example/blog/locale/nl/LC_MESSAGES/django.po b/example/blog/locale/nl/LC_MESSAGES/django.po new file mode 100644 index 0000000..3e58eff --- /dev/null +++ b/example/blog/locale/nl/LC_MESSAGES/django.po @@ -0,0 +1,155 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Density21.5 , 2013 +msgid "" +msgstr "" +"Project-Id-Version: django-admin2\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-07-07 11:13+0200\n" +"PO-Revision-Date: 2013-07-08 10:51+0000\n" +"Last-Translator: Density21.5 \n" +"Language-Team: Dutch (http://www.transifex.com/projects/p/django-admin2/language/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: actions.py:13 +msgid "Publish selected items" +msgstr "Publiceer geselecteerde onderdelen" + +#: actions.py:14 +#, python-format +msgctxt "singular form" +msgid "Successfully published %(count)s %(items)s" +msgstr "%(count)s %(items)s zijn succesvol gepubliceerd" + +#: actions.py:15 +#, python-format +msgctxt "plural form" +msgid "Successfully published %(count)s %(items)s" +msgstr "%(count)s %(items)s zijn succesvol gepubliceerd" + +#: admin2.py:18 +msgid "Items unpublished" +msgstr "Ongepubliceerde onderdelen" + +#. Translators : action description +#: admin2.py:21 +msgid "Unpublish selected items" +msgstr "Ongepubliceerde geselecteerde onderdelen" + +#: models.py:8 +msgid "title" +msgstr "titel" + +#: models.py:9 models.py:22 +msgid "body" +msgstr "body" + +#: models.py:10 +msgid "published" +msgstr "gepubliceerd" + +#: models.py:16 models.py:21 +msgid "post" +msgstr "bericht" + +#: models.py:17 +msgid "posts" +msgstr "berichten" + +#: models.py:28 +msgid "comment" +msgstr "reactie" + +#: models.py:29 +msgid "comments" +msgstr "reacties" + +#: templates/blog/home.html:9 +msgid "Imagine that this is a real site" +msgstr "Stel u voor dat dit een echte site is" + +#: templates/blog/home.html:11 +msgid "Pretend that this is the homepage of a big Django site." +msgstr "Doe alsof dit de voorpagina is van een grote Django site." + +#: templates/blog/home.html:13 +msgid "Imagine lots of things are here:" +msgstr "Stel u voor dat hier een heleboel dingen staan:" + +#: templates/blog/home.html:15 +msgid "A blog" +msgstr "Een blog" + +#: templates/blog/home.html:16 +msgid "Comments" +msgstr "Reacties" + +#: templates/blog/home.html:17 +msgid "And so on..." +msgstr "En zo verder..." + +#: templates/blog/home.html:20 +msgid "" +"In other words, these are items that we can introspect through the Django " +"admin." +msgstr "Met andere woorden, dit zijn onderdelen die we van binnenuit kunnen bekijken door de Django admin." + +#: templates/blog/home.html:22 +msgid "Under the hood" +msgstr "'Under the hood'" + +#: templates/blog/home.html:24 +msgid "" +"Now, explore the Django admin for example.com. Click on either of the " +"following:" +msgstr "Nu gaan we de Django admin voor example.com verkennen. Klik op één van de volgende:" + +#: templates/blog/home.html:30 +#, python-format +msgid "The original Django Admin" +msgstr "De originele Django beheer" + +#: templates/blog/home.html:36 +msgid "Powered by django.contrib.admin. This is just here for reference." +msgstr "Powered by django.contrib.admin. Dit staat hier alleen ter verwijzing." + +#: templates/blog/home.html:39 +#, python-format +msgid "The new Admin2" +msgstr "De nieuwe Admin2" + +#: templates/blog/home.html:45 +msgid "Powered by django-admin2." +msgstr "Powered by django-admin2." + +#: templates/djadmin2/bootstrap/actions/publish_selected_items.html:4 +#: templates/djadmin2/bootstrap/actions/publish_selected_items.html:6 +msgid "Are you sure?" +msgstr "Weet u het zeker?" + +#: templates/djadmin2/bootstrap/actions/publish_selected_items.html:9 +msgid "Home" +msgstr "Home" + +#: templates/djadmin2/bootstrap/actions/publish_selected_items.html:12 +#: templates/djadmin2/bootstrap/actions/publish_selected_items.html:37 +msgid "Publish" +msgstr "Publiceren" + +#: templates/djadmin2/bootstrap/actions/publish_selected_items.html:19 +#, python-format +msgid "" +"Are you sure you want to publish the selected %(objects_name)s?\n" +" The following item will be published:\n" +msgid_plural "" +"Are you sure you want to publish the selected %(objects_name)s?\n" +" The following items will be published:\n" +msgstr[0] "Weet u zeker dat u %(objects_name)s wilt publiceren?\nHet volgende onderdeel zal worden gepubliceerd:\n\n" +msgstr[1] "Weet u zeker dat u %(objects_name)s wilt publiceren?\nDe volgende onderdelen zullen worden gepubliceerd:\n" diff --git a/example/blog/locale/pl_PL/LC_MESSAGES/django.po b/example/blog/locale/pl_PL/LC_MESSAGES/django.po new file mode 100644 index 0000000..4caf79d --- /dev/null +++ b/example/blog/locale/pl_PL/LC_MESSAGES/django.po @@ -0,0 +1,157 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# dasm , 2013 +# Marcin Jabrzyk , 2013 +msgid "" +msgstr "" +"Project-Id-Version: django-admin2\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-07-07 11:13+0200\n" +"PO-Revision-Date: 2013-07-08 18:02+0000\n" +"Last-Translator: dasm \n" +"Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/django-admin2/language/pl_PL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pl_PL\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#: actions.py:13 +msgid "Publish selected items" +msgstr "Opublikuj wybrane elementy" + +#: actions.py:14 +#, python-format +msgctxt "singular form" +msgid "Successfully published %(count)s %(items)s" +msgstr "Opublikowano %(count)s %(items)s" + +#: actions.py:15 +#, python-format +msgctxt "plural form" +msgid "Successfully published %(count)s %(items)s" +msgstr "Opublikowano %(count)s %(items)s" + +#: admin2.py:18 +msgid "Items unpublished" +msgstr "Elementy niepublikowane" + +#. Translators : action description +#: admin2.py:21 +msgid "Unpublish selected items" +msgstr "Zablokuj publikację wybranych elementów" + +#: models.py:8 +msgid "title" +msgstr "tytuł" + +#: models.py:9 models.py:22 +msgid "body" +msgstr "treść" + +#: models.py:10 +msgid "published" +msgstr "opublikowany" + +#: models.py:16 models.py:21 +msgid "post" +msgstr "wpis" + +#: models.py:17 +msgid "posts" +msgstr "wpisy" + +#: models.py:28 +msgid "comment" +msgstr "komentarz" + +#: models.py:29 +msgid "comments" +msgstr "komentarze" + +#: templates/blog/home.html:9 +msgid "Imagine that this is a real site" +msgstr "Wyobraź sobie że to jest prawdziwa strona" + +#: templates/blog/home.html:11 +msgid "Pretend that this is the homepage of a big Django site." +msgstr "Udajmy, że to jest główna strona wielkiego serwisu opartego o Django." + +#: templates/blog/home.html:13 +msgid "Imagine lots of things are here:" +msgstr "Wyobraź sobie tutaj dużo rzeczy:" + +#: templates/blog/home.html:15 +msgid "A blog" +msgstr "Blog" + +#: templates/blog/home.html:16 +msgid "Comments" +msgstr "Komentarze" + +#: templates/blog/home.html:17 +msgid "And so on..." +msgstr "I tak dalej..." + +#: templates/blog/home.html:20 +msgid "" +"In other words, these are items that we can introspect through the Django " +"admin." +msgstr "Innymi słowy, są to elementy którymi możemy zarządzać przez panel administratora Django." + +#: templates/blog/home.html:22 +msgid "Under the hood" +msgstr "Pod maską" + +#: templates/blog/home.html:24 +msgid "" +"Now, explore the Django admin for example.com. Click on either of the " +"following:" +msgstr "Odkryjmy teraz panel administratora Django dla example.com. Kliknij na jeden z poniższych linków:" + +#: templates/blog/home.html:30 +#, python-format +msgid "The original Django Admin" +msgstr "Oryginalny Django Admin" + +#: templates/blog/home.html:36 +msgid "Powered by django.contrib.admin. This is just here for reference." +msgstr "Napędzany przez django.contrib.admin. Jest tutaj tylko dla przykładu." + +#: templates/blog/home.html:39 +#, python-format +msgid "The new Admin2" +msgstr "Nowy Admin2" + +#: templates/blog/home.html:45 +msgid "Powered by django-admin2." +msgstr "Napędzany przez django-admin2." + +#: templates/djadmin2/bootstrap/actions/publish_selected_items.html:4 +#: templates/djadmin2/bootstrap/actions/publish_selected_items.html:6 +msgid "Are you sure?" +msgstr "Czy jesteś pewnien?" + +#: templates/djadmin2/bootstrap/actions/publish_selected_items.html:9 +msgid "Home" +msgstr "Początek" + +#: templates/djadmin2/bootstrap/actions/publish_selected_items.html:12 +#: templates/djadmin2/bootstrap/actions/publish_selected_items.html:37 +msgid "Publish" +msgstr "Opublikuj" + +#: templates/djadmin2/bootstrap/actions/publish_selected_items.html:19 +#, python-format +msgid "" +"Are you sure you want to publish the selected %(objects_name)s?\n" +" The following item will be published:\n" +msgid_plural "" +"Are you sure you want to publish the selected %(objects_name)s?\n" +" The following items will be published:\n" +msgstr[0] "Czy chcesz opublikować wybrany %(objects_name)s?⏎\nNastępujący element zostanie opublikowany:⏎\n" +msgstr[1] "Czy chcesz opublikować wybrane %(objects_name)s?⏎\nNastępujące elementy zostaną opublikowane:⏎\n" +msgstr[2] "Czy chcesz opublikować wybrane %(objects_name)s?⏎\nNastępujące elementy zostaną opublikowane:⏎\n" diff --git a/example/blog/locale/pt_BR/LC_MESSAGES/django.po b/example/blog/locale/pt_BR/LC_MESSAGES/django.po new file mode 100644 index 0000000..90cc9a5 --- /dev/null +++ b/example/blog/locale/pt_BR/LC_MESSAGES/django.po @@ -0,0 +1,156 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# andrewsmedina , 2013 +# Douglas Miranda , 2013 +msgid "" +msgstr "" +"Project-Id-Version: django-admin2\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-07-07 11:13+0200\n" +"PO-Revision-Date: 2013-07-09 04:57+0000\n" +"Last-Translator: Douglas Miranda \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/django-admin2/language/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: actions.py:13 +msgid "Publish selected items" +msgstr "Publicar os itens selecionados" + +#: actions.py:14 +#, python-format +msgctxt "singular form" +msgid "Successfully published %(count)s %(items)s" +msgstr "%(count)s %(items)s publicados com sucesso" + +#: actions.py:15 +#, python-format +msgctxt "plural form" +msgid "Successfully published %(count)s %(items)s" +msgstr "%(count)s %(items)s publicados com sucesso" + +#: admin2.py:18 +msgid "Items unpublished" +msgstr "Itens publicados" + +#. Translators : action description +#: admin2.py:21 +msgid "Unpublish selected items" +msgstr "Despublicar os itens selecionados" + +#: models.py:8 +msgid "title" +msgstr "título" + +#: models.py:9 models.py:22 +msgid "body" +msgstr "corpo" + +#: models.py:10 +msgid "published" +msgstr "publicado" + +#: models.py:16 models.py:21 +msgid "post" +msgstr "post" + +#: models.py:17 +msgid "posts" +msgstr "posts" + +#: models.py:28 +msgid "comment" +msgstr "comentário" + +#: models.py:29 +msgid "comments" +msgstr "comentários" + +#: templates/blog/home.html:9 +msgid "Imagine that this is a real site" +msgstr "Imagine que este é um site real" + +#: templates/blog/home.html:11 +msgid "Pretend that this is the homepage of a big Django site." +msgstr "Finja que esta é a página inicial de um site grande feito em Django" + +#: templates/blog/home.html:13 +msgid "Imagine lots of things are here:" +msgstr "Imagine um monte de coisas aqui:" + +#: templates/blog/home.html:15 +msgid "A blog" +msgstr "Um blog" + +#: templates/blog/home.html:16 +msgid "Comments" +msgstr "Comentários" + +#: templates/blog/home.html:17 +msgid "And so on..." +msgstr "E assim por diante..." + +#: templates/blog/home.html:20 +msgid "" +"In other words, these are items that we can introspect through the Django " +"admin." +msgstr "Em outras palavras, estes itens são os que podemos introspectar através da administração do Django." + +#: templates/blog/home.html:22 +msgid "Under the hood" +msgstr "Sob o capô" + +#: templates/blog/home.html:24 +msgid "" +"Now, explore the Django admin for example.com. Click on either of the " +"following:" +msgstr "Agora, explore a administração do Django para o example.com. Clique em uma das seguintes opções:" + +#: templates/blog/home.html:30 +#, python-format +msgid "The original Django Admin" +msgstr "Original Django Admin" + +#: templates/blog/home.html:36 +msgid "Powered by django.contrib.admin. This is just here for reference." +msgstr "Desenvolvido com django.contrib.admin. Está aqui apenas para referência." + +#: templates/blog/home.html:39 +#, python-format +msgid "The new Admin2" +msgstr "O novo Admin2" + +#: templates/blog/home.html:45 +msgid "Powered by django-admin2." +msgstr "Desenvolvido com django-admin2." + +#: templates/djadmin2/bootstrap/actions/publish_selected_items.html:4 +#: templates/djadmin2/bootstrap/actions/publish_selected_items.html:6 +msgid "Are you sure?" +msgstr "Você está certo?" + +#: templates/djadmin2/bootstrap/actions/publish_selected_items.html:9 +msgid "Home" +msgstr "Página inicial" + +#: templates/djadmin2/bootstrap/actions/publish_selected_items.html:12 +#: templates/djadmin2/bootstrap/actions/publish_selected_items.html:37 +msgid "Publish" +msgstr "Publicar" + +#: templates/djadmin2/bootstrap/actions/publish_selected_items.html:19 +#, python-format +msgid "" +"Are you sure you want to publish the selected %(objects_name)s?\n" +" The following item will be published:\n" +msgid_plural "" +"Are you sure you want to publish the selected %(objects_name)s?\n" +" The following items will be published:\n" +msgstr[0] "Você está certo em querer publicar o %(objects_name)s selecionado?\nO item seguinte será publicado:\n" +msgstr[1] "Você está certo em querer publicar os %(objects_name)s selecionados?\nOs itens seguintes serão publicados:\n" diff --git a/example/blog/locale/zh/LC_MESSAGES/django.po b/example/blog/locale/zh/LC_MESSAGES/django.po new file mode 100644 index 0000000..1790fd5 --- /dev/null +++ b/example/blog/locale/zh/LC_MESSAGES/django.po @@ -0,0 +1,155 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# EricHo , 2013 +# Xiayun (Joy) Sun , 2013 +msgid "" +msgstr "" +"Project-Id-Version: django-admin2\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-07-07 11:13+0200\n" +"PO-Revision-Date: 2013-07-08 13:07+0000\n" +"Last-Translator: Xiayun (Joy) Sun \n" +"Language-Team: Chinese (http://www.transifex.com/projects/p/django-admin2/language/zh/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: actions.py:13 +msgid "Publish selected items" +msgstr "發布所選項目" + +#: actions.py:14 +#, python-format +msgctxt "singular form" +msgid "Successfully published %(count)s %(items)s" +msgstr "成功發布了 %(count)s %(items)s" + +#: actions.py:15 +#, python-format +msgctxt "plural form" +msgid "Successfully published %(count)s %(items)s" +msgstr "成功發布了 %(count)s %(items)s" + +#: admin2.py:18 +msgid "Items unpublished" +msgstr "項目尚未發布" + +#. Translators : action description +#: admin2.py:21 +msgid "Unpublish selected items" +msgstr "未發布所選項目" + +#: models.py:8 +msgid "title" +msgstr "標題" + +#: models.py:9 models.py:22 +msgid "body" +msgstr "" + +#: models.py:10 +msgid "published" +msgstr "已發佈" + +#: models.py:16 models.py:21 +msgid "post" +msgstr "文章" + +#: models.py:17 +msgid "posts" +msgstr "文章" + +#: models.py:28 +msgid "comment" +msgstr "留言" + +#: models.py:29 +msgid "comments" +msgstr "留言" + +#: templates/blog/home.html:9 +msgid "Imagine that this is a real site" +msgstr "試想一下,這是一個真正的網站" + +#: templates/blog/home.html:11 +msgid "Pretend that this is the homepage of a big Django site." +msgstr "假設這是一個大型Django網站的首頁" + +#: templates/blog/home.html:13 +msgid "Imagine lots of things are here:" +msgstr "" + +#: templates/blog/home.html:15 +msgid "A blog" +msgstr "" + +#: templates/blog/home.html:16 +msgid "Comments" +msgstr "留言" + +#: templates/blog/home.html:17 +msgid "And so on..." +msgstr "" + +#: templates/blog/home.html:20 +msgid "" +"In other words, these are items that we can introspect through the Django " +"admin." +msgstr "換句話說,這些都是我們可以通過\"Django管理\"內部檢查的項目。" + +#: templates/blog/home.html:22 +msgid "Under the hood" +msgstr "運作原理" + +#: templates/blog/home.html:24 +msgid "" +"Now, explore the Django admin for example.com. Click on either of the " +"following:" +msgstr "" + +#: templates/blog/home.html:30 +#, python-format +msgid "The original Django Admin" +msgstr "" + +#: templates/blog/home.html:36 +msgid "Powered by django.contrib.admin. This is just here for reference." +msgstr "" + +#: templates/blog/home.html:39 +#, python-format +msgid "The new Admin2" +msgstr "" + +#: templates/blog/home.html:45 +msgid "Powered by django-admin2." +msgstr "基於django-admin2" + +#: templates/djadmin2/bootstrap/actions/publish_selected_items.html:4 +#: templates/djadmin2/bootstrap/actions/publish_selected_items.html:6 +msgid "Are you sure?" +msgstr "您确定吗?" + +#: templates/djadmin2/bootstrap/actions/publish_selected_items.html:9 +msgid "Home" +msgstr "首页" + +#: templates/djadmin2/bootstrap/actions/publish_selected_items.html:12 +#: templates/djadmin2/bootstrap/actions/publish_selected_items.html:37 +msgid "Publish" +msgstr "發布" + +#: templates/djadmin2/bootstrap/actions/publish_selected_items.html:19 +#, python-format +msgid "" +"Are you sure you want to publish the selected %(objects_name)s?\n" +" The following item will be published:\n" +msgid_plural "" +"Are you sure you want to publish the selected %(objects_name)s?\n" +" The following items will be published:\n" +msgstr[0] "您确定要發布所选择的%(objects_name)s吗?\n以下项目都将被發布:\n" diff --git a/example2/polls/locale/it/LC_MESSAGES/django.po b/example2/polls/locale/it/LC_MESSAGES/django.po new file mode 100644 index 0000000..4b5cc23 --- /dev/null +++ b/example2/polls/locale/it/LC_MESSAGES/django.po @@ -0,0 +1,63 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# brente , 2013 +msgid "" +msgstr "" +"Project-Id-Version: django-admin2\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-07-07 11:13+0200\n" +"PO-Revision-Date: 2013-07-07 17:47+0000\n" +"Last-Translator: brente \n" +"Language-Team: Italian (http://www.transifex.com/projects/p/django-admin2/language/it/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: it\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: models.py:9 +msgid "question" +msgstr "domanda" + +#: models.py:10 +msgid "date published" +msgstr "data pubblicazione" + +#: models.py:19 +msgid "Published recently?" +msgstr "Pubblicato di recente?" + +#: models.py:22 models.py:27 +msgid "poll" +msgstr "sondaggio" + +#: models.py:23 +msgid "polls" +msgstr "sondaggi" + +#: models.py:28 +msgid "choice text" +msgstr "" + +#: models.py:29 +msgid "votes" +msgstr "voti" + +#: models.py:35 +msgid "choice" +msgstr "scelta" + +#: models.py:36 +msgid "choices" +msgstr "scelte" + +#: templates/home.html:4 +msgid "Example Home" +msgstr "" + +#: templates/home.html:8 +msgid "(for reference)" +msgstr "(per riferimento)" diff --git a/example2/polls/locale/nl/LC_MESSAGES/django.po b/example2/polls/locale/nl/LC_MESSAGES/django.po new file mode 100644 index 0000000..123a39d --- /dev/null +++ b/example2/polls/locale/nl/LC_MESSAGES/django.po @@ -0,0 +1,63 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Density21.5 , 2013 +msgid "" +msgstr "" +"Project-Id-Version: django-admin2\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-07-07 11:13+0200\n" +"PO-Revision-Date: 2013-07-08 10:46+0000\n" +"Last-Translator: Density21.5 \n" +"Language-Team: Dutch (http://www.transifex.com/projects/p/django-admin2/language/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: models.py:9 +msgid "question" +msgstr "vraag" + +#: models.py:10 +msgid "date published" +msgstr "publicatiedatum" + +#: models.py:19 +msgid "Published recently?" +msgstr "Recent gepubliceerd?" + +#: models.py:22 models.py:27 +msgid "poll" +msgstr "enquête" + +#: models.py:23 +msgid "polls" +msgstr "enquêtes" + +#: models.py:28 +msgid "choice text" +msgstr "keuzetekst" + +#: models.py:29 +msgid "votes" +msgstr "stemmen" + +#: models.py:35 +msgid "choice" +msgstr "keuze" + +#: models.py:36 +msgid "choices" +msgstr "keuzes" + +#: templates/home.html:4 +msgid "Example Home" +msgstr "Voorbeeld Home" + +#: templates/home.html:8 +msgid "(for reference)" +msgstr "(ter verwijzing)" diff --git a/example2/polls/locale/pl_PL/LC_MESSAGES/django.po b/example2/polls/locale/pl_PL/LC_MESSAGES/django.po new file mode 100644 index 0000000..0879edf --- /dev/null +++ b/example2/polls/locale/pl_PL/LC_MESSAGES/django.po @@ -0,0 +1,64 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# dasm , 2013 +# Marcin Jabrzyk , 2013 +msgid "" +msgstr "" +"Project-Id-Version: django-admin2\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-07-07 11:13+0200\n" +"PO-Revision-Date: 2013-07-08 18:04+0000\n" +"Last-Translator: dasm \n" +"Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/django-admin2/language/pl_PL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pl_PL\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#: models.py:9 +msgid "question" +msgstr "pytanie" + +#: models.py:10 +msgid "date published" +msgstr "data publikacji" + +#: models.py:19 +msgid "Published recently?" +msgstr "Ostatnio opublikowane?" + +#: models.py:22 models.py:27 +msgid "poll" +msgstr "ankieta" + +#: models.py:23 +msgid "polls" +msgstr "ankiety" + +#: models.py:28 +msgid "choice text" +msgstr "tekst opcji" + +#: models.py:29 +msgid "votes" +msgstr "głosy" + +#: models.py:35 +msgid "choice" +msgstr "opcja" + +#: models.py:36 +msgid "choices" +msgstr "opcje" + +#: templates/home.html:4 +msgid "Example Home" +msgstr "Początek" + +#: templates/home.html:8 +msgid "(for reference)" +msgstr "(dla przykładu)" diff --git a/example2/polls/locale/pt_BR/LC_MESSAGES/django.po b/example2/polls/locale/pt_BR/LC_MESSAGES/django.po new file mode 100644 index 0000000..6d7ba78 --- /dev/null +++ b/example2/polls/locale/pt_BR/LC_MESSAGES/django.po @@ -0,0 +1,62 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: django-admin2\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-07-07 11:13+0200\n" +"PO-Revision-Date: 2013-07-09 05:00+0000\n" +"Last-Translator: Douglas Miranda \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/django-admin2/language/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: models.py:9 +msgid "question" +msgstr "pergunta" + +#: models.py:10 +msgid "date published" +msgstr "data de publicação" + +#: models.py:19 +msgid "Published recently?" +msgstr "Publicada recentemente? " + +#: models.py:22 models.py:27 +msgid "poll" +msgstr "enquete" + +#: models.py:23 +msgid "polls" +msgstr "enquetes" + +#: models.py:28 +msgid "choice text" +msgstr "texto da opção" + +#: models.py:29 +msgid "votes" +msgstr "votos" + +#: models.py:35 +msgid "choice" +msgstr "opção" + +#: models.py:36 +msgid "choices" +msgstr "opções" + +#: templates/home.html:4 +msgid "Example Home" +msgstr "Página inicial de exemplo" + +#: templates/home.html:8 +msgid "(for reference)" +msgstr "(para referência)" diff --git a/example2/polls/locale/tl_PH/LC_MESSAGES/django.po b/example2/polls/locale/tl_PH/LC_MESSAGES/django.po new file mode 100644 index 0000000..ff14e82 --- /dev/null +++ b/example2/polls/locale/tl_PH/LC_MESSAGES/django.po @@ -0,0 +1,63 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# rukku , 2013 +msgid "" +msgstr "" +"Project-Id-Version: django-admin2\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-07-07 11:13+0200\n" +"PO-Revision-Date: 2013-07-09 08:22+0000\n" +"Last-Translator: rukku \n" +"Language-Team: Tagalog (Philippines) (http://www.transifex.com/projects/p/django-admin2/language/tl_PH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tl_PH\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: models.py:9 +msgid "question" +msgstr "katanungan" + +#: models.py:10 +msgid "date published" +msgstr "" + +#: models.py:19 +msgid "Published recently?" +msgstr "Bagong limbag?" + +#: models.py:22 models.py:27 +msgid "poll" +msgstr "botohan" + +#: models.py:23 +msgid "polls" +msgstr "mga botohan" + +#: models.py:28 +msgid "choice text" +msgstr "" + +#: models.py:29 +msgid "votes" +msgstr "mga boto" + +#: models.py:35 +msgid "choice" +msgstr "sagot" + +#: models.py:36 +msgid "choices" +msgstr "mga sagot" + +#: templates/home.html:4 +msgid "Example Home" +msgstr "" + +#: templates/home.html:8 +msgid "(for reference)" +msgstr "" diff --git a/example2/polls/locale/zh/LC_MESSAGES/django.po b/example2/polls/locale/zh/LC_MESSAGES/django.po new file mode 100644 index 0000000..29cbe1b --- /dev/null +++ b/example2/polls/locale/zh/LC_MESSAGES/django.po @@ -0,0 +1,63 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# EricHo , 2013 +msgid "" +msgstr "" +"Project-Id-Version: django-admin2\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-07-07 11:13+0200\n" +"PO-Revision-Date: 2013-07-07 11:16+0000\n" +"Last-Translator: EricHo \n" +"Language-Team: Chinese (http://www.transifex.com/projects/p/django-admin2/language/zh/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: models.py:9 +msgid "question" +msgstr "問題" + +#: models.py:10 +msgid "date published" +msgstr "發布日期" + +#: models.py:19 +msgid "Published recently?" +msgstr "最近發布?" + +#: models.py:22 models.py:27 +msgid "poll" +msgstr "投票" + +#: models.py:23 +msgid "polls" +msgstr "投票" + +#: models.py:28 +msgid "choice text" +msgstr "選擇文字" + +#: models.py:29 +msgid "votes" +msgstr "投票" + +#: models.py:35 +msgid "choice" +msgstr "選擇" + +#: models.py:36 +msgid "choices" +msgstr "選擇" + +#: templates/home.html:4 +msgid "Example Home" +msgstr "首頁範本" + +#: templates/home.html:8 +msgid "(for reference)" +msgstr "(參考)" From 15f2d6a89ec86ca27c892f6273975a41a6261266 Mon Sep 17 00:00:00 2001 From: Danilo Bargen Date: Tue, 9 Jul 2013 11:42:22 +0200 Subject: [PATCH 04/12] Remove .mo from .gitignore --- .gitignore | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index bf63a2e..bbcfe75 100644 --- a/.gitignore +++ b/.gitignore @@ -20,10 +20,7 @@ pip-log.txt .coverage .tox -#Translations -*.mo - -#Mr Developer +# Mr Developer .mr.developer.cfg # Django From 450661348225be94960a1fcfb00d310148842665 Mon Sep 17 00:00:00 2001 From: Danilo Bargen Date: Tue, 9 Jul 2013 11:43:44 +0200 Subject: [PATCH 05/12] Fixed bug in .tx/config --- .tx/config | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.tx/config b/.tx/config index c7fbae0..6992427 100644 --- a/.tx/config +++ b/.tx/config @@ -4,18 +4,21 @@ lang_map = sr@latin:sr_Latn [django-admin2.djadmin2po] file_filter = djadmin2/locale//LC_MESSAGES/django.po -source_filter = djadmin2/locale/en/LC_MESSAGES/django.po +source_file = djadmin2/locale/en/LC_MESSAGES/django.po source_lang = en_US +type = PO minimum_perc = 80 [django-admin2.example-app] file_filter = example/blog/locale//LC_MESSAGES/django.po -source_filter = example/blog/locale/en/LC_MESSAGES/django.po +source_file = example/blog/locale/en/LC_MESSAGES/django.po source_lang = en_US +type = PO minimum_perc = 50 [django-admin2.example2-app] file_filter = example2/polls/locale//LC_MESSAGES/django.po -source_filter = example2/polls/locale/en/LC_MESSAGES/django.po +source_file = example2/polls/locale/en/LC_MESSAGES/django.po source_lang = en_US +type = PO minimum_perc = 50 From d5a33da0a38653ce47b166715ccce859f99ac6c9 Mon Sep 17 00:00:00 2001 From: Danilo Bargen Date: Tue, 9 Jul 2013 11:57:09 +0200 Subject: [PATCH 06/12] Added pulltx / pushtx to i18n.sh --- i18n.sh | 61 ++++++++++++++++++++++++++++++++++++++++++++++++--------- 1 file changed, 52 insertions(+), 9 deletions(-) diff --git a/i18n.sh b/i18n.sh index f18a4ae..60669a6 100755 --- a/i18n.sh +++ b/i18n.sh @@ -1,14 +1,32 @@ #!/bin/bash -# Make sure `django-admin.py` is available +### Helper functions -hash django-admin.py 2>/dev/null || - { echo >&2 "django-admin.py not found. Please install Django."; exit 1; } +function assert_django { + hash django-admin.py 2>/dev/null || + { echo >&2 "django-admin.py not found. Please install Django."; exit 1; } +} + +function assert_tx { + hash tx 2>/dev/null || + { echo >&2 "tx not found. Please install transifex-client."; exit 1; } +} + +function are_you_sure { + read -r -p "$1 Are you sure? [y/n] " response + if [[ $response =~ ^([yY][eE][sS]|[yY])$ ]] + then + : + else + exit 1 + fi +} -# Functions +### Command functions -function makemessages() { +function makemessages { + assert_django echo "### Processing djadmin2..." ( cd djadmin2; django-admin.py makemessages -a ) echo "### Processing example app..." @@ -17,7 +35,8 @@ function makemessages() { ( cd example2/polls; django-admin.py makemessages -a ) } -function compilemessages() { +function compilemessages { + assert_django echo "### Processing djadmin2..." ( cd djadmin2; django-admin.py compilemessages ) echo "### Processing example app..." @@ -26,14 +45,29 @@ function compilemessages() { ( cd example2/polls; django-admin.py compilemessages ) } +function pulltx { + assert_tx + echo "### Pulling new translations from Transifex..." + tx pull -a +} -# Parse arguments +function pushtx { + assert_tx + are_you_sure "Warning: This might destroy existing translations." + echo "### Pushing translations and sources to Transifex..." + tx push -s +} + + +### Parse arguments case $1 in "") echo "Available commands:" - echo "--- makemessages" - echo "--- compilemessages"; + echo "--- makemessages: Generate or update .po files" + echo "--- compilemessages: Compile .po files to .mo files"; + echo "--- pulltx: Pull new translations from Transifex"; + echo "--- pushtx: Push translations and sources to Transifex"; ;; "makemessages") makemessages @@ -41,4 +75,13 @@ case $1 in "compilemessages") compilemessages ;; + "pulltx") + pulltx + ;; + "pushtx") + pushtx + ;; + *) + echo "Unknown command: $1" + ;; esac From 4f70167f49056e5b39fda8d344413c2697e7e063 Mon Sep 17 00:00:00 2001 From: Danilo Bargen Date: Tue, 9 Jul 2013 12:08:26 +0200 Subject: [PATCH 07/12] Added checkmessages command to i18n.sh --- i18n.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/i18n.sh b/i18n.sh index 60669a6..960f6a9 100755 --- a/i18n.sh +++ b/i18n.sh @@ -45,6 +45,12 @@ function compilemessages { ( cd example2/polls; django-admin.py compilemessages ) } +function checkmessages { + ls -1 djadmin2/locale/*/LC_MESSAGES/django.po | xargs -I {} msgfmt -c {} + ls -1 example/blog/locale/*/LC_MESSAGES/django.po | xargs -I {} msgfmt -c {} + ls -1 example2/polls/locale/*/LC_MESSAGES/django.po | xargs -I {} msgfmt -c {} +} + function pulltx { assert_tx echo "### Pulling new translations from Transifex..." @@ -66,6 +72,7 @@ case $1 in echo "Available commands:" echo "--- makemessages: Generate or update .po files" echo "--- compilemessages: Compile .po files to .mo files"; + echo "--- checkmessages: Check .po files for syntax errors"; echo "--- pulltx: Pull new translations from Transifex"; echo "--- pushtx: Push translations and sources to Transifex"; ;; @@ -75,6 +82,9 @@ case $1 in "compilemessages") compilemessages ;; + "checkmessages") + checkmessages + ;; "pulltx") pulltx ;; From daa2623430e8d3fd647d9bc9d881fe2f4c33d9b5 Mon Sep 17 00:00:00 2001 From: Danilo Bargen Date: Tue, 9 Jul 2013 12:20:56 +0200 Subject: [PATCH 08/12] Push translations too when using pushtx --- i18n.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/i18n.sh b/i18n.sh index 960f6a9..eba8098 100755 --- a/i18n.sh +++ b/i18n.sh @@ -59,9 +59,9 @@ function pulltx { function pushtx { assert_tx - are_you_sure "Warning: This might destroy existing translations." + are_you_sure "Warning: This might destroy existing translations. Probably you should pull first." echo "### Pushing translations and sources to Transifex..." - tx push -s + tx push -s -t } From 783401415d0cad5a698eb67fcce3b619566935e8 Mon Sep 17 00:00:00 2001 From: Danilo Bargen Date: Tue, 9 Jul 2013 12:21:07 +0200 Subject: [PATCH 09/12] Added updated translation files from transifex --- djadmin2/locale/bs/LC_MESSAGES/django.po | 133 +++++++++++------- djadmin2/locale/ca/LC_MESSAGES/django.po | 63 +++++---- djadmin2/locale/de/LC_MESSAGES/django.po | 27 ++-- djadmin2/locale/en/LC_MESSAGES/django.po | 70 ++++----- djadmin2/locale/es/LC_MESSAGES/django.po | 63 +++++---- djadmin2/locale/fr/LC_MESSAGES/django.po | 63 +++++---- djadmin2/locale/it/LC_MESSAGES/django.po | 63 +++++---- djadmin2/locale/nl/LC_MESSAGES/django.po | 125 +++++++++------- djadmin2/locale/pl_PL/LC_MESSAGES/django.po | 133 +++++++++++------- djadmin2/locale/pt_BR/LC_MESSAGES/django.po | 121 +++++++++------- djadmin2/locale/sk/LC_MESSAGES/django.po | 24 ++-- djadmin2/locale/zh/LC_MESSAGES/django.po | 100 +++++++------ example/blog/locale/de/LC_MESSAGES/django.po | 55 +++++--- example/blog/locale/en/LC_MESSAGES/django.po | 36 +++-- example/blog/locale/fr/LC_MESSAGES/django.po | 26 ++-- example/blog/locale/it/LC_MESSAGES/django.po | 41 +++--- example/blog/locale/nl/LC_MESSAGES/django.po | 54 ++++--- .../blog/locale/pl_PL/LC_MESSAGES/django.po | 60 ++++---- .../blog/locale/pt_BR/LC_MESSAGES/django.po | 56 ++++---- example/blog/locale/sk/LC_MESSAGES/django.po | 48 ++++--- example/blog/locale/zh/LC_MESSAGES/django.po | 41 +++--- .../polls/locale/de/LC_MESSAGES/django.po | 31 ++-- .../polls/locale/en/LC_MESSAGES/django.po | 32 ++--- .../polls/locale/fr/LC_MESSAGES/django.po | 20 +-- .../polls/locale/it/LC_MESSAGES/django.po | 31 ++-- .../polls/locale/nl/LC_MESSAGES/django.po | 31 ++-- .../polls/locale/pl_PL/LC_MESSAGES/django.po | 34 ++--- .../polls/locale/pt_BR/LC_MESSAGES/django.po | 31 ++-- .../polls/locale/sk/LC_MESSAGES/django.po | 27 ++-- .../polls/locale/tl_PH/LC_MESSAGES/django.po | 31 ++-- .../polls/locale/zh/LC_MESSAGES/django.po | 31 ++-- 31 files changed, 927 insertions(+), 774 deletions(-) diff --git a/djadmin2/locale/bs/LC_MESSAGES/django.po b/djadmin2/locale/bs/LC_MESSAGES/django.po index f2d3e68..d2cc5f1 100644 --- a/djadmin2/locale/bs/LC_MESSAGES/django.po +++ b/djadmin2/locale/bs/LC_MESSAGES/django.po @@ -1,5 +1,5 @@ # This file is distributed under the same license as the django-admin2 package. -# +# # Translators: # Translators: # amarsahinovic, 2013 @@ -7,33 +7,37 @@ msgid "" msgstr "" "Project-Id-Version: django-admin2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-07 11:01+0200\n" +"POT-Creation-Date: 2013-07-09 11:57+0200\n" "PO-Revision-Date: 2013-07-07 21:32+0000\n" "Last-Translator: amarsahinovic\n" -"Language-Team: Bosnian (http://www.transifex.com/projects/p/django-admin2/language/bs/)\n" +"Language-Team: Bosnian (http://www.transifex.com/projects/p/django-admin2/" +"language/bs/)\n" +"Language: bs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bs\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: actions.py:26 +#: actions.py:29 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." -msgstr "Stavke moraju biti odabrane da bi se nad njima izvodile akcije. Nijedna stavka nije promijenjena." +msgstr "" +"Stavke moraju biti odabrane da bi se nad njima izvodile akcije. Nijedna " +"stavka nije promijenjena." -#: actions.py:147 +#: actions.py:149 msgid "Delete selected items" msgstr "Izbrišite odabrane stavke" -#: actions.py:151 +#: actions.py:153 #, python-format msgctxt "singular form" msgid "Successfully deleted %(count)s %(items)s" msgstr "Uspješno izbrisano %(count)s %(items)s" -#: actions.py:155 +#: actions.py:157 #, python-format msgctxt "plural form" msgid "Successfully deleted %(count)s %(items)s" @@ -53,32 +57,34 @@ msgstr "Ne" #. Translators : %(username)s will be replaced by the username_field name #. (default : username, but could be email, or something else) -#: forms.py:240 +#: forms.py:242 #, python-format msgid "" -"Please enter the correct %(username)s and password for a staff account. Note" -" that both fields may be case-sensitive." -msgstr "Molimo unesite ispravno %(username)s i lozinku za račun osoblja. Imajte na umu da oba polja mogu sadržavati velika i mala slova." +"Please enter the correct %(username)s and password for a staff account. Note " +"that both fields may be case-sensitive." +msgstr "" +"Molimo unesite ispravno %(username)s i lozinku za račun osoblja. Imajte na " +"umu da oba polja mogu sadržavati velika i mala slova." -#: forms.py:251 +#: forms.py:253 msgid "Please log in again, because your session has expired." msgstr "Molimo prijavite se ponovo, vaša sesija je istekla." -#: views.py:200 templates/djadmin2/bootstrap/model_update_form.html:31 +#: views.py:228 templates/djadmin2/bootstrap/model_update_form.html:35 #: templates/djadmin2/bootstrap/includes/app_model_list.html:38 msgid "Change" msgstr "Promijeni" -#: views.py:221 templates/djadmin2/bootstrap/includes/app_model_list.html:30 +#: views.py:249 templates/djadmin2/bootstrap/includes/app_model_list.html:30 msgid "Add" msgstr "Dodaj" #: templates/djadmin2/bootstrap/app_index.html:6 -#: templates/djadmin2/bootstrap/base.html:55 +#: templates/djadmin2/bootstrap/base.html:56 #: templates/djadmin2/bootstrap/model_confirm_delete.html:10 #: templates/djadmin2/bootstrap/model_detail.html:11 #: templates/djadmin2/bootstrap/model_list.html:14 -#: templates/djadmin2/bootstrap/model_update_form.html:13 +#: templates/djadmin2/bootstrap/model_update_form.html:17 #: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:10 #: templates/djadmin2/bootstrap/auth/logout.html:8 #: templates/djadmin2/bootstrap/auth/password_change_done.html:11 @@ -92,29 +98,29 @@ msgid "%(app_label)s administration" msgstr "%(app_label)s administracija" #: templates/djadmin2/bootstrap/base.html:6 -#: templates/djadmin2/bootstrap/base.html:71 +#: templates/djadmin2/bootstrap/base.html:72 #: templates/djadmin2/bootstrap/auth/login.html:15 msgid "Site administration" msgstr "Administracija stranice" -#: templates/djadmin2/bootstrap/base.html:22 +#: templates/djadmin2/bootstrap/base.html:23 msgid "API" msgstr "API" -#: templates/djadmin2/bootstrap/base.html:25 +#: templates/djadmin2/bootstrap/base.html:26 msgid "Documentation" msgstr "Dokumentacija" -#: templates/djadmin2/bootstrap/base.html:34 +#: templates/djadmin2/bootstrap/base.html:35 #, python-format msgid "Logged in as %(user)s" msgstr "Prijavljen kao %(user)s" -#: templates/djadmin2/bootstrap/base.html:40 +#: templates/djadmin2/bootstrap/base.html:41 msgid "Change password" msgstr "Promijeni lozinku" -#: templates/djadmin2/bootstrap/base.html:42 +#: templates/djadmin2/bootstrap/base.html:43 #: templates/djadmin2/bootstrap/auth/logout.html:11 msgid "Log out" msgstr "Odjavi se" @@ -135,7 +141,8 @@ msgid "Are you sure?" msgstr "Da li ste sigurni?" #: templates/djadmin2/bootstrap/model_confirm_delete.html:25 -#: templates/djadmin2/bootstrap/model_update_form.html:76 +#: templates/djadmin2/bootstrap/model_update_form.html:51 +#: templates/djadmin2/bootstrap/model_update_form.html:118 #: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:21 msgid "Delete" msgstr "Izbriši" @@ -146,7 +153,9 @@ msgstr "Izbriši" msgid "" "\n" "Are you sure you want to delete the %(model_name)s \"%(object)s\"?\n" -msgstr "Da li ste sigurni da želite obrisati %(model_name)s \"%(object)s\"? Sve navedene stavke će biti obrisane:" +msgstr "" +"\n" +"Da li ste sigurni da želite obrisati %(model_name)s \"%(object)s\"?\n" #: templates/djadmin2/bootstrap/model_confirm_delete.html:36 msgid "" @@ -155,9 +164,15 @@ msgid "" msgid_plural "" "\n" "All of the following items will be deleted:\n" -msgstr[0] "\nSve navedene stavke će biti obrisane:\n" -msgstr[1] "\nSve navedene stavke će biti obrisane:\n" -msgstr[2] "\nSve navedene stavke će biti obrisane:\n" +msgstr[0] "" +"\n" +"Sve navedene stavke će biti obrisane:\n" +msgstr[1] "" +"\n" +"Sve navedene stavke će biti obrisane:\n" +msgstr[2] "" +"\n" +"Sve navedene stavke će biti obrisane:\n" #: templates/djadmin2/bootstrap/model_confirm_delete.html:50 #: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:44 @@ -178,34 +193,35 @@ msgstr "Pojam za pretragu" msgid "Search" msgstr "Traži" -#: templates/djadmin2/bootstrap/model_list.html:59 -#, python-format -msgid "%(selected)s of %(total)s selected" -msgstr "%(selected)s od %(total)s ukupno" - -#: templates/djadmin2/bootstrap/model_list.html:63 -#, python-format -msgid "Add %(model_verbose_name)s" -msgstr "Dodaj %(model_verbose_name)s" - #. Translators : examples : Add post, Change object #: templates/djadmin2/bootstrap/model_update_form.html:6 #: templates/djadmin2/bootstrap/model_update_form.html:9 #, python-format msgid "%(action_name)s %(model_name)s" -msgstr "%(action)s %(model_name)s" +msgstr "%(action_name)s %(model_name)s" #: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:27 #, python-format msgid "" "\n" -"Are you sure you want to delete the selected %(objects_name)s? The following item will be deleted:\n" +"Are you sure you want to delete the selected %(objects_name)s? The following " +"item will be deleted:\n" msgid_plural "" "\n" -"Are you sure you want to delete the selected %(objects_name)s? The following items will be deleted:\n" -msgstr[0] "Da li ste sigurni da želite obrisati odabrani %(objects_name)s? Sve navedene stavke će biti obrisane:" -msgstr[1] "Da li ste sigurni da želite obrisati odabrane %(objects_name)s? Sve navedene stavke će biti obrisane:" -msgstr[2] "Da li ste sigurni da želite obrisati odabrane %(objects_name)s? Sve navedene stavke će biti obrisane:" +"Are you sure you want to delete the selected %(objects_name)s? The following " +"items will be deleted:\n" +msgstr[0] "" +"\n" +"Da li ste sigurni da želite obrisati odabrani %(objects_name)s? Sve navedene " +"stavke će biti obrisane:\n" +msgstr[1] "" +"\n" +"Da li ste sigurni da želite obrisati odabrane %(objects_name)s? Sve navedene " +"stavke će biti obrisane:\n" +msgstr[2] "" +"\n" +"Da li ste sigurni da želite obrisati odabrane %(objects_name)s? Sve navedene " +"stavke će biti obrisane:\n" #: templates/djadmin2/bootstrap/auth/login.html:15 #: templates/djadmin2/bootstrap/auth/login.html:52 @@ -245,22 +261,35 @@ msgstr "Promjena lozinke" #: templates/djadmin2/bootstrap/auth/password_change_form.html:20 msgid "" -"Please enter your old password, for security's sake, and then enter your new" -" password twice so we can verify you typed it in correctly." -msgstr "Molimo unesite vašu staru lozinku, iz sigurnosnih razloga, a zatim unesite Vašu novu lozinku dva puta da bi mogli biti sigurni da ste je unijeli ispravno." +"Please enter your old password, for security's sake, and then enter your new " +"password twice so we can verify you typed it in correctly." +msgstr "" +"Molimo unesite vašu staru lozinku, iz sigurnosnih razloga, a zatim unesite " +"Vašu novu lozinku dva puta da bi mogli biti sigurni da ste je unijeli " +"ispravno." #: templates/djadmin2/bootstrap/auth/password_change_form.html:31 msgid "Change my password" msgstr "Promijeni moju lozinku" -#: templates/djadmin2/bootstrap/includes/action_buttons.html:3 +#: templates/djadmin2/bootstrap/includes/list_actions.html:17 +#, python-format +msgid "%(selected)s of %(total)s selected" +msgstr "%(selected)s od %(total)s ukupno" + +#: templates/djadmin2/bootstrap/includes/list_actions.html:21 +#, python-format +msgid "Add %(model_verbose_name)s" +msgstr "Dodaj %(model_verbose_name)s" + +#: templates/djadmin2/bootstrap/includes/save_buttons.html:3 msgid "Save and add another" msgstr "Sačuvaj i dodaj još jedan" -#: templates/djadmin2/bootstrap/includes/action_buttons.html:4 +#: templates/djadmin2/bootstrap/includes/save_buttons.html:4 msgid "Save and continue editing" msgstr "Sačuvaj i nastavi sa izmjenama" -#: templates/djadmin2/bootstrap/includes/action_buttons.html:5 +#: templates/djadmin2/bootstrap/includes/save_buttons.html:5 msgid "Save" msgstr "Sačuvaj" diff --git a/djadmin2/locale/ca/LC_MESSAGES/django.po b/djadmin2/locale/ca/LC_MESSAGES/django.po index 1e93967..e35be73 100644 --- a/djadmin2/locale/ca/LC_MESSAGES/django.po +++ b/djadmin2/locale/ca/LC_MESSAGES/django.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: django-admin2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-07 11:01+0200\n" +"POT-Creation-Date: 2013-07-09 11:57+0200\n" "PO-Revision-Date: 2013-07-06 14:47+0200\n" "Last-Translator: Ignasi Fosch Alonso \n" "Language-Team: https://www.transifex.com/projects/p/django-admin2/language/" @@ -17,23 +17,23 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: actions.py:26 +#: actions.py:29 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." msgstr "" -#: actions.py:147 +#: actions.py:149 msgid "Delete selected items" msgstr "" -#: actions.py:151 +#: actions.py:153 #, python-format msgctxt "singular form" msgid "Successfully deleted %(count)s %(items)s" msgstr "" -#: actions.py:155 +#: actions.py:157 #, python-format msgctxt "plural form" msgid "Successfully deleted %(count)s %(items)s" @@ -53,32 +53,32 @@ msgstr "" #. Translators : %(username)s will be replaced by the username_field name #. (default : username, but could be email, or something else) -#: forms.py:240 +#: forms.py:242 #, python-format msgid "" "Please enter the correct %(username)s and password for a staff account. Note " "that both fields may be case-sensitive." msgstr "" -#: forms.py:251 +#: forms.py:253 msgid "Please log in again, because your session has expired." msgstr "" -#: views.py:200 templates/djadmin2/bootstrap/model_update_form.html:31 +#: views.py:228 templates/djadmin2/bootstrap/model_update_form.html:35 #: templates/djadmin2/bootstrap/includes/app_model_list.html:38 msgid "Change" msgstr "" -#: views.py:221 templates/djadmin2/bootstrap/includes/app_model_list.html:30 +#: views.py:249 templates/djadmin2/bootstrap/includes/app_model_list.html:30 msgid "Add" msgstr "" #: templates/djadmin2/bootstrap/app_index.html:6 -#: templates/djadmin2/bootstrap/base.html:55 +#: templates/djadmin2/bootstrap/base.html:56 #: templates/djadmin2/bootstrap/model_confirm_delete.html:10 #: templates/djadmin2/bootstrap/model_detail.html:11 #: templates/djadmin2/bootstrap/model_list.html:14 -#: templates/djadmin2/bootstrap/model_update_form.html:13 +#: templates/djadmin2/bootstrap/model_update_form.html:17 #: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:10 #: templates/djadmin2/bootstrap/auth/logout.html:8 #: templates/djadmin2/bootstrap/auth/password_change_done.html:11 @@ -92,29 +92,29 @@ msgid "%(app_label)s administration" msgstr "" #: templates/djadmin2/bootstrap/base.html:6 -#: templates/djadmin2/bootstrap/base.html:71 +#: templates/djadmin2/bootstrap/base.html:72 #: templates/djadmin2/bootstrap/auth/login.html:15 msgid "Site administration" msgstr "" -#: templates/djadmin2/bootstrap/base.html:22 +#: templates/djadmin2/bootstrap/base.html:23 msgid "API" msgstr "" -#: templates/djadmin2/bootstrap/base.html:25 +#: templates/djadmin2/bootstrap/base.html:26 msgid "Documentation" msgstr "" -#: templates/djadmin2/bootstrap/base.html:34 +#: templates/djadmin2/bootstrap/base.html:35 #, python-format msgid "Logged in as %(user)s" msgstr "" -#: templates/djadmin2/bootstrap/base.html:40 +#: templates/djadmin2/bootstrap/base.html:41 msgid "Change password" msgstr "" -#: templates/djadmin2/bootstrap/base.html:42 +#: templates/djadmin2/bootstrap/base.html:43 #: templates/djadmin2/bootstrap/auth/logout.html:11 msgid "Log out" msgstr "" @@ -135,7 +135,8 @@ msgid "Are you sure?" msgstr "" #: templates/djadmin2/bootstrap/model_confirm_delete.html:25 -#: templates/djadmin2/bootstrap/model_update_form.html:76 +#: templates/djadmin2/bootstrap/model_update_form.html:51 +#: templates/djadmin2/bootstrap/model_update_form.html:118 #: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:21 msgid "Delete" msgstr "" @@ -177,16 +178,6 @@ msgstr "" msgid "Search" msgstr "" -#: templates/djadmin2/bootstrap/model_list.html:59 -#, python-format -msgid "%(selected)s of %(total)s selected" -msgstr "" - -#: templates/djadmin2/bootstrap/model_list.html:63 -#, python-format -msgid "Add %(model_verbose_name)s" -msgstr "" - #. Translators : examples : Add post, Change object #: templates/djadmin2/bootstrap/model_update_form.html:6 #: templates/djadmin2/bootstrap/model_update_form.html:9 @@ -252,14 +243,24 @@ msgstr "" msgid "Change my password" msgstr "" -#: templates/djadmin2/bootstrap/includes/action_buttons.html:3 +#: templates/djadmin2/bootstrap/includes/list_actions.html:17 +#, python-format +msgid "%(selected)s of %(total)s selected" +msgstr "" + +#: templates/djadmin2/bootstrap/includes/list_actions.html:21 +#, python-format +msgid "Add %(model_verbose_name)s" +msgstr "" + +#: templates/djadmin2/bootstrap/includes/save_buttons.html:3 msgid "Save and add another" msgstr "" -#: templates/djadmin2/bootstrap/includes/action_buttons.html:4 +#: templates/djadmin2/bootstrap/includes/save_buttons.html:4 msgid "Save and continue editing" msgstr "" -#: templates/djadmin2/bootstrap/includes/action_buttons.html:5 +#: templates/djadmin2/bootstrap/includes/save_buttons.html:5 msgid "Save" msgstr "" diff --git a/djadmin2/locale/de/LC_MESSAGES/django.po b/djadmin2/locale/de/LC_MESSAGES/django.po index 46c885a..dceeea7 100644 --- a/djadmin2/locale/de/LC_MESSAGES/django.po +++ b/djadmin2/locale/de/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: django-admin2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-08 16:01+0200\n" +"POT-Creation-Date: 2013-07-09 11:57+0200\n" "PO-Revision-Date: 2013-07-08 08:45+0000\n" "Last-Translator: dbrgn \n" "Language-Team: German (http://www.transifex.com/projects/p/django-admin2/" @@ -143,7 +143,7 @@ msgstr "Sind Sie sicher?" #: templates/djadmin2/bootstrap/model_confirm_delete.html:25 #: templates/djadmin2/bootstrap/model_update_form.html:51 -#: templates/djadmin2/bootstrap/model_update_form.html:103 +#: templates/djadmin2/bootstrap/model_update_form.html:118 #: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:21 msgid "Delete" msgstr "Löschen" @@ -155,7 +155,8 @@ msgid "" "\n" "Are you sure you want to delete the %(model_name)s \"%(object)s\"?\n" msgstr "" -"\nSind Sie sicher, dass Sie den %(model_name)s-Eintrag \"%(object)s\" löschen " +"\n" +"Sind Sie sicher, dass Sie den %(model_name)s-Eintrag \"%(object)s\" löschen " "möchten?\n" #: templates/djadmin2/bootstrap/model_confirm_delete.html:36 @@ -191,16 +192,6 @@ msgstr "Suchbegriff" msgid "Search" msgstr "Suchen" -#: templates/djadmin2/bootstrap/model_list.html:59 -#, python-format -msgid "%(selected)s of %(total)s selected" -msgstr "%(selected)s von %(total)s ausgewählt" - -#: templates/djadmin2/bootstrap/model_list.html:63 -#, python-format -msgid "Add %(model_verbose_name)s" -msgstr "%(model_verbose_name)s hinzufügen" - #. Translators : examples : Add post, Change object #: templates/djadmin2/bootstrap/model_update_form.html:6 #: templates/djadmin2/bootstrap/model_update_form.html:9 @@ -275,6 +266,16 @@ msgstr "" msgid "Change my password" msgstr "Mein Passwort ändern" +#: templates/djadmin2/bootstrap/includes/list_actions.html:17 +#, python-format +msgid "%(selected)s of %(total)s selected" +msgstr "%(selected)s von %(total)s ausgewählt" + +#: templates/djadmin2/bootstrap/includes/list_actions.html:21 +#, python-format +msgid "Add %(model_verbose_name)s" +msgstr "%(model_verbose_name)s hinzufügen" + #: templates/djadmin2/bootstrap/includes/save_buttons.html:3 msgid "Save and add another" msgstr "Sichern und neu hinzufügen" diff --git a/djadmin2/locale/en/LC_MESSAGES/django.po b/djadmin2/locale/en/LC_MESSAGES/django.po index 9a74dff..ed84049 100644 --- a/djadmin2/locale/en/LC_MESSAGES/django.po +++ b/djadmin2/locale/en/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # This file is distributed under the same license as the django-admin2 package. # -# Translators: -# NotSqrt , 2013. msgid "" msgstr "" "Project-Id-Version: django-admin2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-07 11:01+0200\n" +"POT-Creation-Date: 2013-07-09 11:57+0200\n" "PO-Revision-Date: 2013-07-06 13:27+0200\n" "Last-Translator: NotSqrt \n" +"Language-Team: English (https://www.transifex.com/projects/p/django-admin2/language/en_US/)\n" "Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: actions.py:26 +#: actions.py:29 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." @@ -23,17 +22,17 @@ msgstr "" "Items must be selected in order to perform actions on them. No items have " "been changed." -#: actions.py:147 +#: actions.py:149 msgid "Delete selected items" msgstr "Delete selected items" -#: actions.py:151 +#: actions.py:153 #, fuzzy, python-format msgctxt "singular form" msgid "Successfully deleted %(count)s %(items)s" msgstr "Successfully deleted %(count)s %(items)s" -#: actions.py:155 +#: actions.py:157 #, fuzzy, python-format msgctxt "plural form" msgid "Successfully deleted %(count)s %(items)s" @@ -41,11 +40,11 @@ msgstr "Successfully deleted %(count)s %(items)s" #: filters.py:40 msgid "Unknown" -msgstr "" +msgstr "Unknown" #: filters.py:41 msgid "Yes" -msgstr "" +msgstr "Yes" #: filters.py:42 msgid "No" @@ -53,7 +52,7 @@ msgstr "" #. Translators : %(username)s will be replaced by the username_field name #. (default : username, but could be email, or something else) -#: forms.py:240 +#: forms.py:242 #, python-format msgid "" "Please enter the correct %(username)s and password for a staff account. Note " @@ -62,25 +61,25 @@ msgstr "" "Please enter the correct %(username)s and password for a staff account. Note " "that both fields may be case-sensitive." -#: forms.py:251 +#: forms.py:253 msgid "Please log in again, because your session has expired." msgstr "Please log in again, because your session has expired." -#: views.py:200 templates/djadmin2/bootstrap/model_update_form.html:31 +#: views.py:228 templates/djadmin2/bootstrap/model_update_form.html:35 #: templates/djadmin2/bootstrap/includes/app_model_list.html:38 msgid "Change" msgstr "Change" -#: views.py:221 templates/djadmin2/bootstrap/includes/app_model_list.html:30 +#: views.py:249 templates/djadmin2/bootstrap/includes/app_model_list.html:30 msgid "Add" msgstr "Add" #: templates/djadmin2/bootstrap/app_index.html:6 -#: templates/djadmin2/bootstrap/base.html:55 +#: templates/djadmin2/bootstrap/base.html:56 #: templates/djadmin2/bootstrap/model_confirm_delete.html:10 #: templates/djadmin2/bootstrap/model_detail.html:11 #: templates/djadmin2/bootstrap/model_list.html:14 -#: templates/djadmin2/bootstrap/model_update_form.html:13 +#: templates/djadmin2/bootstrap/model_update_form.html:17 #: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:10 #: templates/djadmin2/bootstrap/auth/logout.html:8 #: templates/djadmin2/bootstrap/auth/password_change_done.html:11 @@ -94,29 +93,29 @@ msgid "%(app_label)s administration" msgstr "%(app_label)s administration" #: templates/djadmin2/bootstrap/base.html:6 -#: templates/djadmin2/bootstrap/base.html:71 +#: templates/djadmin2/bootstrap/base.html:72 #: templates/djadmin2/bootstrap/auth/login.html:15 msgid "Site administration" msgstr "Site administration" -#: templates/djadmin2/bootstrap/base.html:22 +#: templates/djadmin2/bootstrap/base.html:23 msgid "API" msgstr "API" -#: templates/djadmin2/bootstrap/base.html:25 +#: templates/djadmin2/bootstrap/base.html:26 msgid "Documentation" msgstr "Documentation" -#: templates/djadmin2/bootstrap/base.html:34 +#: templates/djadmin2/bootstrap/base.html:35 #, python-format msgid "Logged in as %(user)s" msgstr "Logged in as %(user)s" -#: templates/djadmin2/bootstrap/base.html:40 +#: templates/djadmin2/bootstrap/base.html:41 msgid "Change password" msgstr "Change password" -#: templates/djadmin2/bootstrap/base.html:42 +#: templates/djadmin2/bootstrap/base.html:43 #: templates/djadmin2/bootstrap/auth/logout.html:11 msgid "Log out" msgstr "Log out" @@ -137,7 +136,8 @@ msgid "Are you sure?" msgstr "Are you sure?" #: templates/djadmin2/bootstrap/model_confirm_delete.html:25 -#: templates/djadmin2/bootstrap/model_update_form.html:76 +#: templates/djadmin2/bootstrap/model_update_form.html:51 +#: templates/djadmin2/bootstrap/model_update_form.html:118 #: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:21 msgid "Delete" msgstr "Delete" @@ -181,16 +181,6 @@ msgstr "Search Term" msgid "Search" msgstr "Search" -#: templates/djadmin2/bootstrap/model_list.html:59 -#, python-format -msgid "%(selected)s of %(total)s selected" -msgstr "%(selected)s of %(total)s selected" - -#: templates/djadmin2/bootstrap/model_list.html:63 -#, python-format -msgid "Add %(model_verbose_name)s" -msgstr "Add %(model_verbose_name)s" - #. Translators : examples : Add post, Change object #: templates/djadmin2/bootstrap/model_update_form.html:6 #: templates/djadmin2/bootstrap/model_update_form.html:9 @@ -262,14 +252,24 @@ msgstr "" msgid "Change my password" msgstr "Change my password" -#: templates/djadmin2/bootstrap/includes/action_buttons.html:3 +#: templates/djadmin2/bootstrap/includes/list_actions.html:17 +#, python-format +msgid "%(selected)s of %(total)s selected" +msgstr "%(selected)s of %(total)s selected" + +#: templates/djadmin2/bootstrap/includes/list_actions.html:21 +#, python-format +msgid "Add %(model_verbose_name)s" +msgstr "Add %(model_verbose_name)s" + +#: templates/djadmin2/bootstrap/includes/save_buttons.html:3 msgid "Save and add another" msgstr "Save and add another" -#: templates/djadmin2/bootstrap/includes/action_buttons.html:4 +#: templates/djadmin2/bootstrap/includes/save_buttons.html:4 msgid "Save and continue editing" msgstr "Save and continue editing" -#: templates/djadmin2/bootstrap/includes/action_buttons.html:5 +#: templates/djadmin2/bootstrap/includes/save_buttons.html:5 msgid "Save" msgstr "Save" diff --git a/djadmin2/locale/es/LC_MESSAGES/django.po b/djadmin2/locale/es/LC_MESSAGES/django.po index 4c25165..c56a41f 100644 --- a/djadmin2/locale/es/LC_MESSAGES/django.po +++ b/djadmin2/locale/es/LC_MESSAGES/django.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: django-admin2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-07 11:01+0200\n" +"POT-Creation-Date: 2013-07-09 11:57+0200\n" "PO-Revision-Date: 2013-07-06 14:47+0200\n" "Last-Translator: Danilo Bargen \n" "Language-Team: https://www.transifex.com/projects/p/django-admin2/language/" @@ -17,23 +17,23 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: actions.py:26 +#: actions.py:29 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." msgstr "" -#: actions.py:147 +#: actions.py:149 msgid "Delete selected items" msgstr "" -#: actions.py:151 +#: actions.py:153 #, python-format msgctxt "singular form" msgid "Successfully deleted %(count)s %(items)s" msgstr "" -#: actions.py:155 +#: actions.py:157 #, python-format msgctxt "plural form" msgid "Successfully deleted %(count)s %(items)s" @@ -53,32 +53,32 @@ msgstr "" #. Translators : %(username)s will be replaced by the username_field name #. (default : username, but could be email, or something else) -#: forms.py:240 +#: forms.py:242 #, python-format msgid "" "Please enter the correct %(username)s and password for a staff account. Note " "that both fields may be case-sensitive." msgstr "" -#: forms.py:251 +#: forms.py:253 msgid "Please log in again, because your session has expired." msgstr "" -#: views.py:200 templates/djadmin2/bootstrap/model_update_form.html:31 +#: views.py:228 templates/djadmin2/bootstrap/model_update_form.html:35 #: templates/djadmin2/bootstrap/includes/app_model_list.html:38 msgid "Change" msgstr "" -#: views.py:221 templates/djadmin2/bootstrap/includes/app_model_list.html:30 +#: views.py:249 templates/djadmin2/bootstrap/includes/app_model_list.html:30 msgid "Add" msgstr "" #: templates/djadmin2/bootstrap/app_index.html:6 -#: templates/djadmin2/bootstrap/base.html:55 +#: templates/djadmin2/bootstrap/base.html:56 #: templates/djadmin2/bootstrap/model_confirm_delete.html:10 #: templates/djadmin2/bootstrap/model_detail.html:11 #: templates/djadmin2/bootstrap/model_list.html:14 -#: templates/djadmin2/bootstrap/model_update_form.html:13 +#: templates/djadmin2/bootstrap/model_update_form.html:17 #: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:10 #: templates/djadmin2/bootstrap/auth/logout.html:8 #: templates/djadmin2/bootstrap/auth/password_change_done.html:11 @@ -92,29 +92,29 @@ msgid "%(app_label)s administration" msgstr "" #: templates/djadmin2/bootstrap/base.html:6 -#: templates/djadmin2/bootstrap/base.html:71 +#: templates/djadmin2/bootstrap/base.html:72 #: templates/djadmin2/bootstrap/auth/login.html:15 msgid "Site administration" msgstr "" -#: templates/djadmin2/bootstrap/base.html:22 +#: templates/djadmin2/bootstrap/base.html:23 msgid "API" msgstr "" -#: templates/djadmin2/bootstrap/base.html:25 +#: templates/djadmin2/bootstrap/base.html:26 msgid "Documentation" msgstr "" -#: templates/djadmin2/bootstrap/base.html:34 +#: templates/djadmin2/bootstrap/base.html:35 #, python-format msgid "Logged in as %(user)s" msgstr "" -#: templates/djadmin2/bootstrap/base.html:40 +#: templates/djadmin2/bootstrap/base.html:41 msgid "Change password" msgstr "" -#: templates/djadmin2/bootstrap/base.html:42 +#: templates/djadmin2/bootstrap/base.html:43 #: templates/djadmin2/bootstrap/auth/logout.html:11 msgid "Log out" msgstr "" @@ -135,7 +135,8 @@ msgid "Are you sure?" msgstr "" #: templates/djadmin2/bootstrap/model_confirm_delete.html:25 -#: templates/djadmin2/bootstrap/model_update_form.html:76 +#: templates/djadmin2/bootstrap/model_update_form.html:51 +#: templates/djadmin2/bootstrap/model_update_form.html:118 #: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:21 msgid "Delete" msgstr "" @@ -177,16 +178,6 @@ msgstr "" msgid "Search" msgstr "" -#: templates/djadmin2/bootstrap/model_list.html:59 -#, python-format -msgid "%(selected)s of %(total)s selected" -msgstr "" - -#: templates/djadmin2/bootstrap/model_list.html:63 -#, python-format -msgid "Add %(model_verbose_name)s" -msgstr "" - #. Translators : examples : Add post, Change object #: templates/djadmin2/bootstrap/model_update_form.html:6 #: templates/djadmin2/bootstrap/model_update_form.html:9 @@ -252,14 +243,24 @@ msgstr "" msgid "Change my password" msgstr "" -#: templates/djadmin2/bootstrap/includes/action_buttons.html:3 +#: templates/djadmin2/bootstrap/includes/list_actions.html:17 +#, python-format +msgid "%(selected)s of %(total)s selected" +msgstr "" + +#: templates/djadmin2/bootstrap/includes/list_actions.html:21 +#, python-format +msgid "Add %(model_verbose_name)s" +msgstr "" + +#: templates/djadmin2/bootstrap/includes/save_buttons.html:3 msgid "Save and add another" msgstr "" -#: templates/djadmin2/bootstrap/includes/action_buttons.html:4 +#: templates/djadmin2/bootstrap/includes/save_buttons.html:4 msgid "Save and continue editing" msgstr "" -#: templates/djadmin2/bootstrap/includes/action_buttons.html:5 +#: templates/djadmin2/bootstrap/includes/save_buttons.html:5 msgid "Save" msgstr "" diff --git a/djadmin2/locale/fr/LC_MESSAGES/django.po b/djadmin2/locale/fr/LC_MESSAGES/django.po index c56145c..79357eb 100644 --- a/djadmin2/locale/fr/LC_MESSAGES/django.po +++ b/djadmin2/locale/fr/LC_MESSAGES/django.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: django-admin2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-07 11:01+0200\n" +"POT-Creation-Date: 2013-07-09 11:57+0200\n" "PO-Revision-Date: 2013-07-06 13:27+0200\n" "Last-Translator: NotSqrt \n" "Language-Team: https://www.transifex.com/projects/p/django-admin2/language/" @@ -17,7 +17,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" -#: actions.py:26 +#: actions.py:29 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." @@ -25,17 +25,17 @@ msgstr "" "Des éléments doivent être sélectionnés afin d'appliquer les actions. Aucun " "élément n'a été modifié." -#: actions.py:147 +#: actions.py:149 msgid "Delete selected items" msgstr "Supprimer les objets sélectionnés" -#: actions.py:151 +#: actions.py:153 #, python-format msgctxt "singular form" msgid "Successfully deleted %(count)s %(items)s" msgstr "%(count)s %(items)s a été supprimé avec succès." -#: actions.py:155 +#: actions.py:157 #, python-format msgctxt "plural form" msgid "Successfully deleted %(count)s %(items)s" @@ -55,7 +55,7 @@ msgstr "Non" #. Translators : %(username)s will be replaced by the username_field name #. (default : username, but could be email, or something else) -#: forms.py:240 +#: forms.py:242 #, python-format msgid "" "Please enter the correct %(username)s and password for a staff account. Note " @@ -65,25 +65,25 @@ msgstr "" "passe » d'un compte autorisé. Sachez que les deux champs peuvent être " "sensibles à la casse." -#: forms.py:251 +#: forms.py:253 msgid "Please log in again, because your session has expired." msgstr "Reconnectez-vous car votre session a expiré." -#: views.py:200 templates/djadmin2/bootstrap/model_update_form.html:31 +#: views.py:228 templates/djadmin2/bootstrap/model_update_form.html:35 #: templates/djadmin2/bootstrap/includes/app_model_list.html:38 msgid "Change" msgstr "Modifier" -#: views.py:221 templates/djadmin2/bootstrap/includes/app_model_list.html:30 +#: views.py:249 templates/djadmin2/bootstrap/includes/app_model_list.html:30 msgid "Add" msgstr "Ajouter" #: templates/djadmin2/bootstrap/app_index.html:6 -#: templates/djadmin2/bootstrap/base.html:55 +#: templates/djadmin2/bootstrap/base.html:56 #: templates/djadmin2/bootstrap/model_confirm_delete.html:10 #: templates/djadmin2/bootstrap/model_detail.html:11 #: templates/djadmin2/bootstrap/model_list.html:14 -#: templates/djadmin2/bootstrap/model_update_form.html:13 +#: templates/djadmin2/bootstrap/model_update_form.html:17 #: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:10 #: templates/djadmin2/bootstrap/auth/logout.html:8 #: templates/djadmin2/bootstrap/auth/password_change_done.html:11 @@ -97,29 +97,29 @@ msgid "%(app_label)s administration" msgstr "Administration de %(app_label)s" #: templates/djadmin2/bootstrap/base.html:6 -#: templates/djadmin2/bootstrap/base.html:71 +#: templates/djadmin2/bootstrap/base.html:72 #: templates/djadmin2/bootstrap/auth/login.html:15 msgid "Site administration" msgstr "Administration du site" -#: templates/djadmin2/bootstrap/base.html:22 +#: templates/djadmin2/bootstrap/base.html:23 msgid "API" msgstr "API" -#: templates/djadmin2/bootstrap/base.html:25 +#: templates/djadmin2/bootstrap/base.html:26 msgid "Documentation" msgstr "Documentation" -#: templates/djadmin2/bootstrap/base.html:34 +#: templates/djadmin2/bootstrap/base.html:35 #, python-format msgid "Logged in as %(user)s" msgstr "Connecté en tant que %(user)s" -#: templates/djadmin2/bootstrap/base.html:40 +#: templates/djadmin2/bootstrap/base.html:41 msgid "Change password" msgstr "Modifier votre mot de passe" -#: templates/djadmin2/bootstrap/base.html:42 +#: templates/djadmin2/bootstrap/base.html:43 #: templates/djadmin2/bootstrap/auth/logout.html:11 msgid "Log out" msgstr "Déconnexion" @@ -140,7 +140,8 @@ msgid "Are you sure?" msgstr "Êtes-vous sûr ?" #: templates/djadmin2/bootstrap/model_confirm_delete.html:25 -#: templates/djadmin2/bootstrap/model_update_form.html:76 +#: templates/djadmin2/bootstrap/model_update_form.html:51 +#: templates/djadmin2/bootstrap/model_update_form.html:118 #: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:21 msgid "Delete" msgstr "Supprimer" @@ -188,16 +189,6 @@ msgstr "Terme à rechercher" msgid "Search" msgstr "Recherche" -#: templates/djadmin2/bootstrap/model_list.html:59 -#, python-format -msgid "%(selected)s of %(total)s selected" -msgstr "%(selected)s sur %(total)s sélectionnés" - -#: templates/djadmin2/bootstrap/model_list.html:63 -#, python-format -msgid "Add %(model_verbose_name)s" -msgstr "Ajouter %(model_verbose_name)s" - #. Translators : examples : Add post, Change object #: templates/djadmin2/bootstrap/model_update_form.html:6 #: templates/djadmin2/bootstrap/model_update_form.html:9 @@ -272,14 +263,24 @@ msgstr "" msgid "Change my password" msgstr "Modifier mon mot de passe" -#: templates/djadmin2/bootstrap/includes/action_buttons.html:3 +#: templates/djadmin2/bootstrap/includes/list_actions.html:17 +#, python-format +msgid "%(selected)s of %(total)s selected" +msgstr "%(selected)s sur %(total)s sélectionnés" + +#: templates/djadmin2/bootstrap/includes/list_actions.html:21 +#, python-format +msgid "Add %(model_verbose_name)s" +msgstr "Ajouter %(model_verbose_name)s" + +#: templates/djadmin2/bootstrap/includes/save_buttons.html:3 msgid "Save and add another" msgstr "Enregistrer et ajouter un nouveau" -#: templates/djadmin2/bootstrap/includes/action_buttons.html:4 +#: templates/djadmin2/bootstrap/includes/save_buttons.html:4 msgid "Save and continue editing" msgstr "Enregistrer et continuer les modifications" -#: templates/djadmin2/bootstrap/includes/action_buttons.html:5 +#: templates/djadmin2/bootstrap/includes/save_buttons.html:5 msgid "Save" msgstr "Enregistrer" diff --git a/djadmin2/locale/it/LC_MESSAGES/django.po b/djadmin2/locale/it/LC_MESSAGES/django.po index 35452e9..9163b04 100644 --- a/djadmin2/locale/it/LC_MESSAGES/django.po +++ b/djadmin2/locale/it/LC_MESSAGES/django.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: django-admin2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-07 11:01+0200\n" +"POT-Creation-Date: 2013-07-09 11:57+0200\n" "PO-Revision-Date: 2013-07-06 14:47+0200\n" "Last-Translator: Margherita Zamponi \n" "Language-Team: https://www.transifex.com/projects/p/django-admin2/language/" @@ -17,23 +17,23 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: actions.py:26 +#: actions.py:29 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." msgstr "" -#: actions.py:147 +#: actions.py:149 msgid "Delete selected items" msgstr "" -#: actions.py:151 +#: actions.py:153 #, python-format msgctxt "singular form" msgid "Successfully deleted %(count)s %(items)s" msgstr "" -#: actions.py:155 +#: actions.py:157 #, python-format msgctxt "plural form" msgid "Successfully deleted %(count)s %(items)s" @@ -53,32 +53,32 @@ msgstr "" #. Translators : %(username)s will be replaced by the username_field name #. (default : username, but could be email, or something else) -#: forms.py:240 +#: forms.py:242 #, python-format msgid "" "Please enter the correct %(username)s and password for a staff account. Note " "that both fields may be case-sensitive." msgstr "" -#: forms.py:251 +#: forms.py:253 msgid "Please log in again, because your session has expired." msgstr "" -#: views.py:200 templates/djadmin2/bootstrap/model_update_form.html:31 +#: views.py:228 templates/djadmin2/bootstrap/model_update_form.html:35 #: templates/djadmin2/bootstrap/includes/app_model_list.html:38 msgid "Change" msgstr "" -#: views.py:221 templates/djadmin2/bootstrap/includes/app_model_list.html:30 +#: views.py:249 templates/djadmin2/bootstrap/includes/app_model_list.html:30 msgid "Add" msgstr "" #: templates/djadmin2/bootstrap/app_index.html:6 -#: templates/djadmin2/bootstrap/base.html:55 +#: templates/djadmin2/bootstrap/base.html:56 #: templates/djadmin2/bootstrap/model_confirm_delete.html:10 #: templates/djadmin2/bootstrap/model_detail.html:11 #: templates/djadmin2/bootstrap/model_list.html:14 -#: templates/djadmin2/bootstrap/model_update_form.html:13 +#: templates/djadmin2/bootstrap/model_update_form.html:17 #: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:10 #: templates/djadmin2/bootstrap/auth/logout.html:8 #: templates/djadmin2/bootstrap/auth/password_change_done.html:11 @@ -92,29 +92,29 @@ msgid "%(app_label)s administration" msgstr "" #: templates/djadmin2/bootstrap/base.html:6 -#: templates/djadmin2/bootstrap/base.html:71 +#: templates/djadmin2/bootstrap/base.html:72 #: templates/djadmin2/bootstrap/auth/login.html:15 msgid "Site administration" msgstr "" -#: templates/djadmin2/bootstrap/base.html:22 +#: templates/djadmin2/bootstrap/base.html:23 msgid "API" msgstr "" -#: templates/djadmin2/bootstrap/base.html:25 +#: templates/djadmin2/bootstrap/base.html:26 msgid "Documentation" msgstr "" -#: templates/djadmin2/bootstrap/base.html:34 +#: templates/djadmin2/bootstrap/base.html:35 #, python-format msgid "Logged in as %(user)s" msgstr "" -#: templates/djadmin2/bootstrap/base.html:40 +#: templates/djadmin2/bootstrap/base.html:41 msgid "Change password" msgstr "" -#: templates/djadmin2/bootstrap/base.html:42 +#: templates/djadmin2/bootstrap/base.html:43 #: templates/djadmin2/bootstrap/auth/logout.html:11 msgid "Log out" msgstr "" @@ -135,7 +135,8 @@ msgid "Are you sure?" msgstr "" #: templates/djadmin2/bootstrap/model_confirm_delete.html:25 -#: templates/djadmin2/bootstrap/model_update_form.html:76 +#: templates/djadmin2/bootstrap/model_update_form.html:51 +#: templates/djadmin2/bootstrap/model_update_form.html:118 #: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:21 msgid "Delete" msgstr "" @@ -177,16 +178,6 @@ msgstr "" msgid "Search" msgstr "" -#: templates/djadmin2/bootstrap/model_list.html:59 -#, python-format -msgid "%(selected)s of %(total)s selected" -msgstr "" - -#: templates/djadmin2/bootstrap/model_list.html:63 -#, python-format -msgid "Add %(model_verbose_name)s" -msgstr "" - #. Translators : examples : Add post, Change object #: templates/djadmin2/bootstrap/model_update_form.html:6 #: templates/djadmin2/bootstrap/model_update_form.html:9 @@ -252,14 +243,24 @@ msgstr "" msgid "Change my password" msgstr "" -#: templates/djadmin2/bootstrap/includes/action_buttons.html:3 +#: templates/djadmin2/bootstrap/includes/list_actions.html:17 +#, python-format +msgid "%(selected)s of %(total)s selected" +msgstr "" + +#: templates/djadmin2/bootstrap/includes/list_actions.html:21 +#, python-format +msgid "Add %(model_verbose_name)s" +msgstr "" + +#: templates/djadmin2/bootstrap/includes/save_buttons.html:3 msgid "Save and add another" msgstr "" -#: templates/djadmin2/bootstrap/includes/action_buttons.html:4 +#: templates/djadmin2/bootstrap/includes/save_buttons.html:4 msgid "Save and continue editing" msgstr "" -#: templates/djadmin2/bootstrap/includes/action_buttons.html:5 +#: templates/djadmin2/bootstrap/includes/save_buttons.html:5 msgid "Save" msgstr "" diff --git a/djadmin2/locale/nl/LC_MESSAGES/django.po b/djadmin2/locale/nl/LC_MESSAGES/django.po index 3e5935f..181f9ff 100644 --- a/djadmin2/locale/nl/LC_MESSAGES/django.po +++ b/djadmin2/locale/nl/LC_MESSAGES/django.po @@ -1,5 +1,5 @@ # This file is distributed under the same license as the django-admin2 package. -# +# # Translators: # Translators: # Density21.5 , 2013 @@ -7,33 +7,36 @@ msgid "" msgstr "" "Project-Id-Version: django-admin2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-07 11:01+0200\n" +"POT-Creation-Date: 2013-07-09 11:57+0200\n" "PO-Revision-Date: 2013-07-08 10:54+0000\n" "Last-Translator: Density21.5 \n" -"Language-Team: Dutch (http://www.transifex.com/projects/p/django-admin2/language/nl/)\n" +"Language-Team: Dutch (http://www.transifex.com/projects/p/django-admin2/" +"language/nl/)\n" +"Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: actions.py:26 +#: actions.py:29 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." -msgstr "Om acties uit kunnen voeren moeten er onderdelen geselecteerd zijn. Er zijn geen onderdelen gewijzigd." +msgstr "" +"Om acties uit kunnen voeren moeten er onderdelen geselecteerd zijn. Er zijn " +"geen onderdelen gewijzigd." -#: actions.py:147 +#: actions.py:149 msgid "Delete selected items" msgstr "Verwijder geselecteerde onderdelen" -#: actions.py:151 +#: actions.py:153 #, python-format msgctxt "singular form" msgid "Successfully deleted %(count)s %(items)s" msgstr "%(count)s %(items)s succesvol verwijderd" -#: actions.py:155 +#: actions.py:157 #, python-format msgctxt "plural form" msgid "Successfully deleted %(count)s %(items)s" @@ -53,32 +56,34 @@ msgstr "Nee" #. Translators : %(username)s will be replaced by the username_field name #. (default : username, but could be email, or something else) -#: forms.py:240 +#: forms.py:242 #, python-format msgid "" -"Please enter the correct %(username)s and password for a staff account. Note" -" that both fields may be case-sensitive." -msgstr "Voer alstublieft een correcte %(username)s en wachtwoord combinatie met beheer privileges in. Let er op dat beide velden hoofdletter-gevoelig zijn." +"Please enter the correct %(username)s and password for a staff account. Note " +"that both fields may be case-sensitive." +msgstr "" +"Voer alstublieft een correcte %(username)s en wachtwoord combinatie met " +"beheer privileges in. Let er op dat beide velden hoofdletter-gevoelig zijn." -#: forms.py:251 +#: forms.py:253 msgid "Please log in again, because your session has expired." msgstr "Uw sessie is verlopen, logt u alstublieft opnieuw in." -#: views.py:200 templates/djadmin2/bootstrap/model_update_form.html:31 +#: views.py:228 templates/djadmin2/bootstrap/model_update_form.html:35 #: templates/djadmin2/bootstrap/includes/app_model_list.html:38 msgid "Change" msgstr "Wijzigen" -#: views.py:221 templates/djadmin2/bootstrap/includes/app_model_list.html:30 +#: views.py:249 templates/djadmin2/bootstrap/includes/app_model_list.html:30 msgid "Add" msgstr "Toevoegen" #: templates/djadmin2/bootstrap/app_index.html:6 -#: templates/djadmin2/bootstrap/base.html:55 +#: templates/djadmin2/bootstrap/base.html:56 #: templates/djadmin2/bootstrap/model_confirm_delete.html:10 #: templates/djadmin2/bootstrap/model_detail.html:11 #: templates/djadmin2/bootstrap/model_list.html:14 -#: templates/djadmin2/bootstrap/model_update_form.html:13 +#: templates/djadmin2/bootstrap/model_update_form.html:17 #: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:10 #: templates/djadmin2/bootstrap/auth/logout.html:8 #: templates/djadmin2/bootstrap/auth/password_change_done.html:11 @@ -92,29 +97,29 @@ msgid "%(app_label)s administration" msgstr "%(app_label)s beheer" #: templates/djadmin2/bootstrap/base.html:6 -#: templates/djadmin2/bootstrap/base.html:71 +#: templates/djadmin2/bootstrap/base.html:72 #: templates/djadmin2/bootstrap/auth/login.html:15 msgid "Site administration" msgstr "Site beheer" -#: templates/djadmin2/bootstrap/base.html:22 +#: templates/djadmin2/bootstrap/base.html:23 msgid "API" msgstr "API" -#: templates/djadmin2/bootstrap/base.html:25 +#: templates/djadmin2/bootstrap/base.html:26 msgid "Documentation" msgstr "Documentatie" -#: templates/djadmin2/bootstrap/base.html:34 +#: templates/djadmin2/bootstrap/base.html:35 #, python-format msgid "Logged in as %(user)s" msgstr "Ingelogd als %(user)s" -#: templates/djadmin2/bootstrap/base.html:40 +#: templates/djadmin2/bootstrap/base.html:41 msgid "Change password" msgstr "Wijzig wachtwoord" -#: templates/djadmin2/bootstrap/base.html:42 +#: templates/djadmin2/bootstrap/base.html:43 #: templates/djadmin2/bootstrap/auth/logout.html:11 msgid "Log out" msgstr "Uitloggen" @@ -135,7 +140,8 @@ msgid "Are you sure?" msgstr "Weet u het zeker?" #: templates/djadmin2/bootstrap/model_confirm_delete.html:25 -#: templates/djadmin2/bootstrap/model_update_form.html:76 +#: templates/djadmin2/bootstrap/model_update_form.html:51 +#: templates/djadmin2/bootstrap/model_update_form.html:118 #: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:21 msgid "Delete" msgstr "Verwijderen" @@ -146,7 +152,9 @@ msgstr "Verwijderen" msgid "" "\n" "Are you sure you want to delete the %(model_name)s \"%(object)s\"?\n" -msgstr "Weet u zeker dat u %(model_name)s \"%(object)s\" wilt verwijderen? De volgende onderdelen zullen verwijderd worden:" +msgstr "" +"\n" +"Weet u zeker dat u %(model_name)s \"%(object)s\" wilt verwijderen?\n" #: templates/djadmin2/bootstrap/model_confirm_delete.html:36 msgid "" @@ -155,8 +163,12 @@ msgid "" msgid_plural "" "\n" "All of the following items will be deleted:\n" -msgstr[0] "\nHet volgende onderdeel zal verwijderd worden:\n" -msgstr[1] "\nDe volgende onderdelen zullen verwijderd worden:\n" +msgstr[0] "" +"\n" +"Het volgende onderdeel zal verwijderd worden:\n" +msgstr[1] "" +"\n" +"De volgende onderdelen zullen verwijderd worden:\n" #: templates/djadmin2/bootstrap/model_confirm_delete.html:50 #: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:44 @@ -177,33 +189,31 @@ msgstr "Zoekterm" msgid "Search" msgstr "Zoek" -#: templates/djadmin2/bootstrap/model_list.html:59 -#, python-format -msgid "%(selected)s of %(total)s selected" -msgstr "%(selected)s van %(total)s geselecteerd" - -#: templates/djadmin2/bootstrap/model_list.html:63 -#, python-format -msgid "Add %(model_verbose_name)s" -msgstr "Voeg %(model_verbose_name)s toe" - #. Translators : examples : Add post, Change object #: templates/djadmin2/bootstrap/model_update_form.html:6 #: templates/djadmin2/bootstrap/model_update_form.html:9 #, python-format msgid "%(action_name)s %(model_name)s" -msgstr "%(model_name)s %(action)s" +msgstr "%(model_name)s %(action_name)s" #: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:27 #, python-format msgid "" "\n" -"Are you sure you want to delete the selected %(objects_name)s? The following item will be deleted:\n" +"Are you sure you want to delete the selected %(objects_name)s? The following " +"item will be deleted:\n" msgid_plural "" "\n" -"Are you sure you want to delete the selected %(objects_name)s? The following items will be deleted:\n" -msgstr[0] "Weet u zeker dat u geselecteerd \"%(objects_name)s\" wilt verwijderen? De volgende onderdelen zullen allemaal verwijderd worden:" -msgstr[1] "Weet u zeker dat u geselecteerde \"%(objects_name)s\" wilt verwijderen? De volgende onderdelen zullen allemaal verwijderd worden:" +"Are you sure you want to delete the selected %(objects_name)s? The following " +"items will be deleted:\n" +msgstr[0] "" +"\n" +"Weet u zeker dat u geselecteerd \"%(objects_name)s\" wilt verwijderen? De " +"volgende onderdelen zullen allemaal verwijderd worden:\n" +msgstr[1] "" +"\n" +"Weet u zeker dat u geselecteerde \"%(objects_name)s\" wilt verwijderen? De " +"volgende onderdelen zullen allemaal verwijderd worden:\n" #: templates/djadmin2/bootstrap/auth/login.html:15 #: templates/djadmin2/bootstrap/auth/login.html:52 @@ -219,7 +229,9 @@ msgstr[1] "Corrigeert u alstublieft de onderstaande fouten" #: templates/djadmin2/bootstrap/auth/logout.html:17 msgid "Thanks for spending some quality time with the Web site today." -msgstr "Hartelijk dank voor het doorbrengen van enige momenten van uw waardevolle tijd met de website." +msgstr "" +"Hartelijk dank voor het doorbrengen van enige momenten van uw waardevolle " +"tijd met de website." #: templates/djadmin2/bootstrap/auth/logout.html:18 msgid "Log in again" @@ -242,22 +254,35 @@ msgstr "Wachtwoord wijzigen" #: templates/djadmin2/bootstrap/auth/password_change_form.html:20 msgid "" -"Please enter your old password, for security's sake, and then enter your new" -" password twice so we can verify you typed it in correctly." -msgstr "Voert u alstublieft, om veiligheidsredenen, uw oude wachtwoord in en voer vervolgens uw nieuwe wachtwoord tweemaal in om te verifiëren dat u het wachtwoord correct intypt." +"Please enter your old password, for security's sake, and then enter your new " +"password twice so we can verify you typed it in correctly." +msgstr "" +"Voert u alstublieft, om veiligheidsredenen, uw oude wachtwoord in en voer " +"vervolgens uw nieuwe wachtwoord tweemaal in om te verifiëren dat u het " +"wachtwoord correct intypt." #: templates/djadmin2/bootstrap/auth/password_change_form.html:31 msgid "Change my password" msgstr "Wijzig mijn wachtwoord" -#: templates/djadmin2/bootstrap/includes/action_buttons.html:3 +#: templates/djadmin2/bootstrap/includes/list_actions.html:17 +#, python-format +msgid "%(selected)s of %(total)s selected" +msgstr "%(selected)s van %(total)s geselecteerd" + +#: templates/djadmin2/bootstrap/includes/list_actions.html:21 +#, python-format +msgid "Add %(model_verbose_name)s" +msgstr "Voeg %(model_verbose_name)s toe" + +#: templates/djadmin2/bootstrap/includes/save_buttons.html:3 msgid "Save and add another" msgstr "Opslaan en een nieuwe toevoegen" -#: templates/djadmin2/bootstrap/includes/action_buttons.html:4 +#: templates/djadmin2/bootstrap/includes/save_buttons.html:4 msgid "Save and continue editing" msgstr "Opslaan en doorgaan met wijzigen" -#: templates/djadmin2/bootstrap/includes/action_buttons.html:5 +#: templates/djadmin2/bootstrap/includes/save_buttons.html:5 msgid "Save" msgstr "Opslaan" diff --git a/djadmin2/locale/pl_PL/LC_MESSAGES/django.po b/djadmin2/locale/pl_PL/LC_MESSAGES/django.po index 9cb0bfd..5dd3bdb 100644 --- a/djadmin2/locale/pl_PL/LC_MESSAGES/django.po +++ b/djadmin2/locale/pl_PL/LC_MESSAGES/django.po @@ -1,5 +1,5 @@ # This file is distributed under the same license as the django-admin2 package. -# +# # Translators: # Translators: # dasm , 2013 @@ -9,33 +9,37 @@ msgid "" msgstr "" "Project-Id-Version: django-admin2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-07 11:01+0200\n" +"POT-Creation-Date: 2013-07-09 11:57+0200\n" "PO-Revision-Date: 2013-07-08 17:49+0000\n" "Last-Translator: dasm \n" -"Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/django-admin2/language/pl_PL/)\n" +"Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/django-" +"admin2/language/pl_PL/)\n" +"Language: pl_PL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" -#: actions.py:26 +#: actions.py:29 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." -msgstr "Wykonanie akcji wymaga wybrania elementów. Żaden element nie został zmieniony." +msgstr "" +"Wykonanie akcji wymaga wybrania elementów. Żaden element nie został " +"zmieniony." -#: actions.py:147 +#: actions.py:149 msgid "Delete selected items" msgstr "Usuń wybrane obiekty" -#: actions.py:151 +#: actions.py:153 #, python-format msgctxt "singular form" msgid "Successfully deleted %(count)s %(items)s" msgstr "Pomyślnie usunięto %(count)s %(items)s" -#: actions.py:155 +#: actions.py:157 #, python-format msgctxt "plural form" msgid "Successfully deleted %(count)s %(items)s" @@ -55,32 +59,34 @@ msgstr "Nie" #. Translators : %(username)s will be replaced by the username_field name #. (default : username, but could be email, or something else) -#: forms.py:240 +#: forms.py:242 #, python-format msgid "" -"Please enter the correct %(username)s and password for a staff account. Note" -" that both fields may be case-sensitive." -msgstr "Proszę wprowadzić poprawne %(username)s i hasło do konta administratora. Należy pamiętać, że oba pola mogą rozróżniać wielkość wprowadzonych znaków." +"Please enter the correct %(username)s and password for a staff account. Note " +"that both fields may be case-sensitive." +msgstr "" +"Proszę wprowadzić poprawne %(username)s i hasło do konta administratora. " +"Należy pamiętać, że oba pola mogą rozróżniać wielkość wprowadzonych znaków." -#: forms.py:251 +#: forms.py:253 msgid "Please log in again, because your session has expired." msgstr "Proszę zalogować się ponownie, ponieważ twoja sesja wygasła." -#: views.py:200 templates/djadmin2/bootstrap/model_update_form.html:31 +#: views.py:228 templates/djadmin2/bootstrap/model_update_form.html:35 #: templates/djadmin2/bootstrap/includes/app_model_list.html:38 msgid "Change" msgstr "Zmień" -#: views.py:221 templates/djadmin2/bootstrap/includes/app_model_list.html:30 +#: views.py:249 templates/djadmin2/bootstrap/includes/app_model_list.html:30 msgid "Add" msgstr "Dodaj" #: templates/djadmin2/bootstrap/app_index.html:6 -#: templates/djadmin2/bootstrap/base.html:55 +#: templates/djadmin2/bootstrap/base.html:56 #: templates/djadmin2/bootstrap/model_confirm_delete.html:10 #: templates/djadmin2/bootstrap/model_detail.html:11 #: templates/djadmin2/bootstrap/model_list.html:14 -#: templates/djadmin2/bootstrap/model_update_form.html:13 +#: templates/djadmin2/bootstrap/model_update_form.html:17 #: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:10 #: templates/djadmin2/bootstrap/auth/logout.html:8 #: templates/djadmin2/bootstrap/auth/password_change_done.html:11 @@ -94,29 +100,29 @@ msgid "%(app_label)s administration" msgstr "%(app_label)s - administracja" #: templates/djadmin2/bootstrap/base.html:6 -#: templates/djadmin2/bootstrap/base.html:71 +#: templates/djadmin2/bootstrap/base.html:72 #: templates/djadmin2/bootstrap/auth/login.html:15 msgid "Site administration" msgstr "Administracja stroną" -#: templates/djadmin2/bootstrap/base.html:22 +#: templates/djadmin2/bootstrap/base.html:23 msgid "API" msgstr "API" -#: templates/djadmin2/bootstrap/base.html:25 +#: templates/djadmin2/bootstrap/base.html:26 msgid "Documentation" msgstr "Dokumentacja" -#: templates/djadmin2/bootstrap/base.html:34 +#: templates/djadmin2/bootstrap/base.html:35 #, python-format msgid "Logged in as %(user)s" msgstr "Zalogowano jako %(user)s" -#: templates/djadmin2/bootstrap/base.html:40 +#: templates/djadmin2/bootstrap/base.html:41 msgid "Change password" msgstr "Zmień hasło" -#: templates/djadmin2/bootstrap/base.html:42 +#: templates/djadmin2/bootstrap/base.html:43 #: templates/djadmin2/bootstrap/auth/logout.html:11 msgid "Log out" msgstr "Wyloguj się" @@ -137,7 +143,8 @@ msgid "Are you sure?" msgstr "Jesteś pewien?" #: templates/djadmin2/bootstrap/model_confirm_delete.html:25 -#: templates/djadmin2/bootstrap/model_update_form.html:76 +#: templates/djadmin2/bootstrap/model_update_form.html:51 +#: templates/djadmin2/bootstrap/model_update_form.html:118 #: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:21 msgid "Delete" msgstr "Usuń" @@ -148,7 +155,9 @@ msgstr "Usuń" msgid "" "\n" "Are you sure you want to delete the %(model_name)s \"%(object)s\"?\n" -msgstr "Czy chcesz skasować %(model_name)s \"%(object)s\"? Następujące elementy zostaną usunięte:" +msgstr "" +"\n" +"Czy chcesz skasować %(model_name)s \"%(object)s\"?\n" #: templates/djadmin2/bootstrap/model_confirm_delete.html:36 msgid "" @@ -157,9 +166,16 @@ msgid "" msgid_plural "" "\n" "All of the following items will be deleted:\n" -msgstr[0] "\nNastępujące element zostanie skasowany:\n" -msgstr[1] "\nNastępujące elementy zostaną skasowane:\n" -msgstr[2] "\nNastępujące elementy zostaną skasowane:\n\n" +msgstr[0] "" +"\n" +"Następujące element zostanie skasowany:\n" +msgstr[1] "" +"\n" +"Następujące elementy zostaną skasowane:\n" +msgstr[2] "" +"\n" +"Następujące elementy zostaną skasowane:\n" +"\n" #: templates/djadmin2/bootstrap/model_confirm_delete.html:50 #: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:44 @@ -180,34 +196,35 @@ msgstr "Poszukiwane wyrażenie" msgid "Search" msgstr "Szukaj" -#: templates/djadmin2/bootstrap/model_list.html:59 -#, python-format -msgid "%(selected)s of %(total)s selected" -msgstr "%(selected)s z %(total)s wybranych" - -#: templates/djadmin2/bootstrap/model_list.html:63 -#, python-format -msgid "Add %(model_verbose_name)s" -msgstr "Dodaj %(model_verbose_name)s" - #. Translators : examples : Add post, Change object #: templates/djadmin2/bootstrap/model_update_form.html:6 #: templates/djadmin2/bootstrap/model_update_form.html:9 #, python-format msgid "%(action_name)s %(model_name)s" -msgstr "%(action)s %(model_name)s" +msgstr "%(action_name)s %(model_name)s" #: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:27 #, python-format msgid "" "\n" -"Are you sure you want to delete the selected %(objects_name)s? The following item will be deleted:\n" +"Are you sure you want to delete the selected %(objects_name)s? The following " +"item will be deleted:\n" msgid_plural "" "\n" -"Are you sure you want to delete the selected %(objects_name)s? The following items will be deleted:\n" -msgstr[0] "Czy chcesz skasować wybrany %(objects_name)s? Następujący obiekt zostanie usunięty:" -msgstr[1] "Czy chcesz skasować wybrane %(objects_name)s? Następujące obiekty zostaną usunięte:" -msgstr[2] "Czy chcesz skasować wybrane %(objects_name)s? Następujące elementy zostaną usunięte:" +"Are you sure you want to delete the selected %(objects_name)s? The following " +"items will be deleted:\n" +msgstr[0] "" +"\n" +"Czy chcesz skasować wybrany %(objects_name)s? Następujący obiekt zostanie " +"usunięty:\n" +msgstr[1] "" +"\n" +"Czy chcesz skasować wybrane %(objects_name)s? Następujące obiekty zostaną " +"usunięte:\n" +msgstr[2] "" +"\n" +"Czy chcesz skasować wybrane %(objects_name)s? Następujące elementy zostaną " +"usunięte:\n" #: templates/djadmin2/bootstrap/auth/login.html:15 #: templates/djadmin2/bootstrap/auth/login.html:52 @@ -247,22 +264,34 @@ msgstr "Zmiana hasła" #: templates/djadmin2/bootstrap/auth/password_change_form.html:20 msgid "" -"Please enter your old password, for security's sake, and then enter your new" -" password twice so we can verify you typed it in correctly." -msgstr "W celach bezpieczeństwa podaj swoje stare hasło oraz wprowadź dwukrotnie nowe hasło, by można było zweryfikować jego poprawność." +"Please enter your old password, for security's sake, and then enter your new " +"password twice so we can verify you typed it in correctly." +msgstr "" +"W celach bezpieczeństwa podaj swoje stare hasło oraz wprowadź dwukrotnie " +"nowe hasło, by można było zweryfikować jego poprawność." #: templates/djadmin2/bootstrap/auth/password_change_form.html:31 msgid "Change my password" msgstr "Zmień moje hasło" -#: templates/djadmin2/bootstrap/includes/action_buttons.html:3 +#: templates/djadmin2/bootstrap/includes/list_actions.html:17 +#, python-format +msgid "%(selected)s of %(total)s selected" +msgstr "%(selected)s z %(total)s wybranych" + +#: templates/djadmin2/bootstrap/includes/list_actions.html:21 +#, python-format +msgid "Add %(model_verbose_name)s" +msgstr "Dodaj %(model_verbose_name)s" + +#: templates/djadmin2/bootstrap/includes/save_buttons.html:3 msgid "Save and add another" msgstr "Zapisz i dodaj nowe" -#: templates/djadmin2/bootstrap/includes/action_buttons.html:4 +#: templates/djadmin2/bootstrap/includes/save_buttons.html:4 msgid "Save and continue editing" msgstr "Zapisz i kontynuuj edycję" -#: templates/djadmin2/bootstrap/includes/action_buttons.html:5 +#: templates/djadmin2/bootstrap/includes/save_buttons.html:5 msgid "Save" msgstr "Zapisz" diff --git a/djadmin2/locale/pt_BR/LC_MESSAGES/django.po b/djadmin2/locale/pt_BR/LC_MESSAGES/django.po index b6d04bd..97dfdb4 100644 --- a/djadmin2/locale/pt_BR/LC_MESSAGES/django.po +++ b/djadmin2/locale/pt_BR/LC_MESSAGES/django.po @@ -1,5 +1,5 @@ # This file is distributed under the same license as the django-admin2 package. -# +# # Translators: # Translators: # andrewsmedina , 2013 @@ -8,33 +8,36 @@ msgid "" msgstr "" "Project-Id-Version: django-admin2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-07 11:01+0200\n" +"POT-Creation-Date: 2013-07-09 11:57+0200\n" "PO-Revision-Date: 2013-07-09 05:03+0000\n" "Last-Translator: Douglas Miranda \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/django-admin2/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/" +"django-admin2/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: actions.py:26 +#: actions.py:29 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." -msgstr "Os itens devem ser selecionados, a fim de executar ações sobre eles. Não há itens que foram alterados." +msgstr "" +"Os itens devem ser selecionados, a fim de executar ações sobre eles. Não há " +"itens que foram alterados." -#: actions.py:147 +#: actions.py:149 msgid "Delete selected items" msgstr "Remover itens selecionados" -#: actions.py:151 +#: actions.py:153 #, python-format msgctxt "singular form" msgid "Successfully deleted %(count)s %(items)s" msgstr "%(count)s %(items)s removidos com sucesso" -#: actions.py:155 +#: actions.py:157 #, python-format msgctxt "plural form" msgid "Successfully deleted %(count)s %(items)s" @@ -54,32 +57,34 @@ msgstr "Não" #. Translators : %(username)s will be replaced by the username_field name #. (default : username, but could be email, or something else) -#: forms.py:240 +#: forms.py:242 #, python-format msgid "" -"Please enter the correct %(username)s and password for a staff account. Note" -" that both fields may be case-sensitive." -msgstr "Por favor digite o %(username)s e senha corretos para uma conta pessoal. Note-se que ambos os campos podem diferenciar maiúsculas de minúsculas." +"Please enter the correct %(username)s and password for a staff account. Note " +"that both fields may be case-sensitive." +msgstr "" +"Por favor digite o %(username)s e senha corretos para uma conta pessoal. " +"Note-se que ambos os campos podem diferenciar maiúsculas de minúsculas." -#: forms.py:251 +#: forms.py:253 msgid "Please log in again, because your session has expired." msgstr "Por favor autentique-se novamente, porque sua sessão expirou." -#: views.py:200 templates/djadmin2/bootstrap/model_update_form.html:31 +#: views.py:228 templates/djadmin2/bootstrap/model_update_form.html:35 #: templates/djadmin2/bootstrap/includes/app_model_list.html:38 msgid "Change" msgstr "Alterar" -#: views.py:221 templates/djadmin2/bootstrap/includes/app_model_list.html:30 +#: views.py:249 templates/djadmin2/bootstrap/includes/app_model_list.html:30 msgid "Add" msgstr "Adicionar" #: templates/djadmin2/bootstrap/app_index.html:6 -#: templates/djadmin2/bootstrap/base.html:55 +#: templates/djadmin2/bootstrap/base.html:56 #: templates/djadmin2/bootstrap/model_confirm_delete.html:10 #: templates/djadmin2/bootstrap/model_detail.html:11 #: templates/djadmin2/bootstrap/model_list.html:14 -#: templates/djadmin2/bootstrap/model_update_form.html:13 +#: templates/djadmin2/bootstrap/model_update_form.html:17 #: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:10 #: templates/djadmin2/bootstrap/auth/logout.html:8 #: templates/djadmin2/bootstrap/auth/password_change_done.html:11 @@ -93,29 +98,29 @@ msgid "%(app_label)s administration" msgstr "%(app_label)s administração" #: templates/djadmin2/bootstrap/base.html:6 -#: templates/djadmin2/bootstrap/base.html:71 +#: templates/djadmin2/bootstrap/base.html:72 #: templates/djadmin2/bootstrap/auth/login.html:15 msgid "Site administration" msgstr "Administração" -#: templates/djadmin2/bootstrap/base.html:22 +#: templates/djadmin2/bootstrap/base.html:23 msgid "API" msgstr "API" -#: templates/djadmin2/bootstrap/base.html:25 +#: templates/djadmin2/bootstrap/base.html:26 msgid "Documentation" msgstr "Documentação" -#: templates/djadmin2/bootstrap/base.html:34 +#: templates/djadmin2/bootstrap/base.html:35 #, python-format msgid "Logged in as %(user)s" msgstr "Autenticado como %(user)s" -#: templates/djadmin2/bootstrap/base.html:40 +#: templates/djadmin2/bootstrap/base.html:41 msgid "Change password" msgstr "Alterar senha" -#: templates/djadmin2/bootstrap/base.html:42 +#: templates/djadmin2/bootstrap/base.html:43 #: templates/djadmin2/bootstrap/auth/logout.html:11 msgid "Log out" msgstr "Sair" @@ -136,7 +141,8 @@ msgid "Are you sure?" msgstr "Você está certo?" #: templates/djadmin2/bootstrap/model_confirm_delete.html:25 -#: templates/djadmin2/bootstrap/model_update_form.html:76 +#: templates/djadmin2/bootstrap/model_update_form.html:51 +#: templates/djadmin2/bootstrap/model_update_form.html:118 #: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:21 msgid "Delete" msgstr "Remover" @@ -147,7 +153,9 @@ msgstr "Remover" msgid "" "\n" "Are you sure you want to delete the %(model_name)s \"%(object)s\"?\n" -msgstr "Você está certo em querer remover os %(model_name)s \"%(object)s\"? Todos os seguintes itens serão removidos:" +msgstr "" +"\n" +"Você está certo em querer remover os %(model_name)s \"%(object)s\"?\n" #: templates/djadmin2/bootstrap/model_confirm_delete.html:36 msgid "" @@ -156,8 +164,12 @@ msgid "" msgid_plural "" "\n" "All of the following items will be deleted:\n" -msgstr[0] "\nO item seguinte será removido:\n" -msgstr[1] "\nTodos os itens seguintes serão removidos:\n" +msgstr[0] "" +"\n" +"O item seguinte será removido:\n" +msgstr[1] "" +"\n" +"Todos os itens seguintes serão removidos:\n" #: templates/djadmin2/bootstrap/model_confirm_delete.html:50 #: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:44 @@ -178,33 +190,31 @@ msgstr "Buscar Termo" msgid "Search" msgstr "Buscar" -#: templates/djadmin2/bootstrap/model_list.html:59 -#, python-format -msgid "%(selected)s of %(total)s selected" -msgstr "%(selected)s de %(total)s selecionados" - -#: templates/djadmin2/bootstrap/model_list.html:63 -#, python-format -msgid "Add %(model_verbose_name)s" -msgstr "Adicionar %(model_verbose_name)s" - #. Translators : examples : Add post, Change object #: templates/djadmin2/bootstrap/model_update_form.html:6 #: templates/djadmin2/bootstrap/model_update_form.html:9 #, python-format msgid "%(action_name)s %(model_name)s" -msgstr "%(action)s %(model_name)s" +msgstr "%(action_name)s %(model_name)s" #: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:27 #, python-format msgid "" "\n" -"Are you sure you want to delete the selected %(objects_name)s? The following item will be deleted:\n" +"Are you sure you want to delete the selected %(objects_name)s? The following " +"item will be deleted:\n" msgid_plural "" "\n" -"Are you sure you want to delete the selected %(objects_name)s? The following items will be deleted:\n" -msgstr[0] "Você está certo em querer remover o %(objects_name)s selecionado? Todos os itens seguintes serão removidos:" -msgstr[1] "Você está certo em querer remover os %(objects_name)s selecionados? Todo os itens seguintes serão removidos:" +"Are you sure you want to delete the selected %(objects_name)s? The following " +"items will be deleted:\n" +msgstr[0] "" +"\n" +"Você está certo em querer remover o %(objects_name)s selecionado? Todos os " +"itens seguintes serão removidos:\n" +msgstr[1] "" +"\n" +"Você está certo em querer remover os %(objects_name)s selecionados? Todo os " +"itens seguintes serão removidos:\n" #: templates/djadmin2/bootstrap/auth/login.html:15 #: templates/djadmin2/bootstrap/auth/login.html:52 @@ -243,22 +253,35 @@ msgstr "Alterar senha" #: templates/djadmin2/bootstrap/auth/password_change_form.html:20 msgid "" -"Please enter your old password, for security's sake, and then enter your new" -" password twice so we can verify you typed it in correctly." -msgstr "Por favor, digite sua senha antiga, por questões de segurança, e, em seguida, digite a nova senha duas vezes, para que possamos verificar se você digitou corretamente." +"Please enter your old password, for security's sake, and then enter your new " +"password twice so we can verify you typed it in correctly." +msgstr "" +"Por favor, digite sua senha antiga, por questões de segurança, e, em " +"seguida, digite a nova senha duas vezes, para que possamos verificar se você " +"digitou corretamente." #: templates/djadmin2/bootstrap/auth/password_change_form.html:31 msgid "Change my password" msgstr "Alterar minha senha" -#: templates/djadmin2/bootstrap/includes/action_buttons.html:3 +#: templates/djadmin2/bootstrap/includes/list_actions.html:17 +#, python-format +msgid "%(selected)s of %(total)s selected" +msgstr "%(selected)s de %(total)s selecionados" + +#: templates/djadmin2/bootstrap/includes/list_actions.html:21 +#, python-format +msgid "Add %(model_verbose_name)s" +msgstr "Adicionar %(model_verbose_name)s" + +#: templates/djadmin2/bootstrap/includes/save_buttons.html:3 msgid "Save and add another" msgstr "Salvar e adicionar outro" -#: templates/djadmin2/bootstrap/includes/action_buttons.html:4 +#: templates/djadmin2/bootstrap/includes/save_buttons.html:4 msgid "Save and continue editing" msgstr "Salvar e continuar editando" -#: templates/djadmin2/bootstrap/includes/action_buttons.html:5 +#: templates/djadmin2/bootstrap/includes/save_buttons.html:5 msgid "Save" msgstr "Salvar" diff --git a/djadmin2/locale/sk/LC_MESSAGES/django.po b/djadmin2/locale/sk/LC_MESSAGES/django.po index d58e045..e58c84d 100644 --- a/djadmin2/locale/sk/LC_MESSAGES/django.po +++ b/djadmin2/locale/sk/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: django-admin2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-08 16:07+0200\n" +"POT-Creation-Date: 2013-07-09 11:57+0200\n" "PO-Revision-Date: 2013-07-07 18:39+0000\n" "Last-Translator: marekzelinka \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/django-admin2/" @@ -141,7 +141,7 @@ msgstr "Určite?" #: templates/djadmin2/bootstrap/model_confirm_delete.html:25 #: templates/djadmin2/bootstrap/model_update_form.html:51 -#: templates/djadmin2/bootstrap/model_update_form.html:103 +#: templates/djadmin2/bootstrap/model_update_form.html:118 #: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:21 msgid "Delete" msgstr "Odstrániť" @@ -192,16 +192,6 @@ msgstr "Vyhľadávaný výraz" msgid "Search" msgstr "Hľadať" -#: templates/djadmin2/bootstrap/model_list.html:59 -#, python-format -msgid "%(selected)s of %(total)s selected" -msgstr "Vybraných %(selected)s z %(total)s" - -#: templates/djadmin2/bootstrap/model_list.html:63 -#, python-format -msgid "Add %(model_verbose_name)s" -msgstr "Pridať %(model_verbose_name)s" - #. Translators : examples : Add post, Change object #: templates/djadmin2/bootstrap/model_update_form.html:6 #: templates/djadmin2/bootstrap/model_update_form.html:9 @@ -280,6 +270,16 @@ msgstr "" msgid "Change my password" msgstr "Zmeniť moje heslo" +#: templates/djadmin2/bootstrap/includes/list_actions.html:17 +#, python-format +msgid "%(selected)s of %(total)s selected" +msgstr "Vybraných %(selected)s z %(total)s" + +#: templates/djadmin2/bootstrap/includes/list_actions.html:21 +#, python-format +msgid "Add %(model_verbose_name)s" +msgstr "Pridať %(model_verbose_name)s" + #: templates/djadmin2/bootstrap/includes/save_buttons.html:3 msgid "Save and add another" msgstr "Uložiť a pridať ďalšie" diff --git a/djadmin2/locale/zh/LC_MESSAGES/django.po b/djadmin2/locale/zh/LC_MESSAGES/django.po index 59aa369..a0851fe 100644 --- a/djadmin2/locale/zh/LC_MESSAGES/django.po +++ b/djadmin2/locale/zh/LC_MESSAGES/django.po @@ -1,5 +1,5 @@ # This file is distributed under the same license as the django-admin2 package. -# +# # Translators: # Translators: # EricHo , 2013 @@ -8,33 +8,34 @@ msgid "" msgstr "" "Project-Id-Version: django-admin2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-07 11:01+0200\n" +"POT-Creation-Date: 2013-07-09 11:57+0200\n" "PO-Revision-Date: 2013-07-08 07:10+0000\n" "Last-Translator: introom \n" -"Language-Team: Chinese (http://www.transifex.com/projects/p/django-admin2/language/zh/)\n" +"Language-Team: Chinese (http://www.transifex.com/projects/p/django-admin2/" +"language/zh/)\n" +"Language: zh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: actions.py:26 +#: actions.py:29 msgid "" "Items must be selected in order to perform actions on them. No items have " "been changed." msgstr "请选择项目以进行后续操作。当前没有修改的项目。" -#: actions.py:147 +#: actions.py:149 msgid "Delete selected items" msgstr "删除所选择的项目" -#: actions.py:151 +#: actions.py:153 #, python-format msgctxt "singular form" msgid "Successfully deleted %(count)s %(items)s" msgstr "已成功地刪除%(count)s %(items)s " -#: actions.py:155 +#: actions.py:157 #, python-format msgctxt "plural form" msgid "Successfully deleted %(count)s %(items)s" @@ -54,32 +55,32 @@ msgstr "否" #. Translators : %(username)s will be replaced by the username_field name #. (default : username, but could be email, or something else) -#: forms.py:240 +#: forms.py:242 #, python-format msgid "" -"Please enter the correct %(username)s and password for a staff account. Note" -" that both fields may be case-sensitive." +"Please enter the correct %(username)s and password for a staff account. Note " +"that both fields may be case-sensitive." msgstr "请输入正确的%(username)s和密码。注意大小写。" -#: forms.py:251 +#: forms.py:253 msgid "Please log in again, because your session has expired." msgstr "由于您的会话已经过期,请重新登录。" -#: views.py:200 templates/djadmin2/bootstrap/model_update_form.html:31 +#: views.py:228 templates/djadmin2/bootstrap/model_update_form.html:35 #: templates/djadmin2/bootstrap/includes/app_model_list.html:38 msgid "Change" msgstr "修改" -#: views.py:221 templates/djadmin2/bootstrap/includes/app_model_list.html:30 +#: views.py:249 templates/djadmin2/bootstrap/includes/app_model_list.html:30 msgid "Add" msgstr "增加" #: templates/djadmin2/bootstrap/app_index.html:6 -#: templates/djadmin2/bootstrap/base.html:55 +#: templates/djadmin2/bootstrap/base.html:56 #: templates/djadmin2/bootstrap/model_confirm_delete.html:10 #: templates/djadmin2/bootstrap/model_detail.html:11 #: templates/djadmin2/bootstrap/model_list.html:14 -#: templates/djadmin2/bootstrap/model_update_form.html:13 +#: templates/djadmin2/bootstrap/model_update_form.html:17 #: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:10 #: templates/djadmin2/bootstrap/auth/logout.html:8 #: templates/djadmin2/bootstrap/auth/password_change_done.html:11 @@ -93,29 +94,29 @@ msgid "%(app_label)s administration" msgstr "%(app_label)s 管理" #: templates/djadmin2/bootstrap/base.html:6 -#: templates/djadmin2/bootstrap/base.html:71 +#: templates/djadmin2/bootstrap/base.html:72 #: templates/djadmin2/bootstrap/auth/login.html:15 msgid "Site administration" msgstr "站点管理" -#: templates/djadmin2/bootstrap/base.html:22 +#: templates/djadmin2/bootstrap/base.html:23 msgid "API" msgstr "API" -#: templates/djadmin2/bootstrap/base.html:25 +#: templates/djadmin2/bootstrap/base.html:26 msgid "Documentation" msgstr "文档" -#: templates/djadmin2/bootstrap/base.html:34 +#: templates/djadmin2/bootstrap/base.html:35 #, python-format msgid "Logged in as %(user)s" msgstr "登入用户:%(user)s" -#: templates/djadmin2/bootstrap/base.html:40 +#: templates/djadmin2/bootstrap/base.html:41 msgid "Change password" msgstr "修改密码" -#: templates/djadmin2/bootstrap/base.html:42 +#: templates/djadmin2/bootstrap/base.html:43 #: templates/djadmin2/bootstrap/auth/logout.html:11 msgid "Log out" msgstr "登出" @@ -136,7 +137,8 @@ msgid "Are you sure?" msgstr "您确定吗?" #: templates/djadmin2/bootstrap/model_confirm_delete.html:25 -#: templates/djadmin2/bootstrap/model_update_form.html:76 +#: templates/djadmin2/bootstrap/model_update_form.html:51 +#: templates/djadmin2/bootstrap/model_update_form.html:118 #: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:21 msgid "Delete" msgstr "删除" @@ -147,7 +149,9 @@ msgstr "删除" msgid "" "\n" "Are you sure you want to delete the %(model_name)s \"%(object)s\"?\n" -msgstr "您确定要删除 %(model_name)s \"%(object)s\"吗?所有以下项目将会被删除:" +msgstr "" +"\n" +"您确定要删除 %(model_name)s \"%(object)s\"吗?所有以下项目将会被删除:\n" #: templates/djadmin2/bootstrap/model_confirm_delete.html:36 msgid "" @@ -156,7 +160,9 @@ msgid "" msgid_plural "" "\n" "All of the following items will be deleted:\n" -msgstr[0] "\n以下所有項目將被刪除:\n" +msgstr[0] "" +"\n" +"以下所有項目將被刪除:\n" #: templates/djadmin2/bootstrap/model_confirm_delete.html:50 #: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:44 @@ -177,32 +183,24 @@ msgstr "搜索条目" msgid "Search" msgstr "搜索" -#: templates/djadmin2/bootstrap/model_list.html:59 -#, python-format -msgid "%(selected)s of %(total)s selected" -msgstr "共选择了%(selected)s/%(total)s" - -#: templates/djadmin2/bootstrap/model_list.html:63 -#, python-format -msgid "Add %(model_verbose_name)s" -msgstr "增加%(model_verbose_name)s" - #. Translators : examples : Add post, Change object #: templates/djadmin2/bootstrap/model_update_form.html:6 #: templates/djadmin2/bootstrap/model_update_form.html:9 #, python-format msgid "%(action_name)s %(model_name)s" -msgstr "%(action)s %(model_name)s" +msgstr "%(action_name)s %(model_name)s" #: templates/djadmin2/bootstrap/actions/delete_selected_confirmation.html:27 #, python-format msgid "" "\n" -"Are you sure you want to delete the selected %(objects_name)s? The following item will be deleted:\n" +"Are you sure you want to delete the selected %(objects_name)s? The following " +"item will be deleted:\n" msgid_plural "" "\n" -"Are you sure you want to delete the selected %(objects_name)s? The following items will be deleted:\n" -msgstr[0] "您确定要删除所选择的%(objects_name)s吗?以下所有项目都将被删除:" +"Are you sure you want to delete the selected %(objects_name)s? The following " +"items will be deleted:\n" +msgstr[0] "\n您确定要删除所选择的%(objects_name)s吗?以下所有项目都将被删除:\n" #: templates/djadmin2/bootstrap/auth/login.html:15 #: templates/djadmin2/bootstrap/auth/login.html:52 @@ -240,22 +238,34 @@ msgstr "修改密码" #: templates/djadmin2/bootstrap/auth/password_change_form.html:20 msgid "" -"Please enter your old password, for security's sake, and then enter your new" -" password twice so we can verify you typed it in correctly." -msgstr "出于安全因素,请您输入旧密码。然后再输入两次新密码以便我们确保您正确地输入了新密码。" +"Please enter your old password, for security's sake, and then enter your new " +"password twice so we can verify you typed it in correctly." +msgstr "" +"出于安全因素,请您输入旧密码。然后再输入两次新密码以便我们确保您正确地输入了" +"新密码。" #: templates/djadmin2/bootstrap/auth/password_change_form.html:31 msgid "Change my password" msgstr "修改我的密码" -#: templates/djadmin2/bootstrap/includes/action_buttons.html:3 +#: templates/djadmin2/bootstrap/includes/list_actions.html:17 +#, python-format +msgid "%(selected)s of %(total)s selected" +msgstr "共选择了%(selected)s/%(total)s" + +#: templates/djadmin2/bootstrap/includes/list_actions.html:21 +#, python-format +msgid "Add %(model_verbose_name)s" +msgstr "增加%(model_verbose_name)s" + +#: templates/djadmin2/bootstrap/includes/save_buttons.html:3 msgid "Save and add another" msgstr "保存并且增加下一个" -#: templates/djadmin2/bootstrap/includes/action_buttons.html:4 +#: templates/djadmin2/bootstrap/includes/save_buttons.html:4 msgid "Save and continue editing" msgstr "保存并且继续编辑" -#: templates/djadmin2/bootstrap/includes/action_buttons.html:5 +#: templates/djadmin2/bootstrap/includes/save_buttons.html:5 msgid "Save" msgstr "保存" diff --git a/example/blog/locale/de/LC_MESSAGES/django.po b/example/blog/locale/de/LC_MESSAGES/django.po index ef66a0f..4c28f00 100644 --- a/example/blog/locale/de/LC_MESSAGES/django.po +++ b/example/blog/locale/de/LC_MESSAGES/django.po @@ -1,7 +1,5 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# +# This file is distributed under the same license as the django-admin2 package. +# # Translators: # dbrgn , 2013 # Jannis Leidel , 2013 @@ -9,66 +7,67 @@ msgid "" msgstr "" "Project-Id-Version: django-admin2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-07 11:13+0200\n" +"POT-Creation-Date: 2013-07-09 11:57+0200\n" "PO-Revision-Date: 2013-07-08 08:48+0000\n" "Last-Translator: dbrgn \n" -"Language-Team: German (http://www.transifex.com/projects/p/django-admin2/language/de/)\n" +"Language-Team: German (http://www.transifex.com/projects/p/django-admin2/" +"language/de/)\n" +"Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: actions.py:13 +#: actions.py:16 msgid "Publish selected items" msgstr "Gewählte Elemente veröffentlichen" -#: actions.py:14 +#: actions.py:18 #, python-format msgctxt "singular form" msgid "Successfully published %(count)s %(items)s" msgstr "Erfolgreich %(count)s %(items)s veröffentlicht" -#: actions.py:15 +#: actions.py:20 #, python-format msgctxt "plural form" msgid "Successfully published %(count)s %(items)s" msgstr "Erfolgreich %(count)s %(items)s veröffentlicht" -#: admin2.py:18 +#: admin2.py:22 msgid "Items unpublished" msgstr "Veröffentlichung von Einträgen zurückgenommen" #. Translators : action description -#: admin2.py:21 +#: admin2.py:25 msgid "Unpublish selected items" msgstr "Veröffentlichung der ausgewählten Einträge zurücknehmen" -#: models.py:8 +#: models.py:11 msgid "title" msgstr "Titel" -#: models.py:9 models.py:22 +#: models.py:12 models.py:25 msgid "body" msgstr "Inhalt" -#: models.py:10 +#: models.py:13 msgid "published" msgstr "Veröffentlicht" -#: models.py:16 models.py:21 +#: models.py:19 models.py:24 msgid "post" msgstr "Eintrag" -#: models.py:17 +#: models.py:20 msgid "posts" msgstr "Einträge" -#: models.py:28 +#: models.py:31 msgid "comment" msgstr "Kommentar" -#: models.py:29 +#: models.py:32 msgid "comments" msgstr "Kommentare" @@ -100,7 +99,9 @@ msgstr "Und so weiter..." msgid "" "In other words, these are items that we can introspect through the Django " "admin." -msgstr "Mit anderen Worten, das sind Elemente, die wir mit dem Django Admin betrachten können." +msgstr "" +"Mit anderen Worten, das sind Elemente, die wir mit dem Django Admin " +"betrachten können." #: templates/blog/home.html:22 msgid "Under the hood" @@ -110,7 +111,9 @@ msgstr "Unter der Motorhaube" msgid "" "Now, explore the Django admin for example.com. Click on either of the " "following:" -msgstr "Entdecke nun den Django Admin für example.com. Klicke auf eines der folgenden Elemente:" +msgstr "" +"Entdecke nun den Django Admin für example.com. Klicke auf eines der " +"folgenden Elemente:" #: templates/blog/home.html:30 #, python-format @@ -152,5 +155,11 @@ msgid "" msgid_plural "" "Are you sure you want to publish the selected %(objects_name)s?\n" " The following items will be published:\n" -msgstr[0] "Bist du sicher, dass du das gewählte %(objects_name)s veröffentlichen willst?\nDas folgende Element wird veröffentlicht:\n" -msgstr[1] "Bist du sicher, dass du die gewählten %(objects_name)s veröffentlichen willst?\nDie folgenden Elemente werden veröffentlicht:\n" +msgstr[0] "" +"Bist du sicher, dass du das gewählte %(objects_name)s veröffentlichen " +"willst?\n" +"Das folgende Element wird veröffentlicht:\n" +msgstr[1] "" +"Bist du sicher, dass du die gewählten %(objects_name)s veröffentlichen " +"willst?\n" +"Die folgenden Elemente werden veröffentlicht:\n" diff --git a/example/blog/locale/en/LC_MESSAGES/django.po b/example/blog/locale/en/LC_MESSAGES/django.po index 221555b..2fc3d7e 100644 --- a/example/blog/locale/en/LC_MESSAGES/django.po +++ b/example/blog/locale/en/LC_MESSAGES/django.po @@ -1,15 +1,11 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. +# This file is distributed under the same license as the django-admin2 package. # -#, fuzzy msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: django-admin2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-07 11:13+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"POT-Creation-Date: 2013-07-09 11:57+0200\n" +"PO-Revision-Date: 2013-07-09 11:57+0200\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "Language: \n" @@ -17,56 +13,56 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: actions.py:13 +#: actions.py:16 msgid "Publish selected items" msgstr "" -#: actions.py:14 +#: actions.py:18 #, python-format msgctxt "singular form" msgid "Successfully published %(count)s %(items)s" msgstr "" -#: actions.py:15 +#: actions.py:20 #, python-format msgctxt "plural form" msgid "Successfully published %(count)s %(items)s" msgstr "" -#: admin2.py:18 +#: admin2.py:22 msgid "Items unpublished" msgstr "" #. Translators : action description -#: admin2.py:21 +#: admin2.py:25 msgid "Unpublish selected items" msgstr "" -#: models.py:8 +#: models.py:11 msgid "title" msgstr "" -#: models.py:9 models.py:22 +#: models.py:12 models.py:25 msgid "body" msgstr "" -#: models.py:10 +#: models.py:13 msgid "published" msgstr "" -#: models.py:16 models.py:21 +#: models.py:19 models.py:24 msgid "post" msgstr "" -#: models.py:17 +#: models.py:20 msgid "posts" msgstr "" -#: models.py:28 +#: models.py:31 msgid "comment" msgstr "" -#: models.py:29 +#: models.py:32 msgid "comments" msgstr "" diff --git a/example/blog/locale/fr/LC_MESSAGES/django.po b/example/blog/locale/fr/LC_MESSAGES/django.po index 18cf0b1..62e9e5e 100644 --- a/example/blog/locale/fr/LC_MESSAGES/django.po +++ b/example/blog/locale/fr/LC_MESSAGES/django.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: django-admin2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-07 11:01+0200\n" +"POT-Creation-Date: 2013-07-09 11:57+0200\n" "PO-Revision-Date: 2013-07-06 14:16+0200\n" "Last-Translator: NotSqrt \n" "Language-Team: French (http://www.transifex.com/projects/p/django-admin2/" @@ -17,56 +17,56 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: actions.py:13 +#: actions.py:16 msgid "Publish selected items" msgstr "Publier les éléments sélectionnés" -#: actions.py:14 +#: actions.py:18 #, python-format msgctxt "singular form" msgid "Successfully published %(count)s %(items)s" msgstr "%(count)s %(items)s publié avec succès" -#: actions.py:15 +#: actions.py:20 #, python-format msgctxt "plural form" msgid "Successfully published %(count)s %(items)s" msgstr "%(count)s %(items)s publiés avec succès" -#: admin2.py:18 +#: admin2.py:22 msgid "Items unpublished" msgstr "Les éléments ne sont plus publiés" #. Translators : action description -#: admin2.py:21 +#: admin2.py:25 msgid "Unpublish selected items" msgstr "Ne plus publier les éléments sélectionnés" -#: models.py:8 +#: models.py:11 msgid "title" msgstr "Titre" -#: models.py:9 models.py:22 +#: models.py:12 models.py:25 msgid "body" msgstr "corps" -#: models.py:10 +#: models.py:13 msgid "published" msgstr "publié" -#: models.py:16 models.py:21 +#: models.py:19 models.py:24 msgid "post" msgstr "billet" -#: models.py:17 +#: models.py:20 msgid "posts" msgstr "billets" -#: models.py:28 +#: models.py:31 msgid "comment" msgstr "commentaire" -#: models.py:29 +#: models.py:32 msgid "comments" msgstr "commentaires" diff --git a/example/blog/locale/it/LC_MESSAGES/django.po b/example/blog/locale/it/LC_MESSAGES/django.po index e8d9b69..63bfe0d 100644 --- a/example/blog/locale/it/LC_MESSAGES/django.po +++ b/example/blog/locale/it/LC_MESSAGES/django.po @@ -1,73 +1,72 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# +# This file is distributed under the same license as the django-admin2 package. +# # Translators: # brente , 2013 msgid "" msgstr "" "Project-Id-Version: django-admin2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-07 11:13+0200\n" +"POT-Creation-Date: 2013-07-09 11:57+0200\n" "PO-Revision-Date: 2013-07-07 17:42+0000\n" "Last-Translator: brente \n" -"Language-Team: Italian (http://www.transifex.com/projects/p/django-admin2/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/projects/p/django-admin2/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: actions.py:13 +#: actions.py:16 msgid "Publish selected items" msgstr "Pubblica gli elementi selezionati" -#: actions.py:14 +#: actions.py:18 #, python-format msgctxt "singular form" msgid "Successfully published %(count)s %(items)s" msgstr "%(items)s pubblicate/i con successo: %(count)s" -#: actions.py:15 +#: actions.py:20 #, python-format msgctxt "plural form" msgid "Successfully published %(count)s %(items)s" msgstr "%(items)s pubblicate/i con successo: %(count)s" -#: admin2.py:18 +#: admin2.py:22 msgid "Items unpublished" msgstr "" #. Translators : action description -#: admin2.py:21 +#: admin2.py:25 msgid "Unpublish selected items" msgstr "" -#: models.py:8 +#: models.py:11 msgid "title" msgstr "titolo" -#: models.py:9 models.py:22 +#: models.py:12 models.py:25 msgid "body" msgstr "contenuto" -#: models.py:10 +#: models.py:13 msgid "published" msgstr "pubblicato" -#: models.py:16 models.py:21 +#: models.py:19 models.py:24 msgid "post" msgstr "post" -#: models.py:17 +#: models.py:20 msgid "posts" msgstr "post" -#: models.py:28 +#: models.py:31 msgid "comment" msgstr "commento" -#: models.py:29 +#: models.py:32 msgid "comments" msgstr "commenti" @@ -99,7 +98,9 @@ msgstr "E così via..." msgid "" "In other words, these are items that we can introspect through the Django " "admin." -msgstr "In altre parole, questi sono gli elementi su cui possiamo usare l'introspezione attraverso l'admin di Django." +msgstr "" +"In altre parole, questi sono gli elementi su cui possiamo usare " +"l'introspezione attraverso l'admin di Django." #: templates/blog/home.html:22 msgid "Under the hood" diff --git a/example/blog/locale/nl/LC_MESSAGES/django.po b/example/blog/locale/nl/LC_MESSAGES/django.po index 3e58eff..9977cf5 100644 --- a/example/blog/locale/nl/LC_MESSAGES/django.po +++ b/example/blog/locale/nl/LC_MESSAGES/django.po @@ -1,73 +1,72 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# +# This file is distributed under the same license as the django-admin2 package. +# # Translators: # Density21.5 , 2013 msgid "" msgstr "" "Project-Id-Version: django-admin2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-07 11:13+0200\n" +"POT-Creation-Date: 2013-07-09 11:57+0200\n" "PO-Revision-Date: 2013-07-08 10:51+0000\n" "Last-Translator: Density21.5 \n" -"Language-Team: Dutch (http://www.transifex.com/projects/p/django-admin2/language/nl/)\n" +"Language-Team: Dutch (http://www.transifex.com/projects/p/django-admin2/" +"language/nl/)\n" +"Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: actions.py:13 +#: actions.py:16 msgid "Publish selected items" msgstr "Publiceer geselecteerde onderdelen" -#: actions.py:14 +#: actions.py:18 #, python-format msgctxt "singular form" msgid "Successfully published %(count)s %(items)s" msgstr "%(count)s %(items)s zijn succesvol gepubliceerd" -#: actions.py:15 +#: actions.py:20 #, python-format msgctxt "plural form" msgid "Successfully published %(count)s %(items)s" msgstr "%(count)s %(items)s zijn succesvol gepubliceerd" -#: admin2.py:18 +#: admin2.py:22 msgid "Items unpublished" msgstr "Ongepubliceerde onderdelen" #. Translators : action description -#: admin2.py:21 +#: admin2.py:25 msgid "Unpublish selected items" msgstr "Ongepubliceerde geselecteerde onderdelen" -#: models.py:8 +#: models.py:11 msgid "title" msgstr "titel" -#: models.py:9 models.py:22 +#: models.py:12 models.py:25 msgid "body" msgstr "body" -#: models.py:10 +#: models.py:13 msgid "published" msgstr "gepubliceerd" -#: models.py:16 models.py:21 +#: models.py:19 models.py:24 msgid "post" msgstr "bericht" -#: models.py:17 +#: models.py:20 msgid "posts" msgstr "berichten" -#: models.py:28 +#: models.py:31 msgid "comment" msgstr "reactie" -#: models.py:29 +#: models.py:32 msgid "comments" msgstr "reacties" @@ -99,7 +98,9 @@ msgstr "En zo verder..." msgid "" "In other words, these are items that we can introspect through the Django " "admin." -msgstr "Met andere woorden, dit zijn onderdelen die we van binnenuit kunnen bekijken door de Django admin." +msgstr "" +"Met andere woorden, dit zijn onderdelen die we van binnenuit kunnen bekijken " +"door de Django admin." #: templates/blog/home.html:22 msgid "Under the hood" @@ -109,7 +110,9 @@ msgstr "'Under the hood'" msgid "" "Now, explore the Django admin for example.com. Click on either of the " "following:" -msgstr "Nu gaan we de Django admin voor example.com verkennen. Klik op één van de volgende:" +msgstr "" +"Nu gaan we de Django admin voor example.com verkennen. Klik op één van de " +"volgende:" #: templates/blog/home.html:30 #, python-format @@ -151,5 +154,10 @@ msgid "" msgid_plural "" "Are you sure you want to publish the selected %(objects_name)s?\n" " The following items will be published:\n" -msgstr[0] "Weet u zeker dat u %(objects_name)s wilt publiceren?\nHet volgende onderdeel zal worden gepubliceerd:\n\n" -msgstr[1] "Weet u zeker dat u %(objects_name)s wilt publiceren?\nDe volgende onderdelen zullen worden gepubliceerd:\n" +msgstr[0] "" +"Weet u zeker dat u %(objects_name)s wilt publiceren?\n" +"Het volgende onderdeel zal worden gepubliceerd:\n" +"\n" +msgstr[1] "" +"Weet u zeker dat u %(objects_name)s wilt publiceren?\n" +"De volgende onderdelen zullen worden gepubliceerd:\n" diff --git a/example/blog/locale/pl_PL/LC_MESSAGES/django.po b/example/blog/locale/pl_PL/LC_MESSAGES/django.po index 4caf79d..282d0a0 100644 --- a/example/blog/locale/pl_PL/LC_MESSAGES/django.po +++ b/example/blog/locale/pl_PL/LC_MESSAGES/django.po @@ -1,7 +1,5 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# +# This file is distributed under the same license as the django-admin2 package. +# # Translators: # dasm , 2013 # Marcin Jabrzyk , 2013 @@ -9,66 +7,68 @@ msgid "" msgstr "" "Project-Id-Version: django-admin2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-07 11:13+0200\n" +"POT-Creation-Date: 2013-07-09 11:57+0200\n" "PO-Revision-Date: 2013-07-08 18:02+0000\n" "Last-Translator: dasm \n" -"Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/django-admin2/language/pl_PL/)\n" +"Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/django-" +"admin2/language/pl_PL/)\n" +"Language: pl_PL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" -#: actions.py:13 +#: actions.py:16 msgid "Publish selected items" msgstr "Opublikuj wybrane elementy" -#: actions.py:14 +#: actions.py:18 #, python-format msgctxt "singular form" msgid "Successfully published %(count)s %(items)s" msgstr "Opublikowano %(count)s %(items)s" -#: actions.py:15 +#: actions.py:20 #, python-format msgctxt "plural form" msgid "Successfully published %(count)s %(items)s" msgstr "Opublikowano %(count)s %(items)s" -#: admin2.py:18 +#: admin2.py:22 msgid "Items unpublished" msgstr "Elementy niepublikowane" #. Translators : action description -#: admin2.py:21 +#: admin2.py:25 msgid "Unpublish selected items" msgstr "Zablokuj publikację wybranych elementów" -#: models.py:8 +#: models.py:11 msgid "title" msgstr "tytuł" -#: models.py:9 models.py:22 +#: models.py:12 models.py:25 msgid "body" msgstr "treść" -#: models.py:10 +#: models.py:13 msgid "published" msgstr "opublikowany" -#: models.py:16 models.py:21 +#: models.py:19 models.py:24 msgid "post" msgstr "wpis" -#: models.py:17 +#: models.py:20 msgid "posts" msgstr "wpisy" -#: models.py:28 +#: models.py:31 msgid "comment" msgstr "komentarz" -#: models.py:29 +#: models.py:32 msgid "comments" msgstr "komentarze" @@ -100,7 +100,9 @@ msgstr "I tak dalej..." msgid "" "In other words, these are items that we can introspect through the Django " "admin." -msgstr "Innymi słowy, są to elementy którymi możemy zarządzać przez panel administratora Django." +msgstr "" +"Innymi słowy, są to elementy którymi możemy zarządzać przez panel " +"administratora Django." #: templates/blog/home.html:22 msgid "Under the hood" @@ -110,7 +112,9 @@ msgstr "Pod maską" msgid "" "Now, explore the Django admin for example.com. Click on either of the " "following:" -msgstr "Odkryjmy teraz panel administratora Django dla example.com. Kliknij na jeden z poniższych linków:" +msgstr "" +"Odkryjmy teraz panel administratora Django dla example.com. Kliknij na jeden " +"z poniższych linków:" #: templates/blog/home.html:30 #, python-format @@ -152,6 +156,12 @@ msgid "" msgid_plural "" "Are you sure you want to publish the selected %(objects_name)s?\n" " The following items will be published:\n" -msgstr[0] "Czy chcesz opublikować wybrany %(objects_name)s?⏎\nNastępujący element zostanie opublikowany:⏎\n" -msgstr[1] "Czy chcesz opublikować wybrane %(objects_name)s?⏎\nNastępujące elementy zostaną opublikowane:⏎\n" -msgstr[2] "Czy chcesz opublikować wybrane %(objects_name)s?⏎\nNastępujące elementy zostaną opublikowane:⏎\n" +msgstr[0] "" +"Czy chcesz opublikować wybrany %(objects_name)s?⏎\n" +"Następujący element zostanie opublikowany:⏎\n" +msgstr[1] "" +"Czy chcesz opublikować wybrane %(objects_name)s?⏎\n" +"Następujące elementy zostaną opublikowane:⏎\n" +msgstr[2] "" +"Czy chcesz opublikować wybrane %(objects_name)s?⏎\n" +"Następujące elementy zostaną opublikowane:⏎\n" diff --git a/example/blog/locale/pt_BR/LC_MESSAGES/django.po b/example/blog/locale/pt_BR/LC_MESSAGES/django.po index 90cc9a5..3cc1fbc 100644 --- a/example/blog/locale/pt_BR/LC_MESSAGES/django.po +++ b/example/blog/locale/pt_BR/LC_MESSAGES/django.po @@ -1,7 +1,5 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# +# This file is distributed under the same license as the django-admin2 package. +# # Translators: # andrewsmedina , 2013 # Douglas Miranda , 2013 @@ -9,66 +7,67 @@ msgid "" msgstr "" "Project-Id-Version: django-admin2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-07 11:13+0200\n" +"POT-Creation-Date: 2013-07-09 11:57+0200\n" "PO-Revision-Date: 2013-07-09 04:57+0000\n" "Last-Translator: Douglas Miranda \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/django-admin2/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/" +"django-admin2/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: actions.py:13 +#: actions.py:16 msgid "Publish selected items" msgstr "Publicar os itens selecionados" -#: actions.py:14 +#: actions.py:18 #, python-format msgctxt "singular form" msgid "Successfully published %(count)s %(items)s" msgstr "%(count)s %(items)s publicados com sucesso" -#: actions.py:15 +#: actions.py:20 #, python-format msgctxt "plural form" msgid "Successfully published %(count)s %(items)s" msgstr "%(count)s %(items)s publicados com sucesso" -#: admin2.py:18 +#: admin2.py:22 msgid "Items unpublished" msgstr "Itens publicados" #. Translators : action description -#: admin2.py:21 +#: admin2.py:25 msgid "Unpublish selected items" msgstr "Despublicar os itens selecionados" -#: models.py:8 +#: models.py:11 msgid "title" msgstr "título" -#: models.py:9 models.py:22 +#: models.py:12 models.py:25 msgid "body" msgstr "corpo" -#: models.py:10 +#: models.py:13 msgid "published" msgstr "publicado" -#: models.py:16 models.py:21 +#: models.py:19 models.py:24 msgid "post" msgstr "post" -#: models.py:17 +#: models.py:20 msgid "posts" msgstr "posts" -#: models.py:28 +#: models.py:31 msgid "comment" msgstr "comentário" -#: models.py:29 +#: models.py:32 msgid "comments" msgstr "comentários" @@ -100,7 +99,9 @@ msgstr "E assim por diante..." msgid "" "In other words, these are items that we can introspect through the Django " "admin." -msgstr "Em outras palavras, estes itens são os que podemos introspectar através da administração do Django." +msgstr "" +"Em outras palavras, estes itens são os que podemos introspectar através da " +"administração do Django." #: templates/blog/home.html:22 msgid "Under the hood" @@ -110,7 +111,9 @@ msgstr "Sob o capô" msgid "" "Now, explore the Django admin for example.com. Click on either of the " "following:" -msgstr "Agora, explore a administração do Django para o example.com. Clique em uma das seguintes opções:" +msgstr "" +"Agora, explore a administração do Django para o example.com. Clique em uma " +"das seguintes opções:" #: templates/blog/home.html:30 #, python-format @@ -119,7 +122,8 @@ msgstr "Original Django Admin" #: templates/blog/home.html:36 msgid "Powered by django.contrib.admin. This is just here for reference." -msgstr "Desenvolvido com django.contrib.admin. Está aqui apenas para referência." +msgstr "" +"Desenvolvido com django.contrib.admin. Está aqui apenas para referência." #: templates/blog/home.html:39 #, python-format @@ -152,5 +156,9 @@ msgid "" msgid_plural "" "Are you sure you want to publish the selected %(objects_name)s?\n" " The following items will be published:\n" -msgstr[0] "Você está certo em querer publicar o %(objects_name)s selecionado?\nO item seguinte será publicado:\n" -msgstr[1] "Você está certo em querer publicar os %(objects_name)s selecionados?\nOs itens seguintes serão publicados:\n" +msgstr[0] "" +"Você está certo em querer publicar o %(objects_name)s selecionado?\n" +"O item seguinte será publicado:\n" +msgstr[1] "" +"Você está certo em querer publicar os %(objects_name)s selecionados?\n" +"Os itens seguintes serão publicados:\n" diff --git a/example/blog/locale/sk/LC_MESSAGES/django.po b/example/blog/locale/sk/LC_MESSAGES/django.po index f856478..abefd20 100644 --- a/example/blog/locale/sk/LC_MESSAGES/django.po +++ b/example/blog/locale/sk/LC_MESSAGES/django.po @@ -1,71 +1,72 @@ # This file is distributed under the same license as the django-admin2 package. -# +# # Translators: # Ivana Kellyerova , 2013 msgid "" msgstr "" "Project-Id-Version: django-admin2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-07 11:13+0200\n" +"POT-Creation-Date: 2013-07-09 11:57+0200\n" "PO-Revision-Date: 2013-07-07 12:46+0000\n" "Last-Translator: marekzelinka \n" -"Language-Team: Slovak (http://www.transifex.com/projects/p/django-admin2/language/sk/)\n" +"Language-Team: Slovak (http://www.transifex.com/projects/p/django-admin2/" +"language/sk/)\n" +"Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: actions.py:13 +#: actions.py:16 msgid "Publish selected items" msgstr "Zverejniť vybrané položky" -#: actions.py:14 +#: actions.py:18 #, python-format msgctxt "singular form" msgid "Successfully published %(count)s %(items)s" msgstr "%(count)s %(items)s úspešne zverejnené" -#: actions.py:15 +#: actions.py:20 #, python-format msgctxt "plural form" msgid "Successfully published %(count)s %(items)s" msgstr "%(count)s %(items)s úspešne zverejnené" -#: admin2.py:18 +#: admin2.py:22 msgid "Items unpublished" msgstr "Položky nezverejnené" #. Translators : action description -#: admin2.py:21 +#: admin2.py:25 msgid "Unpublish selected items" msgstr "Zmeniť vybrané položky na neverejné" -#: models.py:8 +#: models.py:11 msgid "title" msgstr "nadpis" -#: models.py:9 models.py:22 +#: models.py:12 models.py:25 msgid "body" msgstr "telo" -#: models.py:10 +#: models.py:13 msgid "published" msgstr "zverejnené" -#: models.py:16 models.py:21 +#: models.py:19 models.py:24 msgid "post" msgstr "príspevok" -#: models.py:17 +#: models.py:20 msgid "posts" msgstr "príspevky" -#: models.py:28 +#: models.py:31 msgid "comment" msgstr "komentár" -#: models.py:29 +#: models.py:32 msgid "comments" msgstr "komentáre" @@ -107,7 +108,8 @@ msgstr "Pod kapotou" msgid "" "Now, explore the Django admin for example.com. Click on either of the " "following:" -msgstr "Teraz vyskúšajte Django admin pre example.com. Vyberte jedno z nasledujúcich:" +msgstr "" +"Teraz vyskúšajte Django admin pre example.com. Vyberte jedno z nasledujúcich:" #: templates/blog/home.html:30 #, python-format @@ -149,6 +151,12 @@ msgid "" msgid_plural "" "Are you sure you want to publish the selected %(objects_name)s?\n" " The following items will be published:\n" -msgstr[0] "Určite chcete zverejniť vybranú položku %(objects_name)s?\nZverejníte tak nasledujúcu položku:\n" -msgstr[1] "Určite chcete zverejniť vybrané %(objects_name)s?\nZverejníte tak nasledujúce položky:\n" -msgstr[2] "Určite chcete zverejniť vybrané %(objects_name)s?\nZverejníte tak nasledujúce položky:\n" +msgstr[0] "" +"Určite chcete zverejniť vybranú položku %(objects_name)s?\n" +"Zverejníte tak nasledujúcu položku:\n" +msgstr[1] "" +"Určite chcete zverejniť vybrané %(objects_name)s?\n" +"Zverejníte tak nasledujúce položky:\n" +msgstr[2] "" +"Určite chcete zverejniť vybrané %(objects_name)s?\n" +"Zverejníte tak nasledujúce položky:\n" diff --git a/example/blog/locale/zh/LC_MESSAGES/django.po b/example/blog/locale/zh/LC_MESSAGES/django.po index 1790fd5..bb69696 100644 --- a/example/blog/locale/zh/LC_MESSAGES/django.po +++ b/example/blog/locale/zh/LC_MESSAGES/django.po @@ -1,7 +1,5 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# +# This file is distributed under the same license as the django-admin2 package. +# # Translators: # EricHo , 2013 # Xiayun (Joy) Sun , 2013 @@ -9,66 +7,67 @@ msgid "" msgstr "" "Project-Id-Version: django-admin2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-07 11:13+0200\n" +"POT-Creation-Date: 2013-07-09 11:57+0200\n" "PO-Revision-Date: 2013-07-08 13:07+0000\n" "Last-Translator: Xiayun (Joy) Sun \n" -"Language-Team: Chinese (http://www.transifex.com/projects/p/django-admin2/language/zh/)\n" +"Language-Team: Chinese (http://www.transifex.com/projects/p/django-admin2/" +"language/zh/)\n" +"Language: zh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: actions.py:13 +#: actions.py:16 msgid "Publish selected items" msgstr "發布所選項目" -#: actions.py:14 +#: actions.py:18 #, python-format msgctxt "singular form" msgid "Successfully published %(count)s %(items)s" msgstr "成功發布了 %(count)s %(items)s" -#: actions.py:15 +#: actions.py:20 #, python-format msgctxt "plural form" msgid "Successfully published %(count)s %(items)s" msgstr "成功發布了 %(count)s %(items)s" -#: admin2.py:18 +#: admin2.py:22 msgid "Items unpublished" msgstr "項目尚未發布" #. Translators : action description -#: admin2.py:21 +#: admin2.py:25 msgid "Unpublish selected items" msgstr "未發布所選項目" -#: models.py:8 +#: models.py:11 msgid "title" msgstr "標題" -#: models.py:9 models.py:22 +#: models.py:12 models.py:25 msgid "body" msgstr "" -#: models.py:10 +#: models.py:13 msgid "published" msgstr "已發佈" -#: models.py:16 models.py:21 +#: models.py:19 models.py:24 msgid "post" msgstr "文章" -#: models.py:17 +#: models.py:20 msgid "posts" msgstr "文章" -#: models.py:28 +#: models.py:31 msgid "comment" msgstr "留言" -#: models.py:29 +#: models.py:32 msgid "comments" msgstr "留言" @@ -152,4 +151,6 @@ msgid "" msgid_plural "" "Are you sure you want to publish the selected %(objects_name)s?\n" " The following items will be published:\n" -msgstr[0] "您确定要發布所选择的%(objects_name)s吗?\n以下项目都将被發布:\n" +msgstr[0] "" +"您确定要發布所选择的%(objects_name)s吗?\n" +"以下项目都将被發布:\n" diff --git a/example2/polls/locale/de/LC_MESSAGES/django.po b/example2/polls/locale/de/LC_MESSAGES/django.po index 5eee3c9..6534007 100644 --- a/example2/polls/locale/de/LC_MESSAGES/django.po +++ b/example2/polls/locale/de/LC_MESSAGES/django.po @@ -1,7 +1,5 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# +# This file is distributed under the same license as the django-admin2 package. +# # Translators: # dbrgn , 2013 # Jannis Leidel , 2013 @@ -9,49 +7,50 @@ msgid "" msgstr "" "Project-Id-Version: django-admin2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-07 11:13+0200\n" +"POT-Creation-Date: 2013-07-09 11:57+0200\n" "PO-Revision-Date: 2013-07-08 08:49+0000\n" "Last-Translator: dbrgn \n" -"Language-Team: German (http://www.transifex.com/projects/p/django-admin2/language/de/)\n" +"Language-Team: German (http://www.transifex.com/projects/p/django-admin2/" +"language/de/)\n" +"Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: models.py:9 +#: models.py:12 msgid "question" msgstr "Frage" -#: models.py:10 +#: models.py:13 msgid "date published" msgstr "Veröffentlichungsdatum" -#: models.py:19 +#: models.py:22 msgid "Published recently?" msgstr "Kürzlich veröffentlicht?" -#: models.py:22 models.py:27 +#: models.py:25 models.py:30 msgid "poll" msgstr "Abstimmung" -#: models.py:23 +#: models.py:26 msgid "polls" msgstr "Abstimmungen" -#: models.py:28 +#: models.py:31 msgid "choice text" msgstr "Auswahltext" -#: models.py:29 +#: models.py:32 msgid "votes" msgstr "Stimmen" -#: models.py:35 +#: models.py:38 msgid "choice" msgstr "Auswahl" -#: models.py:36 +#: models.py:39 msgid "choices" msgstr "Auswahlmöglichkeiten" diff --git a/example2/polls/locale/en/LC_MESSAGES/django.po b/example2/polls/locale/en/LC_MESSAGES/django.po index ec9951e..409fabf 100644 --- a/example2/polls/locale/en/LC_MESSAGES/django.po +++ b/example2/polls/locale/en/LC_MESSAGES/django.po @@ -1,55 +1,51 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. +# This file is distributed under the same license as the django-admin2 package. # -#, fuzzy msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: django-admin2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-07 11:13+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"POT-Creation-Date: 2013-07-09 11:57+0200\n" +"PO-Revision-Date: 2013-07-09 11:57+0200\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" -"Language: \n" +"Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: models.py:9 +#: models.py:12 msgid "question" msgstr "" -#: models.py:10 +#: models.py:13 msgid "date published" msgstr "" -#: models.py:19 +#: models.py:22 msgid "Published recently?" msgstr "" -#: models.py:22 models.py:27 +#: models.py:25 models.py:30 msgid "poll" msgstr "" -#: models.py:23 +#: models.py:26 msgid "polls" msgstr "" -#: models.py:28 +#: models.py:31 msgid "choice text" msgstr "" -#: models.py:29 +#: models.py:32 msgid "votes" msgstr "" -#: models.py:35 +#: models.py:38 msgid "choice" msgstr "" -#: models.py:36 +#: models.py:39 msgid "choices" msgstr "" diff --git a/example2/polls/locale/fr/LC_MESSAGES/django.po b/example2/polls/locale/fr/LC_MESSAGES/django.po index a5521de..7e8b74e 100644 --- a/example2/polls/locale/fr/LC_MESSAGES/django.po +++ b/example2/polls/locale/fr/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: django-admin2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-07 11:01+0200\n" +"POT-Creation-Date: 2013-07-09 11:57+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: NotSqrt \n" "Language-Team: French (http://www.transifex.com/projects/p/django-admin2/" @@ -18,39 +18,39 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: models.py:9 +#: models.py:12 msgid "question" msgstr "question" -#: models.py:10 +#: models.py:13 msgid "date published" msgstr "date de publication" -#: models.py:19 +#: models.py:22 msgid "Published recently?" msgstr "Publié récemment ?" -#: models.py:22 models.py:27 +#: models.py:25 models.py:30 msgid "poll" msgstr "sondage" -#: models.py:23 +#: models.py:26 msgid "polls" msgstr "sondages" -#: models.py:28 +#: models.py:31 msgid "choice text" msgstr "Texte du choix" -#: models.py:29 +#: models.py:32 msgid "votes" msgstr "votes" -#: models.py:35 +#: models.py:38 msgid "choice" msgstr "choix" -#: models.py:36 +#: models.py:39 msgid "choices" msgstr "choix" diff --git a/example2/polls/locale/it/LC_MESSAGES/django.po b/example2/polls/locale/it/LC_MESSAGES/django.po index 4b5cc23..72ca89d 100644 --- a/example2/polls/locale/it/LC_MESSAGES/django.po +++ b/example2/polls/locale/it/LC_MESSAGES/django.po @@ -1,56 +1,55 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# +# This file is distributed under the same license as the django-admin2 package. +# # Translators: # brente , 2013 msgid "" msgstr "" "Project-Id-Version: django-admin2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-07 11:13+0200\n" +"POT-Creation-Date: 2013-07-09 11:57+0200\n" "PO-Revision-Date: 2013-07-07 17:47+0000\n" "Last-Translator: brente \n" -"Language-Team: Italian (http://www.transifex.com/projects/p/django-admin2/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/projects/p/django-admin2/" +"language/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: models.py:9 +#: models.py:12 msgid "question" msgstr "domanda" -#: models.py:10 +#: models.py:13 msgid "date published" msgstr "data pubblicazione" -#: models.py:19 +#: models.py:22 msgid "Published recently?" msgstr "Pubblicato di recente?" -#: models.py:22 models.py:27 +#: models.py:25 models.py:30 msgid "poll" msgstr "sondaggio" -#: models.py:23 +#: models.py:26 msgid "polls" msgstr "sondaggi" -#: models.py:28 +#: models.py:31 msgid "choice text" msgstr "" -#: models.py:29 +#: models.py:32 msgid "votes" msgstr "voti" -#: models.py:35 +#: models.py:38 msgid "choice" msgstr "scelta" -#: models.py:36 +#: models.py:39 msgid "choices" msgstr "scelte" diff --git a/example2/polls/locale/nl/LC_MESSAGES/django.po b/example2/polls/locale/nl/LC_MESSAGES/django.po index 123a39d..f478793 100644 --- a/example2/polls/locale/nl/LC_MESSAGES/django.po +++ b/example2/polls/locale/nl/LC_MESSAGES/django.po @@ -1,56 +1,55 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# +# This file is distributed under the same license as the django-admin2 package. +# # Translators: # Density21.5 , 2013 msgid "" msgstr "" "Project-Id-Version: django-admin2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-07 11:13+0200\n" +"POT-Creation-Date: 2013-07-09 11:57+0200\n" "PO-Revision-Date: 2013-07-08 10:46+0000\n" "Last-Translator: Density21.5 \n" -"Language-Team: Dutch (http://www.transifex.com/projects/p/django-admin2/language/nl/)\n" +"Language-Team: Dutch (http://www.transifex.com/projects/p/django-admin2/" +"language/nl/)\n" +"Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: models.py:9 +#: models.py:12 msgid "question" msgstr "vraag" -#: models.py:10 +#: models.py:13 msgid "date published" msgstr "publicatiedatum" -#: models.py:19 +#: models.py:22 msgid "Published recently?" msgstr "Recent gepubliceerd?" -#: models.py:22 models.py:27 +#: models.py:25 models.py:30 msgid "poll" msgstr "enquête" -#: models.py:23 +#: models.py:26 msgid "polls" msgstr "enquêtes" -#: models.py:28 +#: models.py:31 msgid "choice text" msgstr "keuzetekst" -#: models.py:29 +#: models.py:32 msgid "votes" msgstr "stemmen" -#: models.py:35 +#: models.py:38 msgid "choice" msgstr "keuze" -#: models.py:36 +#: models.py:39 msgid "choices" msgstr "keuzes" diff --git a/example2/polls/locale/pl_PL/LC_MESSAGES/django.po b/example2/polls/locale/pl_PL/LC_MESSAGES/django.po index 0879edf..f972576 100644 --- a/example2/polls/locale/pl_PL/LC_MESSAGES/django.po +++ b/example2/polls/locale/pl_PL/LC_MESSAGES/django.po @@ -1,7 +1,5 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# +# This file is distributed under the same license as the django-admin2 package. +# # Translators: # dasm , 2013 # Marcin Jabrzyk , 2013 @@ -9,49 +7,51 @@ msgid "" msgstr "" "Project-Id-Version: django-admin2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-07 11:13+0200\n" +"POT-Creation-Date: 2013-07-09 11:57+0200\n" "PO-Revision-Date: 2013-07-08 18:04+0000\n" "Last-Translator: dasm \n" -"Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/django-admin2/language/pl_PL/)\n" +"Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/django-" +"admin2/language/pl_PL/)\n" +"Language: pl_PL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" -#: models.py:9 +#: models.py:12 msgid "question" msgstr "pytanie" -#: models.py:10 +#: models.py:13 msgid "date published" msgstr "data publikacji" -#: models.py:19 +#: models.py:22 msgid "Published recently?" msgstr "Ostatnio opublikowane?" -#: models.py:22 models.py:27 +#: models.py:25 models.py:30 msgid "poll" msgstr "ankieta" -#: models.py:23 +#: models.py:26 msgid "polls" msgstr "ankiety" -#: models.py:28 +#: models.py:31 msgid "choice text" msgstr "tekst opcji" -#: models.py:29 +#: models.py:32 msgid "votes" msgstr "głosy" -#: models.py:35 +#: models.py:38 msgid "choice" msgstr "opcja" -#: models.py:36 +#: models.py:39 msgid "choices" msgstr "opcje" diff --git a/example2/polls/locale/pt_BR/LC_MESSAGES/django.po b/example2/polls/locale/pt_BR/LC_MESSAGES/django.po index 6d7ba78..efef222 100644 --- a/example2/polls/locale/pt_BR/LC_MESSAGES/django.po +++ b/example2/polls/locale/pt_BR/LC_MESSAGES/django.po @@ -1,55 +1,54 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# +# This file is distributed under the same license as the django-admin2 package. +# # Translators: msgid "" msgstr "" "Project-Id-Version: django-admin2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-07 11:13+0200\n" +"POT-Creation-Date: 2013-07-09 11:57+0200\n" "PO-Revision-Date: 2013-07-09 05:00+0000\n" "Last-Translator: Douglas Miranda \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/django-admin2/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/" +"django-admin2/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: models.py:9 +#: models.py:12 msgid "question" msgstr "pergunta" -#: models.py:10 +#: models.py:13 msgid "date published" msgstr "data de publicação" -#: models.py:19 +#: models.py:22 msgid "Published recently?" msgstr "Publicada recentemente? " -#: models.py:22 models.py:27 +#: models.py:25 models.py:30 msgid "poll" msgstr "enquete" -#: models.py:23 +#: models.py:26 msgid "polls" msgstr "enquetes" -#: models.py:28 +#: models.py:31 msgid "choice text" msgstr "texto da opção" -#: models.py:29 +#: models.py:32 msgid "votes" msgstr "votos" -#: models.py:35 +#: models.py:38 msgid "choice" msgstr "opção" -#: models.py:36 +#: models.py:39 msgid "choices" msgstr "opções" diff --git a/example2/polls/locale/sk/LC_MESSAGES/django.po b/example2/polls/locale/sk/LC_MESSAGES/django.po index 6855e78..a10eecd 100644 --- a/example2/polls/locale/sk/LC_MESSAGES/django.po +++ b/example2/polls/locale/sk/LC_MESSAGES/django.po @@ -1,54 +1,55 @@ # This file is distributed under the same license as the django-admin2 package. -# +# # Translators: # Ivana Kellyerova , 2013 msgid "" msgstr "" "Project-Id-Version: django-admin2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-07 11:13+0200\n" +"POT-Creation-Date: 2013-07-09 11:57+0200\n" "PO-Revision-Date: 2013-07-07 12:47+0000\n" "Last-Translator: marekzelinka \n" -"Language-Team: Slovak (http://www.transifex.com/projects/p/django-admin2/language/sk/)\n" +"Language-Team: Slovak (http://www.transifex.com/projects/p/django-admin2/" +"language/sk/)\n" +"Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: models.py:9 +#: models.py:12 msgid "question" msgstr "otázka" -#: models.py:10 +#: models.py:13 msgid "date published" msgstr "dátum zverejnenia" -#: models.py:19 +#: models.py:22 msgid "Published recently?" msgstr "Zverejnené nedávno?" -#: models.py:22 models.py:27 +#: models.py:25 models.py:30 msgid "poll" msgstr "anketa" -#: models.py:23 +#: models.py:26 msgid "polls" msgstr "ankety" -#: models.py:28 +#: models.py:31 msgid "choice text" msgstr "text možnosti" -#: models.py:29 +#: models.py:32 msgid "votes" msgstr "hlasy" -#: models.py:35 +#: models.py:38 msgid "choice" msgstr "možnosť" -#: models.py:36 +#: models.py:39 msgid "choices" msgstr "možnosti" diff --git a/example2/polls/locale/tl_PH/LC_MESSAGES/django.po b/example2/polls/locale/tl_PH/LC_MESSAGES/django.po index ff14e82..e099dc1 100644 --- a/example2/polls/locale/tl_PH/LC_MESSAGES/django.po +++ b/example2/polls/locale/tl_PH/LC_MESSAGES/django.po @@ -1,56 +1,55 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# +# This file is distributed under the same license as the django-admin2 package. +# # Translators: # rukku , 2013 msgid "" msgstr "" "Project-Id-Version: django-admin2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-07 11:13+0200\n" +"POT-Creation-Date: 2013-07-09 11:57+0200\n" "PO-Revision-Date: 2013-07-09 08:22+0000\n" "Last-Translator: rukku \n" -"Language-Team: Tagalog (Philippines) (http://www.transifex.com/projects/p/django-admin2/language/tl_PH/)\n" +"Language-Team: Tagalog (Philippines) (http://www.transifex.com/projects/p/" +"django-admin2/language/tl_PH/)\n" +"Language: tl_PH\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: tl_PH\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: models.py:9 +#: models.py:12 msgid "question" msgstr "katanungan" -#: models.py:10 +#: models.py:13 msgid "date published" msgstr "" -#: models.py:19 +#: models.py:22 msgid "Published recently?" msgstr "Bagong limbag?" -#: models.py:22 models.py:27 +#: models.py:25 models.py:30 msgid "poll" msgstr "botohan" -#: models.py:23 +#: models.py:26 msgid "polls" msgstr "mga botohan" -#: models.py:28 +#: models.py:31 msgid "choice text" msgstr "" -#: models.py:29 +#: models.py:32 msgid "votes" msgstr "mga boto" -#: models.py:35 +#: models.py:38 msgid "choice" msgstr "sagot" -#: models.py:36 +#: models.py:39 msgid "choices" msgstr "mga sagot" diff --git a/example2/polls/locale/zh/LC_MESSAGES/django.po b/example2/polls/locale/zh/LC_MESSAGES/django.po index 29cbe1b..6a09ddd 100644 --- a/example2/polls/locale/zh/LC_MESSAGES/django.po +++ b/example2/polls/locale/zh/LC_MESSAGES/django.po @@ -1,56 +1,55 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# +# This file is distributed under the same license as the django-admin2 package. +# # Translators: # EricHo , 2013 msgid "" msgstr "" "Project-Id-Version: django-admin2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-07 11:13+0200\n" +"POT-Creation-Date: 2013-07-09 11:57+0200\n" "PO-Revision-Date: 2013-07-07 11:16+0000\n" "Last-Translator: EricHo \n" -"Language-Team: Chinese (http://www.transifex.com/projects/p/django-admin2/language/zh/)\n" +"Language-Team: Chinese (http://www.transifex.com/projects/p/django-admin2/" +"language/zh/)\n" +"Language: zh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: models.py:9 +#: models.py:12 msgid "question" msgstr "問題" -#: models.py:10 +#: models.py:13 msgid "date published" msgstr "發布日期" -#: models.py:19 +#: models.py:22 msgid "Published recently?" msgstr "最近發布?" -#: models.py:22 models.py:27 +#: models.py:25 models.py:30 msgid "poll" msgstr "投票" -#: models.py:23 +#: models.py:26 msgid "polls" msgstr "投票" -#: models.py:28 +#: models.py:31 msgid "choice text" msgstr "選擇文字" -#: models.py:29 +#: models.py:32 msgid "votes" msgstr "投票" -#: models.py:35 +#: models.py:38 msgid "choice" msgstr "選擇" -#: models.py:36 +#: models.py:39 msgid "choices" msgstr "選擇" From bed88973d7f6c3cd3d62ba8a623579111118ef1e Mon Sep 17 00:00:00 2001 From: Danilo Bargen Date: Tue, 9 Jul 2013 12:22:36 +0200 Subject: [PATCH 10/12] Compiled all messages. Ready for release. Fixes #314, refs #317 --- djadmin2/locale/bs/LC_MESSAGES/django.mo | Bin 0 -> 4829 bytes djadmin2/locale/ca/LC_MESSAGES/django.mo | Bin 0 -> 473 bytes djadmin2/locale/de/LC_MESSAGES/django.mo | Bin 4734 -> 4734 bytes djadmin2/locale/en/LC_MESSAGES/django.mo | Bin 0 -> 3331 bytes djadmin2/locale/es/LC_MESSAGES/django.mo | Bin 0 -> 471 bytes djadmin2/locale/fr/LC_MESSAGES/django.mo | Bin 0 -> 4801 bytes djadmin2/locale/it/LC_MESSAGES/django.mo | Bin 0 -> 488 bytes djadmin2/locale/nl/LC_MESSAGES/django.mo | Bin 0 -> 4736 bytes djadmin2/locale/pl_PL/LC_MESSAGES/django.mo | Bin 0 -> 4760 bytes djadmin2/locale/pt_BR/LC_MESSAGES/django.mo | Bin 0 -> 4664 bytes djadmin2/locale/sk/LC_MESSAGES/django.mo | Bin 4752 -> 4752 bytes djadmin2/locale/zh/LC_MESSAGES/django.mo | Bin 0 -> 4114 bytes example/blog/locale/de/LC_MESSAGES/django.mo | Bin 3241 -> 3241 bytes example/blog/locale/en/LC_MESSAGES/django.mo | Bin 0 -> 376 bytes example/blog/locale/fr/LC_MESSAGES/django.mo | Bin 0 -> 3145 bytes example/blog/locale/it/LC_MESSAGES/django.mo | Bin 0 -> 2190 bytes example/blog/locale/nl/LC_MESSAGES/django.mo | Bin 0 -> 3156 bytes .../blog/locale/pl_PL/LC_MESSAGES/django.mo | Bin 0 -> 3303 bytes .../blog/locale/pt_BR/LC_MESSAGES/django.mo | Bin 0 -> 3190 bytes example/blog/locale/sk/LC_MESSAGES/django.mo | Bin 3207 -> 3207 bytes example/blog/locale/zh/LC_MESSAGES/django.mo | Bin 0 -> 2102 bytes .../polls/locale/de/LC_MESSAGES/django.mo | Bin 985 -> 985 bytes .../polls/locale/en/LC_MESSAGES/django.mo | Bin 0 -> 378 bytes .../polls/locale/fr/LC_MESSAGES/django.mo | Bin 0 -> 967 bytes .../polls/locale/it/LC_MESSAGES/django.mo | Bin 0 -> 860 bytes .../polls/locale/nl/LC_MESSAGES/django.mo | Bin 0 -> 956 bytes .../polls/locale/pl_PL/LC_MESSAGES/django.mo | Bin 0 -> 1022 bytes .../polls/locale/pt_BR/LC_MESSAGES/django.mo | Bin 0 -> 1019 bytes .../polls/locale/sk/LC_MESSAGES/django.mo | Bin 1008 -> 1008 bytes .../polls/locale/tl_PH/LC_MESSAGES/django.mo | Bin 0 -> 770 bytes .../polls/locale/zh/LC_MESSAGES/django.mo | Bin 0 -> 920 bytes 31 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 djadmin2/locale/bs/LC_MESSAGES/django.mo create mode 100644 djadmin2/locale/ca/LC_MESSAGES/django.mo create mode 100644 djadmin2/locale/en/LC_MESSAGES/django.mo create mode 100644 djadmin2/locale/es/LC_MESSAGES/django.mo create mode 100644 djadmin2/locale/fr/LC_MESSAGES/django.mo create mode 100644 djadmin2/locale/it/LC_MESSAGES/django.mo create mode 100644 djadmin2/locale/nl/LC_MESSAGES/django.mo create mode 100644 djadmin2/locale/pl_PL/LC_MESSAGES/django.mo create mode 100644 djadmin2/locale/pt_BR/LC_MESSAGES/django.mo create mode 100644 djadmin2/locale/zh/LC_MESSAGES/django.mo create mode 100644 example/blog/locale/en/LC_MESSAGES/django.mo create mode 100644 example/blog/locale/fr/LC_MESSAGES/django.mo create mode 100644 example/blog/locale/it/LC_MESSAGES/django.mo create mode 100644 example/blog/locale/nl/LC_MESSAGES/django.mo create mode 100644 example/blog/locale/pl_PL/LC_MESSAGES/django.mo create mode 100644 example/blog/locale/pt_BR/LC_MESSAGES/django.mo create mode 100644 example/blog/locale/zh/LC_MESSAGES/django.mo create mode 100644 example2/polls/locale/en/LC_MESSAGES/django.mo create mode 100644 example2/polls/locale/fr/LC_MESSAGES/django.mo create mode 100644 example2/polls/locale/it/LC_MESSAGES/django.mo create mode 100644 example2/polls/locale/nl/LC_MESSAGES/django.mo create mode 100644 example2/polls/locale/pl_PL/LC_MESSAGES/django.mo create mode 100644 example2/polls/locale/pt_BR/LC_MESSAGES/django.mo create mode 100644 example2/polls/locale/tl_PH/LC_MESSAGES/django.mo create mode 100644 example2/polls/locale/zh/LC_MESSAGES/django.mo diff --git a/djadmin2/locale/bs/LC_MESSAGES/django.mo b/djadmin2/locale/bs/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..4e50bf5bca1388a5b62abd89cef6d08b821c230a GIT binary patch literal 4829 zcmdUyPi$OA9mj_f{u#=j5=wyrQ-c$`@!D%AG+|T6b>c=fG^vT5mI_2QyKlUH-uK=t zZ{FLDt)3{TLL%kV15#C#8$E(VK_F5NF-UMjs)Ue$1L6V~IB_W|pWpklahy=42o8*P z-uKO$ncw{WeCIc_f4J+w^NKP%HQ6q)M@bV;IF`A2b5X^Uk5({ zuDz|CmxAN8zYQ`}{h-2^!H?4Z33w;?D)@HrPvBkPU%>Z)|E#{>N#}=X9|UFm{UA%J z6W|lz0?1E2&*MGd3*bAzmq3~KeQ*r?B`7BR1{C?Pf}+Qt!G}PZlmScNv*63%1K_E5 zD)nA42W8!_g9pKHf*%221QDTr489wD1^guVYw&~MU%^x0>mVZ4sdttBI17qBp94jY zFM`KF56ZgV1AmY2{|GMA{u#m-Xy1X6JG38SviSR_pv38Spa%Z|iofqcXz6L1rmcS2#p9jSc z9Z>x3!1seGC~}_xhv19g*TB2!d;$CpDE2>qGAyBbpy;y$ehhpD6u*8K6o0=0@>9Ry z@hR}PpsfEI_#k)?V@0nofTG8jK$cWr0mW|#co@7~;SWLFJ1VlK$epRa&^;=m-^Zz9 zr*NV{l_GM*H&PB!MIR~RC*g|dEjCD8?x9K%A4@qx6+I`Znkrn8GDV%HN({vwDH30? zMdBwM7v4+xG*xU8KT8q+2v_f?N({!S_fe&YZztqsY$>&R+vVEl)yvQ%na-RJY-BU5 zvrVffCSynQsl>!~%IoooN!Q-8oovdFFOJ=w2#>T*W&>oEbA2UkQLnSYhKnLM43n-7 zGaKt+7)82mD;X`yNuJorfuhKwW8V^;zf04(&>RCRwTIBQCaTh0u8&=RT9z)f(zB(MY$c zkg9Lf4VT8cbO|;k;>CDIpLeBPy=exP={C`wLeXGGJ?fxEQh_#IQ#D+k$;U3NVh!W5 zKle7B^6K2SUMigK)p@5@D+4Qu``b{z)3M%f6MqzY&)`azZR(BCMghJx+v3^| zIySsbe3*p;JJPCLl+B!K7hPXqx>&*6PM(I@_F=eVdUjfi4k(!DJ<}39yslR^3_FC; z>7lHcXjm0)Y!}HQ+wP0gGx2+6V6;8bBP!xm25K68JBF~xycAM+53z}|*Y;9BOfB)f zU_0nAir5+qQ1U2LH1OIa_`s&uKXzP_g-LF;4RAryRcqFyoy`jLx=mx=CF6|tMCExn zSn^7(k!kktw{~J zjWek&HhW{)WVWT}n{!7S&Et*cXZ74%>odoXH0PU51~x9(K`5g4k2|jC=UPYSk2EP` zj~bsf)>D)C$Yd^UX%m~&o6RtBgRnz4_L;72tXmVe^l9gl5DHFiW?8>AJ3AZ>XULIk zfDLvmnr-{psgc~4Zu_xwE9V}*?uWUV=GYl{1r;0X@Vlim zdnudkN2HsR60X$SY~kYi*~W?M<3xuIn>HR!I!@Tq(kI$sHnv*Cv~iZ0`j$@05c`Fr zCw2L{FquruH5V4<^r1sqUYqwV%+2XV-P8=HeQII8?s{i9M+Wzx= zjh&mYeFK}INM;5-tFJvvQfI4HS|nDE^f$GV+(P~jR=RED|LX()!+S<2+%oFMdxl&j z>U&1s%lnBdZW+tOe2a6RCj)MI)3_<3i;9#Jhg&uYufOToZRI+0J7Lnx_k6Cutn5J5 z-7BH0Uxd9S-)cgkMz6en6#B2aYnN@77`0Z?Eq1A4iIQ>kO!h*X-67-*bg~u3Mu$5C zwr#{Y&_j;p*yR}{#c4d~8J*D7q?W=0j4+&WDGnQmocdL^8>1YV%c;l6K6`s3X6c@B zc&xsgkby$FlW+rSLSkR|oF+u*SQ8?1i80YS0Xw%qO&W(FqN+m~>F z7EBWs7YvGx;y~TK%1(1zCYCVtQ_C^g&7mcKFu4BR^k0ra<@B6?5cPi#*;6=I@_Was zM+Opy-78$3!~<*xiIDE`8G#u*7+|>NVpMFLVwRjdXed_p-A=+0ua*tJ=`unb<=(_f f0#OscaL$ce?P5iI7%v&Ya}8u0-Fz9k-Esc{z-Ww$ literal 0 HcmV?d00001 diff --git a/djadmin2/locale/ca/LC_MESSAGES/django.mo b/djadmin2/locale/ca/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..570cb9654de2b3d7cbea484d8534efbe7c824d51 GIT binary patch literal 473 zcmZ9IK~KUk9K|tu+R?LzzljHpcI_q#6lYX~gajfX(|g^@C~oc276%{1v)|0mVy6V6 z|Kyjp>FdjT{W?7OXt>#P963%L`;H4oJ#ELQyX?5N)@)~@)q*D$4O8^OwGm2ENEb|I z3bC{hGW4drRNA7k$wZ1CmYG4ZqTo%QV${=|S@#4zGRrB1B)CMRg-8d2fL^uENl1tj zqA7nDwe^49H3UuC+~`KkSQKj}P0p;+6o#2(M!-OsWDfVal19OeWOjA84#=BdnOkq< zf-YIcQOsFEVQy_{D8^M)`L=cvGrsZ@Rp9csrokot(+=kw2b?gxwWE+QZ#*3LcYhN2 z#Oo<(xpX1drE6>X%HlF-LUtjUGi|typ5p;(?{sy98P}*U6O{^?QE0yk>rL{dW;q%t ZT^I_o{5hH^?85IhI+bu7L2%af8sEt8iv0ip literal 0 HcmV?d00001 diff --git a/djadmin2/locale/de/LC_MESSAGES/django.mo b/djadmin2/locale/de/LC_MESSAGES/django.mo index fe43e88ede02ab77d9aba70204352b972be70e6e..e5b2288b7f9216938520cfed31ad256be7becb0b 100644 GIT binary patch delta 20 bcmeyT@=s-h2^YJif}x?6srhDWE@ut^OCAN@ delta 20 bcmeyT@=s-h2^YJCf}xp}f#GIrE@ut^O85oW diff --git a/djadmin2/locale/en/LC_MESSAGES/django.mo b/djadmin2/locale/en/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..94a7ad2216059385dc315274f3b536e84f511250 GIT binary patch literal 3331 zcmeH{NpBoQ6vvA!EW;kc64pw<*beTQv7;wr1M<4xgS`Ju@ECXt z^kA@Eh|AzL@Bp|Mi#`M@5JN-;?gVpi7x*EFM|^?T{ovQ&3*filW8kmgQSdL2?b(YL zToF?s`+WdpJ7&S_&~OE0J-6Ri>b3{u@pBayKpwvc^86l%rNtV^y1fUoe^;vht04RT zCCKBy1KE!sLDuajkmrv<9M-J?!US;y5#!l?#vO+~e{L>Qlv+5F_BrsF+&V!riPn+slRRd=!=UeIAty+$;QGo4GuK z%6hQvTTog17g5;ljz_G!I5fe*-DlqV~Wg0lL4i8(T+vTP+$tCWm8siHL2 zvGZ2>*l7H8lu+m?!aviIBV*op#RJ#-#mv%zn292;_??=Fl9e^GtH#laRw<1;F=I&% zOfFq+={0e@r*xMp$aEkx!GWL`@F>As+CGAT?PneX%0{@U{ z?z~*3+s12&)yYb4WJb1QY${dA{=p|LeUH+*e8ZIM%AQ&yOeZbF!qBKLPMWTabp@%q zs%n_rb7z+#{FchW|J;#<$BP3wQ|=&^D(|Z0Hn$;47?N|HJP}I?DMvCi)+6 z!konP>;L)RZ5jYo*jr3rU#c{$42M)Y8fq?~hE&pd)#*T#(B#^)7@ja+K}X|zvJ+Dh zL0C0lT|?LyIMOcm@fr=SDmO)#tu)ET1{1{&j>6o=elUu}Q5R^UumJ{YdD}Ei{SCW( zKMoN?Bm2CgmPo0%Gbqx?4>DHVv*?wB$zW(lQUt4v(gf@c6=K5kEHc75L>(b^k}hSj zB?R|0g|J~5u4RN@@T)LUA*q#y24punL!*7Ha|9=X1iCAhN!hShLAJ@J_~v6XJP?)g zNWe0w#4?h2^I>Zv-!8aPuZ(nrr6E8{@?x$Mh$nrFMn6VGIJReLRU!rml!+AlKcg>b z)7Ro0Ij$3OVKgm{oH)nMub(Q}hxfzOUb5yq3=I~d;7ziuPD@7TaX?K_Tm@6L)07$O zgGJYkqu}+t>w>mv$=cGXc5vKMar%N;<*6m7nv?s2=E0!(s+^o`?LYWRbE?_Iz~D5k z#k}<9aR=n&zSdMV?xb=)Xj`RSqP(#!PQvAj*2^Q%-{Ip}H&t;`4^4Wsb`loms!Kte zRN9hrx|_tVC&zl;XRg&~^!xof?l9zNhc5AyMpioN8d>9C{xykLpGSxq2ZXe z6NJ=kz(M@9wXA%$gO)q2HYZp&=0PO-z0t;f`HvLFa6N> z9Z2T*Dk|&$+${tR*7)Tn+*lH6E=|U*(hLS%icCR|>l7v2rTAXz@*&N+$m+4m@4bnO zS@IM~ggj@kw6-ve()D^>x0R1r;HDyJu`Ow6LH~54*{=gdLw9xz(0J4Fbh!VKpzeEp zB`r!9@vU%OEp99=GA?8X;w9GxZTBe}k=CB8A}mmop^Q}`WXhoRBCI#dO3gDeQaU#b XWbtz}-LM1OZTDQlX%~Wvj#v8zH-d`r literal 0 HcmV?d00001 diff --git a/djadmin2/locale/fr/LC_MESSAGES/django.mo b/djadmin2/locale/fr/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..db3c211af92426c5c777e21ef91e27a1c3458909 GIT binary patch literal 4801 zcmcJSOKc=p6^1Wico_oZL3o5AH$#j)iMwsjgk$ar>eTz?HFdV zpycYm9=Gl}_dowV=lGBJ?t5NwG&w)X`OSAIbqxI1UHowT^_@zc0{;g727G*>iONg{0R5=gEIb6 z5L4<1_zZXqXK&Dj3-&gW+4wUtL z5fneZ1U?RWQ0%@0eh2RV1TM*QCcg>(3cLvZh{X!ucQJ|Bdl)({#oIE$Un;cN$|(um%$gonGY+~0DlkO1Kt8VEYv2Rm&%jgQ??CbUJ{B#0JP7hgJp?`i&V$19CGar#EfBivLpTv0n$;6t*9S{c z`#Hrw(S-Odhpb<;CdX$uKU!RsehOEj6NwelRv+V(LpYY>F;3CvG^gei-{p{)&Tz_J zly%D?>w&gny`pj9Uk+K<6sPD(4q2~gRd|EWA`Zf(9HN0qxtLgRR&S=c_IY*DH%X?m zREIXUnbq04)sxfRl-uVL)3pb^J}^0*u3ff4cF-Rz;8cxDSS8!}hS~p;xic zPUAT3M@dIVneFO+6vukaRz8HS|A!I3mz6v81@F>!LCv`1d(AmHZGtRHlOcQKWGY_w zde6mX&Bjn`!fupAK66Gs;pLDw-eGZaI!iMn1BcJm!t$b82tzq}UB+p{y0z5X%A(pC z;uGrhx=A{=0^QxzJ>z{pb>Z+)eSfA*AdG)&4uzYS49Tbj+O?5s+7D)x#bWC-V z=9xU~pek$_&-!z3-9fLGHuXY5x>rx7YPniqHRJAkq#p#<`*t3y<=7f;b&xuTT#E=> z=Te79=(G7>-}_wyAVwC9vWHWZzEwNOBwYT;zF15&s*2j1MY6~?dqR39yjKg1H)}uQB3@;nX7D#Kghjq{h{Ah>O_aU1 z*Lsn&#P@;?@S%>_3JOs2Q@Ci*wMpQ>y3xZRO|mG-t+pW)BptP4jSJQ*(5u#Uxt5Gm z?}>_eG+63Nt&nMU@3&PXcg2@{^=uMKLh?vkU(HPnc{+=@=|@CFV*89;)5L%znTCe- zUreqfX+KfVS}*5}UYzO{iB&x-iyv+*-DmZ+x_fc%Oe{9L`&Mct#+$?B#|jEfu<0kK zB|CZq?(r;-jeDD)ExT0mc4IMYT(V9g(bC~%@$dKirsmvN88LJwM<2?30hp9h#eCVB><_h-B*Belbx=K;%1O`k58P(!`yUiW7V2&ORr~H z&$ni0`~7~COvyHA+iNm%wpXst&-P}=mNgq!Gt9Q#Y&~5|x820j;?mg>8S~A#iPMM+ zJvLSmc}r*ZS~lB@$vHq|CdQGHW^%7B~RsrSt)jon2ap5Trqun7j-f0ZOwX{a=kECpxL7=YexZB zV-=g8ir00?-pQ~p3-@Je7>RA6LX%@83couJia*> zb?kL^Eq#NPidTx5Dm{9K>GEx@aqFAvlFey*`Ib!9W9vx=Q59EPY(wFU6x8i`UG9Ea zN?F%r|7((jJl`4U;(0g)yE3U1yqs(s5uK)9F~K_4gcX@NwE4B+^gRoqqgYC(u_j~S zIyTaNc!wMbP^S%Z!q+Nh(s8-jZABWq0r0JvtaVe^N!U$LoSZ Tba(8frrPVX;pFv4yT17kwZy$J literal 0 HcmV?d00001 diff --git a/djadmin2/locale/it/LC_MESSAGES/django.mo b/djadmin2/locale/it/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..aa20ae736d7cefe7b656c2db6ea1beb82570b015 GIT binary patch literal 488 zcmZ8dK~KUk7{%ymN6#KU6Av2gx=j=)&KMCA5*7)W9=z49jFPQw+9K%x@Nf8&{4I7u zAo`M*wqIXg-s|__!Dqu^&+*9d#Bty8!m&o%@ylIy+*)h47;8CanMK1KJu_{%6a?}) z6@^4JuegZ32~$#Al$e6&=zdWclu82L_%TI2&8T%x&;zxMKoo?RC}^Re17S$6TIWF& z1Wt%1?2Xsf|8>_8Hc4}%8&P9Xs;Mv~wNevEs4iwqb4%fcR!RyEH`R9Lf2?PBMMZh( zXR^BWMlSb)77V3~Rs?3&Dnl?{E|h4nT*6>uCwc-HkAKioBu^#A|> literal 0 HcmV?d00001 diff --git a/djadmin2/locale/nl/LC_MESSAGES/django.mo b/djadmin2/locale/nl/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..4dbbe4b9494e0ecdb406b732cde9c86f7a4ff26c GIT binary patch literal 4736 zcmcJRON<;>6^1XyJTed<55gO690t$C(>)JtV%m(Ii68PrwrAuSdk70cb=U3gnyJ3G zse5bM<0V2wNRdFGY$C*xhY&)rh)^~lfrMmWgXAqBAvTajvW*DgJ5|+>860pHDRuQ< zuY2z~|M~AZ=g;>aeok@JIX}+%?Aw%D2LE-4KaQ8*uGACYE8s2g_+h0sz}LY~f*bEB z$7SFV?!N`{srp5QFMuEA{zdR!@HY5P@NeM#;6K3kgRfQ3@8#tOxqlFp?;izON}U9^ zz-5r1dXB&Mg5Lw*1^yV6aX$yAz~6!5!k<8y|28Og{2hE8ltBSl0iOY106zzwez#KZ z19MQ;{W|y{_)YL5;P*kMP`?D<1O5v96!?4a0q~#TY4CNBDb?wFNZ{L9zERQzwqx(B1h{`)`;E`nmuRZ#5M0;j>R zfU@p4K$-tL)%#b#L)^a#ihZwv!uJD+Z3e7YxCKJ*==c~{k8swjC!)>aA@+TOQ`Qq( zYMgS2f1))xKEwH;;;Qstv?4kYUy!!?FsB^QT^z^w7dyo!%_+XiG0Qo}DSJ_PmP2?I z4NLsQCyA3BpXL+|h<|e6YN3rsL5Y>b^(+acx$eF3To5C|&E0~zM%CWwh?Tp@Jg|c4-)WV*v<2&2yP#&j;dh#IdM0Xx#MvQx`^i+i?)RTgqozrr zHi~6zd{Bp(i+tCjUtwGzj2^16)EuF0Ctn`%Wh8R9eQY&WtU zQ-SX7>3-z>z-969(dhnMp#W9FXvHEzUY&ETyk~4E4ZY}kMy(P$uY0)<61$;=I1!o-QfDCo3%W>iUW+=hfY4*D%~z-6{-?>*|t27PbN%b)xFV9<ywb|nvqrIqHN|&yL7z3T(N>TtvpM@-chs@?U*?&HejID6T_?-jO_}8q(vB= z9>|JTqpGC6S0szD*B8=*@LoBX?v3n7i+GiRn#0~!L|9~8hA6y8*hJZDbEBVRhWK7J zEo>M?Yy$--`72C}&~;?tz+~fxEoVbwbE8cR1-7F$Oq8{{73fWq^|+RdGujgs^JuWt zmD(WF9Ncf4NN&fMeD#fuB_VmFt-qQ_Ddg#pa5G4Vh{SfwG&M0GNxC?~|7&)~x`9et1x5f=xd?BiYd-aF1nq z8f9;C*m~w9Z`W4i+I5pjBpN#2CLg$3k$IM;uA08fLhZ8eBysJDyyI(|uA!&a*EVZs zGgEB#+PNs0hF)4&{A_LEvD(7t_2OdV#AC-6mKGNHuy)n#CNlNG?@sE)g~o~F#}+uI zE=4}nHnYh3Gzu$sK<~z zw7Pnx8$!P^KR*}@>f}u}Mcdqv@8|oaw|>4qzt73}w3=t$rt`C-SsU7>Q}foo!HPeS?#=SIZ;qUpKK;!YQ2ba z?E-Q3ELDcxFE5?a<>m5>)ekT0#o1F-yDeja&h<^RLmG+60{KB9PZnXRWI^`lAlW9- z8Y@-#4pVeYm6S~ukE{5w5+C{RX^4v6b!msKV93?XEnR`tH}g~=;=dOm-qF&rmP%r* zRP6s_fO+dJxCn^{%{QsO`9>E1Z*TA9+C;b>zvE9YxLN#a9R^RU2nW)9kfE;_SR2uS z_=j|jpOu{f62h8lb#<2B09s8Zo07>x-b@qI4&>|7Tq-%WReIVy)Zg6aWt?dTCZ;V~ zp|T&5PFy;iN^S5n4jy&5*Gw!K+UOo4D8;7xS+bj?D9A%nU0>pjM4(?Jm8MCsbC=eF zsk+X!V_JS1ms&?umnNMuB%-~8-p*;)V`RcdU1sqVazn7^G|_N5vrbq>lfe9i4kS~Q zI}(WubP>IM--dxHQ;KwrJ<_d=NZQG7ej*wwGofgFV)|i+l~~#m7{4|s+YF-_mBDN{2r3mgdLOf^I*cjkAF1g}&g>}p zgV$kGf_TKUk>p1Ex(saDnpD~1Vw43!vAu)yb_Wva7KH#=tqCU>p(TkJizwM-(vw$@ zAb1c(q+=LQX;LT-g>4cY)0D=guGVam8e?PiWW5t279x3#~Ax!)ppm+)=YQR z&{gerw{o()SP_vp<*+g0kP{psQUqZo4w(T7B!rM6E+`xj7a}3JB0~6HchBq(>&O5fQQij9uQsGPfC0p_&K!S06qYG3-}@6pMehp{|fvB@ZIwL1NitUv>yRd z|Hpxtip>Hq0q21DV=v?94F(COn4J5v2f#|}%4y68{08u)^8MRD z>i16Bz7NJfgZ6_!;`<1Y{Fnif{U?B51ugK>HB52fho0NjCqSY7xo_%MXo>o3)Pg+=M+eU%5LI7S=o`eb_3- z+S1xQZ(@d)2?CQS-R8>4kS8h#_?j$z@EiY+N$h^J+@&w@&a`rBc00bG&9QOeIc4;a zz1?IoeD3wG24YPHpjP;y(#pC>&=7na@`i7iactZfC#d7_JzH2=Vhg@cH$E46x+bGF zV`Vub+nM5dc4l4Zwk&~%Dennu6BGHvSEKe~t^iiRXvRE4mMt1D4yAU5qtBX9vL&R> z@-ViJayRslE6rhDMkK19j9MlNc|i$c(!^p|m~4}j6yt9 z#Tl)Ml6h#b&=p%nrP;gQnvh)A7JT)j_NgFQNSl8<76HiPPN9(~WQ1~iNv?6^07cUH z0`XteU2PK0E=x=IBwsob=7p7Arr?JQizkSFr0!l2MUMR>uYOZTl!*rSJE#Yynpd8g$_3dok*l7!ZRJ;=j@!1{ zG!0%^dA?aa6UltBR~Lno4L(z!K31)tsMeq4)6ooquMVsOeh0at6YKR;x`cfChK+y2D`9qmz`+$VxYNv3a&SyWNjGY00Si zjP?x4sljL0l&h@dNw1zo(rtt5LIZa0*h$Pxa+n*}b92*tp4T}(k4@K4&&}||hx5l% zbI0j%oL<*YP1pGgFXZp3PkjPorZHw_;v_cBGg%79P~0+ZyTY18^l$B55qo#@ea9r} z8X`$CcJJ=Jj70V~dvT|~;icTHDcN;AGbm?TNgmr+tNx}-X$yZJ%XG$gKg+VToR+5h z8za;5e>ROmK|9%)|n?%qvPKog)@e#yZ6>`s{m_cura;2e+}2Cravhb|qADaI*v+qP$RTAKWm* zS7qy>jnOUt<;A3pat=Hrr;Xo1pl5CTEb~kWJ7C%H@Kg~-N-oN z7fBrU!oeejNAN@734-KVBBQjWxh$k(}l+jM3mlcECJ=3*^!_dUFEIQs0xJsKMMn2G*dnsO*^N6A zXZ}oZFT*Ls_MoH;8R4MGNzhH570#5)N+Lx%Wlhngdy;x!)oa6=c}mJ;l*6^4soZVL%X2zL?+!{Xg|XLf8S#Eezgo&?Ui?v5bYnlD5g`x~5(p_zpa=^Ile`5%6y*h>ML~i{NJx1l5tkQ05F{=ypzxjUp4p2Xv_YaZ zJ^xg9UC#N>Uv`p!L1D6Tg5N4UTCCZ!g@f8D|t*Q;+<>IC>#@aN!tdz4xRUjy#} zm)}y4^Wa|EUkB-`e$e2v;D=~G58evC1ilsgEqEvR2k_nCznkZ`^76g3?*gU&y&y}e z!{8&}0?0=_!PmRMZ-Z|Gp8{pvGvE~XGf-Uk6)5w+1d1KM2akg?r~nqhuYk{jp8}7* zU8&o^5|nkn1l|RH75pIhB*+x%Iq;p}kHL?EzX0C@{t-M1z6LU-I{J>9k29e7^EpuL z_&j(Y7(iL~```<3|1x-*_V<|lH{hSZ^WZOWR`|Y$N$v(0z)yl-0EO=_f(%t(1~vE% zQ22cY6gz$jihVDFeAFw=^FM=P&p$x%`wqT@FAZJ>JD~Lc7WjVfDNuO%2`GHL0P<0< zG|&G6O8>usGVd)+b_%>3{3f^xJ`MgI6rR3wyHb4A%X|s1uYw-{{|SB=y#0>)`5Y+m zJ_JsK$3do0J+K1~oA=j2;p2y(`1>3vcE1SDg1>9k2pGk7xsFS3Ut1H-h`QMV~X=npDZ>W zu)0{YdU_^vG%w{Qv$H|(ot|;4mu*zchP}t8b~i;}wy3Z%bJb%*Gutt}!U{c?rf!tv zeVr6G)1xF!^{Q=bh`axfMZ(Qi*`+O5=Xw=2+YP_joYONVDiW8E+1pO0;`Lx~DK)D$ zg<2D5NuGql8yUjOF>kzM#p#*C6-GLapR2{CvuZJp<>qxAr=j($F4$&8wKc@Y)X6oI z_iY0@Th{{>EaSzDiX^}Kq`3@yWLuA|D(xUC*^$Rck*o4#opt}NtXA62o2 z3HVt};Hx2_i}(t|qh)KcSMGvm%S(vKn=La$8KQff`GI&$74*DAu+d*`tTeYRis zeb~_fV#HyTJ)Wwzt=T~)k0-RFeXorUh3WO+C30n62p`qnGf?S@HQh^W8pEww7iuGH zYz3Q#q)3K#VpY8;o7roZZZ0ratq^Qf`lMLjhjz>rJEz4449xYGVYwY`+Et8_h%h=m zk`;4}s*>J%byyVZ10lT--Wvzg^@$y66|Xu_bJ!ah!Xo25q6h(D6Xl@o)j{Gd@x5px zY?wrB83ic$s!TNK+T?Ix{pQ2SB36u zq_@>(Z=EuQ?dpS_1BY6j2U?v^>jMY6_dl?|bFkB)W9yZDySx6qin1 zoS&U6)790JsdHz~o!;c`K)W+_5-lR%)(U%~s|$Ozm>;AZQAZ@iKG`eJMlHKBYC@+h4`S%T+&j%OyEO) z`Hk-L80{$|@7HDyyzdj1rsPhy(v)D&M#c6KY#7kEN*E zmdk5GLzB;wNZOvP-u$BbO>_GVlpa%yDY-|+)~Kl{*2piG@5!^eb+MKT2XHN!aSS;) z$L37ZeC@>2#~GO4;S4t#8fNRXg&Zw@ERkh(ICGERFEP{E01nCV9%5VuOj zN#{Ve6RE5r=Gp?3EC-vRPN;l9K5eyF$~H@QN9x<&(zzQ_nxZ>WM1tpa*9e7@o-zk{ zzMNNit$kN=gvUBqgZjNf3K3nJBugZc1HdgFb)7VFa+KJ delta 19 acmbQBIze@V2^X7%f}xp}!DcJ2Fb)7VF9h8H diff --git a/djadmin2/locale/zh/LC_MESSAGES/django.mo b/djadmin2/locale/zh/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..46072c53b76db5b0099120cf1e9d4aab2836c5da GIT binary patch literal 4114 zcmcJQS#TUj8ONJo2q=Ujgd38^L|C@9(#i=~tRp#&kBT5RDoY`Rm(*ytSDJWsW|^M# zT6q9P$T}Q3ma%Ndk{n5n5BZX0V{BQ6^+FW|6h#$Pc?7D+&g=?57@l|tRQP|>t(B#6 zs+RG^9>705|NJOp&w~E~e-A#jim?Xp zeef}`;bUr@3$8~05QwSls^)d@tLRUI4}wd2Lz2KM7Kce4X1j&yn-Jb=? z?(a1J4nB?kd*IK&Y9#qd@CHbJ-Uey^_rR}#58x%Oe+;De8$sH?7NqeX=zg>Admzp0 z1Idr$ApY1O{*j%F;J3lwXx;{q?&3o>DbE%94drU_flKTgXjE^~Le`F2YU zmu({@)=Iv*w9ILGMZ~?ea`ont`!gY7E$)c~Y^k+UTieVVu|v|aEGKK)&D``vif2vB z;!Q&Pkcj<1Hj($*6a~|Nmxj&kw}@g zDLvPqB^X@H8^*9>X_@DE22EUi&$iUpu`P)NH4Ljd?G5}h2oB3g(TbN#4{;jd&<%0oRna7D4pb~jP$5>iym^*=CCeY z5>;BbNyklbl@i2cQx;Pde3zr_@)l#Sz;a>pc<5-Nf<5m*7PbaAnho7?G9JBbhN`fK zArXH@3U{q!J6rjdFzJ%*a#+0%P+MHthxFrdA!RaSv3g4wQt-Irx{zyFVd1)t3y+}B ziVqx@D<&W@6fl&%XiE8}Pmp0JifM=TU2bsc8ObE_5_dATNBIcPo`F<4UJFl}!b%{w zMk}Q@4j&^@*wXaOy`t!q+7yS`<&L$qL3y}?6!DB}daY}q9b=Cu=i~z%wE11jY>{2^ z%gdT^l+oc?+R^4vm6>b}FAJ|VO-c7C?>a!MwdjWx)=L$t9R9`)l!ey05QUTwHmWSS z*q1h4f%@(iarjWISOXNm=wIlf0bLt5avW-kdzt(@1bNre|Hdx?TyJXk!7=!@!3TN&4|XwTHDhN2R!*2T*Y z5rmq+p)W0?+fhQ`5}su&!~KxU>RpHK?MPiB@+09=C1O1B3ho0Z65c!;N_LC1<9d;u zve`^Tp3OANNTU!TZ@QA~{N z7JE%Hy>ebPk8X@rMb}61lss=pFVg55wzLe-abr-D=Q>V`KW#pvepaMJEv6w(qgg~6 zg^`N!tu3Z4prx`F&r8QDE3?^b1@1~5grwM45qDCRX%(TYOjj-otkTk!Dqn4>TwAmo zao~dTAc{kQ8oY zyB&8(H8Eb@WO^m_VQnKjP+J+}wkox(soKQV&zk5aeA>Y_4nXLjJ8rm=9LttWW> ze14!~<+oUwRz}qZ%Jjl7=3sq=>1ESK_Jx<-f^ho}_36uxkLLS2nZN&v@-H{t zdH3h9viR)_KY9MCxBLSmOyL8*d&Rt}xL9s}Jm|lv5p*9$2K1J{+}zN+ZSDTt5x?hP zaCMZb7W#qR)e?-d{D~QV{~5N>buc(KsXK(OX+4zh9}Bu~Agjf1oDSf?7&c&j-`N#G zgn{`tt_IzG{()iCMMn>RgTZUT<+rtV`cD)lCddU06mA`X7Z`&aLwV5WR9&3@FMCyb zFg5tqSkQ6EKYh-hJmhztpv7=BH~oe`-sA5d^9M)r*GBHl_R?1EW7_EPbH(-fj_b&d z-+53C<)%&tmqrn{nm~Ttnn!fGnM?2^H-8dFlu!Q9q+T-JS)3oHum1|Rr+N=`&>@&O ziOBOahYIsu!O*aBWhu9FM`=wk)K-`eHK0<6jr_}RB8vq7=JniEzfu=YSZ=BYJZER=9PT1${&LYo|1VlcP8cOshDo^@{V%@)u9!+iz;c2OYzO$y1c6@%e@0 z>?SDiP Bywv~z literal 0 HcmV?d00001 diff --git a/example/blog/locale/de/LC_MESSAGES/django.mo b/example/blog/locale/de/LC_MESSAGES/django.mo index 2a49af9b7f7f97ff8d3a18167140923784632f52..1bebfde4e5291289ed1c0547c6bf4dcaafa258fa 100644 GIT binary patch delta 41 xcmZ1}xl(e&X*PCC1w%tCQ}fA}*w*v-B<7`;CZ?xaDWs%MZeWkz{DS=;3jitD4z~aR delta 41 xcmZ1}xl(e&X*PCq1w%tCL*vPp*w#<(V~^tTNz6+xO-xU2WfRYQ|jk(^Sc3A;&5aFyDX<0AMFevfbAWg#0^ zI`ZK2?E8Ms&%Q^P6XXK9L{5=wq)&*<@N$Z0@BC$B%}!Ph(i&c*?Ud1s)H|UY1ESt5 z9eBAs80#SG8dby7vFV^NjCh;p0v1*Zha(URCm9K-e+zU1bV_`m-A%4&Kq-ol%MaB* z{jbMG=b*4ccdc;7GO{c=C+jFn$U~AvDW6AioG07u%;VVaC>jZc6njQ^v|g3b3O&x} ztr{EK3=US!(kvOa^T*U%811CS@4gP$+sRLNb7+Oq_oR9kwv+C$ES3-sUSI1?T1a$d NYNZ=S!dK<^Ugnwbe(F<1bZ5A=?+)_7d2w6_99%*~92yEV-W}T$);pV-*>f%h zB?Y1ci3SmoE;!k{z53b8sU>*DpL;h!bWw zN9tUj8o0&T-@E{+ws~tUb&Sg(=nk98~ZyW}v z5$nqC8uMa@g*1vbEM#g(2PO5f+o4^%XG@=7Dr{PJyACgL_7)E|<>4^bSdGG>NLv?- z=T|ul%fhPDS%NB-o|;6Q9v5J%CmoZl3nZGmXiO*aw6NF>#TaZqRm8D!u3Mz(`o)&V zQHf2F`MSeh2&#@{#`*Ap+cE*Dw?hvWskHyun%6#6sDR-U8LcGI3(7ievetB&YtO6P zSRWmCJ)J~P6g?NUO^a$LpKC|U=xmQA(NXDDix%e>9*O4nMe~o*!a{4$zK7=*=jSmo zdS0z*HobM;URrpxwXnCGw^Hl2W0L6W2o$`lHw~s~pFV15h(CpEZS!@y% zszv)d+Sg8o`bWo5f7ha{YzKE}@c@;#hh{T6Obhh`HFQ>~y2?Woa9FGqFPI`#=c6@K zI9jt(b8nTMgO*IyB`Qm9w7~+50%W5Ng6OW!;K^tsEOdolW6gFjU0T5$DDGu;;l7*} z^XY9|*he{x>!_X*xk`0rCMbUdTmW!q^LRNP=%>(XThyr&TV?T zRkojjT;u1L_eY|-qm4?fk4fZ@t2gN2*!U`|u?{Is(LF5K$&4(^ggdwv4xS&Yw;n*l zu(VQeWlIGQeLLMMn_Jc)sgxO%;ZlWO982^jNnf4$Cmk<~RVJ8q9OcwrOX%P!K27MN zSmwry69|7&u*-TE8=Jeax^t^;zIWnpq{Mj K`nE=kioXE<)1&PG literal 0 HcmV?d00001 diff --git a/example/blog/locale/it/LC_MESSAGES/django.mo b/example/blog/locale/it/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..b5cb073ec39a7fdb6c47c109ad97af7bdd8e7638 GIT binary patch literal 2190 zcmb7^zi%8x6vu~PeqA6y2tR@-o`WoG*?Yer*sSeKMmP7_-Ffro{h0UuzBu!pz<34o zHO#*-=P74R8w8+;PH3C@6@f&|JjzXbR3{v&u9{14m!FFY#5 zGPn;u0e%g>1bzc9fdrFF$fW{3BC^Qfb72kbMRY`?Pn#Mz^fqp@fpbbe*kB}U%(~scaZh} zKVClvA(lIjzb1GItj-&A2W;T`-gx~J5J!ryK$tIHz&t(9k6#c5@hm3qg=lpq$C1Z# zn4F^*FuIT$E$SAKW1z62J-m!6{D3zA94TbYVm9nbBmDzyBY3oqh%#rNp+BU_$ z8{yY!04&3Y^K#`YbSK2-M8fh%C^0TkL)K|`T}LTt`>!zK(6 zjG@dF$3Rk|vx!mcBleYv(S9%?d1c@PjI4YVJ!r6ML~D`;IBosP+{@rNC9jFZ^^ZkbCt*S_hNdhKQJ9<0+$_^nd4EtEb4 zHTFO3MVq)70b8Oi8B|Q&cIVBgy&SdQp-v~hy1dx#w%ZVlZm1*8s_&Isrp|KwR(G+D z(fC065cLXay^+BcF(pW2P_*XjhfG@iUY1L3a1rurkcZ<)V$@SIk7+kZqjBrz2O$jO zR%>^gN8RvY4$tqXmdQs;mBm5#LJQimx}oaq(hcbuOu|2_<;M^?ke4 zlskiXLPb^SW0@4U`F5#%aHw!erR73*RmoT7E=|Dpp)8zHOSPm%x3P{gqY0J4{RLl2 zN^u0PD755`O3$a7HzrNs3#1>7A|NG4xMvPaRnf4Gbw{{Q#Xop2*wTLJtWLC1FwQu5 znJX%g`$DsUt|>lZCnYR|KS`npMTbT~235?mRX>0+2tbCE^`VF3FjC2hePx2ikV5Tb(;i2@|}zu7&12BCmhdGEJ(JM%vN@9kTE ze|X>f4978?&*4094`ajNA0Qnc-OJbm;K$$r@H6lm@C)z}@SXb@dk}mN+y{OLa`2Oq zx4=bw{|P()(>jpi-;d37 z{|HEa2f!LQ2p$KofNk(C@F@5LxCH(VQoe6g7&{BDf+xWnApY1d_!t0x0|W5r!$th( zz{l|YZEy&D7bL%5f|Tz~kmC6oq&RMuzyArsCEJgpQQZ#VgYF*#NrwwySz>PoKly`l zd=lr=IH@P-K&kx!X}ry6LFyICj}D55YC`p*o}hT2z)5})#^!MlS7-zFI8KUz>PN@( zI1l@)LJPVittc-x&D)9TuxTA}Yq-(XYL!iAlCPVb+q}H!3GKKuJk8sQvN3nDXn`PvNm@OAbJ(ihlZZ2@KfC#a&9DjmmQY73WH#V=ifg&02 znJls+q>h!|0A+6R9UFU+heC6uU1n?wx$tvl@=hVh#kf z8L_YEu0FRq%*)7Hu%Km+pB6lZx5q`y&Hot30N2p>EsfpN9zW}=2Ty09*2WkTCTIFmK`tkkIX`e>s%#!s&ZJPO$>X(E)isX+5U z)icSFxPX})3jn#|CEG=Z;3 z>3GgJ|WNXmq7peboG!Bt7>JH7WvqAPTnfJh^V$S-IN_x*@c{U5G+|nJ$4LipXauTO_hfa z_^a~siNfek`K{}>u4^9?cK6Hrp9c3VvLgLTc?If)yd0E<`<`0afW%ccYw+$$EJid* z<$aqBQyZg{UVJ1HZR=zPB9~cho8P_{ixEz3hL$V;QJ`+zCOVtNG*>c*I=kodXn#O& z8|YYF%yaa^o(=u=Wi)LW!?U00gF8q1;GTN@ZFqjhV-ix6vXYkFVSpFiWc|QLnRYy5 WtSvKzmh2N?)dniYdUe2_#yC* zAVL)X01;L>Sl@hbjlO`3ednIwfl`-)<=Ey|aB;7&zdYC;=ZfpaJ@HvwoGZ4AF!si0 zFhd)N&*Ng>xPCmohU<}XR>jIw?hT|I%|YGB_QgdLlCxw@qtOr-Q$>Z%$YrxhE{!K| zDapE#b_4PQMNUPk=T%527HoHjsk>ohtmmAu`#0H-oNrXO7sp{-4@B@h?474NsNlKNB z$RRedVaOsQDdjc|-6ChlsZs$)?r;ymTv1ON(#EIOB}f+@r#9ShvIxW(B&D1cO_cq!u~QjMOC8?+wj-U!7crAx=kunv@@BQ|Z0 z;6mya6qdGw()Lp0-ZxMQr**ecd57XwDHvwXmnkakr)nDtO;15Xs=Pu!9ZDEGJwUz_ z*;kxqNnPEahrwxtT-9B3?sr(3MzIAAM&-03X#i`h$4@L&KHtdFsP2wmxX9UCT4~A) zjVGYHIkNqI) z^^|klSrirfEsw3zvzhUAhglg^9b(q`@(0r@0jRe_4`z`}Kd?5heWXwU%R4gI2!kK0 z)M;xvhs#`hRwXv|!4=onVemxOcfpqJP;K+tRfY=GdB>Dds)>(Fvn``TvN6TwsH3D+T0wTN3ieIAy%TUHm$>S~+T zs6}{vqTRZ%xZ7JW1UNKI1P-%31W&^ zlbhbMd9g?iNx<4!{tFuUyKkhtAhu8wBUNx`vJ;NEpa~3)DUn7+)%l^Jl=qsPeO(*k zQdP);5Yc`KmADp;(qagGUZwIqbx;_|!$-{JNRNyjl97lhRE8jLjh^nhanT!4q|NB= z8+k`umC58bJVnb@o*vqpjdy#0^w9Y}=dDV!FQSnx9fHDQG`%ImtRb$45|J#@!94e; zx8MUjtkR5s4OBGJ3J0xIX|7#{R+Fjc2X-%6*QyL=UiEuA1ntB zqHAeU9zqEJeIG-cHl$d((PT$FC-L9eC>vI1$Vm2vliTwxj4aPO1VIX)qH8BFi_yGY g_h%^de%0;&JcRN@JHbDNIJn90FX#)OO>c?+0)$)REdT%j literal 0 HcmV?d00001 diff --git a/example/blog/locale/pt_BR/LC_MESSAGES/django.mo b/example/blog/locale/pt_BR/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..138f94c3d5d67988b989eb8bc5a68c0257376ad9 GIT binary patch literal 3190 zcmcJR$!{D*6vhh@wjpd`CoGRh5gwAB89ND1Cb5HKPr!h&m5d`H4xy&IJX5B-tJBpz z6LSIy@fU!^1t|^(NTgg4;lzoNICFpt2M#DFaz>@V)98uVKl7l6!vD)wR6(-m6#s zW%tfc1j@5`p2oB5HX+L3pCFfuw+nG6xC-t9zXX2(uYvc0AMFt0Zt!DpC-@mi;H3fk z-~!&SgAaj+(TU$*0iOgv1*gETz;W<*@GkJc9YQ7+uY-rd9(X@^6?_8x7Q_(o z6UgI!2HBop!I!`rgYSE>2~@=k;60!R9s$P(?Fslj_S^+|o(W9yDA)jh1m6aCgEb6h z9j3ttzy*-NcLw|bY~%eB_#jv+2@!yMz~{jC!PmfxU<14Xvc04C7CxwhFXH_za1{Iy z#Gm*EKhJ~TfxM6FgZAG*w&xF!$L+ui>rnx@-$4+jh@&8Xp9Xn=X7E#{}>D5j_8*sL@UXUA zAcrd)8?1|%qE=|yVk!>E8ZvREQV~q%?Fj9j5Ep%C3!2dU``ajmO|GLl#F>Rtq#hDea znn;P+NVavXC^VTRvxL3DW=j%V@2FJO*E(b!2@yKl68yH!&NNfg&mOOd8k& ztd3P~0^YgBI|lX?`7$OQXQ{CX#F4KAsR1=GXk0&1;L;MVrs+GCaN zUoa(%)~!lm9h_T8u$N#xc~)el2Fr+X zMRX0h9$`*K(Zmd~>d|pY9jrF7ci%{1^SL|?%XaVN6stFOyecPMUz2J$7EanaVAy}4 zp&RB#Eye-7SXgQTu{dAKqi9Ggk}yxP8k`aBJd^vrvUVvC!u@Xo5#Y7^HtySa2)B__?h zIosBOcQS8VuW9O3T9|Ko(}?U0L%bQ8sXC3-Mh|+maj$liMn~(1$M@I9YBhB9POGlw zskis59di9@==X-Snb%BZY(truv`#aK`A}M#(`XDN9S@3zsCc(J?8=whk<=lF@+2mJ z5{MbEsbo~A1z4T8b3R}rCsX;J4$Cys$+Dzgt@e7oO2$j+C3S&ESCc{qTTQB)qP!Xo zX00aKxs#`><+Ww%klQ*om=YR8%KMVw$AU^0AUwjEdyk zAZe|R2ri>QBNr>q(r1m|ze37p{Z;Z+iu8;$dp^f0OpB275kF>IdM<()ev^SYQJOEZ zvsLXJsfn|Cis@V+`sjcp{oj`1h~9h+Y+MI-!aUL@^s{I#mf~94|9o(%@M896tGRRy z-TSMlHdZY3SNTvQk7{4ba4k9K5k>4E3Xo@wwumr!KG*Bn8^W+wiu#ucojK#U6fPPO znH*tbDUqSY=HcajtE`#}7z6j2k7UcG2(*K$j8aNH7 t>87UmCQS_A1H&-gShwOPNq<8aIH%a0Zws^SF5pvfE90~N)hrK<_zUO9t$qLi literal 0 HcmV?d00001 diff --git a/example/blog/locale/sk/LC_MESSAGES/django.mo b/example/blog/locale/sk/LC_MESSAGES/django.mo index 080d8d59b0e1e4b901748998f40b2a33eef9ddb5..bdf0b0432af81c44b68498a11174236828683bcc 100644 GIT binary patch delta 41 xcmZpdY?s_{nvLC3!O+mk)O_+Kwp~0viFxUziRr0U3dPxzyV;{Re`cS;0stXE4txLr delta 41 xcmZpdY?s_{nvLCD!O+mk(0KACwq28FvPbdwB<7`;CZ?xaDHLaK{=`0&1pp%x4u1du diff --git a/example/blog/locale/zh/LC_MESSAGES/django.mo b/example/blog/locale/zh/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..af5f94eeb5e421658dfcfff2376fb8c534032a8b GIT binary patch literal 2102 zcmcJPOKclO7{{lyyxj6C4}k>Is0b+mHnv+qgG(qhZPg$GR_j*1p|w4>w_5L5JG(fk zda#=|O>xx+Qd5#v%>&Zrp{Aj{LU0do;($aYP6(+7@UHDsLEPW~|JmInZG{9J7K1LPoW=Jfd|?z;5G19@ILVCI|#W4yauiUe*h_X9gKs2 zf)9c5m4rM2Cc%y10q}0{6Hvygg7<^pgO7th1?zu+(*H_0e-T^*$~c{P+zIXg?*-ok z+rhoT{3&n(Ii3L%nD4lYkO#o`K>Wyfz$x%qyw8EVz#qZ2U>M0g3~m7xa1V$jatM^` z6>trB9()v>3D&;~_zn0p=D!Qxe+&3KDDz!`qU8E&Q2GsnNZ0d?l09u61Z9)!vY`|& zmefTES9FvwD9CU48_}qnrE$IbBHFep5eOAi<*(8n#J<8sOdUQvPBmx9Si** zal}6c+DtlmKFfy-g*s`;P2S(>FYNWO0-l!U1oLRT$r#^_#6?X?Zs@;dKrrMobCxyPFkw()8%I$qn2oWZYXo=@#p;!UbK`j7>C^Q%%9Fj@^mvO8c^%%pt=}Wt)-W zX&hRNwkI_!6!-3evK@Cp#Hit44bc(ZMEzk$WK)Q^2Pf-ev(D^r<3hPURCVV2+@qyt z>8M+ost+H!{lCLGdFDoSBvkuyqBdV?j(t%-JKOBL>df^w#%KK9H>$%oIrZ&H{q#^{ zvP7B}2AgA_lE%~px9{WHdT+^>ZWcr4JCe{@IoK%n)%;oOMo2 zG^RdkOi%l!wS}{Yhz;(*DW`PGIdK`uG)u$H^6_>47gnDgtDo#&=N!J+?3;9_$K8<$ zIBbp{MzTMb4ibOl%niHerv03WGqT_gR&O~n;*^gxCNJHbob%yD=X@my;^im(qNdR@ z2^=jeSf2OekY>43yL!$!K7ypkQb;NCl1U&>0C(V|^X`c6skYGnx8JKfc%(ivN&+~a TUx9h;>HzsydnbpQW5>u}J!98T literal 0 HcmV?d00001 diff --git a/example2/polls/locale/de/LC_MESSAGES/django.mo b/example2/polls/locale/de/LC_MESSAGES/django.mo index ebd253c62fb12f1fc737c552666fc229028e250e..1c0c2dde28d84f5677c355d23e326a433c392c8c 100644 GIT binary patch delta 40 wcmcb~ev^H}YesfU1w%tCQ}fB67}xXoB<7`;CZ?xaDWs%MUceMRnS=Qv04P=tOaK4? delta 40 wcmcb~ev^H}Yesf+1w%tCL*vPx7}rl;#}vimlbDxYnwXwyrI3<3nVtC(04qukPXGV_ diff --git a/example2/polls/locale/en/LC_MESSAGES/django.mo b/example2/polls/locale/en/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..6ce9dba020550715b8dac64b1cd7e7257e1df459 GIT binary patch literal 378 zcmaKny-ve06h@0+%E-*%femhPicnkgqlPA}DmkTU6Lynaf~(Yy9Jhi8;q`bHZWg-n zNk<-huKnGg^Rw?B<%GB(E{Rj(n&>hjCUiNbvvdBka(0V_heZjm=vr-!VC7bs%7Q9) z+6;mBbSlx!KL342J=Xdx$29Iunj<|&ZWZ?7tZ4Ao9B87=2|G$&8W zNv-?VRYylKG(oyZljDA2p9fQGJR17&tD)u|KmAQpD{bys@u6Ic{xQ#HFgki&v3GQk Pn8KFYRDzA(v=4f}uXtuK literal 0 HcmV?d00001 diff --git a/example2/polls/locale/fr/LC_MESSAGES/django.mo b/example2/polls/locale/fr/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..16d69d97c8498ba496c6c6bca1744fe2299f8082 GIT binary patch literal 967 zcmZXS&ubGw6vs!czgAJKUIY*0$&@nPB%-ZbTdi$M1EvXa73yueJK1d6o!QRJwkZ_B zlP5tCy?T_Myn2=X8{*&Mcam+3_~7L;lYR4@_ujle(^Fpv>^l4&{1AQ%{u}O$o+IQY zcpr2z4e&O&3|<2J;5BdyybKEP2AG3W;30Ssd=Fj$KUDiq;5YbJ_%!~1e1VX=U>m#x zMxZ-40-fHwYX1>*_kRZ6ecwT+`=jDd(4G4QLYe?$bFnApzB_aExZIsNjq`9HwAdQ13uv?6c*yGWtp0>H8o{Ia*?O~HM}EeYK1B>6~{+|&QCp=!hJdg4%32In>IJsl;MICg}4m zR*bDGXb#Ux8HhI*ajdagPamFrnUD|48g^m>c{X(Rn2I3wO7V%D$A_Gk$I?_*$g)|9+; zXC+IvEe>UH((?u-2RaLBqop$IyckR8DfB;%cE#FNTs#AQo!BvjEtRQqzIF)bp`JLY z#jbU=&$(%)ufE@1=d)?QW%$!R@3hww)@le1fI^(Ak=ssN06kFPqIjw1Z9rSh7o>xn hfnpQL*aXwaueg6=-kMTYm9m#JR@z!(G4_LEe*ud<+*SYp literal 0 HcmV?d00001 diff --git a/example2/polls/locale/nl/LC_MESSAGES/django.mo b/example2/polls/locale/nl/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..e76c170f35d6f910a36d1f7e822407337f954193 GIT binary patch literal 956 zcmZ9KOK%e~5XTLaS3tav9Nb%?%Gphzv}{R>=tESZY7_+|E=ca~G}(05-rC-zsd_;| z;=qLqT(}}3ap1%^;A+t*VBlvCjZ@4#pjEF~4?VKF*upkMG@^*E$dPHGDna zyVqsaU2V9bT{5I%sk7fHMS(j?XhT4&3ZKDSiJF%IFS7a=HL_8Tt)zd;Id8(R~4i(xsv1NN{ zBA%5!E4n)3mG*X5tQwMDORS+>#G7H`fe05w_?R~u(fq<(*bGAiiVh7^Fa3YqB5#Dz z!$)%=tnxxyC%Q%|n@Oil#MemK)Qy{s`aFL!khUQ6w8&(tY$0Q+$2wm|lIoSRN1{tI zM@s49KCkwjE21D6jYf6n1=C$R@bN)0-K`CZ;Gazf*|AQbvY>XV8gZ3Xwl=rc&(5Y% z4=bx$Ib4D0jtlJCpL;OrYl+8wX)L+c%kG9)Jd5)^;9AAHigl8zUc?u7QdenbrIDG~ z&?dJiRZOO~)m-A!VXLb6Y>PK)OBGgiWcZNGC> zP^n^Np)>yl6B`|v_y-V-Y%sF&^^t<$N#Fa}&+k1ypZ(>=#2W&;4BduC&~@lD6yOyw11G={couvKUI1T>=dZ!<&=GVE{=+kbTm+B6 zTi{#J<-G%4{rBVfN6_{233U5?9rN3mKS0;lPY|UEP@0Q9F;~}_JCCdF%=LB}a=9Ml zdUySh%8o8*A$CL|R3xfoWshfhD(GXK3DW9sr_yvpjEG1mn+}&q)X_2$V^Ayh?09TQ z%&nmLNe;<%nwB3!Ui5{rQY*5ntuUlj=&pz?TZ`FKQ5Y)cq@F1Ru&x4J+Z++=jYWHON=osM}S`)2<^l5v?%M><e~4B_H1RP!|I@WKe&e9~TJjlXfO6WlRdQIU?N zN>?uGTZ^K#Xb!tybPBp+I?q#()hfi^?(3y{eLivR!s literal 0 HcmV?d00001 diff --git a/example2/polls/locale/pt_BR/LC_MESSAGES/django.mo b/example2/polls/locale/pt_BR/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..9276ca386aadac26d96f9e6382b3689bebdadb44 GIT binary patch literal 1019 zcmZXSzi-qq6vqveUjgx>Fd)QWwmVgBa)+vxl(wk9L?up~P6rYLLT=*bTqSmho%V{l zFfp*Oz>YvdLadBTC-t8Iv9PkT^YtaALOki4PyGD+{A|A;lM`^yV>+J`Pf-yvu8 z7$FzIo1lwnfmgsq@D$hs&w-D@)1Uw^fEhRe?t>@67vLH2Wj%fk9zbuQN%)_fAmloj zgV(@Upv(6Gyaav*-TJTKRq&vm|5p2d*8By!{eFW;O@OhvT!-f7ow@V4+MT)F$02tn z4|27ig-Byd7qk#tq7W()O|mxRS)K}dPiKO3%gt1pfrt?i31!p0B@zv^j6@A;#n9IO zhQ!n_DB>46CsVaxk@zSaVAyU>xo{}U@Cxl_qnmGUvOnoZgmmTRb3`2H?$++j5)m%SB|V28=3C#yGh1nIvwe35eZaM z@uhw^j_$5C9e68RSv(Qz@8!4^_bz^(a;fHNG~k61cHv=voy{G^ zxk~WtY)wTvmMRJ9+@`c%H!TaEvUOc#CZsAK56wb*o>spL4Mi7et2ytHM$QXfHP7gi ziX?B6?&w`26{k{3j8hs5Dux0brK@I&IPSD+CXu0Bu|$c^M;}M;HE}g-iupswm|xH@ fXe{nhje9HNRk%>-Dl14$Lvm3hrLx>LnKtAPKZX)7 literal 0 HcmV?d00001 diff --git a/example2/polls/locale/sk/LC_MESSAGES/django.mo b/example2/polls/locale/sk/LC_MESSAGES/django.mo index 37f66149f85f133513b62ef80f6ee6e15330b11b..47e29885dd766629bab51689a22eb3eaaed31260 100644 GIT binary patch delta 40 wcmeys{(*hNYesfU1w%tCQ}fB673321O?HGtB{qpyFdHz4!pKq?bL=abjHQ*U=9e4$VcnjPD-T|w? zC*TV36<7hj0hfUvK=Amv%+UpeUIVMZ4XC}jxafNidJXaqpuy)OXqfi}Gy?q&8hn0% z!d3(_&o6EVUY%~CqB64JOL3?%O3gnGy=b}f(r9#S zJa;Iw=7<-b?3d&zw+?<#Tplqk3}Iz0bs8P;##m3rPRNpMx5AO!P#k5CbFyPO3tr>_ z^PJ)|>E9;F21)MXexKgiSWnUxcyQ%2xUR!JqBMr!W5xKnxG&^VsWW<4K_ znWt`)4)J0+ v>S(-)``uxLwwW+mU?uAb6I;kZ>QOBiUaTg@n~LdqinP;MYd zU=k{VP(2tu6utTo^p8YuclG`ko$=09>cDqDb7sGD_MF*2cRIEa#C6a;&3Q zK8MgP;C-O>xWK!>5#S}@H1Hbm74R~U0dE2`UT{or2}X4-@)SPj;aBTheY2C?gU5Bj^EUdI6=nP&5eF8#l+U;EsL z-42BHj7mj(L35c>#f66}A_*oqe#C%-Zr|f5qe;%BZWk#{@*y0=R7j?VU-;u>;LN9cfd5Gv&YWTDQ+X8m}z-i4Z9cAB5oj()r?_rIZXfA#p+*3sV2#$kOFHP;Ty m59 Date: Tue, 9 Jul 2013 13:51:24 +0200 Subject: [PATCH 11/12] Replaced shell script with fabfile --- fabfile.py | 46 ++++++++++++++++++++++++++ i18n.sh | 97 ------------------------------------------------------ 2 files changed, 46 insertions(+), 97 deletions(-) create mode 100644 fabfile.py delete mode 100755 i18n.sh diff --git a/fabfile.py b/fabfile.py new file mode 100644 index 0000000..86d8d4c --- /dev/null +++ b/fabfile.py @@ -0,0 +1,46 @@ +# -*- coding: utf-8 -*- +from __future__ import print_function, division, absolute_import, unicode_literals + +from fabric.api import local, lcd +from fabric.contrib.console import confirm + + +DIRS = ['djadmin2', 'example/blog', 'example2/polls'] + + +def _run(command, directory): + with lcd(directory): + print('\n### Processing %s...' % directory) + local(command) + + +def makemessages(): + command = 'django-admin.py makemessages -a' + for d in DIRS: + _run(command, d) + + +def compilemessages(): + command = 'django-admin.py compilemessages' + for d in DIRS: + _run(command, d) + + +def checkmessages(): + command = 'ls -1 locale/*/LC_MESSAGES/django.po | xargs -I {} msgfmt -c {}' + for d in DIRS: + _run(command, d) + + +def pulltx(): + print('\n### Pulling new translations from Transifex...') + local('tx pull -a') + + +def pushtx(): + print('\n### Pushing translations and sources to Transifex...') + print('Warning: This might destroy existing translations. Probably you should pull first.') + if confirm('Continue anyways?', default=False): + local('tx push -s -t') + else: + print('Aborting.') diff --git a/i18n.sh b/i18n.sh deleted file mode 100755 index eba8098..0000000 --- a/i18n.sh +++ /dev/null @@ -1,97 +0,0 @@ -#!/bin/bash - -### Helper functions - -function assert_django { - hash django-admin.py 2>/dev/null || - { echo >&2 "django-admin.py not found. Please install Django."; exit 1; } -} - -function assert_tx { - hash tx 2>/dev/null || - { echo >&2 "tx not found. Please install transifex-client."; exit 1; } -} - -function are_you_sure { - read -r -p "$1 Are you sure? [y/n] " response - if [[ $response =~ ^([yY][eE][sS]|[yY])$ ]] - then - : - else - exit 1 - fi -} - - -### Command functions - -function makemessages { - assert_django - echo "### Processing djadmin2..." - ( cd djadmin2; django-admin.py makemessages -a ) - echo "### Processing example app..." - ( cd example/blog; django-admin.py makemessages -a ) - echo "### Processing example2 app..." - ( cd example2/polls; django-admin.py makemessages -a ) -} - -function compilemessages { - assert_django - echo "### Processing djadmin2..." - ( cd djadmin2; django-admin.py compilemessages ) - echo "### Processing example app..." - ( cd example/blog; django-admin.py compilemessages ) - echo "### Processing example2 app..." - ( cd example2/polls; django-admin.py compilemessages ) -} - -function checkmessages { - ls -1 djadmin2/locale/*/LC_MESSAGES/django.po | xargs -I {} msgfmt -c {} - ls -1 example/blog/locale/*/LC_MESSAGES/django.po | xargs -I {} msgfmt -c {} - ls -1 example2/polls/locale/*/LC_MESSAGES/django.po | xargs -I {} msgfmt -c {} -} - -function pulltx { - assert_tx - echo "### Pulling new translations from Transifex..." - tx pull -a -} - -function pushtx { - assert_tx - are_you_sure "Warning: This might destroy existing translations. Probably you should pull first." - echo "### Pushing translations and sources to Transifex..." - tx push -s -t -} - - -### Parse arguments - -case $1 in - "") - echo "Available commands:" - echo "--- makemessages: Generate or update .po files" - echo "--- compilemessages: Compile .po files to .mo files"; - echo "--- checkmessages: Check .po files for syntax errors"; - echo "--- pulltx: Pull new translations from Transifex"; - echo "--- pushtx: Push translations and sources to Transifex"; - ;; - "makemessages") - makemessages - ;; - "compilemessages") - compilemessages - ;; - "checkmessages") - checkmessages - ;; - "pulltx") - pulltx - ;; - "pushtx") - pushtx - ;; - *) - echo "Unknown command: $1" - ;; -esac From dba0b1b51c617816efb1e9dd486a12a4df637a22 Mon Sep 17 00:00:00 2001 From: Danilo Bargen Date: Tue, 9 Jul 2013 13:52:07 +0200 Subject: [PATCH 12/12] PEP8 --- fabfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fabfile.py b/fabfile.py index 86d8d4c..f5674ee 100644 --- a/fabfile.py +++ b/fabfile.py @@ -30,7 +30,7 @@ def checkmessages(): command = 'ls -1 locale/*/LC_MESSAGES/django.po | xargs -I {} msgfmt -c {}' for d in DIRS: _run(command, d) - + def pulltx(): print('\n### Pulling new translations from Transifex...')