From a70c04d83ba029dd09adb6b0df8fb18292591b74 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Sat, 12 Nov 2005 18:15:26 +0000 Subject: [PATCH 01/23] Fixed #774 -- Fixed typos in docs/authentication.txt. Thanks, footless and jbennett git-svn-id: http://code.djangoproject.com/svn/django/trunk@1199 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/authentication.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/authentication.txt b/docs/authentication.txt index e0780902c1..e813f78e11 100644 --- a/docs/authentication.txt +++ b/docs/authentication.txt @@ -415,7 +415,7 @@ Thus, you can check permissions in template ``{% if %}`` statements::

You don't have permission to do anything in the foo app.

{% endif %} -.. _template context: http://www.djangoproject.com/documentation/models/templates_python/ +.. _template context: http://www.djangoproject.com/documentation/templates_python/ Groups ====== @@ -458,7 +458,7 @@ a playlist:: # Create the playlist with the given songs. # ... request.user.add_message("Your playlist was added successfully.") - return render_to_response("playlists/create", context_instance=DjangoContext) + return render_to_response("playlists/create", context_instance=DjangoContext(request)) When you use ``DjangoContext``, the currently logged-in user and his/her messages are made available in the `template context`_ as the template variable From b2e05910edd1d077bd40f1353883031ddb5a255a Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Sat, 12 Nov 2005 18:17:22 +0000 Subject: [PATCH 02/23] Fixed #773 -- Removed reference to CACHE_MIDDLEWARE_GZIP in docs/cache.txt. Thanks, Eugene git-svn-id: http://code.djangoproject.com/svn/django/trunk@1200 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/cache.txt | 6 ------ 1 file changed, 6 deletions(-) diff --git a/docs/cache.txt b/docs/cache.txt index f8986b9115..c426811219 100644 --- a/docs/cache.txt +++ b/docs/cache.txt @@ -101,12 +101,6 @@ Then, add the following three required settings to your Django settings file: sites using the same Django installation, set this to the name of the site, or some other string that is unique to this Django instance, to prevent key collisions. Use an empty string if you don't care. -* ``CACHE_MIDDLEWARE_GZIP`` -- Either ``True`` or ``False``. If this is - enabled, Django will gzip all content for users whose browsers support gzip - encoding. Using gzip adds a level of overhead to page requests, but the - overhead generally is cancelled out by the fact that gzipped pages are stored - in the cache. That means subsequent requests won't have the overhead of - zipping, and the cache will hold more pages because each one is smaller. The cache middleware caches every page that doesn't have GET or POST parameters. Additionally, ``CacheMiddleware`` automatically sets a few headers From 1bf6dd7e0e0738b3d4c6c818124f8ecfa3a99936 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Sat, 12 Nov 2005 18:32:12 +0000 Subject: [PATCH 03/23] Added mime_type attributes to feedgenerator RssFeed and Atom1Feed, and made the syndication view use that mime_type. Thanks, James git-svn-id: http://code.djangoproject.com/svn/django/trunk@1201 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/contrib/syndication/views.py | 2 +- django/utils/feedgenerator.py | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/django/contrib/syndication/views.py b/django/contrib/syndication/views.py index 3236f9dfab..3bab3bcac9 100644 --- a/django/contrib/syndication/views.py +++ b/django/contrib/syndication/views.py @@ -21,6 +21,6 @@ def feed(request, url, feed_dict=None): except feeds.FeedDoesNotExist: raise Http404, "Invalid feed parameters. Slug %r is valid, but other parameters, or lack thereof, are not." % slug - response = HttpResponse(mimetype='application/xml') + response = HttpResponse(mimetype=feedgen.mime_type) feedgen.write(response, 'utf-8') return response diff --git a/django/utils/feedgenerator.py b/django/utils/feedgenerator.py index d482685383..696b55d493 100644 --- a/django/utils/feedgenerator.py +++ b/django/utils/feedgenerator.py @@ -111,6 +111,7 @@ class Enclosure: self.url, self.length, self.mime_type = url, length, mime_type class RssFeed(SyndicationFeed): + mime_type = 'application/rss+xml' def write(self, outfile, encoding): handler = SimplerXMLGenerator(outfile, encoding) handler.startDocument() @@ -176,6 +177,7 @@ class Rss201rev2Feed(RssFeed): class Atom1Feed(SyndicationFeed): # Spec: http://atompub.org/2005/07/11/draft-ietf-atompub-format-10.html + mime_type = 'application/atom+xml' ns = u"http://www.w3.org/2005/Atom" def write(self, outfile, encoding): handler = SimplerXMLGenerator(outfile, encoding) From 0a74c68eeebb827736f2370dc67d0d72619025f2 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Sat, 12 Nov 2005 20:25:47 +0000 Subject: [PATCH 04/23] Fixed #778 -- Improved isExistingURL validator not to raise ValidationError for URLs that exist but require authorization. Thanks for the report, lakin wrecker. git-svn-id: http://code.djangoproject.com/svn/django/trunk@1202 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/core/validators.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/django/core/validators.py b/django/core/validators.py index bdcce990f8..b68fc0ade8 100644 --- a/django/core/validators.py +++ b/django/core/validators.py @@ -199,7 +199,11 @@ def isExistingURL(field_data, all_data): u = urllib2.urlopen(field_data) except ValueError: raise ValidationError, _("Invalid URL: %s") % field_data - except: # urllib2.HTTPError, urllib2.URLError, httplib.InvalidURL, etc. + except urllib2.HTTPError, e: + # 401s are valid; they just mean authorization is required. + if e.code not in ('401',): + raise ValidationError, _("The URL %s is a broken link.") % field_data + except: # urllib2.URLError, httplib.InvalidURL, etc. raise ValidationError, _("The URL %s is a broken link.") % field_data def isValidUSState(field_data, all_data): From 9da6eb5c267449f25de93f3dcefcb10c76fb7523 Mon Sep 17 00:00:00 2001 From: Georg Bauer Date: Sat, 12 Nov 2005 20:57:20 +0000 Subject: [PATCH 05/23] fixed #777 and #775 - updated bn and sk translations git-svn-id: http://code.djangoproject.com/svn/django/trunk@1203 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/conf/locale/bn/LC_MESSAGES/django.mo | Bin 25354 -> 27101 bytes django/conf/locale/bn/LC_MESSAGES/django.po | 32 +- django/conf/locale/sk/LC_MESSAGES/django.mo | Bin 17545 -> 19756 bytes django/conf/locale/sk/LC_MESSAGES/django.po | 337 ++++++++++---------- 4 files changed, 189 insertions(+), 180 deletions(-) diff --git a/django/conf/locale/bn/LC_MESSAGES/django.mo b/django/conf/locale/bn/LC_MESSAGES/django.mo index a9e6dac40503aaa85423f7ef103046610f7d4f91..923d02c8dcc49246aade434002bc44d3155cb792 100644 GIT binary patch delta 5474 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 dp1N7P%UzsxAlUuid8OXfrG?S%9fj$>{{uZ$`, 2005. @@ -9,16 +9,16 @@ msgstr "" "Project-Id-Version: Django CVS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2005-11-11 16:13-0600\n" -"PO-Revision-Date: 2005-11-10 06:11+0530\n" +"PO-Revision-Date: 2005-11-12 20:05+0530\n" "Last-Translator: Baishampayan Ghose \n" -"Language-Team: Bengali \n" +"Language-Team: Ankur Bangla \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" +"Content-Transfer-Encoding: 8bit" #: contrib/admin/models/admin.py:6 msgid "action time" -msgstr "কাজ সময়" +msgstr "কাজের সময়" #: contrib/admin/models/admin.py:9 msgid "object id" @@ -30,7 +30,7 @@ msgstr "বস্তু repr" #: contrib/admin/models/admin.py:11 msgid "action flag" -msgstr "কাজ ফ্ল্যাগ" +msgstr "কাজের ফ্ল্যাগ" #: contrib/admin/models/admin.py:12 msgid "change message" @@ -367,7 +367,6 @@ msgid "template name" msgstr "ছাঁদ নাম" #: contrib/flatpages/models/flatpages.py:12 -#, fuzzy msgid "" "Example: 'flatpages/contact_page'. If this isn't provided, the system will " "use 'flatpages/default'." @@ -653,7 +652,7 @@ msgstr "বার্তা" #: conf/global_settings.py:36 msgid "Bengali" -msgstr "" +msgstr "বাংলা" #: conf/global_settings.py:37 msgid "Czech" @@ -673,7 +672,7 @@ msgstr "ইংরেজী" #: conf/global_settings.py:41 msgid "Spanish" -msgstr "স্পেনিয়" +msgstr "স্প্যানিশ" #: conf/global_settings.py:42 msgid "French" @@ -835,7 +834,7 @@ msgid "Enter a valid U.S. state abbreviation." msgstr "একটি বৈধ U S. রাজ্য abbreviation ঢোকান।" #: core/validators.py:224 -#, fuzzy, python-format +#, python-format msgid "Watch your mouth! The word %s is not allowed here." msgid_plural "Watch your mouth! The words %s are not allowed here." msgstr[0] "মুখ সামলে! %s এখানে ব্যাবহার করতে পারবেন না।" @@ -878,20 +877,20 @@ msgid "Please enter a valid decimal number." msgstr "দয়া করে একটি বৈধ দশমিক সংখ্যা ঢোকান।" #: core/validators.py:344 -#, fuzzy, python-format +#, python-format msgid "Please enter a valid decimal number with at most %s total digit." msgid_plural "" "Please enter a valid decimal number with at most %s total digits." -msgstr[0] "দয়া করে একটি বৈধ দশমিক সংখ্যা ঢোকান যার অক্ষরের সংখ্যা %s থেকে কম হবে।" -msgstr[1] "দয়া করে একটি বৈধ দশমিক সংখ্যা ঢোকান যার অক্ষরের সংখ্যা %s থেকে কম হবে।" +msgstr [0] "দয়া করে একটি বৈধ দশমিক সংখ্যা ঢোকান যার অক্ষরের সংখ্যা %s থেকে কম হবে।" +msgstr [1] "দয়া করে একটি বৈধ দশমিক সংখ্যা ঢোকান যার অক্ষরের সংখ্যা %s থেকে কম হবে।" #: core/validators.py:347 -#, fuzzy, python-format +#, python-format msgid "Please enter a valid decimal number with at most %s decimal place." msgid_plural "" "Please enter a valid decimal number with at most %s decimal places." -msgstr[0] "দয়া করে একটি বৈধ দশমিক সংখ্যা ঢোকান যার দশমিক স্থান %s থেকে কম হবে।" -msgstr[1] "দয়া করে একটি বৈধ দশমিক সংখ্যা ঢোকান যার দশমিক স্থান %s থেকে কম হবে।" +msgstr [0] "দয়া করে একটি বৈধ দশমিক সংখ্যা ঢোকান যার দশমিক স্থান %s থেকে কম হবে।" +msgstr [1] "দয়া করে একটি বৈধ দশমিক সংখ্যা ঢোকান যার দশমিক স্থান %s থেকে কম হবে।" #: core/validators.py:357 #, python-format @@ -986,3 +985,4 @@ msgid "" msgstr "" "একের চেয়ে বেশি নির্বাচন করতে \"Control\" অথবা ম্যাক-এ \"Command\" চেপে ধরে " "রাখুন।" + diff --git a/django/conf/locale/sk/LC_MESSAGES/django.mo b/django/conf/locale/sk/LC_MESSAGES/django.mo index c340bcd936794576509f4e23f8601a641e1e2b68..c19f78a3915833fba0c004d3faea75ffabc45144 100644 GIT binary patch delta 6663 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 diff --git a/django/conf/locale/sk/LC_MESSAGES/django.po b/django/conf/locale/sk/LC_MESSAGES/django.po index 6f31031edd..e7bb04f935 100644 --- a/django/conf/locale/sk/LC_MESSAGES/django.po +++ b/django/conf/locale/sk/LC_MESSAGES/django.po @@ -76,12 +76,8 @@ msgid "DATE_WITH_TIME_FULL" msgstr "PLNY_DATUM_AJ_CAS" #: contrib/admin/templates/admin/object_history.html:36 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" -"Tento object nemá históriu zmien. Možno nebol pridaný prostredníctvom tohoto " -"web admina" +msgid "This object doesn't have a change history. It probably wasn't added via this admin site." +msgstr "Tento object nemá históriu zmien. Možno nebol pridaný prostredníctvom tohoto web admina" #: contrib/admin/templates/admin/base_site.html:4 msgid "Django site admin" @@ -104,12 +100,8 @@ msgid "Server Error (500)" msgstr "Chyba servera (500)" #: contrib/admin/templates/admin/500.html:10 -msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." -msgstr "" -"Vznikla chyba. Prostredníctvom e-mailu bol o nej informovaný správca a " -"chyba by mala byť o chviľu odstránená. Ďakujeme za vašu trpezlivosť." +msgid "There's been an error. It's been reported to the site administrators via e-mail and should be fixed shortly. Thanks for your patience." +msgstr "Vznikla chyba. Prostredníctvom e-mailu bol o nej informovaný správca a chyba by mala byť o chviľu odstránená. Ďakujeme za vašu trpezlivosť." #: contrib/admin/templates/admin/404.html:4 #: contrib/admin/templates/admin/404.html:8 @@ -174,23 +166,13 @@ msgstr "Odhlásenie" #: contrib/admin/templates/admin/delete_confirmation.html:7 #, python-format -msgid "" -"Deleting the %(object_name)s '%(object)s' would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" -"Vymazaním objektu %(object_name)s '%(object)s' môžete spôsobiť vymazanie " -"súvisiacich objektov, ale váš účet nemá povolenie na mazanie nasledujúcich " -"typov objektov:" +msgid "Deleting the %(object_name)s '%(object)s' would result in deleting related objects, but your account doesn't have permission to delete the following types of objects:" +msgstr "Vymazaním objektu %(object_name)s '%(object)s' môžete spôsobiť vymazanie súvisiacich objektov, ale váš účet nemá povolenie na mazanie nasledujúcich typov objektov:" #: contrib/admin/templates/admin/delete_confirmation.html:14 #, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(object)s\"? All of " -"the following related items will be deleted:" -msgstr "" -"Ste si istý, že chcete vymazať %(object_name)s \"%(object)s\"? Všetky " -"nasledujúce objekty budú tiež vymazané :" +msgid "Are you sure you want to delete the %(object_name)s \"%(object)s\"? All of the following related items will be deleted:" +msgstr "Ste si istý, že chcete vymazať %(object_name)s \"%(object)s\"? Všetky nasledujúce objekty budú tiež vymazané :" #: contrib/admin/templates/admin/delete_confirmation.html:18 msgid "Yes, I'm sure" @@ -219,12 +201,8 @@ msgid "Password reset" msgstr "Obnova hesla" #: contrib/admin/templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll reset " -"your password and e-mail the new one to you." -msgstr "" -"Zabudli ste vaše heslo? Vložte nižšie vašu e-mail adresu, a nové heslo vám " -"bude na ňu zaslané ." +msgid "Forgotten your password? Enter your e-mail address below, and we'll reset your password and e-mail the new one to you." +msgstr "Zabudli ste vaše heslo? Vložte nižšie vašu e-mail adresu, a nové heslo vám bude na ňu zaslané ." #: contrib/admin/templates/registration/password_reset_form.html:16 msgid "E-mail address:" @@ -248,20 +226,12 @@ msgid "Password reset successful" msgstr "Heslo bolo úspešne obnovené" #: contrib/admin/templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed a new password to the e-mail address you submitted. You " -"should be receiving it shortly." -msgstr "" -"Poslali sme vám, nové heslo na vami uvedenú emailovú adresu.Mali by ste ho " -"dostať čo najskôr." +msgid "We've e-mailed a new password to the e-mail address you submitted. You should be receiving it shortly." +msgstr "Poslali sme vám, nové heslo na vami uvedenú emailovú adresu.Mali by ste ho dostať čo najskôr." #: contrib/admin/templates/registration/password_change_form.html:12 -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 "" -"Kvôli bezpečnosti vložte prosím vaše staré heslo, a potom dvakrát vaše nové " -"heslo, tým môžeme skontrolovať jeho správnosť." +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 "Kvôli bezpečnosti vložte prosím vaše staré heslo, a potom dvakrát vaše nové heslo, tým môžeme skontrolovať jeho správnosť." #: contrib/admin/templates/registration/password_change_form.html:17 msgid "Old password:" @@ -541,6 +511,41 @@ msgstr "typ obsahu" msgid "content types" msgstr "typy obsahu" +#: models/core.py:68 + +#: models/core.py:69 + +#: models/core.py:70 + +#: models/core.py:71 + +#: models/core.py:73 + +#: models/core.py:74 + +#: models/core.py:87 + +#: models/core.py:88 + +#: models/core.py:89 + +#: models/core.py:90 + +#: models/core.py:91 + +#: models/core.py:92 + +#: models/core.py:93 + +#: models/core.py:94 + +#: models/core.py:94 + +#: models/core.py:98 + +#: models/core.py:99 + +#: models/core.py:117 #: models/core.py:67 msgid "session key" msgstr "kľúč sedenia" @@ -603,8 +608,7 @@ msgstr "heslo" #: models/auth.py:37 msgid "Use an MD5 hash -- not the raw password." -msgstr "" -"Vložte takú hodnotu hesla , ako vám ju vráti MD5, nevkladajte ho priamo. " +msgstr "Vložte takú hodnotu hesla , ako vám ju vráti MD5, nevkladajte ho priamo. " #: models/auth.py:38 msgid "staff status" @@ -631,12 +635,8 @@ msgid "date joined" msgstr "dátum registrácie" #: models/auth.py:44 -msgid "" -"In addition to the permissions manually assigned, this user will also get " -"all permissions granted to each group he/she is in." -msgstr "" -"Okrem ručne vložených povolení, tento uživateľ dostane všetky povolenia " -"skupin, v ktorých sa nachádza." +msgid "In addition to the permissions manually assigned, this user will also get all permissions granted to each group he/she is in." +msgstr "Okrem ručne vložených povolení, tento uživateľ dostane všetky povolenia skupin, v ktorých sa nachádza." #: models/auth.py:48 msgid "Users" @@ -783,12 +783,8 @@ msgid "Enter a valid e-mail address." msgstr "Vložte platnú e-mail adresu." #: core/validators.py:147 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" -"Nahrajte platný obrázok. Súbor, ktorý ste nahrali buď nebol obrázok alebo je " -"nahratý poškodený obrázok." +msgid "Upload a valid image. The file you uploaded was either not an image or a corrupted image." +msgstr "Nahrajte platný obrázok. Súbor, ktorý ste nahrali buď nebol obrázok alebo je nahratý poškodený obrázok." #: core/validators.py:154 #, python-format @@ -884,20 +880,16 @@ msgstr "Prosím vložte platné desiatkové číslo. " #: core/validators.py:344 #, python-format msgid "Please enter a valid decimal number with at most %s total digit." -msgid_plural "" -"Please enter a valid decimal number with at most %s total digits." +msgid_plural "Please enter a valid decimal number with at most %s total digits." msgstr[0] "Prosím vložte platné desiatkové číslo s najviac %s číslicou." msgstr[1] "Prosím vložte platné desiatkové číslo s najviac %s číslicami." #: core/validators.py:347 #, python-format msgid "Please enter a valid decimal number with at most %s decimal place." -msgid_plural "" -"Please enter a valid decimal number with at most %s decimal places." -msgstr[0] "" -"Prosím vložte platné desatinné číslo s najviac %s desatinným miestom." -msgstr[1] "" -"Prosím vložte platné desatinné číslo s najviac %s desatinnými miestami." +msgid_plural "Please enter a valid decimal number with at most %s decimal places." +msgstr[0] "Prosím vložte platné desatinné číslo s najviac %s desatinným miestom." +msgstr[1] "Prosím vložte platné desatinné číslo s najviac %s desatinnými miestami." #: core/validators.py:357 #, python-format @@ -924,150 +916,167 @@ msgstr "Nič som nemohol získať z %s." #: core/validators.py:424 #, python-format -msgid "" -"The URL %(url)s returned the invalid Content-Type header '%(contenttype)s'." -msgstr "" -" URL %(url)s vrátilo neplatnú hlavičku Content-Type '%(contenttype)s'." +msgid "The URL %(url)s returned the invalid Content-Type header '%(contenttype)s'." +msgstr " URL %(url)s vrátilo neplatnú hlavičku Content-Type '%(contenttype)s'." #: core/validators.py:457 #, python-format -msgid "" -"Please close the unclosed %(tag)s tag from line %(line)s. (Line starts with " -"\"%(start)s\".)" -msgstr "" -"Prosím zavrite nezavretý %(tag)s popisovač v riadku %(line)s. (Riadok " -"začína s \"%(start)s\".)" +msgid "Please close the unclosed %(tag)s tag from line %(line)s. (Line starts with \"%(start)s\".)" +msgstr "Prosím zavrite nezavretý %(tag)s popisovač v riadku %(line)s. (Riadok začína s \"%(start)s\".)" #: core/validators.py:461 #, python-format -msgid "" -"Some text starting on line %(line)s is not allowed in that context. (Line " -"starts with \"%(start)s\".)" -msgstr "" -"Nejaký text začínajúci na riadku %(line)s nie je povolený v tomto kontexte. " -"(Riadok začína s \"%(start)s\".)" +msgid "Some text starting on line %(line)s is not allowed in that context. (Line starts with \"%(start)s\".)" +msgstr "Nejaký text začínajúci na riadku %(line)s nie je povolený v tomto kontexte. (Riadok začína s \"%(start)s\".)" #: core/validators.py:466 #, python-format -msgid "" -"\"%(attr)s\" on line %(line)s is an invalid attribute. (Line starts with \"%" -"(start)s\".)" -msgstr "" -"\"%(attr)s\" na riadku %(line)s je neplatný atribút. (Riadok začína s \"%" -"(start)s\".)" +msgid "\"%(attr)s\" on line %(line)s is an invalid attribute. (Line starts with \"%(start)s\".)" +msgstr "\"%(attr)s\" na riadku %(line)s je neplatný atribút. (Riadok začína s \"%(start)s\".)" #: core/validators.py:471 #, python-format -msgid "" -"\"<%(tag)s>\" on line %(line)s is an invalid tag. (Line starts with \"%" -"(start)s\".)" -msgstr "" -"\"<%(tag)s>\" na riadku %(line)s je neplatný popisovač. (Riadok začína s \"%" -"(start)s\".)" +msgid "\"<%(tag)s>\" on line %(line)s is an invalid tag. (Line starts with \"%(start)s\".)" +msgstr "\"<%(tag)s>\" na riadku %(line)s je neplatný popisovač. (Riadok začína s \"%(start)s\".)" #: core/validators.py:475 #, python-format -msgid "" -"A tag on line %(line)s is missing one or more required attributes. (Line " -"starts with \"%(start)s\".)" -msgstr "" -"Popisovaču na riadku %(line)s chýba jeden alebo viac atribútov. (Riadok " -"začína s \"%(start)s\".)" +msgid "A tag on line %(line)s is missing one or more required attributes. (Line starts with \"%(start)s\".)" +msgstr "Popisovaču na riadku %(line)s chýba jeden alebo viac atribútov. (Riadok začína s \"%(start)s\".)" #: core/validators.py:480 #, python-format -msgid "" -"The \"%(attr)s\" attribute on line %(line)s has an invalid value. (Line " -"starts with \"%(start)s\".)" -msgstr "" -"Atribút \"%(attr)s\" na riadku %(line)s má neplatnú hodnotu. (Riadok začína " -"s \"%(start)s\".)" +msgid "The \"%(attr)s\" attribute on line %(line)s has an invalid value. (Line starts with \"%(start)s\".)" +msgstr "Atribút \"%(attr)s\" na riadku %(line)s má neplatnú hodnotu. (Riadok začína s \"%(start)s\".)" #: core/meta/fields.py:111 msgid " Separate multiple IDs with commas." msgstr "Identifikátory oddeľte čiarkami." #: core/meta/fields.py:114 -msgid "" -" Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "" -" Podržte \"Control\", alebo \"Command\" na Mac_u, na výber viac ako jednej " -"položky." +msgid " Hold down \"Control\", or \"Command\" on a Mac, to select more than one." +msgstr " Podržte \"Control\", alebo \"Command\" na Mac_u, na výber viac ako jednej položky." -#~ msgid "Comment posted" -#~ msgstr "Komentár bol poslaný" +#:templates/comments/posted.html :5 +msgid "Comment posted" +msgstr "Komentár bol poslaný" + +#:templates/comments/posted.html :9 +msgid "Comment posted successfully" +msgstr "Komentár bol úspešne odoslaný" + +#:templates/comments/posted.html :11 +msgid "Thanks for contributing." +msgstr "Ďakujeme za príspevok." + +#:templates/comments/posted.html :11 +msgid "View your comment" +msgstr "Pozri svôj príspevok" + +#templates/blog/entries_detail.html:24 +msgid "Post a comment" +msgstr "Pridaj komentár" -#~ msgid "Comment posted successfully" -#~ msgstr "Komentár bol úspešne odoslaný" +#templates/blog/entries_detail.html:15 +msgid "Comments" +msgstr "Komentáre" +#:templates/comments/free_preview.html :40 +msgid "Comment" +msgstr "Komentár" -#~ msgid "Thanks for contributing." -#~ msgstr "Ďakujeme za príspevok." +#:templates/comments/free_preview.html :34 +msgid "Your name" +msgstr "Vaše meno" -#~ msgid "View your comment" -#~ msgstr "Pozri svôj príspevok" +#:templates/comments/free_preview.html :5 +msgid "Preview revised comment" +msgstr "Prezretie upraveného komentára" +#:templates/comments/free_preview.html :25 +msgid "Post public comment" +msgstr "Zveréjniť komentár" # templates/blog/entries_detail.html:24 -#~ msgid "Post a comment" -#~ msgstr "Pošli komentár" +#:templates/comments/free_preview.html :5 +msgid "Preview comment" +msgstr "Prezrieť komentár" # templates/blog/entries_detail.html:15 -#~ msgid "Comments" -#~ msgstr "Komentáre" -#~ msgid "Comment" -#~ msgstr "Komentár" +#:templates/comments/free_preview.html :13 +msgid "Preview your comment" +msgstr "Prezrite si svoj komentár" -#~ msgid "Your name" -#~ msgstr "Vaše meno" +#:templates/comments/free_preview.html :22 +msgid "Posted by" +msgstr "Poslané" -#~ msgid "Preview revised comment" -#~ msgstr "Prezretie upraveného komentára" +#:templates/comments/free_preview.html :27 +msgid "Or edit it again" +msgstr "Alebo ho vytvorte znova" -#~ msgid "Post public comment" -#~ msgstr "Zveréjniť komentár" +#:templates/comments/free_preview.html :18 +msgid "Please correct the following errors." +msgstr "Odstráňte nasledujúce chyby, prosím." -#~ msgid "Preview comment" -#~ msgstr "Prezrieť komentár" +#:templates/404.html :10 +msgid "Looks like you followed a bad link. If you think it is our fault, please let us know" +msgstr "Pozrite si linku , kde vzikla chyba. Ak si myslíte, že je to naša chyba, dajte nám to vedieť, prosím" -#~ msgid "Preview your comment" -#~ msgstr "Prezrite si svoj komentár" +#:templates/404.html :12 +msgid "Here is a link to the homepage. You know, just in case" +msgstr "Tu je adresa úvodnej stránky. Ak by ste ju potrebovali" -#~ msgid "Posted by" -#~ msgstr "Poslané" +#:templates/comments/freecomments.html :9 +msgid "Recent comments" +msgstr "Posledný komentár" -#~ msgid "Or edit it again" -#~ msgstr "Alebo ho vytvorte znova" +#:templates/comments/freecomments.html :9 +msgid "Previous" +msgstr "Predchádzajúci/a" -#~ msgid "Please correct the following errors." -#~ msgstr "Odstráňte nasledujúce chyby, prosím." +#:templates/comments/freecomments.html :10 +msgid "Page" +msgstr "Stránka" -#~ msgid "" -#~ "Looks like you followed a bad link. If you think it is our fault, please " -#~ "let us know" -#~ msgstr "" -#~ "Pozrite si linku , kde vzikla chyba. Ak si myslíte, že je to naša chyba, " -#~ "dajte nám to vedieť, " -#~ "prosím" +#:templates/comments/freecomments.html :11 +msgid "Next" +msgstr "Ďalší/ia" -#~ msgid "" -#~ "Here is a link to the homepage. You know, just in case" -#~ msgstr "" -#~ "Tu je adresa úvodnej stránky. Ak by ste ju potrebovali" +#:templates/blog/entries_archive.html :9 +msgid "Latest entries" +msgstr "Posledné záznamy" -#~ msgid "Recent comments" -#~ msgstr "Posledný komentár" +#:templates/blog/entries_archive_day.html :9 +msgid "archive" +msgstr "archív" -#~ msgid "Previous" -#~ msgstr "Predchádzajúci/a" +#:templates/500.html :4 +msgid "Page unavailable" +msgstr "Stránka je neprístupná" -#~ msgid "Page" -#~ msgstr "Stránka" +#:templates/500.html :10 +msgid "We're sorry, but the requested page is currently unavailable" +msgstr "Ľutujeme ale požadovaná stránka je neprístupná" + +#:templates/500.html :12 +msgid "We're messing around with things internally, and the server had a bit of a hiccup" +msgstr "Máme problém na servri, ktorý sa snažíme odstrániť" + +#:templates/500.html :14 +msgid "Please try again later" +msgstr "Skúste znovu neskôr, prosím" + +#:templates/miesta/miesta_archive.html :7 +msgid "Latest miesta" +msgstr "Posledné miesta" + +#:templates/miesta/miesta_detail.html :57 +msgid "on" +msgstr " " + +#:templates/miesta/miesta_detail.html :67 +msgid "at" +msgstr "o" -#~ msgid "Next" -#~ msgstr "Ďalší/ia" -#~ msgid "Latest entries" -#~ msgstr "Posledné záznamy" -#~ msgid "archive" -#~ msgstr "archív" From 5f39a6a240e4c23a4d8f6a05e10eb64d3a08f05e Mon Sep 17 00:00:00 2001 From: Georg Bauer Date: Sat, 12 Nov 2005 21:27:46 +0000 Subject: [PATCH 06/23] fixes #750 - languages for language-selection can now be restricted by setting LANGUAGES in the projects setting file to some subset of the global_settings provided list. git-svn-id: http://code.djangoproject.com/svn/django/trunk@1204 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/utils/translation.py | 43 +++++++++++++++++++++---------------- 1 file changed, 25 insertions(+), 18 deletions(-) diff --git a/django/utils/translation.py b/django/utils/translation.py index 0bb19acd39..a58188e87f 100644 --- a/django/utils/translation.py +++ b/django/utils/translation.py @@ -256,7 +256,8 @@ ngettext_lazy = lazy(ngettext, str) def check_for_language(lang_code): """ Checks whether there is a global language file for the given language code. - This is used to decide whether a user-provided language is available. + This is used to decide whether a user-provided language is available. this is + only used for language codes from either the cookies or session. """ from django.conf import settings globalpath = os.path.join(os.path.dirname(settings.__file__), 'locale') @@ -268,18 +269,21 @@ def check_for_language(lang_code): def get_language_from_request(request): """ Analyzes the request to find what language the user wants the system to show. + Only languages listed in settings.LANGUAGES are taken into account. If the user + requests a sublanguage where we have a main language, we send out the main language. """ global _accepted from django.conf import settings globalpath = os.path.join(os.path.dirname(settings.__file__), 'locale') + supported = dict(settings.LANGUAGES) if hasattr(request, 'session'): lang_code = request.session.get('django_language', None) - if lang_code is not None and check_for_language(lang_code): + if lang_code in supported and lang_code is not None and check_for_language(lang_code): return lang_code lang_code = request.COOKIES.get('django_language', None) - if lang_code is not None and check_for_language(lang_code): + if lang_code in supported and lang_code is not None and check_for_language(lang_code): return lang_code accept = request.META.get('HTTP_ACCEPT_LANGUAGE', None) @@ -297,24 +301,27 @@ def get_language_from_request(request): else: lang = el order = 100 - if lang.find('-') >= 0: - (lang, sublang) = lang.split('-') - lang = lang.lower() + '_' + sublang.upper() - return (lang, order) + p = lang.find('-') + if p >= 0: + mainlang = lang[:p] + else: + mainlang = lang + return (lang, mainlang, order) langs = [_parsed(el) for el in accept.split(',')] - langs.sort(lambda a,b: -1*cmp(a[1], b[1])) + langs.sort(lambda a,b: -1*cmp(a[2], b[2])) - for lang, order in langs: - langfile = gettext_module.find('django', globalpath, [to_locale(lang)]) - if langfile: - # reconstruct the actual language from the language - # filename, because otherwise we might incorrectly - # report de_DE if we only have de available, but - # did find de_DE because of language normalization - lang = langfile[len(globalpath):].split(os.path.sep)[1] - _accepted[accept] = lang - return lang + for lang, mainlang, order in langs: + if lang in supported or mainlang in supported: + langfile = gettext_module.find('django', globalpath, [to_locale(lang)]) + if langfile: + # reconstruct the actual language from the language + # filename, because otherwise we might incorrectly + # report de_DE if we only have de available, but + # did find de_DE because of language normalization + lang = langfile[len(globalpath):].split(os.path.sep)[1] + _accepted[accept] = lang + return lang return settings.LANGUAGE_CODE From 33accf560d9a8a318a34fc6a38c038f2d86165ff Mon Sep 17 00:00:00 2001 From: Georg Bauer Date: Sat, 12 Nov 2005 21:33:46 +0000 Subject: [PATCH 07/23] updated i18n documentation for the LANGUAGES setting git-svn-id: http://code.djangoproject.com/svn/django/trunk@1205 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/i18n.txt | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docs/i18n.txt b/docs/i18n.txt index 8ab9a1f2cb..3ed95007fc 100644 --- a/docs/i18n.txt +++ b/docs/i18n.txt @@ -426,6 +426,18 @@ Notes: Django uses the base language. For example, if a user specifies ``de-at`` (Austrian German) but Django only has ``de`` available, Django uses ``de``. + * only languages listed in the LANGUAGES setting can be selected. So if you want + to restrict the language selection to a subset of provided languages (because + your appliaction doesn't provide all those languages), just set it to a list + of languages like this:: + + LANGUAGES = ( + ('de', _('German')), + ('en', _('English')), + ) + + This would restrict the available languages for automatic selection to German + and English (and any sublanguage of those, like de-ch or en-us). Once ``LocaleMiddleware`` determines the user's preference, it makes this preference available as ``request.LANGUAGE_CODE`` for each `request object`_. From f3d1f395592a9f8dc143c471dbdc111b5247a03e Mon Sep 17 00:00:00 2001 From: Georg Bauer Date: Sat, 12 Nov 2005 21:36:38 +0000 Subject: [PATCH 08/23] added the LANGUAGES setting to the settings documentation git-svn-id: http://code.djangoproject.com/svn/django/trunk@1206 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/settings.txt | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/settings.txt b/docs/settings.txt index 4d4b7ca85d..d2f6ffcdb5 100644 --- a/docs/settings.txt +++ b/docs/settings.txt @@ -400,6 +400,16 @@ in standard language format. For example, U.S. English is ``"en-us"``. See the .. _internationalization docs: http://www.djangoproject.com/documentation/i18n/ +LANGUAGES +--------- + +Default: a list of available languages and their name + +This is a list of two-tuples with language code and language name that are available +for language selection. See the `internationalization docs`_ for details. It usually +isn't defined, only if you want to restrict language selection to a subset of the +django-provided languages you need to set it. + MANAGERS -------- From 367ce0ce923d4efe114f65300d2f4668cf7fbd4d Mon Sep 17 00:00:00 2001 From: Georg Bauer Date: Sat, 12 Nov 2005 21:45:01 +0000 Subject: [PATCH 09/23] fixes #764 - the TokenParser now respects string parameters to filters that contain blanks. git-svn-id: http://code.djangoproject.com/svn/django/trunk@1207 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/core/template/__init__.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/django/core/template/__init__.py b/django/core/template/__init__.py index a501d6bbe8..c007e4bc80 100644 --- a/django/core/template/__init__.py +++ b/django/core/template/__init__.py @@ -301,6 +301,13 @@ class TokenParser: else: p = i while i < len(subject) and subject[i] not in (' ', '\t'): + if subject[i] in ('"', "'"): + c = subject[i] + i += 1 + while i < len(subject) and subject[i] != c: + i += 1 + if i >= len(subject): + raise TemplateSyntaxError, "Searching for value. Unexpected end of string in column %d: %s" % subject i += 1 s = subject[p:i] while i < len(subject) and subject[i] in (' ', '\t'): From f3319e45e4aaceb9caaa5c5fe2a96fc6eac39884 Mon Sep 17 00:00:00 2001 From: Georg Bauer Date: Sat, 12 Nov 2005 22:08:54 +0000 Subject: [PATCH 10/23] fixes #109 - added translation possibilities for date and time formats (and updated translation files for the new message IDs) git-svn-id: http://code.djangoproject.com/svn/django/trunk@1208 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/conf/locale/bn/LC_MESSAGES/django.mo | Bin 27101 -> 27102 bytes django/conf/locale/bn/LC_MESSAGES/django.po | 25 +- django/conf/locale/cs/LC_MESSAGES/django.mo | Bin 17639 -> 17639 bytes django/conf/locale/cs/LC_MESSAGES/django.po | 14 +- django/conf/locale/cy/LC_MESSAGES/django.mo | Bin 17077 -> 17077 bytes django/conf/locale/cy/LC_MESSAGES/django.po | 14 +- django/conf/locale/de/LC_MESSAGES/django.mo | Bin 18115 -> 18274 bytes django/conf/locale/de/LC_MESSAGES/django.po | 14 +- django/conf/locale/en/LC_MESSAGES/django.mo | Bin 421 -> 536 bytes django/conf/locale/en/LC_MESSAGES/django.po | 14 +- django/conf/locale/es/LC_MESSAGES/django.mo | Bin 5203 -> 5203 bytes django/conf/locale/es/LC_MESSAGES/django.po | 14 +- django/conf/locale/fr/LC_MESSAGES/django.mo | Bin 17549 -> 17549 bytes django/conf/locale/fr/LC_MESSAGES/django.po | 14 +- django/conf/locale/gl/LC_MESSAGES/django.mo | Bin 5322 -> 5322 bytes django/conf/locale/gl/LC_MESSAGES/django.po | 14 +- django/conf/locale/it/LC_MESSAGES/django.mo | Bin 16611 -> 16611 bytes django/conf/locale/it/LC_MESSAGES/django.po | 14 +- django/conf/locale/no/LC_MESSAGES/django.mo | Bin 17184 -> 17184 bytes django/conf/locale/no/LC_MESSAGES/django.po | 14 +- .../conf/locale/pt_BR/LC_MESSAGES/django.mo | Bin 16457 -> 16457 bytes .../conf/locale/pt_BR/LC_MESSAGES/django.po | 14 +- django/conf/locale/ro/LC_MESSAGES/django.mo | Bin 17204 -> 17204 bytes django/conf/locale/ro/LC_MESSAGES/django.po | 14 +- django/conf/locale/ru/LC_MESSAGES/django.mo | Bin 5134 -> 5134 bytes django/conf/locale/ru/LC_MESSAGES/django.po | 14 +- django/conf/locale/sk/LC_MESSAGES/django.mo | Bin 19756 -> 17545 bytes django/conf/locale/sk/LC_MESSAGES/django.po | 366 ++++++++++-------- django/conf/locale/sr/LC_MESSAGES/django.mo | Bin 16334 -> 16334 bytes django/conf/locale/sr/LC_MESSAGES/django.po | 14 +- .../conf/locale/zh_CN/LC_MESSAGES/django.mo | Bin 16720 -> 16720 bytes .../conf/locale/zh_CN/LC_MESSAGES/django.po | 14 +- django/contrib/admin/views/main.py | 10 +- django/utils/translation.py | 18 + 34 files changed, 421 insertions(+), 194 deletions(-) diff --git a/django/conf/locale/bn/LC_MESSAGES/django.mo b/django/conf/locale/bn/LC_MESSAGES/django.mo index 923d02c8dcc49246aade434002bc44d3155cb792..6b7c4c38b5930f3f18bd403c624d551aeebab5db 100644 GIT binary patch delta 1724 zcmXZcd2EeY7{~G7O{82@O*>Sp(<&*Ydv&EsTeWruRZCH7DWyX&GgN{%wM-Gqgk)wc z5wo?Vm6^Df1mT|v8L=dmnS|7q%%C9=LdKT(J~{WF`#I11zW1ExJm-1ewi~{?H++Az zhInN@>Fq$NMbhXbsTyD6eym8AzQ^bI3L8_TLR^$#$96;CSMCtinHWDfZ2g#^HBZj(2c4rshh^ zaT$J%_wW=}yL;?*He|61cHW^x z>Wiuqz-(4ykp5L8a(W723_d|iEQC%pqcD;6mCRs07p7n< z-o(k+FiM){V*y-@DPvqS{xDW*=KlY<1`p8~d$}J?<0KLvFLT}AhL(80&s}Bn(H1Vj z2%L(stgj^u?98_!$Ex4ZCVGgrvo5?EeQ^ZZg!Az>u0i`>#RNC;a@_1I9ik~paW;~D8SXxP6VG|z1k{Ryxdp#rg{`Z>cGR(l&JTMCFjEBvVcH^%YkGWM+ z8djpkTd@vX@Bv27mUiG9jAH|hb6jPbt6j-YV>tJ(Vmdykrv6_t2%jsRL=QPm<;;^7 zU;{Sbf0%%^^WEF96K$fyXw7y8?Pwk$-y(g$p_s-bW*zb^QZw2-cQ6ipUX9d;K|E$- zF-Bp1(A}6o+=@2wbzFfRC{Gx!!WjG(t*L&&k$4LE7U@0uF>8_g02QM3LKRxV-pb%$ z3-;#1L9`N|##n4eYes*qOC%F5o{pAK1KLCZv?l#4=u_-U97ZQvqA@{}(Go2{{vWN0 p40>{51KLD;F%^Fg^+kQz3_DolqUUH_z_Lr>|+1` delta 1722 zcmXZcdu&Zv6vy#jBdAX6QRZ^h^p#wrZdI>pi=tXpMu*~}-c#=ujWHoLi8xi15GF$+ zgz=bBZ<9&u5hna2Lk+?2H>V$uy53gf9KExJ$jWPK5KzIEC zjv@XJyWpTqDFF*J<*65gd0d!?)mVTxa6U$dTtdsx7Q7Yl9{Pz}F%I9O&C_v^RLX{u z@jUVOS<+za%TE!`#<6%9Q}FpWOrpxv*<4!8@~ z;XbsI`$kByn1-#GgKSPd&dK5u3}BFK?fJ=Q6
G4BTkw!n6@67R<(tVfPr*U^t{ zSb?#lq=UEyPhgJ%_x~$s3En|l=x)SkXg%@))395iREc>=F+9~XuuNLfn&uta&fATa zx}qN~?vIwxC|rV7$YymHZO8E(Fq_p_q<>Y1oSqu64?agrtUaA*_QHOwuONfe+L`Z(8&d%ls5bN?;=h=*v5ecbocIQ@tlzjfXI5H0c439hn3&=xMl z?l=t-Sznb5?98_!$Eu@f6Fo-TSq!g6D(0h2xB#1RE!zLWrEcPtxQ)0Lt;BJYq;pt} zJurQ;vG%nbHBQ#|A8%;=3c zSc4nz2?lWKLiaZ8K%3||TC-h7JDR7+w@9Bb4>Op=T!ws$bPR2tW=ukPi}_k%GG=1| z`ms9V&ln&+jW+Q=xC+}*o-Vis``~7@rur3&@B-%IN9=@IOWg-(1X?f5K}*xBRS diff --git a/django/conf/locale/bn/LC_MESSAGES/django.po b/django/conf/locale/bn/LC_MESSAGES/django.po index 0a7a471728..88fe7b42e7 100644 --- a/django/conf/locale/bn/LC_MESSAGES/django.po +++ b/django/conf/locale/bn/LC_MESSAGES/django.po @@ -8,13 +8,13 @@ msgid "" msgstr "" "Project-Id-Version: Django CVS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-11-11 16:13-0600\n" +"POT-Creation-Date: 2005-11-12 16:05-0600\n" "PO-Revision-Date: 2005-11-12 20:05+0530\n" "Last-Translator: Baishampayan Ghose \n" "Language-Team: Ankur Bangla \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit" +"Content-Transfer-Encoding: 8bit\n" #: contrib/admin/models/admin.py:6 msgid "action time" @@ -391,6 +391,18 @@ msgstr "চ্যাপ্টা পাতা" msgid "flat pages" msgstr "চ্যাপ্টা পাতাগুলো" +#: utils/translation.py:335 +msgid "DATE_FORMAT" +msgstr "" + +#: utils/translation.py:336 +msgid "DATETIME_FORMAT" +msgstr "" + +#: utils/translation.py:337 +msgid "TIME_FORMAT" +msgstr "" + #: utils/dates.py:6 msgid "Monday" msgstr "সোমবার" @@ -881,16 +893,16 @@ msgstr "দয়া করে একটি বৈধ দশমিক সংখ্ msgid "Please enter a valid decimal number with at most %s total digit." msgid_plural "" "Please enter a valid decimal number with at most %s total digits." -msgstr [0] "দয়া করে একটি বৈধ দশমিক সংখ্যা ঢোকান যার অক্ষরের সংখ্যা %s থেকে কম হবে।" -msgstr [1] "দয়া করে একটি বৈধ দশমিক সংখ্যা ঢোকান যার অক্ষরের সংখ্যা %s থেকে কম হবে।" +msgstr[0] "দয়া করে একটি বৈধ দশমিক সংখ্যা ঢোকান যার অক্ষরের সংখ্যা %s থেকে কম হবে।" +msgstr[1] "দয়া করে একটি বৈধ দশমিক সংখ্যা ঢোকান যার অক্ষরের সংখ্যা %s থেকে কম হবে।" #: core/validators.py:347 #, python-format msgid "Please enter a valid decimal number with at most %s decimal place." msgid_plural "" "Please enter a valid decimal number with at most %s decimal places." -msgstr [0] "দয়া করে একটি বৈধ দশমিক সংখ্যা ঢোকান যার দশমিক স্থান %s থেকে কম হবে।" -msgstr [1] "দয়া করে একটি বৈধ দশমিক সংখ্যা ঢোকান যার দশমিক স্থান %s থেকে কম হবে।" +msgstr[0] "দয়া করে একটি বৈধ দশমিক সংখ্যা ঢোকান যার দশমিক স্থান %s থেকে কম হবে।" +msgstr[1] "দয়া করে একটি বৈধ দশমিক সংখ্যা ঢোকান যার দশমিক স্থান %s থেকে কম হবে।" #: core/validators.py:357 #, python-format @@ -985,4 +997,3 @@ msgid "" msgstr "" "একের চেয়ে বেশি নির্বাচন করতে \"Control\" অথবা ম্যাক-এ \"Command\" চেপে ধরে " "রাখুন।" - diff --git a/django/conf/locale/cs/LC_MESSAGES/django.mo b/django/conf/locale/cs/LC_MESSAGES/django.mo index 56c658906ae406ab6b2e113237efcdcede1f475b..2a49d71e2b90e0aacdbabb16846b3a143c63247f 100644 GIT binary patch delta 22 dcmaFf$@sjJaRZYkyODySnU#U*W=_p}(g0bj2KxX2 delta 22 dcmaFf$@sjJaRZYkyP<-inU$gOW=_p}(g0bS2KfL0 diff --git a/django/conf/locale/cs/LC_MESSAGES/django.po b/django/conf/locale/cs/LC_MESSAGES/django.po index 5162c5b5a5..7cf5779d95 100644 --- a/django/conf/locale/cs/LC_MESSAGES/django.po +++ b/django/conf/locale/cs/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Django Czech translation\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-11-11 16:13-0600\n" +"POT-Creation-Date: 2005-11-12 16:05-0600\n" "PO-Revision-Date: 2005-11-10 19:29+0100\n" "Last-Translator: Radek Svarz \n" "Language-Team: Czech\n" @@ -396,6 +396,18 @@ msgstr "statická stránka" msgid "flat pages" msgstr "statické stránky" +#: utils/translation.py:335 +msgid "DATE_FORMAT" +msgstr "" + +#: utils/translation.py:336 +msgid "DATETIME_FORMAT" +msgstr "" + +#: utils/translation.py:337 +msgid "TIME_FORMAT" +msgstr "" + #: utils/dates.py:6 msgid "Monday" msgstr "Pondělí" diff --git a/django/conf/locale/cy/LC_MESSAGES/django.mo b/django/conf/locale/cy/LC_MESSAGES/django.mo index 275f423c0814ea78b47af9b05c4779f7c02af804..70ecc2fdb632dd4ed21eba3e006cd8064cf52dc8 100644 GIT binary patch delta 22 dcmdnm%DA\n" "Language-Team: Cymraeg \n" @@ -393,6 +393,18 @@ msgstr "tudalen fflat" msgid "flat pages" msgstr "tudalennau fflat" +#: utils/translation.py:335 +msgid "DATE_FORMAT" +msgstr "" + +#: utils/translation.py:336 +msgid "DATETIME_FORMAT" +msgstr "" + +#: utils/translation.py:337 +msgid "TIME_FORMAT" +msgstr "" + #: utils/dates.py:6 msgid "Monday" msgstr "Dydd Llun" diff --git a/django/conf/locale/de/LC_MESSAGES/django.mo b/django/conf/locale/de/LC_MESSAGES/django.mo index fa53245ee73a1cfa5ab9ed4e0b45d7404bc11081..318a9a269e855937b86a676dcd9211d72fab94ce 100644 GIT binary patch delta 4731 zcmZwKdr(!!0mt#hD{oX(6a%OiL_i>lieMBFMIItZQIzHeIdTp>~9te-JMeT-SrLt80*jL8Kb9D?~+hRd-8Pvb%i?Q6^c zT#KB->_8XpLSK9V*JBHI$G&0S?|IAsD*Q8p`S8b748#o7iSm#>OfmMtO6-lRFc#}k z9kkm0uVFClQ%GOt0_uF9p*p^S0eBM+7>_akrt%0In)?~UKl5ik)WJ=R#_v%byZajx zgDI$i&cHaFiwRhdqwxq1#J{3u>^szXqr;u=r{hT4^KmNunx&hU3Er#HaQ5`j5JnqIcJdI=UE^2@eM>=a`bR_ey1Jc=`6HUM%%tNie zQcS`M?1|e^_wpsw!1kkN>X2<8N1g9&)bSlS96M3R-$PwsFe{z0n8+yRUpvy+z{Q(f zR0kEPfmEXw(>l}%H)9s=#M#)1Zj9%KKaB-gkC!nPrw=k_6mCEb%A z8FeM~s4LiR+q+Ox){Gk1KD+-YaxvxvYU;aCPswN2+o&0Jxt+BYggWmNsO>eV3-i=b z$)fTMYD&&y1%8e!T$95iFcs&Z?%@GU!mG%|n}8T+l@CSDz!aQ`U8v*Zcmy;9nW(j} z3Ws7VK1%;G1S1iFdutylxC#}q946o`?2h4a z&df!jFYP!~Kgqa6&;L9s>1;TQi}4<6suyuKb+{6BU=3;w)S_l!8|Gj;a)|jBHG|Rg zt^s85p((Diu0}uFb*Ov46$9ws?4sh2&8U01AJx&Ds1tP9?H6tP6VwU5K&|Gl?RM8N zXVLaTT|k6w$D#%}0(Bv??Dl!+31q_(D(Yx8s$GYgx(3_cf!hB(YM}ct01sQ+P>b(< z+rEstfKO1z{T&1GU#K_XJ=A&nBr^ZH;)q1&i}9!vk46n312y7_sPE-tD3+l*sIvRl zqK?~$LwtCOu$uOPBwjWcn(VBREG(kE8<*qXl9_+jpDE>Ax;N`F2y0OtH(&!cq6XBD zhgjc>KwWV(>Pk|v2WHs)g~-o}DMj6)#i%QM@TUpBbvAT`?e3))2&QlP9J!wxuJx!&kXn;^{csU#@oq#-X$yv6D{4R|P&0D| zbMXp3j*(-XHL@8!jchnbWfP{cGBg8kpb>hej=ftt7Tab(_c$0z} zU?o;zBWhq@qprATrt=q68S(_1MjV7EF%Cb?Wd2{K;=|?6#aHklyoZI@e}ePlvjBC# zAzY1JI2$KrJNLR7htclD$#@rMV8%q}f|^hlvIlhm`*98)^iYYX;+n);4wFz{T#0(2 z)Y$e`^j-nhvi&3$;Mg2vHsco5aoy-$PeCy1)`X*GI2w7dOe*rgn5CG2o)#)mRL-GR z?dPZi!k9lTx_I=(bPUBzR7ca$yZTYLY(DCqR-<>|sDW&?`%g z8xL3#Jy;#(FMxkaf3pJn; z455EBlZp@if~fQ*gS|BtkX4Imhplh1if74bvWcj0_snH-ifkY%P2?ca!c}>hs9&uk z&qY4=k%dG>Q>ik693$t{pd2Ub$N@5tOeG0Kw@4+9JWUb_cg$pyGNN+9!TXbZi2B2% zm3*Xe9JV{}vzAIdd6Jwb1*C%TM4FYvkLc}ohO8kfzjg5bfw|b$g%FB6Maxll2=JL(x3dEgpps7VxlsIJVRpCuq6-|k)M(= zob0y!o3q|c&c{pe?gQwPdXwR5P!^C5Z_W7|VLbI02v4y0&$1ukE}{}o9w%*TP?AY6 z5~>EJiY(FmUn0LFDzW5>x5j^`aT|G!_>u@xN5+yrl3^r;s0<}}O0+Fj-c}UW9vt+) teaGEJLH?uMBh$vEjA@&Z_?63V*>LwX_w2S2!x#2&6^yHHYZ^Z~_`h$0)Ib0L delta 4589 zcmYk<3v`cl9LMqR_-|`w43lIMXr0K;3G-Hc;!9PYp?uuU5?E@9oUDfYr( z?2Xg0Kl-o=InQr`}U>errFpO%)xi|)W^l$G`(Fkj?57yxf3}-!AA}e(+M4k7HYgeFVzQ(m* z!7SR_Py=p6t-v|V!SkqzWk;LM#(ebaz~@x-g&$B~IOW=nu6@pV9yK6~F>4N?sP9E# z7mUMn9E8{6Ow<5(qV~cYsPk)3*Etx&`ZuF;hy&VhUtm}K5nEu(SnpoOqXw3QT7mAa zosPO-Kh*cLF$G7UzF&fx;8Nt0w%Q%vi_FDpV_AP~mLEBwft<#0{1bISACJTUY>h=Y z0uyix&d0-8iur7S&iEzv#Pg_uq{N$*VKHhz4XC|#7B!I&e|v8REl~&Bp_VKGHLyhY zc`7m{>w{YQ0@PD6);SHeq-ChhwFI>?zq#Xo;Q-n}3EoO%;ho0)zk>=J(`rz=vkrCd z;&~KwD+-WFS_x`*uR_gyKNeyxkBGisiJJK?)E@W+ufq0xX(SHD+prRQ;5p+ zOwa#uD(bKS^~FZiy+4aufhP2pjVZ_>dkD3eDo_KcM(vqzou@E__V1{BegSp;a83@z zDAX;C!wCAfWGcEqZ}&mAYv-XZFbcJcC%fY_QJb|4HRENj{Ss<`8&MNE;*K9ho%bE8 zpHr^=JNmVB|GERdWbcF)sFB9tW!TZ#6}9QEaqS$`O68$0JQ~Ar66y^&4RxJGs2MLq zowpiw-7U$izXnjv0gd=gcj7*bq!(gtW0WC(IxC}Mp3e-%tVgy#BK0ko`KCxQV zEjodkc_X$*A1{G$?CeZMb)13fC&y1kGa8P&u@G~yIa^mRibCYqflb6N=*Jeg5qW%U zH|qOe;dS@}YL~~Rn%#u?$RgP~)GwjKsDb^1*PuV1qy4Dl;}BemGw^HF2=jQTHSt-fUA)9haeIRF0a-i>Rk%o%?)~`}}p(FQ*#RK#!rWcM|!V!~Q_6R3sZs z1C2#px1=BIuM02a02|lJQ6t-rcVQ#OU_pjA(+7~r*e>J=vqp@^xc=UouOC*@9*1{e z5YvsuVjPN(U=AL@L~NGH`aeh|Ez^5(tViABzcCq8viNHTM`Av%Le1n1Y6cfjdnb4x ze@9{%>K05u{@K&~(0NBN0*|?N0|qAGr!tEV;;#3e`wA?fU61mnU_n>CD4|OjOVPNE_ z$FRYDe#RZYfZDXp*oitX0d-4LP}faI4LlRsmo@~0aV|0dzm-wZi7QYYtVIoA8~Sh$ z>H=@0I`|NS@e9;|kE6a{kDAf1sPiwN&JVf4n@AMu`W;Yvsyl}2`Ol@I6Z6~&qfr-_ z6gYw3VyF&gq0XC!y3n(z4p(C^?m(^BZVbXgGKMrIcN0CbONq*7QBq9!nlkg>pX`OLTj>5|wiDIGI7-A}UW4?X9=f zpggAgf4Nr={OrI_?b1ujEE>;~Q6!s;B-_YqWGk6U?j!Aq%6lHR0W)1)8(HNl@+x_Q zj3Dv!|9{y@t&9|qPsuQ{ov7$MJ?|>ZNoO*R6q8TLVsePwMpT|5-NS)foJ>y>Q#idr`<>@NMDjfR8lPA@`DnWNy{pt*V<;eG;`ZylPRx&}N}&32Etl X(|T1Mzxq_us$(gI5ml)fJ;VP4V)oGe diff --git a/django/conf/locale/de/LC_MESSAGES/django.po b/django/conf/locale/de/LC_MESSAGES/django.po index 79008fa17b..8bfef4dc4b 100644 --- a/django/conf/locale/de/LC_MESSAGES/django.po +++ b/django/conf/locale/de/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Django 1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-11-11 16:13-0600\n" +"POT-Creation-Date: 2005-11-12 16:05-0600\n" "PO-Revision-Date: 2005-11-06 13:54+0100\n" "Last-Translator: Lukas Kolbe \n" "Language-Team: \n" @@ -396,6 +396,18 @@ msgstr "Webseite" msgid "flat pages" msgstr "Webseiten" +#: utils/translation.py:335 +msgid "DATE_FORMAT" +msgstr "j. N Y" + +#: utils/translation.py:336 +msgid "DATETIME_FORMAT" +msgstr "j. N Y, H:i" + +#: utils/translation.py:337 +msgid "TIME_FORMAT" +msgstr "H:i" + #: utils/dates.py:6 msgid "Monday" msgstr "Montag" diff --git a/django/conf/locale/en/LC_MESSAGES/django.mo b/django/conf/locale/en/LC_MESSAGES/django.mo index df3352f8ab9e064022376d4dda86516e136e8fc4..be55bb10ca155a79040b4b32806d7859c05f3be2 100644 GIT binary patch delta 219 zcmZ3=JcFhFo)F7a1|VPsVi_QI0b+I_&H-W&=m27VAnpWWZXlis#KJ(l6w2QTq)iza z7>)vIP9XjbWU~QjRwf9a2S@{j7{s77kO>CNKoV%DDg#iQfdwSw;uzu@;_2%e@8%!m v>lgy&L)jApM7fcqCZ#Iu2HAOZuB zUN~@Z3~`MQ_YCof5ApPMjdu(6@nHxk%FjwoF46T&(G5#2D$dN$vr-6fboO?1pLpMv Q-B7{M%*xPsvNGc%058KC5C8xG diff --git a/django/conf/locale/en/LC_MESSAGES/django.po b/django/conf/locale/en/LC_MESSAGES/django.po index 6e2f4c6866..c13bf6a970 100644 --- a/django/conf/locale/en/LC_MESSAGES/django.po +++ b/django/conf/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-11-11 16:13-0600\n" +"POT-Creation-Date: 2005-11-12 16:05-0600\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -370,6 +370,18 @@ msgstr "" msgid "flat pages" msgstr "" +#: utils/translation.py:335 +msgid "DATE_FORMAT" +msgstr "N j, Y" + +#: utils/translation.py:336 +msgid "DATETIME_FORMAT" +msgstr "N j, Y, P" + +#: utils/translation.py:337 +msgid "TIME_FORMAT" +msgstr "P" + #: utils/dates.py:6 msgid "Monday" msgstr "" diff --git a/django/conf/locale/es/LC_MESSAGES/django.mo b/django/conf/locale/es/LC_MESSAGES/django.mo index aa7a7ea8139be32e13b6ac9b3cacfc3d6c09a07d..b3bfb579e56f8c59b4c3f0d29d4cfc0d1912ef18 100644 GIT binary patch delta 20 bcmcbtaam)-J8pI(1w%6{1Jli4x#KthQws+e delta 20 bcmcbtaam)-J8pJE1w%6{L*va~x#KthQu+rL diff --git a/django/conf/locale/es/LC_MESSAGES/django.po b/django/conf/locale/es/LC_MESSAGES/django.po index 559f17c5a0..16ba503d39 100644 --- a/django/conf/locale/es/LC_MESSAGES/django.po +++ b/django/conf/locale/es/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: django\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-11-11 16:13-0600\n" +"POT-Creation-Date: 2005-11-12 16:05-0600\n" "PO-Revision-Date: 2005-10-04 20:59GMT\n" "Last-Translator: Ricardo Javier Crdenes Medina \n" @@ -389,6 +389,18 @@ msgstr "" msgid "flat pages" msgstr "" +#: utils/translation.py:335 +msgid "DATE_FORMAT" +msgstr "" + +#: utils/translation.py:336 +msgid "DATETIME_FORMAT" +msgstr "" + +#: utils/translation.py:337 +msgid "TIME_FORMAT" +msgstr "" + #: utils/dates.py:6 msgid "Monday" msgstr "" diff --git a/django/conf/locale/fr/LC_MESSAGES/django.mo b/django/conf/locale/fr/LC_MESSAGES/django.mo index 5c2d8efb2cf6586f3056129a6c2ab5ca857142f7..5b8a618c290b74e50b593145f4390ac53f4b6a52 100644 GIT binary patch delta 22 dcmeC}WbEx^+`y{AZlqvnW@TWynMb2h1^`O11@8a= delta 22 dcmeC}WbEx^+`y{AZm3{rW@Tu+nMb2h1^`N*1?>O; diff --git a/django/conf/locale/fr/LC_MESSAGES/django.po b/django/conf/locale/fr/LC_MESSAGES/django.po index cee6a7b128..4bdced2af5 100644 --- a/django/conf/locale/fr/LC_MESSAGES/django.po +++ b/django/conf/locale/fr/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: django\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-11-11 16:13-0600\n" +"POT-Creation-Date: 2005-11-12 16:05-0600\n" "PO-Revision-Date: 2005-10-18 12:27+0200\n" "Last-Translator: Laurent Rahuel \n" "Language-Team: franais \n" @@ -400,6 +400,18 @@ msgstr "page msgid "flat pages" msgstr "pages plat" +#: utils/translation.py:335 +msgid "DATE_FORMAT" +msgstr "" + +#: utils/translation.py:336 +msgid "DATETIME_FORMAT" +msgstr "" + +#: utils/translation.py:337 +msgid "TIME_FORMAT" +msgstr "" + #: utils/dates.py:6 msgid "Monday" msgstr "Lundi" diff --git a/django/conf/locale/gl/LC_MESSAGES/django.mo b/django/conf/locale/gl/LC_MESSAGES/django.mo index 113793c5944f465f47dca57de470025f98574fdb..b772851a3ae7c0e1a0ec30bc5f078afbb5b378cf 100644 GIT binary patch delta 20 ccmX@5c}jD`J8pI(1w%6{1Jli4xvz2n08+;Xe*gdg delta 20 ccmX@5c}jD`J8pJE1w%6{L*va~xvz2n08+LGeE\n" "Language-Team: Galego\n" @@ -388,6 +388,18 @@ msgstr "" msgid "flat pages" msgstr "" +#: utils/translation.py:335 +msgid "DATE_FORMAT" +msgstr "" + +#: utils/translation.py:336 +msgid "DATETIME_FORMAT" +msgstr "" + +#: utils/translation.py:337 +msgid "TIME_FORMAT" +msgstr "" + #: utils/dates.py:6 msgid "Monday" msgstr "" diff --git a/django/conf/locale/it/LC_MESSAGES/django.mo b/django/conf/locale/it/LC_MESSAGES/django.mo index 2ba68dc697436e5e5ee134490de37e1efd71d163..3b8a31b26ab189ac594c5f8a16f1c10713e1de4e 100644 GIT binary patch delta 22 dcmaFd$oROCaf5&cyODySnU#U*W^s)(5&&4C2Iv3) delta 22 dcmaFd$oROCaf5&cyP<-inU$gOW^s)(5&&3`2Ic?& diff --git a/django/conf/locale/it/LC_MESSAGES/django.po b/django/conf/locale/it/LC_MESSAGES/django.po index 5d884e7bc1..652f308151 100644 --- a/django/conf/locale/it/LC_MESSAGES/django.po +++ b/django/conf/locale/it/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-11-11 16:13-0600\n" +"POT-Creation-Date: 2005-11-12 16:05-0600\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -394,6 +394,18 @@ msgstr "pagina statica" msgid "flat pages" msgstr "pagine statiche" +#: utils/translation.py:335 +msgid "DATE_FORMAT" +msgstr "" + +#: utils/translation.py:336 +msgid "DATETIME_FORMAT" +msgstr "" + +#: utils/translation.py:337 +msgid "TIME_FORMAT" +msgstr "" + #: utils/dates.py:6 msgid "Monday" msgstr "Luned" diff --git a/django/conf/locale/no/LC_MESSAGES/django.mo b/django/conf/locale/no/LC_MESSAGES/django.mo index d69a98817de074b8400108a2c241e2fb77df955f..3dbccf7282cc1e33fe3c395bb2232b2b841c971e 100644 GIT binary patch delta 22 dcmZ3`#<-x3aYMc)yODySnU#U*<}%Gyk^ohN2MYiI delta 22 dcmZ3`#<-x3aYMc)yP<-inU$gO<}%Gyk^oh62MGWG diff --git a/django/conf/locale/no/LC_MESSAGES/django.po b/django/conf/locale/no/LC_MESSAGES/django.po index 09b4f25149..1ce4850cd3 100644 --- a/django/conf/locale/no/LC_MESSAGES/django.po +++ b/django/conf/locale/no/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-11-11 16:13-0600\n" +"POT-Creation-Date: 2005-11-12 16:05-0600\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Espen Grndhaug \n" "Language-Team: Norwegian\n" @@ -395,6 +395,18 @@ msgstr "flatside" msgid "flat pages" msgstr "flatsider" +#: utils/translation.py:335 +msgid "DATE_FORMAT" +msgstr "" + +#: utils/translation.py:336 +msgid "DATETIME_FORMAT" +msgstr "" + +#: utils/translation.py:337 +msgid "TIME_FORMAT" +msgstr "" + #: utils/dates.py:6 msgid "Monday" msgstr "Mondag" diff --git a/django/conf/locale/pt_BR/LC_MESSAGES/django.mo b/django/conf/locale/pt_BR/LC_MESSAGES/django.mo index 98dc42d3e6f70883a3e90809056c0167a1d61e81..d90741a0d52da1ff79fd3d54ef0be1cf6a2fb78d 100644 GIT binary patch delta 22 dcmX@vz<9EOal\n" "Language-Team: Português do Brasil \n" @@ -393,6 +393,18 @@ msgstr "página plana" msgid "flat pages" msgstr "páginas planas" +#: utils/translation.py:335 +msgid "DATE_FORMAT" +msgstr "" + +#: utils/translation.py:336 +msgid "DATETIME_FORMAT" +msgstr "" + +#: utils/translation.py:337 +msgid "TIME_FORMAT" +msgstr "" + #: utils/dates.py:6 msgid "Monday" msgstr "Segunda Feira" diff --git a/django/conf/locale/ro/LC_MESSAGES/django.mo b/django/conf/locale/ro/LC_MESSAGES/django.mo index 38ed56780fafde4e3bc17d17270d7411e34a5a96..e9b58d551c821393a6c196a4c06d2ab6da3c7847 100644 GIT binary patch delta 22 dcmdne#<-=8all2d)4B delta 22 dcmdne#<-=8alU2dn@9 diff --git a/django/conf/locale/ro/LC_MESSAGES/django.po b/django/conf/locale/ro/LC_MESSAGES/django.po index b3c57fac26..43a2279923 100644 --- a/django/conf/locale/ro/LC_MESSAGES/django.po +++ b/django/conf/locale/ro/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Django \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-11-11 23:12+0100\n" +"POT-Creation-Date: 2005-11-12 23:04+0100\n" "PO-Revision-Date: 2005-11-08 19:06+GMT+2\n" "Last-Translator: Tiberiu Micu \n" "Language-Team: Romanian \n" @@ -395,6 +395,18 @@ msgstr "pagina plată" msgid "flat pages" msgstr "pagini plate" +#: utils/translation.py:335 +msgid "DATE_FORMAT" +msgstr "" + +#: utils/translation.py:336 +msgid "DATETIME_FORMAT" +msgstr "" + +#: utils/translation.py:337 +msgid "TIME_FORMAT" +msgstr "" + #: utils/dates.py:6 msgid "Monday" msgstr "Luni" diff --git a/django/conf/locale/ru/LC_MESSAGES/django.mo b/django/conf/locale/ru/LC_MESSAGES/django.mo index d0d7d97915d348a862a51f3b2d6ba8b044a18e47..3b760d9fece47f0b430dc3082078ffa510141073 100644 GIT binary patch delta 20 bcmeCv=+oHnj+@;`!O+agz;yFhZb=RRNJ9om delta 20 bcmeCv=+oHnj+@<3!O+ag(0KD#Zb=RRNHPXT diff --git a/django/conf/locale/ru/LC_MESSAGES/django.po b/django/conf/locale/ru/LC_MESSAGES/django.po index 11020ee9bd..cf2adfd100 100644 --- a/django/conf/locale/ru/LC_MESSAGES/django.po +++ b/django/conf/locale/ru/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: django\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-11-11 16:13-0600\n" +"POT-Creation-Date: 2005-11-12 16:05-0600\n" "PO-Revision-Date: 2005-10-05 00:00\n" "Last-Translator: Dmitry Sorokin \n" "Language-Team: LANGUAGE \n" @@ -386,6 +386,18 @@ msgstr "" msgid "flat pages" msgstr "" +#: utils/translation.py:335 +msgid "DATE_FORMAT" +msgstr "" + +#: utils/translation.py:336 +msgid "DATETIME_FORMAT" +msgstr "" + +#: utils/translation.py:337 +msgid "TIME_FORMAT" +msgstr "" + #: utils/dates.py:6 msgid "Monday" msgstr "" diff --git a/django/conf/locale/sk/LC_MESSAGES/django.mo b/django/conf/locale/sk/LC_MESSAGES/django.mo index c19f78a3915833fba0c004d3faea75ffabc45144..66d28f818d63ef0a7d493f4dfc4225c8c73310a3 100644 GIT binary patch delta 4551 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 L-Qy1{NcQ{}5{LED delta 6676 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 diff --git a/django/conf/locale/sk/LC_MESSAGES/django.po b/django/conf/locale/sk/LC_MESSAGES/django.po index e7bb04f935..ac48ae8a86 100644 --- a/django/conf/locale/sk/LC_MESSAGES/django.po +++ b/django/conf/locale/sk/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-11-11 16:13-0600\n" +"POT-Creation-Date: 2005-11-12 16:05-0600\n" "PO-Revision-Date: 2005-11-10 23:22-0500\n" "Last-Translator: Vladimir Labath \n" "Language-Team: Slovak \n" @@ -76,8 +76,12 @@ msgid "DATE_WITH_TIME_FULL" msgstr "PLNY_DATUM_AJ_CAS" #: contrib/admin/templates/admin/object_history.html:36 -msgid "This object doesn't have a change history. It probably wasn't added via this admin site." -msgstr "Tento object nemá históriu zmien. Možno nebol pridaný prostredníctvom tohoto web admina" +msgid "" +"This object doesn't have a change history. It probably wasn't added via this " +"admin site." +msgstr "" +"Tento object nemá históriu zmien. Možno nebol pridaný prostredníctvom tohoto " +"web admina" #: contrib/admin/templates/admin/base_site.html:4 msgid "Django site admin" @@ -100,8 +104,12 @@ msgid "Server Error (500)" msgstr "Chyba servera (500)" #: contrib/admin/templates/admin/500.html:10 -msgid "There's been an error. It's been reported to the site administrators via e-mail and should be fixed shortly. Thanks for your patience." -msgstr "Vznikla chyba. Prostredníctvom e-mailu bol o nej informovaný správca a chyba by mala byť o chviľu odstránená. Ďakujeme za vašu trpezlivosť." +msgid "" +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." +msgstr "" +"Vznikla chyba. Prostredníctvom e-mailu bol o nej informovaný správca a " +"chyba by mala byť o chviľu odstránená. Ďakujeme za vašu trpezlivosť." #: contrib/admin/templates/admin/404.html:4 #: contrib/admin/templates/admin/404.html:8 @@ -166,13 +174,23 @@ msgstr "Odhlásenie" #: contrib/admin/templates/admin/delete_confirmation.html:7 #, python-format -msgid "Deleting the %(object_name)s '%(object)s' would result in deleting related objects, but your account doesn't have permission to delete the following types of objects:" -msgstr "Vymazaním objektu %(object_name)s '%(object)s' môžete spôsobiť vymazanie súvisiacich objektov, ale váš účet nemá povolenie na mazanie nasledujúcich typov objektov:" +msgid "" +"Deleting the %(object_name)s '%(object)s' would result in deleting related " +"objects, but your account doesn't have permission to delete the following " +"types of objects:" +msgstr "" +"Vymazaním objektu %(object_name)s '%(object)s' môžete spôsobiť vymazanie " +"súvisiacich objektov, ale váš účet nemá povolenie na mazanie nasledujúcich " +"typov objektov:" #: contrib/admin/templates/admin/delete_confirmation.html:14 #, python-format -msgid "Are you sure you want to delete the %(object_name)s \"%(object)s\"? All of the following related items will be deleted:" -msgstr "Ste si istý, že chcete vymazať %(object_name)s \"%(object)s\"? Všetky nasledujúce objekty budú tiež vymazané :" +msgid "" +"Are you sure you want to delete the %(object_name)s \"%(object)s\"? All of " +"the following related items will be deleted:" +msgstr "" +"Ste si istý, že chcete vymazať %(object_name)s \"%(object)s\"? Všetky " +"nasledujúce objekty budú tiež vymazané :" #: contrib/admin/templates/admin/delete_confirmation.html:18 msgid "Yes, I'm sure" @@ -201,8 +219,12 @@ msgid "Password reset" msgstr "Obnova hesla" #: contrib/admin/templates/registration/password_reset_form.html:12 -msgid "Forgotten your password? Enter your e-mail address below, and we'll reset your password and e-mail the new one to you." -msgstr "Zabudli ste vaše heslo? Vložte nižšie vašu e-mail adresu, a nové heslo vám bude na ňu zaslané ." +msgid "" +"Forgotten your password? Enter your e-mail address below, and we'll reset " +"your password and e-mail the new one to you." +msgstr "" +"Zabudli ste vaše heslo? Vložte nižšie vašu e-mail adresu, a nové heslo vám " +"bude na ňu zaslané ." #: contrib/admin/templates/registration/password_reset_form.html:16 msgid "E-mail address:" @@ -226,12 +248,20 @@ msgid "Password reset successful" msgstr "Heslo bolo úspešne obnovené" #: contrib/admin/templates/registration/password_reset_done.html:12 -msgid "We've e-mailed a new password to the e-mail address you submitted. You should be receiving it shortly." -msgstr "Poslali sme vám, nové heslo na vami uvedenú emailovú adresu.Mali by ste ho dostať čo najskôr." +msgid "" +"We've e-mailed a new password to the e-mail address you submitted. You " +"should be receiving it shortly." +msgstr "" +"Poslali sme vám, nové heslo na vami uvedenú emailovú adresu.Mali by ste ho " +"dostať čo najskôr." #: contrib/admin/templates/registration/password_change_form.html:12 -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 "Kvôli bezpečnosti vložte prosím vaše staré heslo, a potom dvakrát vaše nové heslo, tým môžeme skontrolovať jeho správnosť." +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 "" +"Kvôli bezpečnosti vložte prosím vaše staré heslo, a potom dvakrát vaše nové " +"heslo, tým môžeme skontrolovať jeho správnosť." #: contrib/admin/templates/registration/password_change_form.html:17 msgid "Old password:" @@ -363,6 +393,18 @@ msgstr "plochá stránka" msgid "flat pages" msgstr "ploché stránky" +#: utils/translation.py:335 +msgid "DATE_FORMAT" +msgstr "" + +#: utils/translation.py:336 +msgid "DATETIME_FORMAT" +msgstr "" + +#: utils/translation.py:337 +msgid "TIME_FORMAT" +msgstr "" + #: utils/dates.py:6 msgid "Monday" msgstr "Pondelok" @@ -511,41 +553,6 @@ msgstr "typ obsahu" msgid "content types" msgstr "typy obsahu" -#: models/core.py:68 - -#: models/core.py:69 - -#: models/core.py:70 - -#: models/core.py:71 - -#: models/core.py:73 - -#: models/core.py:74 - -#: models/core.py:87 - -#: models/core.py:88 - -#: models/core.py:89 - -#: models/core.py:90 - -#: models/core.py:91 - -#: models/core.py:92 - -#: models/core.py:93 - -#: models/core.py:94 - -#: models/core.py:94 - -#: models/core.py:98 - -#: models/core.py:99 - -#: models/core.py:117 #: models/core.py:67 msgid "session key" msgstr "kľúč sedenia" @@ -608,7 +615,8 @@ msgstr "heslo" #: models/auth.py:37 msgid "Use an MD5 hash -- not the raw password." -msgstr "Vložte takú hodnotu hesla , ako vám ju vráti MD5, nevkladajte ho priamo. " +msgstr "" +"Vložte takú hodnotu hesla , ako vám ju vráti MD5, nevkladajte ho priamo. " #: models/auth.py:38 msgid "staff status" @@ -635,8 +643,12 @@ msgid "date joined" msgstr "dátum registrácie" #: models/auth.py:44 -msgid "In addition to the permissions manually assigned, this user will also get all permissions granted to each group he/she is in." -msgstr "Okrem ručne vložených povolení, tento uživateľ dostane všetky povolenia skupin, v ktorých sa nachádza." +msgid "" +"In addition to the permissions manually assigned, this user will also get " +"all permissions granted to each group he/she is in." +msgstr "" +"Okrem ručne vložených povolení, tento uživateľ dostane všetky povolenia " +"skupin, v ktorých sa nachádza." #: models/auth.py:48 msgid "Users" @@ -783,8 +795,12 @@ msgid "Enter a valid e-mail address." msgstr "Vložte platnú e-mail adresu." #: core/validators.py:147 -msgid "Upload a valid image. The file you uploaded was either not an image or a corrupted image." -msgstr "Nahrajte platný obrázok. Súbor, ktorý ste nahrali buď nebol obrázok alebo je nahratý poškodený obrázok." +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Nahrajte platný obrázok. Súbor, ktorý ste nahrali buď nebol obrázok alebo je " +"nahratý poškodený obrázok." #: core/validators.py:154 #, python-format @@ -880,16 +896,20 @@ msgstr "Prosím vložte platné desiatkové číslo. " #: core/validators.py:344 #, python-format msgid "Please enter a valid decimal number with at most %s total digit." -msgid_plural "Please enter a valid decimal number with at most %s total digits." +msgid_plural "" +"Please enter a valid decimal number with at most %s total digits." msgstr[0] "Prosím vložte platné desiatkové číslo s najviac %s číslicou." msgstr[1] "Prosím vložte platné desiatkové číslo s najviac %s číslicami." #: core/validators.py:347 #, python-format msgid "Please enter a valid decimal number with at most %s decimal place." -msgid_plural "Please enter a valid decimal number with at most %s decimal places." -msgstr[0] "Prosím vložte platné desatinné číslo s najviac %s desatinným miestom." -msgstr[1] "Prosím vložte platné desatinné číslo s najviac %s desatinnými miestami." +msgid_plural "" +"Please enter a valid decimal number with at most %s decimal places." +msgstr[0] "" +"Prosím vložte platné desatinné číslo s najviac %s desatinným miestom." +msgstr[1] "" +"Prosím vložte platné desatinné číslo s najviac %s desatinnými miestami." #: core/validators.py:357 #, python-format @@ -916,167 +936,175 @@ msgstr "Nič som nemohol získať z %s." #: core/validators.py:424 #, python-format -msgid "The URL %(url)s returned the invalid Content-Type header '%(contenttype)s'." -msgstr " URL %(url)s vrátilo neplatnú hlavičku Content-Type '%(contenttype)s'." +msgid "" +"The URL %(url)s returned the invalid Content-Type header '%(contenttype)s'." +msgstr "" +" URL %(url)s vrátilo neplatnú hlavičku Content-Type '%(contenttype)s'." #: core/validators.py:457 #, python-format -msgid "Please close the unclosed %(tag)s tag from line %(line)s. (Line starts with \"%(start)s\".)" -msgstr "Prosím zavrite nezavretý %(tag)s popisovač v riadku %(line)s. (Riadok začína s \"%(start)s\".)" +msgid "" +"Please close the unclosed %(tag)s tag from line %(line)s. (Line starts with " +"\"%(start)s\".)" +msgstr "" +"Prosím zavrite nezavretý %(tag)s popisovač v riadku %(line)s. (Riadok " +"začína s \"%(start)s\".)" #: core/validators.py:461 #, python-format -msgid "Some text starting on line %(line)s is not allowed in that context. (Line starts with \"%(start)s\".)" -msgstr "Nejaký text začínajúci na riadku %(line)s nie je povolený v tomto kontexte. (Riadok začína s \"%(start)s\".)" +msgid "" +"Some text starting on line %(line)s is not allowed in that context. (Line " +"starts with \"%(start)s\".)" +msgstr "" +"Nejaký text začínajúci na riadku %(line)s nie je povolený v tomto kontexte. " +"(Riadok začína s \"%(start)s\".)" #: core/validators.py:466 #, python-format -msgid "\"%(attr)s\" on line %(line)s is an invalid attribute. (Line starts with \"%(start)s\".)" -msgstr "\"%(attr)s\" na riadku %(line)s je neplatný atribút. (Riadok začína s \"%(start)s\".)" +msgid "" +"\"%(attr)s\" on line %(line)s is an invalid attribute. (Line starts with \"%" +"(start)s\".)" +msgstr "" +"\"%(attr)s\" na riadku %(line)s je neplatný atribút. (Riadok začína s \"%" +"(start)s\".)" #: core/validators.py:471 #, python-format -msgid "\"<%(tag)s>\" on line %(line)s is an invalid tag. (Line starts with \"%(start)s\".)" -msgstr "\"<%(tag)s>\" na riadku %(line)s je neplatný popisovač. (Riadok začína s \"%(start)s\".)" +msgid "" +"\"<%(tag)s>\" on line %(line)s is an invalid tag. (Line starts with \"%" +"(start)s\".)" +msgstr "" +"\"<%(tag)s>\" na riadku %(line)s je neplatný popisovač. (Riadok začína s \"%" +"(start)s\".)" #: core/validators.py:475 #, python-format -msgid "A tag on line %(line)s is missing one or more required attributes. (Line starts with \"%(start)s\".)" -msgstr "Popisovaču na riadku %(line)s chýba jeden alebo viac atribútov. (Riadok začína s \"%(start)s\".)" +msgid "" +"A tag on line %(line)s is missing one or more required attributes. (Line " +"starts with \"%(start)s\".)" +msgstr "" +"Popisovaču na riadku %(line)s chýba jeden alebo viac atribútov. (Riadok " +"začína s \"%(start)s\".)" #: core/validators.py:480 #, python-format -msgid "The \"%(attr)s\" attribute on line %(line)s has an invalid value. (Line starts with \"%(start)s\".)" -msgstr "Atribút \"%(attr)s\" na riadku %(line)s má neplatnú hodnotu. (Riadok začína s \"%(start)s\".)" +msgid "" +"The \"%(attr)s\" attribute on line %(line)s has an invalid value. (Line " +"starts with \"%(start)s\".)" +msgstr "" +"Atribút \"%(attr)s\" na riadku %(line)s má neplatnú hodnotu. (Riadok začína " +"s \"%(start)s\".)" #: core/meta/fields.py:111 msgid " Separate multiple IDs with commas." msgstr "Identifikátory oddeľte čiarkami." #: core/meta/fields.py:114 -msgid " Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr " Podržte \"Control\", alebo \"Command\" na Mac_u, na výber viac ako jednej položky." +msgid "" +" Hold down \"Control\", or \"Command\" on a Mac, to select more than one." +msgstr "" +" Podržte \"Control\", alebo \"Command\" na Mac_u, na výber viac ako jednej " +"položky." -#:templates/comments/posted.html :5 -msgid "Comment posted" -msgstr "Komentár bol poslaný" - -#:templates/comments/posted.html :9 -msgid "Comment posted successfully" -msgstr "Komentár bol úspešne odoslaný" - -#:templates/comments/posted.html :11 -msgid "Thanks for contributing." -msgstr "Ďakujeme za príspevok." - -#:templates/comments/posted.html :11 -msgid "View your comment" -msgstr "Pozri svôj príspevok" - -#templates/blog/entries_detail.html:24 -msgid "Post a comment" -msgstr "Pridaj komentár" +#~ msgid "Comment posted" +#~ msgstr "Komentár bol poslaný" -#templates/blog/entries_detail.html:15 -msgid "Comments" -msgstr "Komentáre" -#:templates/comments/free_preview.html :40 -msgid "Comment" -msgstr "Komentár" +#~ msgid "Comment posted successfully" +#~ msgstr "Komentár bol úspešne odoslaný" -#:templates/comments/free_preview.html :34 -msgid "Your name" -msgstr "Vaše meno" +#~ msgid "Thanks for contributing." +#~ msgstr "Ďakujeme za príspevok." -#:templates/comments/free_preview.html :5 -msgid "Preview revised comment" -msgstr "Prezretie upraveného komentára" +#~ msgid "View your comment" +#~ msgstr "Pozri svôj príspevok" -#:templates/comments/free_preview.html :25 -msgid "Post public comment" -msgstr "Zveréjniť komentár" # templates/blog/entries_detail.html:24 +#~ msgid "Post a comment" +#~ msgstr "Pridaj komentár" -#:templates/comments/free_preview.html :5 -msgid "Preview comment" -msgstr "Prezrieť komentár" # templates/blog/entries_detail.html:15 +#~ msgid "Comments" +#~ msgstr "Komentáre" -#:templates/comments/free_preview.html :13 -msgid "Preview your comment" -msgstr "Prezrite si svoj komentár" +#~ msgid "Comment" +#~ msgstr "Komentár" -#:templates/comments/free_preview.html :22 -msgid "Posted by" -msgstr "Poslané" +#~ msgid "Your name" +#~ msgstr "Vaše meno" -#:templates/comments/free_preview.html :27 -msgid "Or edit it again" -msgstr "Alebo ho vytvorte znova" +#~ msgid "Preview revised comment" +#~ msgstr "Prezretie upraveného komentára" -#:templates/comments/free_preview.html :18 -msgid "Please correct the following errors." -msgstr "Odstráňte nasledujúce chyby, prosím." +#~ msgid "Post public comment" +#~ msgstr "Zveréjniť komentár" -#:templates/404.html :10 -msgid "Looks like you followed a bad link. If you think it is our fault, please let us know" -msgstr "Pozrite si linku , kde vzikla chyba. Ak si myslíte, že je to naša chyba, dajte nám to vedieť, prosím" +# templates/blog/entries_detail.html:24 +#~ msgid "Preview comment" +#~ msgstr "Prezrieť komentár" -#:templates/404.html :12 -msgid "Here is a link to the homepage. You know, just in case" -msgstr "Tu je adresa úvodnej stránky. Ak by ste ju potrebovali" +# templates/blog/entries_detail.html:15 +#~ msgid "Preview your comment" +#~ msgstr "Prezrite si svoj komentár" -#:templates/comments/freecomments.html :9 -msgid "Recent comments" -msgstr "Posledný komentár" +#~ msgid "Posted by" +#~ msgstr "Poslané" -#:templates/comments/freecomments.html :9 -msgid "Previous" -msgstr "Predchádzajúci/a" +#~ msgid "Or edit it again" +#~ msgstr "Alebo ho vytvorte znova" -#:templates/comments/freecomments.html :10 -msgid "Page" -msgstr "Stránka" +#~ msgid "Please correct the following errors." +#~ msgstr "Odstráňte nasledujúce chyby, prosím." -#:templates/comments/freecomments.html :11 -msgid "Next" -msgstr "Ďalší/ia" +#~ msgid "" +#~ "Looks like you followed a bad link. If you think it is our fault, please " +#~ "let us know" +#~ msgstr "" +#~ "Pozrite si linku , kde vzikla chyba. Ak si myslíte, že je to naša chyba, " +#~ "dajte nám to vedieť, " +#~ "prosím" -#:templates/blog/entries_archive.html :9 -msgid "Latest entries" -msgstr "Posledné záznamy" +#~ msgid "" +#~ "Here is a link to the homepage. You know, just in case" +#~ msgstr "" +#~ "Tu je adresa úvodnej stránky. Ak by ste ju potrebovali" -#:templates/blog/entries_archive_day.html :9 -msgid "archive" -msgstr "archív" +#~ msgid "Recent comments" +#~ msgstr "Posledný komentár" -#:templates/500.html :4 -msgid "Page unavailable" -msgstr "Stránka je neprístupná" +#~ msgid "Previous" +#~ msgstr "Predchádzajúci/a" -#:templates/500.html :10 -msgid "We're sorry, but the requested page is currently unavailable" -msgstr "Ľutujeme ale požadovaná stránka je neprístupná" +#~ msgid "Page" +#~ msgstr "Stránka" -#:templates/500.html :12 -msgid "We're messing around with things internally, and the server had a bit of a hiccup" -msgstr "Máme problém na servri, ktorý sa snažíme odstrániť" +#~ msgid "Next" +#~ msgstr "Ďalší/ia" -#:templates/500.html :14 -msgid "Please try again later" -msgstr "Skúste znovu neskôr, prosím" +#~ msgid "Latest entries" +#~ msgstr "Posledné záznamy" -#:templates/miesta/miesta_archive.html :7 -msgid "Latest miesta" -msgstr "Posledné miesta" +#~ msgid "archive" +#~ msgstr "archív" -#:templates/miesta/miesta_detail.html :57 -msgid "on" -msgstr " " +#~ msgid "Page unavailable" +#~ msgstr "Stránka je neprístupná" -#:templates/miesta/miesta_detail.html :67 -msgid "at" -msgstr "o" +#~ msgid "We're sorry, but the requested page is currently unavailable" +#~ msgstr "Ľutujeme ale požadovaná stránka je neprístupná" +#~ msgid "" +#~ "We're messing around with things internally, and the server had a bit of " +#~ "a hiccup" +#~ msgstr "Máme problém na servri, ktorý sa snažíme odstrániť" +#~ msgid "Please try again later" +#~ msgstr "Skúste znovu neskôr, prosím" +#~ msgid "Latest miesta" +#~ msgstr "Posledné miesta" + +#~ msgid "on" +#~ msgstr " " + +#~ msgid "at" +#~ msgstr "o" diff --git a/django/conf/locale/sr/LC_MESSAGES/django.mo b/django/conf/locale/sr/LC_MESSAGES/django.mo index a9bb78959b1a1809658fcfcffdc0750fc1463220..bfd62e8c1e64e662cc5bdcd582923591b19f4c87 100644 GIT binary patch delta 20 bcmX?Cf3ALmusXYuf}xp}f$3%`^(_(rP~Zln delta 20 bcmX?Cf3ALmusXY;f}xp}q48!Z^(_(rP|pUU diff --git a/django/conf/locale/sr/LC_MESSAGES/django.po b/django/conf/locale/sr/LC_MESSAGES/django.po index 7663e70e85..476e23797a 100644 --- a/django/conf/locale/sr/LC_MESSAGES/django.po +++ b/django/conf/locale/sr/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Django Serbian (latin) translation v1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-11-11 16:13-0600\n" +"POT-Creation-Date: 2005-11-12 16:05-0600\n" "PO-Revision-Date: 2005-11-03 00:28+0100\n" "Last-Translator: Petar Marić \n" "Language-Team: Nesh & Petar \n" "Language-Team: Simplified Chinese \n" @@ -385,6 +385,18 @@ msgstr "简单页面" msgid "flat pages" msgstr "简单页面" +#: utils/translation.py:335 +msgid "DATE_FORMAT" +msgstr "" + +#: utils/translation.py:336 +msgid "DATETIME_FORMAT" +msgstr "" + +#: utils/translation.py:337 +msgid "TIME_FORMAT" +msgstr "" + #: utils/dates.py:6 msgid "Monday" msgstr "星期一" diff --git a/django/contrib/admin/views/main.py b/django/contrib/admin/views/main.py index 81c494b03f..849a774e0a 100644 --- a/django/contrib/admin/views/main.py +++ b/django/contrib/admin/views/main.py @@ -10,7 +10,8 @@ from django.models.admin import log from django.utils.html import strip_tags from django.utils.httpwrappers import HttpResponse, HttpResponseRedirect from django.utils.text import capfirst, get_text_list -from django.conf.settings import ADMIN_MEDIA_PREFIX, DATE_FORMAT, DATETIME_FORMAT, TIME_FORMAT +from django.conf.settings import ADMIN_MEDIA_PREFIX +from django.utils.translation import get_date_formats import operator # Text to display within changelist table cells if the value is blank. @@ -410,12 +411,13 @@ def change_list(request, app_label, module_name): # Dates and times are special: They're formatted in a certain way. elif isinstance(f, meta.DateField) or isinstance(f, meta.TimeField): if field_val: + (date_format, datetime_format, time_format) = get_date_formats() if isinstance(f, meta.DateTimeField): - result_repr = capfirst(dateformat.format(field_val, DATETIME_FORMAT)) + result_repr = capfirst(dateformat.format(field_val, datetime_format)) elif isinstance(f, meta.TimeField): - result_repr = capfirst(dateformat.time_format(field_val, TIME_FORMAT)) + result_repr = capfirst(dateformat.time_format(field_val, time_format)) else: - result_repr = capfirst(dateformat.format(field_val, DATE_FORMAT)) + result_repr = capfirst(dateformat.format(field_val, date_format)) else: result_repr = EMPTY_CHANGELIST_VALUE row_class = ' class="nowrap"' diff --git a/django/utils/translation.py b/django/utils/translation.py index a58188e87f..426faaaff0 100644 --- a/django/utils/translation.py +++ b/django/utils/translation.py @@ -325,6 +325,24 @@ def get_language_from_request(request): return settings.LANGUAGE_CODE +def get_date_formats(): + """ + This function checks wether translation files provide a translation for some + technical message ID to store date and time formats. If it doesn't contain + one, the formats provided in the settings will be used. + """ + from django.conf.settings import DATE_FORMAT, DATETIME_FORMAT, TIME_FORMAT + date_format = _('DATE_FORMAT') + datetime_format = _('DATETIME_FORMAT') + time_format = _('TIME_FORMAT') + if date_format == 'DATE_FORMAT': + date_format = DATE_FORMAT + if datetime_format == 'DATETIME_FORMAT': + datetime_format = DATETIME_FORMAT + if time_format == 'TIME_FORMAT': + time_format = TIME_FORMAT + return (date_format, datetime_format, time_format) + def install(): """ Installs the gettext function as the default translation function under From f7d2e9ea9f0d9bba38553f21cfe3f1a821916374 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Sun, 13 Nov 2005 00:19:16 +0000 Subject: [PATCH 11/23] Grammar cleanups for recent documentation and docstring changes. git-svn-id: http://code.djangoproject.com/svn/django/trunk@1209 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/utils/translation.py | 4 ++-- docs/i18n.txt | 15 +++++++++------ docs/settings.txt | 31 ++++++++++++++++++++++++++----- 3 files changed, 37 insertions(+), 13 deletions(-) diff --git a/django/utils/translation.py b/django/utils/translation.py index 426faaaff0..90b4ed375d 100644 --- a/django/utils/translation.py +++ b/django/utils/translation.py @@ -256,7 +256,7 @@ ngettext_lazy = lazy(ngettext, str) def check_for_language(lang_code): """ Checks whether there is a global language file for the given language code. - This is used to decide whether a user-provided language is available. this is + This is used to decide whether a user-provided language is available. This is only used for language codes from either the cookies or session. """ from django.conf import settings @@ -327,7 +327,7 @@ def get_language_from_request(request): def get_date_formats(): """ - This function checks wether translation files provide a translation for some + This function checks whether translation files provide a translation for some technical message ID to store date and time formats. If it doesn't contain one, the formats provided in the settings will be used. """ diff --git a/docs/i18n.txt b/docs/i18n.txt index 3ed95007fc..2bf5535f0a 100644 --- a/docs/i18n.txt +++ b/docs/i18n.txt @@ -426,18 +426,21 @@ Notes: Django uses the base language. For example, if a user specifies ``de-at`` (Austrian German) but Django only has ``de`` available, Django uses ``de``. - * only languages listed in the LANGUAGES setting can be selected. So if you want - to restrict the language selection to a subset of provided languages (because - your appliaction doesn't provide all those languages), just set it to a list - of languages like this:: + * Only languages listed in the `LANGUAGES setting`_ can be selected. If + you want to restrict the language selection to a subset of provided + languages (because your appliaction doesn't provide all those languages), + set ``LANGUAGES`` to a list of languages. For example:: LANGUAGES = ( ('de', _('German')), ('en', _('English')), ) - This would restrict the available languages for automatic selection to German - and English (and any sublanguage of those, like de-ch or en-us). + This example restricts languages that are available for automatic + selection to German and English (and any sublanguage, like de-ch or + en-us). + + .. _LANGUAGES setting: http://www.djangoproject.com/documentation/settings/#languages Once ``LocaleMiddleware`` determines the user's preference, it makes this preference available as ``request.LANGUAGE_CODE`` for each `request object`_. diff --git a/docs/settings.txt b/docs/settings.txt index d2f6ffcdb5..fbce44807a 100644 --- a/docs/settings.txt +++ b/docs/settings.txt @@ -403,12 +403,33 @@ in standard language format. For example, U.S. English is ``"en-us"``. See the LANGUAGES --------- -Default: a list of available languages and their name +Default: A tuple of all available languages. Currently, this is:: -This is a list of two-tuples with language code and language name that are available -for language selection. See the `internationalization docs`_ for details. It usually -isn't defined, only if you want to restrict language selection to a subset of the -django-provided languages you need to set it. + LANGUAGES = ( + ('bn', _('Bengali')), + ('cs', _('Czech')), + ('cy', _('Welsh')), + ('de', _('German')), + ('en', _('English')), + ('es', _('Spanish')), + ('fr', _('French')), + ('gl', _('Galician')), + ('it', _('Italian')), + ('no', _('Norwegian')), + ('pt-br', _('Brazilian')), + ('ro', _('Romanian')), + ('ru', _('Russian')), + ('sk', _('Slovak')), + ('sr', _('Serbian')), + ('zh-cn', _('Simplified Chinese')), + ) + +A tuple of two-tuples in the format (language code, language name). This +specifies which languages are available for language selection. See the +`internationalization docs`_ for details. + +Generally, the default value should suffice. Only set this setting if you want +to restrict language selection to a subset of the Django-provided languages. MANAGERS -------- From 23c9e2aec9d7d5374e64f0c4bd70727c99b0eec2 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Sun, 13 Nov 2005 00:22:39 +0000 Subject: [PATCH 12/23] Fixed typo in docs/tutorial03.txt. Thanks, Dave Hodder git-svn-id: http://code.djangoproject.com/svn/django/trunk@1210 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/tutorial03.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/tutorial03.txt b/docs/tutorial03.txt index 3b5e0e8d94..8d0566ffcf 100644 --- a/docs/tutorial03.txt +++ b/docs/tutorial03.txt @@ -211,9 +211,9 @@ filesystem, whose contents Django can access. (Django runs as whatever user your server runs.) Don't put them under your document root, though. You probably shouldn't make them public, just for security's sake. -Then edit ``TEMPLATE_DIRS`` in your ``main.py`` settings file to tell Django -where it can find templates -- just as you did in the "Customize the admin look -and feel" section of Tutorial 2. +Then edit ``TEMPLATE_DIRS`` in your settings file (``settings.py``) to tell +Django where it can find templates -- just as you did in the "Customize the +admin look and feel" section of Tutorial 2. When you've done that, create a directory ``polls`` in your template directory. Within that, create a file called ``index.html``. Django requires that From 46083845d4125ea6c7da66b81cd8bdd9ec6ac067 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Sun, 13 Nov 2005 04:43:07 +0000 Subject: [PATCH 13/23] Changed slightly misleading example in docs/sessions.txt to use baggage-less 'members' instead of 'users' git-svn-id: http://code.djangoproject.com/svn/django/trunk@1211 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/sessions.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/sessions.txt b/docs/sessions.txt index 8aa711ea23..a070eda2dd 100644 --- a/docs/sessions.txt +++ b/docs/sessions.txt @@ -92,21 +92,21 @@ posts a comment. It doesn't let a user post a comment more than once:: request.session['has_commented'] = True return HttpResponse('Thanks for your comment!') -This simplistic view logs a user in:: +This simplistic view logs in a "member" of the site:: def login(request): - u = users.get_object(username__exact=request.POST['username']) - if u.check_password(request.POST['password']): - request.session['user_id'] = u.id + m = members.get_object(username__exact=request.POST['username']) + if m.password == request.POST['password']: + request.session['member_id'] = m.id return HttpResponse("You're logged in.") else: return HttpResponse("Your username and password didn't match.") -...And this one logs a user out, according to ``login()`` above:: +...And this one logs a member out, according to ``login()`` above:: def logout(request): try: - del request.session['user_id'] + del request.session['member_id'] except KeyError: pass return HttpResponse("You're logged out.") From 29bdbc3dbffed238546b1ea1163a95139d50236f Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Sun, 13 Nov 2005 04:48:52 +0000 Subject: [PATCH 14/23] Added 'Limiting access to generic views' section to docs/authentication.txt git-svn-id: http://code.djangoproject.com/svn/django/trunk@1212 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/authentication.txt | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/docs/authentication.txt b/docs/authentication.txt index e813f78e11..9aa581cf13 100644 --- a/docs/authentication.txt +++ b/docs/authentication.txt @@ -282,6 +282,21 @@ As a shortcut, you can use the convenient ``user_passes_test`` decorator:: Note that ``user_passes_test`` does not automatically check that the ``User`` is not anonymous. +Limiting access to generic views +-------------------------------- + +To limit access to a `generic view`_, write a thin wrapper around the view, +and point your URLconf to your wrapper instead of the generic view itself. +For example:: + + from django.views.generic.date_based import object_detail + + @login_required + def limited_object_detail(*args, **kwargs): + return object_detail(*args, **kwargs) + +.. _generic view: http://www.djangoproject.com/documentation/generic_views/ + Permissions =========== From 3273c981f8d370ce6ccc6cbd8a20fea4f9d64de0 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Sun, 13 Nov 2005 05:11:41 +0000 Subject: [PATCH 15/23] Moved db.quote_name from a model-level function to a method of DatabaseWrapper for all database backends, so quote_name will be accessible in a 'from django.core.db import db' context git-svn-id: http://code.djangoproject.com/svn/django/trunk@1213 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/core/db/__init__.py | 1 - django/core/db/backends/ado_mssql.py | 10 +++++----- django/core/db/backends/mysql.py | 10 +++++----- django/core/db/backends/postgresql.py | 10 +++++----- django/core/db/backends/sqlite3.py | 10 +++++----- 5 files changed, 20 insertions(+), 21 deletions(-) diff --git a/django/core/db/__init__.py b/django/core/db/__init__.py index 6636d4f176..f0ffeebc2e 100644 --- a/django/core/db/__init__.py +++ b/django/core/db/__init__.py @@ -36,7 +36,6 @@ get_limit_offset_sql = dbmod.get_limit_offset_sql get_random_function_sql = dbmod.get_random_function_sql get_table_list = dbmod.get_table_list get_relations = dbmod.get_relations -quote_name = dbmod.quote_name OPERATOR_MAPPING = dbmod.OPERATOR_MAPPING DATA_TYPES = dbmod.DATA_TYPES DATA_TYPES_REVERSE = dbmod.DATA_TYPES_REVERSE diff --git a/django/core/db/backends/ado_mssql.py b/django/core/db/backends/ado_mssql.py index 480de3b074..d4f2a359c5 100644 --- a/django/core/db/backends/ado_mssql.py +++ b/django/core/db/backends/ado_mssql.py @@ -77,6 +77,11 @@ class DatabaseWrapper: self.connection.close() self.connection = None + def quote_name(self, name): + if name.startswith('[') and name.endswith(']'): + return name # Quoting once is enough. + return '[%s]' % name + def get_last_insert_id(cursor, table_name, pk_name): cursor.execute("SELECT %s FROM %s WHERE %s = @@IDENTITY" % (pk_name, table_name, pk_name)) return cursor.fetchone()[0] @@ -110,11 +115,6 @@ def get_table_list(cursor): def get_relations(cursor, table_name): raise NotImplementedError -def quote_name(name): - if name.startswith('[') and name.endswith(']'): - return name # Quoting once is enough. - return '[%s]' % name - OPERATOR_MAPPING = { 'exact': '=', 'iexact': 'LIKE', diff --git a/django/core/db/backends/mysql.py b/django/core/db/backends/mysql.py index e7ede84a12..dd94948b96 100644 --- a/django/core/db/backends/mysql.py +++ b/django/core/db/backends/mysql.py @@ -84,6 +84,11 @@ class DatabaseWrapper: self.connection.close() self.connection = None + def quote_name(self, name): + if name.startswith("`") and name.endswith("`"): + return name # Quoting once is enough. + return "`%s`" % name + def get_last_insert_id(cursor, table_name, pk_name): cursor.execute("SELECT LAST_INSERT_ID()") return cursor.fetchone()[0] @@ -122,11 +127,6 @@ def get_table_list(cursor): def get_relations(cursor, table_name): raise NotImplementedError -def quote_name(name): - if name.startswith("`") and name.endswith("`"): - return name # Quoting once is enough. - return "`%s`" % name - OPERATOR_MAPPING = { 'exact': '=', 'iexact': 'LIKE', diff --git a/django/core/db/backends/postgresql.py b/django/core/db/backends/postgresql.py index a1de11e3df..b6d34fc814 100644 --- a/django/core/db/backends/postgresql.py +++ b/django/core/db/backends/postgresql.py @@ -49,6 +49,11 @@ class DatabaseWrapper: self.connection.close() self.connection = None + def quote_name(self, name): + if name.startswith('"') and name.endswith('"'): + return name # Quoting once is enough. + return '"%s"' % name + def dictfetchone(cursor): "Returns a row from the cursor as a dict" return cursor.dictfetchone() @@ -116,11 +121,6 @@ def get_relations(cursor, table_name): continue return relations -def quote_name(name): - if name.startswith('"') and name.endswith('"'): - return name # Quoting once is enough. - return '"%s"' % name - # Register these custom typecasts, because Django expects dates/times to be # in Python's native (standard-library) datetime/time format, whereas psycopg # use mx.DateTime by default. diff --git a/django/core/db/backends/sqlite3.py b/django/core/db/backends/sqlite3.py index 3fde8c77e1..60ffd37620 100644 --- a/django/core/db/backends/sqlite3.py +++ b/django/core/db/backends/sqlite3.py @@ -55,6 +55,11 @@ class DatabaseWrapper: self.connection.close() self.connection = None + def quote_name(self, name): + if name.startswith('"') and name.endswith('"'): + return name # Quoting once is enough. + return '"%s"' % name + class SQLiteCursorWrapper(Database.Cursor): """ Django uses "format" style placeholders, but pysqlite2 uses "qmark" style. @@ -124,11 +129,6 @@ def get_table_list(cursor): def get_relations(cursor, table_name): raise NotImplementedError -def quote_name(name): - if name.startswith('"') and name.endswith('"'): - return name # Quoting once is enough. - return '"%s"' % name - # Operators and fields ######################################################## OPERATOR_MAPPING = { From b40952b0a106a035b21505e41d936c54b2ce73cf Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Sun, 13 Nov 2005 16:14:14 +0000 Subject: [PATCH 16/23] Fixed #780 -- Fixed typo in docs/modpython.txt. Thanks, jhernandez git-svn-id: http://code.djangoproject.com/svn/django/trunk@1214 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/modpython.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/modpython.txt b/docs/modpython.txt index 734998c9da..c444a292ef 100644 --- a/docs/modpython.txt +++ b/docs/modpython.txt @@ -149,7 +149,7 @@ the ``media`` subdirectory and any URL that ends with ``.jpg``, ``.gif`` or SetHandler None - + .. _lighttpd: http://www.lighttpd.net/ From c9b3aa399c1c271e0e9739298582f231e9a1f3ac Mon Sep 17 00:00:00 2001 From: Georg Bauer Date: Sun, 13 Nov 2005 17:59:51 +0000 Subject: [PATCH 17/23] fixes #751 - new swedish translation. thx Robin. git-svn-id: http://code.djangoproject.com/svn/django/trunk@1215 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/conf/locale/sv/LC_MESSAGES/django.mo | Bin 0 -> 17733 bytes django/conf/locale/sv/LC_MESSAGES/django.po | 1010 +++++++++++++++++++ 2 files changed, 1010 insertions(+) create mode 100644 django/conf/locale/sv/LC_MESSAGES/django.mo create mode 100644 django/conf/locale/sv/LC_MESSAGES/django.po diff --git a/django/conf/locale/sv/LC_MESSAGES/django.mo b/django/conf/locale/sv/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..322a5ebc34eeb0d83bc264769f94c6dea1f884e2 GIT binary patch literal 17733 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 I7yIu21D3I8od5s; literal 0 HcmV?d00001 diff --git a/django/conf/locale/sv/LC_MESSAGES/django.po b/django/conf/locale/sv/LC_MESSAGES/django.po new file mode 100644 index 0000000000..ba775ea867 --- /dev/null +++ b/django/conf/locale/sv/LC_MESSAGES/django.po @@ -0,0 +1,1010 @@ +# Swedish translation of Django +# Copyright (C) 2005 +# This file is distributed under the same license as the Django package. +# Robin Sonefors , 2005. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2005-11-13 10:02-0600\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: contrib/admin/models/admin.py:6 +msgid "action time" +msgstr "tid för händelse" + +#: contrib/admin/models/admin.py:9 +msgid "object id" +msgstr "objektets id" + +#: contrib/admin/models/admin.py:10 +msgid "object repr" +msgstr "objektets repr" + +#: contrib/admin/models/admin.py:11 +msgid "action flag" +msgstr "händelseflagga" + +#: contrib/admin/models/admin.py:12 +msgid "change message" +msgstr "ändra meddelande" + +#: contrib/admin/models/admin.py:15 +msgid "log entry" +msgstr "loggpost" + +#: contrib/admin/models/admin.py:16 +msgid "log entries" +msgstr "loggpost" + +#: contrib/admin/templates/admin/object_history.html:5 +#: contrib/admin/templates/admin/500.html:4 +#: contrib/admin/templates/admin/base.html:29 +#: contrib/admin/templates/registration/password_change_done.html:4 +#: contrib/admin/templates/registration/password_reset_form.html:4 +#: contrib/admin/templates/registration/logged_out.html:4 +#: contrib/admin/templates/registration/password_reset_done.html:4 +#: contrib/admin/templates/registration/password_change_form.html:4 +msgid "Home" +msgstr "Hem" + +#: contrib/admin/templates/admin/object_history.html:5 +msgid "History" +msgstr "Historik" + +#: contrib/admin/templates/admin/object_history.html:18 +msgid "Date/time" +msgstr "Datum/tid" + +#: contrib/admin/templates/admin/object_history.html:19 models/auth.py:47 +msgid "User" +msgstr "Användare" + +#: contrib/admin/templates/admin/object_history.html:20 +msgid "Action" +msgstr "Händelse" + +#: contrib/admin/templates/admin/object_history.html:26 +msgid "DATE_WITH_TIME_FULL" +msgstr "D j F Y, H:i:s" + +#: contrib/admin/templates/admin/object_history.html:36 +msgid "" +"This object doesn't have a change history. It probably wasn't added via this " +"admin site." +msgstr "" +"Det här objektet har ingen ändringshistorik. Det lades antagligen inte till " +"i den här admin-sidan" + +#: contrib/admin/templates/admin/base_site.html:4 +msgid "Django site admin" +msgstr "Djangos sidadministration" + +#: contrib/admin/templates/admin/base_site.html:7 +msgid "Django administration" +msgstr "Administration för Django" + +#: contrib/admin/templates/admin/500.html:4 +msgid "Server error" +msgstr "Serverfel" + +#: contrib/admin/templates/admin/500.html:6 +msgid "Server error (500)" +msgstr "Serverfel (500)" + +#: contrib/admin/templates/admin/500.html:9 +msgid "Server Error (500)" +msgstr "Serverfel (500)" + +#: contrib/admin/templates/admin/500.html:10 +msgid "" +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." +msgstr "" +"Ett fel har uppstått. Sidadministratören har meddelats via e-post och " +"felet bör åtgärdas snart. Tack för ditt tålamod." + +#: contrib/admin/templates/admin/404.html:4 +#: contrib/admin/templates/admin/404.html:8 +msgid "Page not found" +msgstr "Sidan kunde inte hittas" + +#: contrib/admin/templates/admin/404.html:10 +msgid "We're sorry, but the requested page could not be found." +msgstr "Vi är ledsna, men den efterfrågade sidan kunde inte hittas." + +#: contrib/admin/templates/admin/index.html:27 +msgid "Add" +msgstr "Lägg till" + +#: contrib/admin/templates/admin/index.html:33 +msgid "Change" +msgstr "Ändra" + +#: contrib/admin/templates/admin/index.html:43 +msgid "You don't have permission to edit anything." +msgstr "Du har inte rättigheter att ändra något." + +#: contrib/admin/templates/admin/index.html:51 +msgid "Recent Actions" +msgstr "Senaste händelserna" + +#: contrib/admin/templates/admin/index.html:52 +msgid "My Actions" +msgstr "Mina händelser" + +#: contrib/admin/templates/admin/index.html:56 +msgid "None available" +msgstr "Inga tillgängliga" + +#: contrib/admin/templates/admin/login.html:15 +msgid "Username:" +msgstr "Användarnamn:" + +#: contrib/admin/templates/admin/login.html:18 +msgid "Password:" +msgstr "Lösenord:" + +#: contrib/admin/templates/admin/login.html:20 +msgid "Have you forgotten your password?" +msgstr "Har du glömt ditt lösenord?" + +#: contrib/admin/templates/admin/login.html:24 +msgid "Log in" +msgstr "Logga in" + +#: contrib/admin/templates/admin/base.html:23 +msgid "Welcome," +msgstr "Välkommen," + +#: contrib/admin/templates/admin/base.html:23 +msgid "Change password" +msgstr "Ändra lösenord" + +#: contrib/admin/templates/admin/base.html:23 +msgid "Log out" +msgstr "Logga ut" + +#: contrib/admin/templates/admin/delete_confirmation.html:7 +#, python-format +msgid "" +"Deleting the %(object_name)s '%(object)s' would result in deleting related " +"objects, but your account doesn't have permission to delete the following " +"types of objects:" +msgstr "" +"Att ta bort %(object_name)s '%(object)s' skulle innebära att besläktade " +"objekt togs bort, men ditt konto har inte rättigheter att ta bort följande " +"objekttyper:" + +#: contrib/admin/templates/admin/delete_confirmation.html:14 +#, python-format +msgid "" +"Are you sure you want to delete the %(object_name)s \"%(object)s\"? All of " +"the following related items will be deleted:" +msgstr "" +"Är du säker på att du vill ta bort %(object_name)s \"%(object)s\"? Följande " +"besläktade föremål kommer att tas bort:" + +#: contrib/admin/templates/admin/delete_confirmation.html:18 +msgid "Yes, I'm sure" +msgstr "Ja, jag är säker" + +#: contrib/admin/templates/registration/password_change_done.html:4 +#: contrib/admin/templates/registration/password_change_form.html:4 +#: contrib/admin/templates/registration/password_change_form.html:6 +#: contrib/admin/templates/registration/password_change_form.html:10 +msgid "Password change" +msgstr "Ändra lösenord" + +#: contrib/admin/templates/registration/password_change_done.html:6 +#: contrib/admin/templates/registration/password_change_done.html:10 +msgid "Password change successful" +msgstr "Lösenordet ändrades" + +#: contrib/admin/templates/registration/password_change_done.html:12 +msgid "Your password was changed." +msgstr "Ditt lösenord har ändrats." + +#: contrib/admin/templates/registration/password_reset_form.html:4 +#: contrib/admin/templates/registration/password_reset_form.html:6 +#: contrib/admin/templates/registration/password_reset_done.html:4 +msgid "Password reset" +msgstr "Nollställ lösenordet" + +#: contrib/admin/templates/registration/password_reset_form.html:12 +msgid "" +"Forgotten your password? Enter your e-mail address below, and we'll reset " +"your password and e-mail the new one to you." +msgstr "" +"Har du glömt ditt lösenord? Fyll i din e-postadress nedan, så nollställer vi " +"ditt lösenord och mailar det nya till dig." + +#: contrib/admin/templates/registration/password_reset_form.html:16 +msgid "E-mail address:" +msgstr "E-postadress:" + +#: contrib/admin/templates/registration/password_reset_form.html:16 +msgid "Reset my password" +msgstr "Nollställ mitt lösenord" + +#: contrib/admin/templates/registration/logged_out.html:8 +msgid "Thanks for spending some quality time with the Web site today." +msgstr "Tack för att du spenderade kvalitetstid med webbsidan idag." + +#: contrib/admin/templates/registration/logged_out.html:10 +msgid "Log in again" +msgstr "Logga in igen" + +#: contrib/admin/templates/registration/password_reset_done.html:6 +#: contrib/admin/templates/registration/password_reset_done.html:10 +msgid "Password reset successful" +msgstr "Nollställning av lösenordet lyckades" + +#: contrib/admin/templates/registration/password_reset_done.html:12 +msgid "" +"We've e-mailed a new password to the e-mail address you submitted. You " +"should be receiving it shortly." +msgstr "" +"Vi har skickat ett nytt lösenord till e-postadressen du fyllde i. Det bör " +"anlända snarast." + +#: contrib/admin/templates/registration/password_change_form.html:12 +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 "" +"Var god fyll i ditt gamla lösenord, för säkerhets skull, och skriv sedan in " +"det nya lösenordet två gånger så vi kan kontrollera att du skrev det rätt." + +#: contrib/admin/templates/registration/password_change_form.html:17 +msgid "Old password:" +msgstr "Gamla lösenordet:" + +#: contrib/admin/templates/registration/password_change_form.html:19 +msgid "New password:" +msgstr "Nytt lösenord:" + +#: contrib/admin/templates/registration/password_change_form.html:21 +msgid "Confirm password:" +msgstr "Bekräfta lösenord:" + +#: contrib/admin/templates/registration/password_change_form.html:23 +msgid "Change my password" +msgstr "Ändra mitt lösenord" + +#: contrib/admin/templates/registration/password_reset_email.html:2 +msgid "You're receiving this e-mail because you requested a password reset" +msgstr "Du får det här mailet eftersom du bad om att få lösenordet nollställt" + +#: contrib/admin/templates/registration/password_reset_email.html:3 +#, python-format +msgid "for your user account at %(site_name)s" +msgstr "för ditt användarkonto på %(site_name)s" + +#: contrib/admin/templates/registration/password_reset_email.html:5 +#, python-format +msgid "Your new password is: %(new_password)s" +msgstr "Ditt nya lösenord är: %(new_password)s" + +#: contrib/admin/templates/registration/password_reset_email.html:7 +msgid "Feel free to change this password by going to this page:" +msgstr "" +"Känn dig välkommen att ändra det här lösenordet genom att gå till den här " +"sidan:" + +#: contrib/admin/templates/registration/password_reset_email.html:11 +msgid "Your username, in case you've forgotten:" +msgstr "Ditt användarnamn, om du har glömt:" + +#: contrib/admin/templates/registration/password_reset_email.html:13 +msgid "Thanks for using our site!" +msgstr "Tack för att du använder vår sida!" + +#: contrib/admin/templates/registration/password_reset_email.html:15 +#, python-format +msgid "The %(site_name)s team" +msgstr "%(site_name)s-laget" + +#: contrib/redirects/models/redirects.py:7 +msgid "redirect from" +msgstr "vidarebefodra från" + +#: contrib/redirects/models/redirects.py:8 +msgid "" +"This should be an absolute path, excluding the domain name. Example: '/" +"events/search/'." +msgstr "" +"Det här bör vara en absolut sökväg, förutom domännamnet. Exempel: '/" +"handelser/sok/'." + +#: contrib/redirects/models/redirects.py:9 +msgid "redirect to" +msgstr "vidarebefodra till" + +#: contrib/redirects/models/redirects.py:10 +msgid "" +"This can be either an absolute path (as above) or a full URL starting with " +"'http://'." +msgstr "" +"Det här kan vara antingen en absolut sökväg (som ovan), eller en komplett " +"adress som börjar med 'http://'." + +#: contrib/redirects/models/redirects.py:12 +msgid "redirect" +msgstr "vidarebefodra" + +#: contrib/redirects/models/redirects.py:13 +msgid "redirects" +msgstr "vidarebefodringar" + +#: contrib/flatpages/models/flatpages.py:6 +msgid "URL" +msgstr "URL" + +#: contrib/flatpages/models/flatpages.py:7 +msgid "" +"Example: '/about/contact/'. Make sure to have leading and trailing slashes." +msgstr "" +"Exempel: '/om/kontakt/'. Se till att ha inledande och avslutande snedsträck." + +#: contrib/flatpages/models/flatpages.py:8 +msgid "title" +msgstr "titel" + +#: contrib/flatpages/models/flatpages.py:9 +msgid "content" +msgstr "innehåll" + +#: contrib/flatpages/models/flatpages.py:10 +msgid "enable comments" +msgstr "aktivera kommentarer" + +#: contrib/flatpages/models/flatpages.py:11 +msgid "template name" +msgstr "mallnamn" + +#: contrib/flatpages/models/flatpages.py:12 +#, fuzzy +msgid "" +"Example: 'flatpages/contact_page'. If this isn't provided, the system will " +"use 'flatpages/default'." +msgstr "" +"Exempel: 'flatfiles/kontakt_sida'. Om det här inte fylls i kommer systemet " +"att använda 'flatfiles/default'." + +#: contrib/flatpages/models/flatpages.py:13 +msgid "registration required" +msgstr "registrering krävs" + +#: contrib/flatpages/models/flatpages.py:13 +msgid "If this is checked, only logged-in users will be able to view the page." +msgstr "" +"Om det här bockas i kommer endast inloggade användare att kunna visa sidan" + +#: contrib/flatpages/models/flatpages.py:17 +msgid "flat page" +msgstr "flatsida" + +#: contrib/flatpages/models/flatpages.py:18 +msgid "flat pages" +msgstr "flatsidor" + +#: utils/dates.py:6 +msgid "Monday" +msgstr "måndag" + +#: utils/dates.py:6 +msgid "Tuesday" +msgstr "tisdag" + +#: utils/dates.py:6 +msgid "Wednesday" +msgstr "onsdag" + +#: utils/dates.py:6 +msgid "Thursday" +msgstr "torsdag" + +#: utils/dates.py:6 +msgid "Friday" +msgstr "fredag" + +#: utils/dates.py:7 +msgid "Saturday" +msgstr "lördag" + +#: utils/dates.py:7 +msgid "Sunday" +msgstr "söndag" + +#: utils/dates.py:14 +msgid "January" +msgstr "januari" + +#: utils/dates.py:14 +msgid "February" +msgstr "februari" + +#: utils/dates.py:14 utils/dates.py:27 +msgid "March" +msgstr "mars" + +#: utils/dates.py:14 utils/dates.py:27 +msgid "April" +msgstr "april" + +#: utils/dates.py:14 utils/dates.py:27 +msgid "May" +msgstr "maj" + +#: utils/dates.py:14 utils/dates.py:27 +msgid "June" +msgstr "juni" + +#: utils/dates.py:15 utils/dates.py:27 +msgid "July" +msgstr "juli" + +#: utils/dates.py:15 +msgid "August" +msgstr "augusti" + +#: utils/dates.py:15 +msgid "September" +msgstr "september" + +#: utils/dates.py:15 +msgid "October" +msgstr "oktober" + +#: utils/dates.py:15 +msgid "November" +msgstr "november" + +#: utils/dates.py:16 +msgid "December" +msgstr "december" + +#: utils/dates.py:27 +msgid "Jan." +msgstr "jan" + +#: utils/dates.py:27 +msgid "Feb." +msgstr "feb" + +#: utils/dates.py:28 +msgid "Aug." +msgstr "aug" + +#: utils/dates.py:28 +msgid "Sept." +msgstr "sept" + +#: utils/dates.py:28 +msgid "Oct." +msgstr "okt" + +#: utils/dates.py:28 +msgid "Nov." +msgstr "nov" + +#: utils/dates.py:28 +msgid "Dec." +msgstr "dec" + +#: utils/translation.py:335 +msgid "DATE_FORMAT" +msgstr "Y-m-d" + +#: utils/translation.py:336 +msgid "DATETIME_FORMAT" +msgstr "Y-m-d, H:i" + +#: utils/translation.py:337 +msgid "TIME_FORMAT" +msgstr "H:i:s" + +#: models/core.py:7 +msgid "domain name" +msgstr "domännamn" + +#: models/core.py:8 +msgid "display name" +msgstr "visat namn" + +#: models/core.py:10 +msgid "site" +msgstr "sida" + +#: models/core.py:11 +msgid "sites" +msgstr "sidor" + +#: models/core.py:28 +msgid "label" +msgstr "etikett" + +#: models/core.py:29 models/core.py:40 models/auth.py:6 models/auth.py:19 +msgid "name" +msgstr "namn" + +#: models/core.py:31 +msgid "package" +msgstr "paket" + +#: models/core.py:32 +msgid "packages" +msgstr "paket" + +#: models/core.py:42 +msgid "python module name" +msgstr "pythonmodulnamn" + +#: models/core.py:44 +msgid "content type" +msgstr "innehållstyp" + +#: models/core.py:45 +msgid "content types" +msgstr "innehållstyper" + +#: models/core.py:67 +msgid "session key" +msgstr "sessionsnyckel" + +#: models/core.py:68 +msgid "session data" +msgstr "sessionsdata" + +#: models/core.py:69 +msgid "expire date" +msgstr "bäst före" + +#: models/core.py:71 +msgid "session" +msgstr "session" + +#: models/core.py:72 +msgid "sessions" +msgstr "sessioner" + +#: models/auth.py:8 +msgid "codename" +msgstr "kodnamn" + +#: models/auth.py:10 +msgid "Permission" +msgstr "Rättighet" + +#: models/auth.py:11 models/auth.py:58 +msgid "Permissions" +msgstr "Rättigheter" + +#: models/auth.py:22 +msgid "Group" +msgstr "Grupp" + +#: models/auth.py:23 models/auth.py:60 +msgid "Groups" +msgstr "Grupper" + +#: models/auth.py:33 +msgid "username" +msgstr "användarnamn" + +#: models/auth.py:34 +msgid "first name" +msgstr "förnamn" + +#: models/auth.py:35 +msgid "last name" +msgstr "efternamn" + +#: models/auth.py:36 +msgid "e-mail address" +msgstr "e-postadress" + +#: models/auth.py:37 +msgid "password" +msgstr "lösenord" + +#: models/auth.py:37 +msgid "Use an MD5 hash -- not the raw password." +msgstr "Använd en MD5-hash -- inte lösenordet i ren text." + +#: models/auth.py:38 +msgid "staff status" +msgstr "personal?" + +#: models/auth.py:38 +msgid "Designates whether the user can log into this admin site." +msgstr "Avgör om användaren kan logga in till den här administrationssidan." + +#: models/auth.py:39 +msgid "active" +msgstr "aktiv" + +#: models/auth.py:40 +msgid "superuser status" +msgstr "superanvändare" + +#: models/auth.py:41 +msgid "last login" +msgstr "senaste inloggning" + +#: models/auth.py:42 +msgid "date joined" +msgstr "registreringsdatum" + +#: models/auth.py:44 +msgid "" +"In addition to the permissions manually assigned, this user will also get " +"all permissions granted to each group he/she is in." +msgstr "" +"Förutom de rättigheterna som utdelas manuellt så kommer användaren dessutom " +"få samma rättigheter som de grupper där han/hon är medlem." + +#: models/auth.py:48 +msgid "Users" +msgstr "Användare" + +#: models/auth.py:57 +msgid "Personal info" +msgstr "Personlig information" + +#: models/auth.py:59 +msgid "Important dates" +msgstr "Viktiga datum" + +#: models/auth.py:182 +msgid "Message" +msgstr "Meddelande" + +#: conf/global_settings.py:36 +msgid "Bengali" +msgstr "Bengaliska" + +#: conf/global_settings.py:37 +msgid "Czech" +msgstr "Tjeckiska" + +#: conf/global_settings.py:38 +msgid "Welsh" +msgstr "Walesiska" + +#: conf/global_settings.py:39 +msgid "German" +msgstr "Tyska" + +#: conf/global_settings.py:40 +msgid "English" +msgstr "Engelska" + +#: conf/global_settings.py:41 +msgid "Spanish" +msgstr "Spanska" + +#: conf/global_settings.py:42 +msgid "French" +msgstr "Franska" + +#: conf/global_settings.py:43 +msgid "Galician" +msgstr "Galisiska" + +#: conf/global_settings.py:44 +msgid "Italian" +msgstr "Italienska" + +#: conf/global_settings.py:45 +msgid "Norwegian" +msgstr "Norska" + +#: conf/global_settings.py:46 +msgid "Brazilian" +msgstr "Brasilianska" + +#: conf/global_settings.py:47 +msgid "Romanian" +msgstr "Rumänska" + +#: conf/global_settings.py:48 +msgid "Russian" +msgstr "Ryska" + +#: conf/global_settings.py:49 +msgid "Slovak" +msgstr "Slovakiska" + +#: conf/global_settings.py:50 +msgid "Serbian" +msgstr "Serbiska" + +#: conf/global_settings.py:51 +msgid "Simplified Chinese" +msgstr "Förenklad kinesiska" + +#: core/validators.py:59 +msgid "This value must contain only letters, numbers and underscores." +msgstr "Det här värdet får bara innehålla bokstäver, tal och understräck." + +#: core/validators.py:63 +msgid "This value must contain only letters, numbers, underscores and slashes." +msgstr "" +"Det här värdet får bara innehålla bokstäver, tal, understräck och snedsträck" + +#: core/validators.py:71 +msgid "Uppercase letters are not allowed here." +msgstr "Stora bokstäver är inte tillåtna här." + +#: core/validators.py:75 +msgid "Lowercase letters are not allowed here." +msgstr "Små bokstäver är inte tillåtna här." + +#: core/validators.py:82 +msgid "Enter only digits separated by commas." +msgstr "Fyll enbart i siffror avskillda med kommatecken." + +#: core/validators.py:94 +msgid "Enter valid e-mail addresses separated by commas." +msgstr "Fyll i giltiga e-postadresser avskillda med kommatecken." + +#: core/validators.py:98 +msgid "Please enter a valid IP address." +msgstr "Var god fyll i ett giltigt IP-nummer." + +#: core/validators.py:102 +msgid "Empty values are not allowed here." +msgstr "Tomma värden är inte tillåtna här." + +#: core/validators.py:106 +msgid "Non-numeric characters aren't allowed here." +msgstr "Icke-numeriska tecken är inte tillåtna här." + +#: core/validators.py:110 +msgid "This value can't be comprised solely of digits." +msgstr "Det här värdet kan inte enbart bestå av siffror." + +#: core/validators.py:115 +msgid "Enter a whole number." +msgstr "Fyll i ett heltal." + +#: core/validators.py:119 +msgid "Only alphabetical characters are allowed here." +msgstr "Endast alfabetiska bokstäver är tillåtna här." + +#: core/validators.py:123 +msgid "Enter a valid date in YYYY-MM-DD format." +msgstr "Fyll i ett giltigt datum i formatet ÅÅÅÅ-MM-DD." + +#: core/validators.py:127 +msgid "Enter a valid time in HH:MM format." +msgstr "Fyll i en giltig tid i formatet TT:MM" + +#: core/validators.py:131 +msgid "Enter a valid date/time in YYYY-MM-DD HH:MM format." +msgstr "Fyll i en giltig tidpunkt i formatet ÅÅÅÅ-MM-DD TT:MM" + +#: core/validators.py:135 +msgid "Enter a valid e-mail address." +msgstr "Fyll i en giltig e-postadress." + +#: core/validators.py:147 +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Ladda upp en giltig bild. Filen du laddade upp var antingen inte en bild, " +"eller så var det en korrupt bild." + +#: core/validators.py:154 +#, python-format +msgid "The URL %s does not point to a valid image." +msgstr "Adressen %s pekar inte till en giltig bild." + +#: core/validators.py:158 +#, python-format +msgid "Phone numbers must be in XXX-XXX-XXXX format. \"%s\" is invalid." +msgstr "" +"Telefonnummer måste vara i det amerikanska formatet " +"XXX-XXX-XXXX. \"%s\" är ogiltigt." + +#: core/validators.py:166 +#, python-format +msgid "The URL %s does not point to a valid QuickTime video." +msgstr "Adressen %s pekar inte till en giltig QuickTime-video." + +#: core/validators.py:170 +msgid "A valid URL is required." +msgstr "En giltig adress krävs." + +#: core/validators.py:184 +#, python-format +msgid "" +"Valid HTML is required. Specific errors are:\n" +"%s" +msgstr "" +"Giltig HTML krävs. Specifika fel är:\n" +"%s" + +#: core/validators.py:191 +#, python-format +msgid "Badly formed XML: %s" +msgstr "Missformad XML: %s" + +#: core/validators.py:201 +#, python-format +msgid "Invalid URL: %s" +msgstr "Felaktig adress: %s" + +#: core/validators.py:205 core/validators.py:207 +#, python-format +msgid "The URL %s is a broken link." +msgstr "Adressen %s är en trasig länk." + +#: core/validators.py:213 +msgid "Enter a valid U.S. state abbreviation." +msgstr "Fyll i en giltig förkortning för en amerikansk delstat" + +#: core/validators.py:228 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "Håll i tungan! Ordet %s är inte tillåtet här." +msgstr[1] "Håll i tungan! Orden %s är inte tillåtna här." + +#: core/validators.py:235 +#, python-format +msgid "This field must match the '%s' field." +msgstr "Det här fältet måste matcha fältet '%s'." + +#: core/validators.py:254 +msgid "Please enter something for at least one field." +msgstr "Fyll i något i minst ett fält." + +#: core/validators.py:263 core/validators.py:274 +msgid "Please enter both fields or leave them both empty." +msgstr "Fyll antingen i båda fälten, eller lämna båda tomma" + +#: core/validators.py:281 +#, python-format +msgid "This field must be given if %(field)s is %(value)s" +msgstr "Det är fältet måste anges om %(field)s är %(value)s" + +#: core/validators.py:293 +#, python-format +msgid "This field must be given if %(field)s is not %(value)s" +msgstr "Det här fältet måste anges om %(field)s inte är %(value)s" + +#: core/validators.py:312 +msgid "Duplicate values are not allowed." +msgstr "Upprepade värden är inte tillåtna." + +#: core/validators.py:335 +#, python-format +msgid "This value must be a power of %s." +msgstr "Det här värdet måste vara en multipel av %s." + +#: core/validators.py:346 +msgid "Please enter a valid decimal number." +msgstr "Fyll i ett giltigt decimaltal." + +#: core/validators.py:348 +#, python-format +msgid "Please enter a valid decimal number with at most %s total digit." +msgid_plural "" +"Please enter a valid decimal number with at most %s total digits." +msgstr[0] "Fyll i ett giltigt decimaltal med mindre än %s siffra totalt." +msgstr[1] "Fyll i ett giltigt decimaltal med mindre än %s siffror totalt." + +#: core/validators.py:351 +#, python-format +msgid "Please enter a valid decimal number with at most %s decimal place." +msgid_plural "" +"Please enter a valid decimal number with at most %s decimal places." +msgstr[0] "Fyll i ett giltigt decimaltal med som mest %s decimalsiffra." +msgstr[1] "Fyll i ett giltigt decimaltal med som mest %s decimalsiffror." + +#: core/validators.py:361 +#, python-format +msgid "Make sure your uploaded file is at least %s bytes big." +msgstr "Se till att filen du laddade upp är minst %s bytes stor." + +#: core/validators.py:362 +#, python-format +msgid "Make sure your uploaded file is at most %s bytes big." +msgstr "Se till att filen du laddade upp är max %s bytes stor." + +#: core/validators.py:375 +msgid "The format for this field is wrong." +msgstr "Formatet på det här fältet är fel." + +#: core/validators.py:390 +msgid "This field is invalid." +msgstr "Det här fältet är ogiltigt." + +#: core/validators.py:425 +#, python-format +msgid "Could not retrieve anything from %s." +msgstr "Kunde inte hämta något från %s." + +#: core/validators.py:428 +#, python-format +msgid "" +"The URL %(url)s returned the invalid Content-Type header '%(contenttype)s'." +msgstr "" +"Adressen %(url)s returnerade det ogiltiga innehållstyphuvudet " +"(Content-Type header) '%(contenttype)" +"s'" + +#: core/validators.py:461 +#, python-format +msgid "" +"Please close the unclosed %(tag)s tag from line %(line)s. (Line starts with " +"\"%(start)s\".)" +msgstr "" +"Var god avsluta den oavslutade taggen %(tag)s på rad %(line)s. (Raden börjar " +"med \"%(start)s\".)" + +#: core/validators.py:465 +#, python-format +msgid "" +"Some text starting on line %(line)s is not allowed in that context. (Line " +"starts with \"%(start)s\".)" +msgstr "" +"En del text från rad %(line)s är inte tillåtet i det sammanhanget. (Raden " +"börjar med \"%(start)s\".)" + +#: core/validators.py:470 +#, python-format +msgid "" +"\"%(attr)s\" on line %(line)s is an invalid attribute. (Line starts with \"%" +"(start)s\".)" +msgstr "" +"\"%(attr)s\" på rad %(line)s är inte ett gilltigt attribut. (Raden startar " +"med \"%(start)s\".)" + +#: core/validators.py:475 +#, python-format +msgid "" +"\"<%(tag)s>\" on line %(line)s is an invalid tag. (Line starts with \"%" +"(start)s\".)" +msgstr "" +"\"<%(tag)s>\" på rad %(line)s är inte en giltig tagg. (Raden börjar med \"%" +"(start)s\".)" + +#: core/validators.py:479 +#, python-format +msgid "" +"A tag on line %(line)s is missing one or more required attributes. (Line " +"starts with \"%(start)s\".)" +msgstr "" +"En tagg på rad %(line)s saknar en eller flera nödvändiga attribut. (Raden " +"börjar med \"%(start)s\".)" + +#: core/validators.py:484 +#, python-format +msgid "" +"The \"%(attr)s\" attribute on line %(line)s has an invalid value. (Line " +"starts with \"%(start)s\".)" +msgstr "" +"Attributet \"%(attr)s\" på rad %(line)s har ett ogiltigt värde. (Raden " +"börjar med \"%(start)s\".)" + +#: core/meta/fields.py:111 +msgid " Separate multiple IDs with commas." +msgstr " Separera flera ID:n med kommatecken." + +#: core/meta/fields.py:114 +msgid "" +" Hold down \"Control\", or \"Command\" on a Mac, to select more than one." +msgstr "" +" Håll ner \"Control\", eller \"Command\" på en Mac, för att välja mer än en." From 0bff994e256c344dbe489971e350824330c22f6d Mon Sep 17 00:00:00 2001 From: Georg Bauer Date: Sun, 13 Nov 2005 18:02:55 +0000 Subject: [PATCH 18/23] added swedish to the global settings LANGUAGES git-svn-id: http://code.djangoproject.com/svn/django/trunk@1216 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/conf/global_settings.py | 1 + django/conf/locale/bn/LC_MESSAGES/django.mo | Bin 27102 -> 27102 bytes django/conf/locale/bn/LC_MESSAGES/django.po | 56 +- django/conf/locale/cs/LC_MESSAGES/django.mo | Bin 17639 -> 17639 bytes django/conf/locale/cs/LC_MESSAGES/django.po | 56 +- django/conf/locale/cy/LC_MESSAGES/django.mo | Bin 17077 -> 17077 bytes django/conf/locale/cy/LC_MESSAGES/django.po | 56 +- django/conf/locale/de/LC_MESSAGES/django.mo | Bin 18274 -> 18309 bytes django/conf/locale/de/LC_MESSAGES/django.po | 56 +- django/conf/locale/en/LC_MESSAGES/django.mo | Bin 536 -> 536 bytes django/conf/locale/en/LC_MESSAGES/django.po | 56 +- django/conf/locale/es/LC_MESSAGES/django.mo | Bin 5203 -> 5203 bytes django/conf/locale/es/LC_MESSAGES/django.po | 56 +- django/conf/locale/fr/LC_MESSAGES/django.mo | Bin 17549 -> 17549 bytes django/conf/locale/fr/LC_MESSAGES/django.po | 56 +- django/conf/locale/gl/LC_MESSAGES/django.mo | Bin 5322 -> 5322 bytes django/conf/locale/gl/LC_MESSAGES/django.po | 56 +- django/conf/locale/it/LC_MESSAGES/django.mo | Bin 16611 -> 16611 bytes django/conf/locale/it/LC_MESSAGES/django.po | 56 +- django/conf/locale/no/LC_MESSAGES/django.mo | Bin 17184 -> 17184 bytes django/conf/locale/no/LC_MESSAGES/django.po | 56 +- .../conf/locale/pt_BR/LC_MESSAGES/django.mo | Bin 16457 -> 16457 bytes .../conf/locale/pt_BR/LC_MESSAGES/django.po | 56 +- django/conf/locale/ro/LC_MESSAGES/django.mo | Bin 17204 -> 17204 bytes django/conf/locale/ro/LC_MESSAGES/django.po | 56 +- django/conf/locale/ru/LC_MESSAGES/django.mo | Bin 5134 -> 5134 bytes django/conf/locale/ru/LC_MESSAGES/django.po | 56 +- django/conf/locale/sk/LC_MESSAGES/django.mo | Bin 17545 -> 17545 bytes django/conf/locale/sk/LC_MESSAGES/django.po | 56 +- django/conf/locale/sr/LC_MESSAGES/django.mo | Bin 16334 -> 16334 bytes django/conf/locale/sr/LC_MESSAGES/django.po | 56 +- django/conf/locale/sv/LC_MESSAGES/django.mo | Bin 17733 -> 17733 bytes django/conf/locale/sv/LC_MESSAGES/django.po | 2015 +++++++++-------- .../conf/locale/zh_CN/LC_MESSAGES/django.mo | Bin 16720 -> 16720 bytes .../conf/locale/zh_CN/LC_MESSAGES/django.po | 56 +- 35 files changed, 1490 insertions(+), 1422 deletions(-) diff --git a/django/conf/global_settings.py b/django/conf/global_settings.py index 882f1154ad..2a15477295 100644 --- a/django/conf/global_settings.py +++ b/django/conf/global_settings.py @@ -48,6 +48,7 @@ LANGUAGES = ( ('ru', _('Russian')), ('sk', _('Slovak')), ('sr', _('Serbian')), + ('sv', _('Swedish')), ('zh-cn', _('Simplified Chinese')), ) diff --git a/django/conf/locale/bn/LC_MESSAGES/django.mo b/django/conf/locale/bn/LC_MESSAGES/django.mo index 6b7c4c38b5930f3f18bd403c624d551aeebab5db..9551ed4cc4b04da40b56a26d576d7e5b4e67ec05 100644 GIT binary patch delta 22 dcmcb2nepCb#tlAN?8XX)Mpg!9n}fBw?Ez?e2jTz# delta 22 dcmcb2nepCb#tlAN>_!TPW>yBKn}fBw?Ez?w2jl<% diff --git a/django/conf/locale/bn/LC_MESSAGES/django.po b/django/conf/locale/bn/LC_MESSAGES/django.po index 88fe7b42e7..df2ff41d0c 100644 --- a/django/conf/locale/bn/LC_MESSAGES/django.po +++ b/django/conf/locale/bn/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Django CVS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-11-12 16:05-0600\n" +"POT-Creation-Date: 2005-11-13 12:06-0600\n" "PO-Revision-Date: 2005-11-12 20:05+0530\n" "Last-Translator: Baishampayan Ghose \n" "Language-Team: Ankur Bangla \n" @@ -723,6 +723,10 @@ msgid "Serbian" msgstr "সার্বিয়ান" #: conf/global_settings.py:51 +msgid "Swedish" +msgstr "" + +#: conf/global_settings.py:52 msgid "Simplified Chinese" msgstr "সরলীকৃত চীনা" @@ -836,59 +840,59 @@ msgstr "খারাপভাবে গঠিত এক্সএমএল: %s" msgid "Invalid URL: %s" msgstr "অবৈধ ইউ.আর.এল: %s" -#: core/validators.py:203 +#: core/validators.py:205 core/validators.py:207 #, python-format msgid "The URL %s is a broken link." msgstr "ইউ.আর.এল %s একটি ভাঙা সংযোগ।" -#: core/validators.py:209 +#: core/validators.py:213 msgid "Enter a valid U.S. state abbreviation." msgstr "একটি বৈধ U S. রাজ্য abbreviation ঢোকান।" -#: core/validators.py:224 +#: core/validators.py:228 #, python-format msgid "Watch your mouth! The word %s is not allowed here." msgid_plural "Watch your mouth! The words %s are not allowed here." msgstr[0] "মুখ সামলে! %s এখানে ব্যাবহার করতে পারবেন না।" msgstr[1] "মুখ সামলে! %s এখানে ব্যাবহার করতে পারবেন না।" -#: core/validators.py:231 +#: core/validators.py:235 #, python-format msgid "This field must match the '%s' field." msgstr "এই ক্ষেত্রটি '%s' ক্ষেত্রের সঙ্গে অবশ্যই মিলতে হবে।" -#: core/validators.py:250 +#: core/validators.py:254 msgid "Please enter something for at least one field." msgstr "দয়া করে অন্তত এক ক্ষেত্রেতে কিছু জিনিষ ঢোকান।" -#: core/validators.py:259 core/validators.py:270 +#: core/validators.py:263 core/validators.py:274 msgid "Please enter both fields or leave them both empty." msgstr "দয়া করে উভয় ক্ষেত্রে ঢোকান অথবা তাদেরকে উভয় ফাঁকা ছেড়ে চলে যান।" -#: core/validators.py:277 +#: core/validators.py:281 #, python-format msgid "This field must be given if %(field)s is %(value)s" msgstr "এই ক্ষেত্রেটি অবশ্যই দেওয়া হবে যদি %(field)s %(value)s হয়" -#: core/validators.py:289 +#: core/validators.py:293 #, python-format msgid "This field must be given if %(field)s is not %(value)s" msgstr "এই ক্ষেত্রেটি অবশ্যই দেওয়া হবে যদি %(field)s %(value)s না হয়" -#: core/validators.py:308 +#: core/validators.py:312 msgid "Duplicate values are not allowed." msgstr "নকল মান অনুমতি দেওয়া হল না।" -#: core/validators.py:331 +#: core/validators.py:335 #, python-format msgid "This value must be a power of %s." msgstr "এই মানটি %sএর একটি গুন অবশ্যই হতে হবে।" -#: core/validators.py:342 +#: core/validators.py:346 msgid "Please enter a valid decimal number." msgstr "দয়া করে একটি বৈধ দশমিক সংখ্যা ঢোকান।" -#: core/validators.py:344 +#: core/validators.py:348 #, python-format msgid "Please enter a valid decimal number with at most %s total digit." msgid_plural "" @@ -896,7 +900,7 @@ msgid_plural "" msgstr[0] "দয়া করে একটি বৈধ দশমিক সংখ্যা ঢোকান যার অক্ষরের সংখ্যা %s থেকে কম হবে।" msgstr[1] "দয়া করে একটি বৈধ দশমিক সংখ্যা ঢোকান যার অক্ষরের সংখ্যা %s থেকে কম হবে।" -#: core/validators.py:347 +#: core/validators.py:351 #, python-format msgid "Please enter a valid decimal number with at most %s decimal place." msgid_plural "" @@ -904,37 +908,37 @@ msgid_plural "" msgstr[0] "দয়া করে একটি বৈধ দশমিক সংখ্যা ঢোকান যার দশমিক স্থান %s থেকে কম হবে।" msgstr[1] "দয়া করে একটি বৈধ দশমিক সংখ্যা ঢোকান যার দশমিক স্থান %s থেকে কম হবে।" -#: core/validators.py:357 +#: core/validators.py:361 #, python-format msgid "Make sure your uploaded file is at least %s bytes big." msgstr "আাপনার আপলোড করা ফাইল যেন অন্তত %s বাইট বড় হয় তা নিশ্চিত করুন।" -#: core/validators.py:358 +#: core/validators.py:362 #, python-format msgid "Make sure your uploaded file is at most %s bytes big." msgstr "আাপনার আপলোড করা ফাইল যেন %s বাইটের থেকে বড় না হয় তা নিশ্চিত করুন।" -#: core/validators.py:371 +#: core/validators.py:375 msgid "The format for this field is wrong." msgstr "এই ক্ষেত্রের জন্য ফরম্যাটটি ভূল।" -#: core/validators.py:386 +#: core/validators.py:390 msgid "This field is invalid." msgstr "এই ক্ষেত্রেটি অবৈধ।" -#: core/validators.py:421 +#: core/validators.py:425 #, python-format msgid "Could not retrieve anything from %s." msgstr "%s থেকে কোন কিছু গ্রহন করতে পারলাম না।" -#: core/validators.py:424 +#: core/validators.py:428 #, python-format msgid "" "The URL %(url)s returned the invalid Content-Type header '%(contenttype)s'." msgstr "" "ইউ.আর.এল %(url)s অবৈধ Content-Type শিরোনাম নিয়ে '%(contenttype)s ফিরে আসল।" -#: core/validators.py:457 +#: core/validators.py:461 #, python-format msgid "" "Please close the unclosed %(tag)s tag from line %(line)s. (Line starts with " @@ -943,7 +947,7 @@ msgstr "" "দয়া করে লাইন %(line)s থেকে খোলা %(tag)s বন্ধ করুন। (\"%(start)s\"এর সঙ্গে লাইন " "আরম্ভ।)" -#: core/validators.py:461 +#: core/validators.py:465 #, python-format msgid "" "Some text starting on line %(line)s is not allowed in that context. (Line " @@ -952,7 +956,7 @@ msgstr "" "লাইন %(line)s এই প্রসঙ্গে কিছু শব্দ লেখার অনুমতি দেওয়া গেল না। (\"%(start)s\"এর " "সঙ্গে লাইন আরম্ভ।)" -#: core/validators.py:466 +#: core/validators.py:470 #, python-format msgid "" "\"%(attr)s\" on line %(line)s is an invalid attribute. (Line starts with \"%" @@ -960,7 +964,7 @@ msgid "" msgstr "" "লাইন %(line)s\"%(attr)s\"একটি অবৈধ বৈশিষ্ট্য। (\"%(start)s\"এর সঙ্গে লাইন আরম্ভ।)" -#: core/validators.py:471 +#: core/validators.py:475 #, python-format msgid "" "\"<%(tag)s>\" on line %(line)s is an invalid tag. (Line starts with \"%" @@ -969,7 +973,7 @@ msgstr "" " %(line)s লাইনে \"<%(tag)s>\" একটি অবৈধ ট্যাগ। (\"%(start)s\"এর সঙ্গে লাইন " "আরম্ভ।)" -#: core/validators.py:475 +#: core/validators.py:479 #, python-format msgid "" "A tag on line %(line)s is missing one or more required attributes. (Line " @@ -978,7 +982,7 @@ msgstr "" "লাইন %(line)s একটি ট্যাগে এক অথবা আরও বেশি প্রয়োজনীয় বিশিষ্ট্যাবলী নেই। (\"%" "(start)s\"এর সঙ্গে লাইন আরম্ভ।)" -#: core/validators.py:480 +#: core/validators.py:484 #, python-format msgid "" "The \"%(attr)s\" attribute on line %(line)s has an invalid value. (Line " diff --git a/django/conf/locale/cs/LC_MESSAGES/django.mo b/django/conf/locale/cs/LC_MESSAGES/django.mo index 2a49d71e2b90e0aacdbabb16846b3a143c63247f..300be1d14a6c0c6c0b35cefa941e0a6658821e5d 100644 GIT binary patch delta 22 dcmaFf$@sjJaRZYkyRm|yk(GhjW=_p}(g0bR2KfL0 delta 22 dcmaFf$@sjJaRZYkyODySnU#U*W=_p}(g0bj2KxX2 diff --git a/django/conf/locale/cs/LC_MESSAGES/django.po b/django/conf/locale/cs/LC_MESSAGES/django.po index 7cf5779d95..110c92a5bc 100644 --- a/django/conf/locale/cs/LC_MESSAGES/django.po +++ b/django/conf/locale/cs/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Django Czech translation\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-11-12 16:05-0600\n" +"POT-Creation-Date: 2005-11-13 12:06-0600\n" "PO-Revision-Date: 2005-11-10 19:29+0100\n" "Last-Translator: Radek Svarz \n" "Language-Team: Czech\n" @@ -730,6 +730,10 @@ msgid "Serbian" msgstr "Srbsky" #: conf/global_settings.py:51 +msgid "Swedish" +msgstr "" + +#: conf/global_settings.py:52 msgid "Simplified Chinese" msgstr "Jednoduchá čínština" @@ -844,16 +848,16 @@ msgstr "Špatně formované XML: %s" msgid "Invalid URL: %s" msgstr "Neplatné URL: %s" -#: core/validators.py:203 +#: core/validators.py:205 core/validators.py:207 #, python-format msgid "The URL %s is a broken link." msgstr "Odkaz na URL %s je rozbitý." -#: core/validators.py:209 +#: core/validators.py:213 msgid "Enter a valid U.S. state abbreviation." msgstr "Vložte platnou zkraku U.S. státu." -#: core/validators.py:224 +#: core/validators.py:228 #, python-format msgid "Watch your mouth! The word %s is not allowed here." msgid_plural "Watch your mouth! The words %s are not allowed here." @@ -861,43 +865,43 @@ msgstr[0] "Mluvte slušně! Slovo %s zde není přípustné." msgstr[1] "Mluvte slušně! Slova %s zde nejsou přípustná." msgstr[2] "Mluvte slušně! Slova %s zde nejsou přípustná." -#: core/validators.py:231 +#: core/validators.py:235 #, python-format msgid "This field must match the '%s' field." msgstr "Toto pole se musí shodovat s polem '%s'." -#: core/validators.py:250 +#: core/validators.py:254 msgid "Please enter something for at least one field." msgstr "Prosíme, vložte něco alespoň pro jedno pole." -#: core/validators.py:259 core/validators.py:270 +#: core/validators.py:263 core/validators.py:274 msgid "Please enter both fields or leave them both empty." msgstr "Prosíme, vložte obě pole, nebo je nechte obě prázdná." -#: core/validators.py:277 +#: core/validators.py:281 #, python-format msgid "This field must be given if %(field)s is %(value)s" msgstr "Toto pole musí být vyplněno, když %(field)s má %(value)s" -#: core/validators.py:289 +#: core/validators.py:293 #, python-format msgid "This field must be given if %(field)s is not %(value)s" msgstr "Toto pole musí být vyplněno, když %(field)s nemá %(value)s" -#: core/validators.py:308 +#: core/validators.py:312 msgid "Duplicate values are not allowed." msgstr "Duplikátní hodnoty nejsou povolené." -#: core/validators.py:331 +#: core/validators.py:335 #, python-format msgid "This value must be a power of %s." msgstr "Tato hodnota musí být mocninou %s." -#: core/validators.py:342 +#: core/validators.py:346 msgid "Please enter a valid decimal number." msgstr "Prosíme, vložte platné číslo." -#: core/validators.py:344 +#: core/validators.py:348 #, python-format msgid "Please enter a valid decimal number with at most %s total digit." msgid_plural "" @@ -906,7 +910,7 @@ msgstr[0] "Prosíme, vložte platné číslo s nejvíce %s cifrou celkem." msgstr[1] "Prosíme, vložte platné číslo s nejvíce %s ciframi celkem." msgstr[2] "Prosíme, vložte platné číslo s nejvíce %s ciframi celkem." -#: core/validators.py:347 +#: core/validators.py:351 #, python-format msgid "Please enter a valid decimal number with at most %s decimal place." msgid_plural "" @@ -920,36 +924,36 @@ msgstr[2] "" "Prosíme, vložte platné číslo s nejvíce %s ciframi za desetinnou čárkou " "celkem." -#: core/validators.py:357 +#: core/validators.py:361 #, python-format msgid "Make sure your uploaded file is at least %s bytes big." msgstr "Ujistěte se, že posílaný soubor je velký nejméně %s bytů." -#: core/validators.py:358 +#: core/validators.py:362 #, python-format msgid "Make sure your uploaded file is at most %s bytes big." msgstr "Ujistěte se, že posílaný soubor je velký nejvíce %s bytů." -#: core/validators.py:371 +#: core/validators.py:375 msgid "The format for this field is wrong." msgstr "Formát pro toto pole je špatný." -#: core/validators.py:386 +#: core/validators.py:390 msgid "This field is invalid." msgstr "Toto pole není platné." -#: core/validators.py:421 +#: core/validators.py:425 #, python-format msgid "Could not retrieve anything from %s." msgstr "Nemohl jsem získat nic z %s." -#: core/validators.py:424 +#: core/validators.py:428 #, python-format msgid "" "The URL %(url)s returned the invalid Content-Type header '%(contenttype)s'." msgstr "URL %(url)s vrátilo neplatnou hlavičku Content-Type '%(contenttype)s'." -#: core/validators.py:457 +#: core/validators.py:461 #, python-format msgid "" "Please close the unclosed %(tag)s tag from line %(line)s. (Line starts with " @@ -958,7 +962,7 @@ msgstr "" "Prosíme, zavřete nezavřenou značku %(tag)s z řádky %(line)s. (Řádka začíná s " "\"%(start)s\".)" -#: core/validators.py:461 +#: core/validators.py:465 #, python-format msgid "" "Some text starting on line %(line)s is not allowed in that context. (Line " @@ -967,7 +971,7 @@ msgstr "" "Nějaký text začínající na řádce %(line)s není povolen v tomto kontextu. " "(Řádka začíná s \"%(start)s\".)" -#: core/validators.py:466 +#: core/validators.py:470 #, python-format msgid "" "\"%(attr)s\" on line %(line)s is an invalid attribute. (Line starts with \"%" @@ -976,7 +980,7 @@ msgstr "" "\"%(attr)s\" na řádce %(line)s je neplatný atribut. (Řádka začíná s \"%" "(start)s\".)" -#: core/validators.py:471 +#: core/validators.py:475 #, python-format msgid "" "\"<%(tag)s>\" on line %(line)s is an invalid tag. (Line starts with \"%" @@ -985,7 +989,7 @@ msgstr "" "\"<%(tag)s>\" na řádce %(line)s je neplatná značka. (Řádka začíná s \"%" "(start)s\".)" -#: core/validators.py:475 +#: core/validators.py:479 #, python-format msgid "" "A tag on line %(line)s is missing one or more required attributes. (Line " @@ -994,7 +998,7 @@ msgstr "" "Značce na řádce %(line)s schází jeden nebo více požadovaných atributů. " "(Řádka začíná s \"%(start)s\".)" -#: core/validators.py:480 +#: core/validators.py:484 #, python-format msgid "" "The \"%(attr)s\" attribute on line %(line)s has an invalid value. (Line " diff --git a/django/conf/locale/cy/LC_MESSAGES/django.mo b/django/conf/locale/cy/LC_MESSAGES/django.mo index 70ecc2fdb632dd4ed21eba3e006cd8064cf52dc8..b15ee65ada47b515e00bc4cbb5d3d1ed879e40e0 100644 GIT binary patch delta 22 dcmdnm%DA\n" "Language-Team: Cymraeg \n" @@ -726,6 +726,10 @@ msgid "Serbian" msgstr "Serbeg" #: conf/global_settings.py:51 +msgid "Swedish" +msgstr "" + +#: conf/global_settings.py:52 msgid "Simplified Chinese" msgstr "Tsieinëeg Symledig" @@ -842,59 +846,59 @@ msgstr "XML wedi ffurfio'n wael: %s" msgid "Invalid URL: %s" msgstr "URL annilys: %s" -#: core/validators.py:203 +#: core/validators.py:205 core/validators.py:207 #, python-format msgid "The URL %s is a broken link." msgstr "Mae'r URL %s yn gyswllt toredig." -#: core/validators.py:209 +#: core/validators.py:213 msgid "Enter a valid U.S. state abbreviation." msgstr "Rhowch talfyriad dalaith U.S. dilys." -#: core/validators.py:224 +#: core/validators.py:228 #, python-format msgid "Watch your mouth! The word %s is not allowed here." msgid_plural "Watch your mouth! The words %s are not allowed here." msgstr[0] "Gwyliwch eich ceg! Ni chaniateir y gair %s yma." msgstr[1] "Gwyliwch eich ceg! Ni chaniateir y geiriau %s yma." -#: core/validators.py:231 +#: core/validators.py:235 #, python-format msgid "This field must match the '%s' field." msgstr "Rhaid i'r faes yma cydweddu'r faes '%s'." -#: core/validators.py:250 +#: core/validators.py:254 msgid "Please enter something for at least one field." msgstr "Rhowch rhywbeth am un maes o leiaf, os gwelwch yn dda." -#: core/validators.py:259 core/validators.py:270 +#: core/validators.py:263 core/validators.py:274 msgid "Please enter both fields or leave them both empty." msgstr "Llenwch y ddwy faes, neu gadewch nhw'n wag, os gwelwch yn dda." -#: core/validators.py:277 +#: core/validators.py:281 #, python-format msgid "This field must be given if %(field)s is %(value)s" msgstr "Rhaid roi'r faes yma os mae %(field)s yn %(value)s" -#: core/validators.py:289 +#: core/validators.py:293 #, python-format msgid "This field must be given if %(field)s is not %(value)s" msgstr "Rhaid roi'r faes yma os mae %(field)s dim yn %(value)s" -#: core/validators.py:308 +#: core/validators.py:312 msgid "Duplicate values are not allowed." msgstr "Ni chaniateir gwerthau ddyblyg." -#: core/validators.py:331 +#: core/validators.py:335 #, python-format msgid "This value must be a power of %s." msgstr "Rhaid i'r gwerth yma fod yn bŵer o %s." -#: core/validators.py:342 +#: core/validators.py:346 msgid "Please enter a valid decimal number." msgstr "Rhowch rhif degol dilys, os gwelwch yn dda." -#: core/validators.py:344 +#: core/validators.py:348 #, python-format msgid "Please enter a valid decimal number with at most %s total digit." msgid_plural "" @@ -902,7 +906,7 @@ msgid_plural "" msgstr[0] "Rhowch rhif degol dilys gyda cyfanswm %s digidau o fwyaf." msgstr[1] "Rhowch rhif degol dilys gyda cyfanswm %s digid o fwyaf." -#: core/validators.py:347 +#: core/validators.py:351 #, python-format msgid "Please enter a valid decimal number with at most %s decimal place." msgid_plural "" @@ -912,37 +916,37 @@ msgstr[0] "" msgstr[1] "" "Rhowch rif degol dilydd gyda o fwyaf %s lleoedd degol, os gwelwch yn dda." -#: core/validators.py:357 +#: core/validators.py:361 #, python-format msgid "Make sure your uploaded file is at least %s bytes big." msgstr "Sicrhewch bod yr ffeil a llwythwyd yn o leiaf %s beit." -#: core/validators.py:358 +#: core/validators.py:362 #, python-format msgid "Make sure your uploaded file is at most %s bytes big." msgstr "Sicrhewch bod yr ffeil a llwythwyd yn %s beit o fwyaf." -#: core/validators.py:371 +#: core/validators.py:375 msgid "The format for this field is wrong." msgstr "Mae'r fformat i'r faes yma yn anghywir." -#: core/validators.py:386 +#: core/validators.py:390 msgid "This field is invalid." msgstr "Mae'r faes yma yn annilydd." -#: core/validators.py:421 +#: core/validators.py:425 #, python-format msgid "Could not retrieve anything from %s." msgstr "Ni gellir adalw unrhywbeth o %s." -#: core/validators.py:424 +#: core/validators.py:428 #, python-format msgid "" "The URL %(url)s returned the invalid Content-Type header '%(contenttype)s'." msgstr "" "Dychwelodd yr URL %(url)s y pennawd Content-Type annilys '%(contenttype)s'." -#: core/validators.py:457 +#: core/validators.py:461 #, python-format msgid "" "Please close the unclosed %(tag)s tag from line %(line)s. (Line starts with " @@ -951,7 +955,7 @@ msgstr "" "Caewch y tag anghaedig %(tag)s o linell %(line)s. (Linell yn ddechrau â \"%" "(start)s\".)" -#: core/validators.py:461 +#: core/validators.py:465 #, python-format msgid "" "Some text starting on line %(line)s is not allowed in that context. (Line " @@ -960,7 +964,7 @@ msgstr "" "Ni chaniateir rhai o'r destun ar linell %(line)s yn y gyd-destun yna. " "(Linell yn ddechrau â \"%(start)s\".)" -#: core/validators.py:466 +#: core/validators.py:470 #, python-format msgid "" "\"%(attr)s\" on line %(line)s is an invalid attribute. (Line starts with \"%" @@ -969,7 +973,7 @@ msgstr "" "Mae \"%(attr)s\" ar lein %(line)s yn priodoledd annilydd. (Linell yn " "ddechrau â \"%(start)s\".)" -#: core/validators.py:471 +#: core/validators.py:475 #, python-format msgid "" "\"<%(tag)s>\" on line %(line)s is an invalid tag. (Line starts with \"%" @@ -978,7 +982,7 @@ msgstr "" "Mae \"<%(tag)s>\" ar lein %(line)s yn tag annilydd. (Linell yn ddechrau â \"%" "(start)s\".)" -#: core/validators.py:475 +#: core/validators.py:479 #, python-format msgid "" "A tag on line %(line)s is missing one or more required attributes. (Line " @@ -987,7 +991,7 @@ msgstr "" "Mae tag ar lein %(line)s yn eisiau un new fwy priodoleddau gofynnol. (Linell " "yn ddechrau â \"%(start)s\".)" -#: core/validators.py:480 +#: core/validators.py:484 #, python-format msgid "" "The \"%(attr)s\" attribute on line %(line)s has an invalid value. (Line " diff --git a/django/conf/locale/de/LC_MESSAGES/django.mo b/django/conf/locale/de/LC_MESSAGES/django.mo index 318a9a269e855937b86a676dcd9211d72fab94ce..7d333c52660086c6fb08b3c274cbd18fb16565f1 100644 GIT binary patch delta 4436 zcmYk<3s6>N9>?)NiGT|yV`;kAp#z7t2#(OcQtKV^dypQrQ)Ih5+ z4QF5mZp8ukF?PqBs1=L8({DE$b$twXd^~p0M*ehOvkrz5MIQA7@p)0Fb}mi3X)iV-B3h@8XAd_ScckvlQ9!(Fb21w zp5;E&zz(5S;IJznN40kvb^itIhhL)Zk79>wf=S4jEVCQyuM>|^!Q`zJ)j!^Nbd&zD$qh_)dHG^%g zyc_jQ_oD{(zB_*unUtMGE&bQ1x8#OXqtc4TqxM!Js@>(N`gN}CZ6c!?)?+?4qL$`s zoQVHHHnLUlDiq@!)U#|sJ(};3MX(fJ4ejbmSc2+sE$YV2sJ&2!T7fsP0M8@0T4#FI3g)5)Fq(r_ zc$srOhEcA^82Y#EWFqh#497#LXL=OX(Wj^e{^;tjy7Dd5Cc2H<)g62J*CnAgZ#rrM zIj%euHNYa&L}sC<3+IvPfF7!&^{!lxp_F&Ja+5p%E^44hFanP|&!RTrXRiEL)C6v! z+Wjwfz{uYI7qLrk)?W?vrb08$L0$L|s^MbP07j!mT#mYKBF5q`P#r9D=Qp74dkK4l zn7xM8lv^^*`eH^Oe~*;m2+9Zhu>Ld1{6Gc!&#Jjf&t?-wVjZgEomh)+q6XBLms!{4 zpk|zln#c%@#?kJ4CGtCC)u>0b9Qj$X&6tc$9vRK}r1K)G;V)eIDrz7%Q5}Den&JQO zLyX{6c^q3&KUxv}&G;FyL`=sVjKOiJx2YO+{|3xOua1m%{dp|GFn*eNOje5emGU@f zr0?PVcnKfGFka^2_y{h*ji>>(<0nun5rO(OjOEaXg{X;ML!JLSvKKu2-c^Lsx@I1Q zx*#5hVG?QueujD!)36w4qGom&m*5$U!$Q7J>ZlAgph{G`(_DF$b1p{c{a-{TiVIc- zD|j}TLAe37BF9i2cH*<81}jh>oJpvGO+j@~gBs8R)U#fTEUMMJ@+s8ymr?Ef86)W5 zuDObvsF{Ch}mAOMD6-0HiEu%$*7Kppf*<_Y9ddf z9$Be7U*XPA#U$!yJ;?fNq%TmR1{?4$+=p7K6R44%M>RZPsNe8V)cHcxqZo<205%FW z(A78<526OxHP4@UHZn(Bh`h;mFpu@Whs+f!((nh|fjyaa1)jjWG5I00ComU_a1HAE zHk^(Bz;c{A%zx&s*o*QlEX2fz85~YT4ZImOp%#yfW^fwE;aSupNqfYMtd*cH+=BYB zyz0t(FgOETO8pgl94iXUR$vqAzEpbG+t3e#j|jEWg~*F%-WW2xIko{a@ECT(>!{ru z#*WbqgHfCB32cw!Fcv4FI+~4o3l^hhxDxefH)3$$sDbQp=bQa{&sxZ67q|Hp_6=(D z+(I?{Z`8;`9`ip`9kD&-0@MJ8qpll=>YxfWfEo_z5lP1Q3Fk= z1`nWaXhGd@1~rq*s1B~8Hq}kkKqHI%>pG*(r=afdgW)&`)qXyzy&}|gr5LNFo=ip~ znuF?S5r$xWV0Lt}w~3t6Dxcsn!131vqYoyYm0cuSh=su#z6Q9L(Dqc?Nvt525pBe7 zqLNV3dMUAs?U%%96-dqcAJ058dx-8tF_A&=1qr4!juRcTAJLb1n>a_j zL;N(&rLdY^{TsCo-_%V%lnT>%xa9H+CH=1#zuw@NXgC_(tl9%=e?hf TiyT!oJ$SBadUNK`!5#k(?hw>r delta 4401 zcmYk<2~ZYg9LMno5fMcW5f5IBBQAv!FYo|DQSc^8CG)~eP0jMeG;ozn@<6FKj}j}* z#4F1%%dD_6%M7K%t}&bJu$dfl(#8&R`u^U1n(-O`@8@}T_c{03U3_$%-?_DZ&e_&Y z*BjDlBAPhb%$P(!WA1OIqomfx37UPL#{dFRP15DlwM0GF`HIV73%`_j?;8M)N zwKxVFFcy=!;VW=x`#V370)1(H_hYSU7mcm%Wp*{HoR8xye>@1lRxK&Dt1vR++q z3DUONhZPOKsgE3Pa00s^FNME zCI^ndCaG4rie%mZJ7R8EOSqVICets+hk~D;P)b8bB65TH-0zIoOPHIqKdo z$L92Jykr8g26ZpDqdMA;YM|a8KVi#Xp&IxRwVN;7R9`fJ8fo!twQQ4M!T4Im3O;(n;>3NQ>uqB@vj&(A~ETZA|J@f6{7$~#hd*w}h^usO7GMi3Lv>tqZ&SH%O_9+`4ZLfIn)f#<3YTHgRqvZtdG?tjYm_|V}J&8L14F=&kx9pe;WHj?D_JV&fm$E;-Y6S+MZbcyu z#Zjo4ZN-Q2WemqO-cIT$2Q{D}sCEl&d9-ybY9&fASkM1-d!Q6kIN_jHWGAY_tEdL^ zczx-GGYB=XVW_s0y>jz05+|cJ?;_NaZoy!zMGfcxYGvNTfp{A4MNcnxk1R!}iUT{zEWr$R zhF0KJ)T{R_Y9Jl^@QKAC*cz{(-gJR%2z4Bfno$~RB0W*JEZd&Xv*(AShvTDB1D)HK z^;d%q2ioHksHNJ28tFk)!=5a+;RMtzNJBQfNkbFdM|VE4h*8GA27@O}7APIF{ zCaQy6)BuKIQ!GZ+ABP&qR8;->*bEn=>Mz4EJ^!o7sKRDcg%?mWsY7*e1huI?Mh)~l z>bl?T`F~OMg9_a95vUG4sOu6??Q}z}U=C_Pg&3@kMv?KuC%wyB#W-uoDJ^sH{XW6( z5n_q2p#x##Y1+kd;(EE6Zr`3Dp<`POD zcn^hi$^MiauNz;|qus~m-^K|xABV3IcMyw+8X}N*!_I@80G5!Fh zF@zrGJmPUe>0Kh6xK#zxB%i{h$y0*=tX=+bRyCTr9|RYVuK1ct@j=e_e3_>l0Oy`>xgIT{tACG dq;7p|af`riv0XFzr1z}5+_@;ct}rX3<$q4u$0Gm$ diff --git a/django/conf/locale/de/LC_MESSAGES/django.po b/django/conf/locale/de/LC_MESSAGES/django.po index 8bfef4dc4b..e4a9c8dbd8 100644 --- a/django/conf/locale/de/LC_MESSAGES/django.po +++ b/django/conf/locale/de/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Django 1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-11-12 16:05-0600\n" +"POT-Creation-Date: 2005-11-13 12:06-0600\n" "PO-Revision-Date: 2005-11-06 13:54+0100\n" "Last-Translator: Lukas Kolbe \n" "Language-Team: \n" @@ -730,6 +730,10 @@ msgid "Serbian" msgstr "Serbisch" #: conf/global_settings.py:51 +msgid "Swedish" +msgstr "Schwedisch" + +#: conf/global_settings.py:52 msgid "Simplified Chinese" msgstr "vereinfachtes Chinesisch" @@ -848,61 +852,61 @@ msgstr "Ung msgid "Invalid URL: %s" msgstr "Ungltige URL: %s" -#: core/validators.py:203 +#: core/validators.py:205 core/validators.py:207 #, python-format msgid "The URL %s is a broken link." msgstr "Die URL %s funktioniert nicht." -#: core/validators.py:209 +#: core/validators.py:213 msgid "Enter a valid U.S. state abbreviation." msgstr "Bitte eine gltige Abkrzung fr einen US-Staat eingeben." -#: core/validators.py:224 +#: core/validators.py:228 #, python-format msgid "Watch your mouth! The word %s is not allowed here." msgid_plural "Watch your mouth! The words %s are not allowed here." msgstr[0] "Keine Schimpfworte! Das Wort %s ist hier nicht gern gesehen!" msgstr[1] "Keine Schimpfworte! Die Wrter %s sind hier nicht gern gesehen!" -#: core/validators.py:231 +#: core/validators.py:235 #, python-format msgid "This field must match the '%s' field." msgstr "Dieses Feld muss zum Feld '%s' passen." -#: core/validators.py:250 +#: core/validators.py:254 msgid "Please enter something for at least one field." msgstr "Bitte mindestens eines der Felder ausfllen." -#: core/validators.py:259 core/validators.py:270 +#: core/validators.py:263 core/validators.py:274 msgid "Please enter both fields or leave them both empty." msgstr "Bitte entweder beide Felder ausfllen, oder beide leer lassen." -#: core/validators.py:277 +#: core/validators.py:281 #, python-format msgid "This field must be given if %(field)s is %(value)s" msgstr "" "Dieses Feld muss gefllt sein, wenn Feld %(field)s den Wert %(value)s hat." -#: core/validators.py:289 +#: core/validators.py:293 #, python-format msgid "This field must be given if %(field)s is not %(value)s" msgstr "" "Dieses Feld muss gefllt sein, wenn Feld %(field)s nicht %(value)s ist." -#: core/validators.py:308 +#: core/validators.py:312 msgid "Duplicate values are not allowed." msgstr "Doppelte Werte sind hier nicht erlaubt." -#: core/validators.py:331 +#: core/validators.py:335 #, python-format msgid "This value must be a power of %s." msgstr "Dieser Wert muss eine Potenz von %s sein." -#: core/validators.py:342 +#: core/validators.py:346 msgid "Please enter a valid decimal number." msgstr "Bitte eine gltige Dezimalzahl eingeben." -#: core/validators.py:344 +#: core/validators.py:348 #, python-format msgid "Please enter a valid decimal number with at most %s total digit." msgid_plural "" @@ -910,7 +914,7 @@ msgid_plural "" msgstr[0] "Bitte eine gltige Dezimalzahl mit maximal %s Ziffer eingeben." msgstr[1] "Bitte eine gltige Dezimalzahl mit maximal %s Ziffern eingeben." -#: core/validators.py:347 +#: core/validators.py:351 #, python-format msgid "Please enter a valid decimal number with at most %s decimal place." msgid_plural "" @@ -920,39 +924,39 @@ msgstr[0] "" msgstr[1] "" "Bitte eine gltige Dezimalzahl mit maximal %s Dezimalstellen eingeben." -#: core/validators.py:357 +#: core/validators.py:361 #, python-format msgid "Make sure your uploaded file is at least %s bytes big." msgstr "" "Bitte sicherstellen, da die hochgeladene Datei mindestens %s Bytes gross " "ist." -#: core/validators.py:358 +#: core/validators.py:362 #, python-format msgid "Make sure your uploaded file is at most %s bytes big." msgstr "" "Bitte sicherstellen, da die hochgeladene Datei maximal %s Bytes gross ist." -#: core/validators.py:371 +#: core/validators.py:375 msgid "The format for this field is wrong." msgstr "Das Format fr dieses Feld ist falsch." -#: core/validators.py:386 +#: core/validators.py:390 msgid "This field is invalid." msgstr "Dieses Feld ist ungltig." -#: core/validators.py:421 +#: core/validators.py:425 #, python-format msgid "Could not retrieve anything from %s." msgstr "Konnte nichts von %s empfangen." -#: core/validators.py:424 +#: core/validators.py:428 #, python-format msgid "" "The URL %(url)s returned the invalid Content-Type header '%(contenttype)s'." msgstr "Die URL %(url)s lieferte den falschen Content-Type '%(contenttype)s'." -#: core/validators.py:457 +#: core/validators.py:461 #, python-format msgid "" "Please close the unclosed %(tag)s tag from line %(line)s. (Line starts with " @@ -961,7 +965,7 @@ msgstr "" "Bitte das ungeschlossene %(tag)s Tag in Zeile %(line)s schlieen. Die Zeile " "beginnt mit \"%(start)s\"." -#: core/validators.py:461 +#: core/validators.py:465 #, python-format msgid "" "Some text starting on line %(line)s is not allowed in that context. (Line " @@ -970,7 +974,7 @@ msgstr "" "In Zeile %(line)s ist Text, der nicht in dem Kontext erlaubt ist. Die Zeile " "beginnt mit \"%(start)s\"." -#: core/validators.py:466 +#: core/validators.py:470 #, python-format msgid "" "\"%(attr)s\" on line %(line)s is an invalid attribute. (Line starts with \"%" @@ -979,7 +983,7 @@ msgstr "" "Das Attribute %(attr)s in Zeile %(line)s ist ungltig. Die Zeile beginnt mit " "\"%(start)s\"." -#: core/validators.py:471 +#: core/validators.py:475 #, python-format msgid "" "\"<%(tag)s>\" on line %(line)s is an invalid tag. (Line starts with \"%" @@ -988,7 +992,7 @@ msgstr "" "<%(tag)s> in Zeile %(line)s ist ungltig. Die Zeile beginnt mit \"%(start)s" "\"." -#: core/validators.py:475 +#: core/validators.py:479 #, python-format msgid "" "A tag on line %(line)s is missing one or more required attributes. (Line " @@ -997,7 +1001,7 @@ msgstr "" "Ein Tag in Zeile %(line)s hat eines oder mehrere Pflichtattribute nicht. Die " "Zeile beginnt mit \"%(start)s\"." -#: core/validators.py:480 +#: core/validators.py:484 #, python-format msgid "" "The \"%(attr)s\" attribute on line %(line)s has an invalid value. (Line " diff --git a/django/conf/locale/en/LC_MESSAGES/django.mo b/django/conf/locale/en/LC_MESSAGES/django.mo index be55bb10ca155a79040b4b32806d7859c05f3be2..e1f8b8e7e28f55cbc358eb97e104de0e76d6b0db 100644 GIT binary patch delta 16 XcmbQiGJ|D<3?qxNf}zo51;!r$BrpVQ delta 16 XcmbQiGJ|D<3?qw?f}z=D1;!r$Bs>If diff --git a/django/conf/locale/en/LC_MESSAGES/django.po b/django/conf/locale/en/LC_MESSAGES/django.po index c13bf6a970..c0e5127280 100644 --- a/django/conf/locale/en/LC_MESSAGES/django.po +++ b/django/conf/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-11-12 16:05-0600\n" +"POT-Creation-Date: 2005-11-13 12:05-0600\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -701,6 +701,10 @@ msgid "Serbian" msgstr "" #: conf/global_settings.py:51 +msgid "Swedish" +msgstr "" + +#: conf/global_settings.py:52 msgid "Simplified Chinese" msgstr "" @@ -810,59 +814,59 @@ msgstr "" msgid "Invalid URL: %s" msgstr "" -#: core/validators.py:203 +#: core/validators.py:205 core/validators.py:207 #, python-format msgid "The URL %s is a broken link." msgstr "" -#: core/validators.py:209 +#: core/validators.py:213 msgid "Enter a valid U.S. state abbreviation." msgstr "" -#: core/validators.py:224 +#: core/validators.py:228 #, python-format msgid "Watch your mouth! The word %s is not allowed here." msgid_plural "Watch your mouth! The words %s are not allowed here." msgstr[0] "" msgstr[1] "" -#: core/validators.py:231 +#: core/validators.py:235 #, python-format msgid "This field must match the '%s' field." msgstr "" -#: core/validators.py:250 +#: core/validators.py:254 msgid "Please enter something for at least one field." msgstr "" -#: core/validators.py:259 core/validators.py:270 +#: core/validators.py:263 core/validators.py:274 msgid "Please enter both fields or leave them both empty." msgstr "" -#: core/validators.py:277 +#: core/validators.py:281 #, python-format msgid "This field must be given if %(field)s is %(value)s" msgstr "" -#: core/validators.py:289 +#: core/validators.py:293 #, python-format msgid "This field must be given if %(field)s is not %(value)s" msgstr "" -#: core/validators.py:308 +#: core/validators.py:312 msgid "Duplicate values are not allowed." msgstr "" -#: core/validators.py:331 +#: core/validators.py:335 #, python-format msgid "This value must be a power of %s." msgstr "" -#: core/validators.py:342 +#: core/validators.py:346 msgid "Please enter a valid decimal number." msgstr "" -#: core/validators.py:344 +#: core/validators.py:348 #, python-format msgid "Please enter a valid decimal number with at most %s total digit." msgid_plural "" @@ -870,7 +874,7 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: core/validators.py:347 +#: core/validators.py:351 #, python-format msgid "Please enter a valid decimal number with at most %s decimal place." msgid_plural "" @@ -878,71 +882,71 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: core/validators.py:357 +#: core/validators.py:361 #, python-format msgid "Make sure your uploaded file is at least %s bytes big." msgstr "" -#: core/validators.py:358 +#: core/validators.py:362 #, python-format msgid "Make sure your uploaded file is at most %s bytes big." msgstr "" -#: core/validators.py:371 +#: core/validators.py:375 msgid "The format for this field is wrong." msgstr "" -#: core/validators.py:386 +#: core/validators.py:390 msgid "This field is invalid." msgstr "" -#: core/validators.py:421 +#: core/validators.py:425 #, python-format msgid "Could not retrieve anything from %s." msgstr "" -#: core/validators.py:424 +#: core/validators.py:428 #, python-format msgid "" "The URL %(url)s returned the invalid Content-Type header '%(contenttype)s'." msgstr "" -#: core/validators.py:457 +#: core/validators.py:461 #, python-format msgid "" "Please close the unclosed %(tag)s tag from line %(line)s. (Line starts with " "\"%(start)s\".)" msgstr "" -#: core/validators.py:461 +#: core/validators.py:465 #, python-format msgid "" "Some text starting on line %(line)s is not allowed in that context. (Line " "starts with \"%(start)s\".)" msgstr "" -#: core/validators.py:466 +#: core/validators.py:470 #, python-format msgid "" "\"%(attr)s\" on line %(line)s is an invalid attribute. (Line starts with \"%" "(start)s\".)" msgstr "" -#: core/validators.py:471 +#: core/validators.py:475 #, python-format msgid "" "\"<%(tag)s>\" on line %(line)s is an invalid tag. (Line starts with \"%" "(start)s\".)" msgstr "" -#: core/validators.py:475 +#: core/validators.py:479 #, python-format msgid "" "A tag on line %(line)s is missing one or more required attributes. (Line " "starts with \"%(start)s\".)" msgstr "" -#: core/validators.py:480 +#: core/validators.py:484 #, python-format msgid "" "The \"%(attr)s\" attribute on line %(line)s has an invalid value. (Line " diff --git a/django/conf/locale/es/LC_MESSAGES/django.mo b/django/conf/locale/es/LC_MESSAGES/django.mo index b3bfb579e56f8c59b4c3f0d29d4cfc0d1912ef18..f67c04932fa691e80873da63063119b34442c62f 100644 GIT binary patch delta 20 bcmcbtaam)-J8pJk1w$h%1GCLvx#KthQuzlK delta 20 bcmcbtaam)-J8pI(1w%6{1Jli4x#KthQws+e diff --git a/django/conf/locale/es/LC_MESSAGES/django.po b/django/conf/locale/es/LC_MESSAGES/django.po index 16ba503d39..9e54b32e9f 100644 --- a/django/conf/locale/es/LC_MESSAGES/django.po +++ b/django/conf/locale/es/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: django\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-11-12 16:05-0600\n" +"POT-Creation-Date: 2005-11-13 12:06-0600\n" "PO-Revision-Date: 2005-10-04 20:59GMT\n" "Last-Translator: Ricardo Javier Crdenes Medina \n" @@ -725,6 +725,10 @@ msgid "Serbian" msgstr "" #: conf/global_settings.py:51 +msgid "Swedish" +msgstr "" + +#: conf/global_settings.py:52 msgid "Simplified Chinese" msgstr "" @@ -836,59 +840,59 @@ msgstr "" msgid "Invalid URL: %s" msgstr "" -#: core/validators.py:203 +#: core/validators.py:205 core/validators.py:207 #, python-format msgid "The URL %s is a broken link." msgstr "" -#: core/validators.py:209 +#: core/validators.py:213 msgid "Enter a valid U.S. state abbreviation." msgstr "" -#: core/validators.py:224 +#: core/validators.py:228 #, python-format msgid "Watch your mouth! The word %s is not allowed here." msgid_plural "Watch your mouth! The words %s are not allowed here." msgstr[0] "" msgstr[1] "" -#: core/validators.py:231 +#: core/validators.py:235 #, python-format msgid "This field must match the '%s' field." msgstr "" -#: core/validators.py:250 +#: core/validators.py:254 msgid "Please enter something for at least one field." msgstr "" -#: core/validators.py:259 core/validators.py:270 +#: core/validators.py:263 core/validators.py:274 msgid "Please enter both fields or leave them both empty." msgstr "" -#: core/validators.py:277 +#: core/validators.py:281 #, python-format msgid "This field must be given if %(field)s is %(value)s" msgstr "" -#: core/validators.py:289 +#: core/validators.py:293 #, python-format msgid "This field must be given if %(field)s is not %(value)s" msgstr "" -#: core/validators.py:308 +#: core/validators.py:312 msgid "Duplicate values are not allowed." msgstr "" -#: core/validators.py:331 +#: core/validators.py:335 #, python-format msgid "This value must be a power of %s." msgstr "" -#: core/validators.py:342 +#: core/validators.py:346 msgid "Please enter a valid decimal number." msgstr "" -#: core/validators.py:344 +#: core/validators.py:348 #, python-format msgid "Please enter a valid decimal number with at most %s total digit." msgid_plural "" @@ -896,7 +900,7 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: core/validators.py:347 +#: core/validators.py:351 #, python-format msgid "Please enter a valid decimal number with at most %s decimal place." msgid_plural "" @@ -904,71 +908,71 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: core/validators.py:357 +#: core/validators.py:361 #, python-format msgid "Make sure your uploaded file is at least %s bytes big." msgstr "" -#: core/validators.py:358 +#: core/validators.py:362 #, python-format msgid "Make sure your uploaded file is at most %s bytes big." msgstr "" -#: core/validators.py:371 +#: core/validators.py:375 msgid "The format for this field is wrong." msgstr "" -#: core/validators.py:386 +#: core/validators.py:390 msgid "This field is invalid." msgstr "" -#: core/validators.py:421 +#: core/validators.py:425 #, python-format msgid "Could not retrieve anything from %s." msgstr "" -#: core/validators.py:424 +#: core/validators.py:428 #, python-format msgid "" "The URL %(url)s returned the invalid Content-Type header '%(contenttype)s'." msgstr "" -#: core/validators.py:457 +#: core/validators.py:461 #, python-format msgid "" "Please close the unclosed %(tag)s tag from line %(line)s. (Line starts with " "\"%(start)s\".)" msgstr "" -#: core/validators.py:461 +#: core/validators.py:465 #, python-format msgid "" "Some text starting on line %(line)s is not allowed in that context. (Line " "starts with \"%(start)s\".)" msgstr "" -#: core/validators.py:466 +#: core/validators.py:470 #, python-format msgid "" "\"%(attr)s\" on line %(line)s is an invalid attribute. (Line starts with \"%" "(start)s\".)" msgstr "" -#: core/validators.py:471 +#: core/validators.py:475 #, python-format msgid "" "\"<%(tag)s>\" on line %(line)s is an invalid tag. (Line starts with \"%" "(start)s\".)" msgstr "" -#: core/validators.py:475 +#: core/validators.py:479 #, python-format msgid "" "A tag on line %(line)s is missing one or more required attributes. (Line " "starts with \"%(start)s\".)" msgstr "" -#: core/validators.py:480 +#: core/validators.py:484 #, python-format msgid "" "The \"%(attr)s\" attribute on line %(line)s has an invalid value. (Line " diff --git a/django/conf/locale/fr/LC_MESSAGES/django.mo b/django/conf/locale/fr/LC_MESSAGES/django.mo index 5b8a618c290b74e50b593145f4390ac53f4b6a52..9dfdac1c52230ce0d66dd916a989aaf7191ad14d 100644 GIT binary patch delta 22 dcmeC}WbEx^+`y{AZmeKvWMyEsnMb2h1^`N)1?>O; delta 22 dcmeC}WbEx^+`y{AZlqvnW@TWynMb2h1^`O11@8a= diff --git a/django/conf/locale/fr/LC_MESSAGES/django.po b/django/conf/locale/fr/LC_MESSAGES/django.po index 4bdced2af5..0b09c2eaed 100644 --- a/django/conf/locale/fr/LC_MESSAGES/django.po +++ b/django/conf/locale/fr/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: django\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-11-12 16:05-0600\n" +"POT-Creation-Date: 2005-11-13 12:06-0600\n" "PO-Revision-Date: 2005-10-18 12:27+0200\n" "Last-Translator: Laurent Rahuel \n" "Language-Team: franais \n" @@ -736,6 +736,10 @@ msgid "Serbian" msgstr "Serbe" #: conf/global_settings.py:51 +msgid "Swedish" +msgstr "" + +#: conf/global_settings.py:52 msgid "Simplified Chinese" msgstr "" @@ -854,59 +858,59 @@ msgstr "XML mal form msgid "Invalid URL: %s" msgstr "URL invalide: %s" -#: core/validators.py:203 +#: core/validators.py:205 core/validators.py:207 #, python-format msgid "The URL %s is a broken link." msgstr "L'URL %s est un lien cass." -#: core/validators.py:209 +#: core/validators.py:213 msgid "Enter a valid U.S. state abbreviation." msgstr "Entrez une abrviation d'tat amricain valide." -#: core/validators.py:224 +#: core/validators.py:228 #, python-format msgid "Watch your mouth! The word %s is not allowed here." msgid_plural "Watch your mouth! The words %s are not allowed here." msgstr[0] "Attention votre langage,! Le mot %s n'est pas autoris ici." msgstr[1] "Attention votre langage,! Les mots %s ne sont pas autoriss ici." -#: core/validators.py:231 +#: core/validators.py:235 #, python-format msgid "This field must match the '%s' field." msgstr "Ce champ doit correspondre au champ '%s'." -#: core/validators.py:250 +#: core/validators.py:254 msgid "Please enter something for at least one field." msgstr "S'il vous plat, saisissez au moins une valeur dans un des champs." -#: core/validators.py:259 core/validators.py:270 +#: core/validators.py:263 core/validators.py:274 msgid "Please enter both fields or leave them both empty." msgstr "S'il vous plat, renseignez chaque champ ou laissez les deux vides." -#: core/validators.py:277 +#: core/validators.py:281 #, python-format msgid "This field must be given if %(field)s is %(value)s" msgstr "Ce champ doit tre renseign si %(field)s vaut %(value)s" -#: core/validators.py:289 +#: core/validators.py:293 #, python-format msgid "This field must be given if %(field)s is not %(value)s" msgstr "Ce champ doit tre renseign si %(field)s ne vaut pas %(value)s" -#: core/validators.py:308 +#: core/validators.py:312 msgid "Duplicate values are not allowed." msgstr "Des valeurs identiques ne sont pas autorises." -#: core/validators.py:331 +#: core/validators.py:335 #, python-format msgid "This value must be a power of %s." msgstr "Cette valeur doit tre une puissance de %s." -#: core/validators.py:342 +#: core/validators.py:346 msgid "Please enter a valid decimal number." msgstr "S'il vous plat, saisissez un nombre dcimal valide." -#: core/validators.py:344 +#: core/validators.py:348 #, python-format msgid "Please enter a valid decimal number with at most %s total digit." msgid_plural "" @@ -916,7 +920,7 @@ msgstr[0] "" msgstr[1] "" "S'il vous plat, saisissez un nombre dcimal valide avec au plus %s chiffres." -#: core/validators.py:347 +#: core/validators.py:351 #, python-format msgid "Please enter a valid decimal number with at most %s decimal place." msgid_plural "" @@ -926,32 +930,32 @@ msgstr[0] "" msgstr[1] "" "S'il vous plat, saisissez un nombre dcimal valide avec au plus %s dcimales" -#: core/validators.py:357 +#: core/validators.py:361 #, python-format msgid "Make sure your uploaded file is at least %s bytes big." msgstr "" "Vrifiez que le fichier transfr fait au moins une taille de %s octets." -#: core/validators.py:358 +#: core/validators.py:362 #, python-format msgid "Make sure your uploaded file is at most %s bytes big." msgstr "" "Vrifiez que le fichier transfr fait au plus une taille de %s octets." -#: core/validators.py:371 +#: core/validators.py:375 msgid "The format for this field is wrong." msgstr "Le format de ce champ est mauvais." -#: core/validators.py:386 +#: core/validators.py:390 msgid "This field is invalid." msgstr "Ce champ est invalide." -#: core/validators.py:421 +#: core/validators.py:425 #, python-format msgid "Could not retrieve anything from %s." msgstr "Impossible de rcuprer quoi que ce soit depuis %s." -#: core/validators.py:424 +#: core/validators.py:428 #, python-format msgid "" "The URL %(url)s returned the invalid Content-Type header '%(contenttype)s'." @@ -959,7 +963,7 @@ msgstr "" "L'entte Content-Type '%(contenttype)s', renvoye par l'url %(url)s n'est " "pas valide." -#: core/validators.py:457 +#: core/validators.py:461 #, python-format msgid "" "Please close the unclosed %(tag)s tag from line %(line)s. (Line starts with " @@ -968,7 +972,7 @@ msgstr "" "Veuillez fermer le tag %(tag)s de la ligne %(line)s. (La ligne dbutant par " "\"%(start)s\".)" -#: core/validators.py:461 +#: core/validators.py:465 #, python-format msgid "" "Some text starting on line %(line)s is not allowed in that context. (Line " @@ -977,7 +981,7 @@ msgstr "" "Du texte commenant la ligne %(line)s n'est pas autoris dans ce contexte. " "(Ligne dbutant par \"%(start)s\".)" -#: core/validators.py:466 +#: core/validators.py:470 #, python-format msgid "" "\"%(attr)s\" on line %(line)s is an invalid attribute. (Line starts with \"%" @@ -986,7 +990,7 @@ msgstr "" "\"%(attr)s\" ligne %(line)s n'est pas un attribut valide. (Ligne dbutant " "par \"%(start)s\".)" -#: core/validators.py:471 +#: core/validators.py:475 #, python-format msgid "" "\"<%(tag)s>\" on line %(line)s is an invalid tag. (Line starts with \"%" @@ -995,7 +999,7 @@ msgstr "" "\"<%(tag)s>\" ligne %(line)s n'est pas un tag valide. (Ligne dbutant par \"%" "(start)s\".)" -#: core/validators.py:475 +#: core/validators.py:479 #, python-format msgid "" "A tag on line %(line)s is missing one or more required attributes. (Line " @@ -1004,7 +1008,7 @@ msgstr "" "Un tag, ou un ou plusieurs attributs, de la ligne %(line)s est manquant. " "(Ligne dbutant par \"%(start)s\".)" -#: core/validators.py:480 +#: core/validators.py:484 #, python-format msgid "" "The \"%(attr)s\" attribute on line %(line)s has an invalid value. (Line " diff --git a/django/conf/locale/gl/LC_MESSAGES/django.mo b/django/conf/locale/gl/LC_MESSAGES/django.mo index b772851a3ae7c0e1a0ec30bc5f078afbb5b378cf..e1c0b2cabfbedbb1a87fcf60cf1b83ef39ef58cb 100644 GIT binary patch delta 17 ZcmX@5c}jD`J8l+Z1w*6FpSW*u002Qo2HF4s delta 17 ZcmX@5c}jD`J8l*u1w*sVpSW*u002Q%2HgMv diff --git a/django/conf/locale/gl/LC_MESSAGES/django.po b/django/conf/locale/gl/LC_MESSAGES/django.po index 7e91c23710..44a65084c7 100644 --- a/django/conf/locale/gl/LC_MESSAGES/django.po +++ b/django/conf/locale/gl/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: django\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-11-12 16:05-0600\n" +"POT-Creation-Date: 2005-11-13 12:05-0600\n" "PO-Revision-Date: 2005-10-16 14:29+0100\n" "Last-Translator: Afonso Fernández Nogueira \n" "Language-Team: Galego\n" @@ -724,6 +724,10 @@ msgid "Serbian" msgstr "" #: conf/global_settings.py:51 +msgid "Swedish" +msgstr "" + +#: conf/global_settings.py:52 msgid "Simplified Chinese" msgstr "" @@ -835,59 +839,59 @@ msgstr "" msgid "Invalid URL: %s" msgstr "" -#: core/validators.py:203 +#: core/validators.py:205 core/validators.py:207 #, python-format msgid "The URL %s is a broken link." msgstr "" -#: core/validators.py:209 +#: core/validators.py:213 msgid "Enter a valid U.S. state abbreviation." msgstr "" -#: core/validators.py:224 +#: core/validators.py:228 #, python-format msgid "Watch your mouth! The word %s is not allowed here." msgid_plural "Watch your mouth! The words %s are not allowed here." msgstr[0] "" msgstr[1] "" -#: core/validators.py:231 +#: core/validators.py:235 #, python-format msgid "This field must match the '%s' field." msgstr "" -#: core/validators.py:250 +#: core/validators.py:254 msgid "Please enter something for at least one field." msgstr "" -#: core/validators.py:259 core/validators.py:270 +#: core/validators.py:263 core/validators.py:274 msgid "Please enter both fields or leave them both empty." msgstr "" -#: core/validators.py:277 +#: core/validators.py:281 #, python-format msgid "This field must be given if %(field)s is %(value)s" msgstr "" -#: core/validators.py:289 +#: core/validators.py:293 #, python-format msgid "This field must be given if %(field)s is not %(value)s" msgstr "" -#: core/validators.py:308 +#: core/validators.py:312 msgid "Duplicate values are not allowed." msgstr "" -#: core/validators.py:331 +#: core/validators.py:335 #, python-format msgid "This value must be a power of %s." msgstr "" -#: core/validators.py:342 +#: core/validators.py:346 msgid "Please enter a valid decimal number." msgstr "" -#: core/validators.py:344 +#: core/validators.py:348 #, python-format msgid "Please enter a valid decimal number with at most %s total digit." msgid_plural "" @@ -895,7 +899,7 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: core/validators.py:347 +#: core/validators.py:351 #, python-format msgid "Please enter a valid decimal number with at most %s decimal place." msgid_plural "" @@ -903,71 +907,71 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: core/validators.py:357 +#: core/validators.py:361 #, python-format msgid "Make sure your uploaded file is at least %s bytes big." msgstr "" -#: core/validators.py:358 +#: core/validators.py:362 #, python-format msgid "Make sure your uploaded file is at most %s bytes big." msgstr "" -#: core/validators.py:371 +#: core/validators.py:375 msgid "The format for this field is wrong." msgstr "" -#: core/validators.py:386 +#: core/validators.py:390 msgid "This field is invalid." msgstr "" -#: core/validators.py:421 +#: core/validators.py:425 #, python-format msgid "Could not retrieve anything from %s." msgstr "" -#: core/validators.py:424 +#: core/validators.py:428 #, python-format msgid "" "The URL %(url)s returned the invalid Content-Type header '%(contenttype)s'." msgstr "" -#: core/validators.py:457 +#: core/validators.py:461 #, python-format msgid "" "Please close the unclosed %(tag)s tag from line %(line)s. (Line starts with " "\"%(start)s\".)" msgstr "" -#: core/validators.py:461 +#: core/validators.py:465 #, python-format msgid "" "Some text starting on line %(line)s is not allowed in that context. (Line " "starts with \"%(start)s\".)" msgstr "" -#: core/validators.py:466 +#: core/validators.py:470 #, python-format msgid "" "\"%(attr)s\" on line %(line)s is an invalid attribute. (Line starts with \"%" "(start)s\".)" msgstr "" -#: core/validators.py:471 +#: core/validators.py:475 #, python-format msgid "" "\"<%(tag)s>\" on line %(line)s is an invalid tag. (Line starts with \"%" "(start)s\".)" msgstr "" -#: core/validators.py:475 +#: core/validators.py:479 #, python-format msgid "" "A tag on line %(line)s is missing one or more required attributes. (Line " "starts with \"%(start)s\".)" msgstr "" -#: core/validators.py:480 +#: core/validators.py:484 #, python-format msgid "" "The \"%(attr)s\" attribute on line %(line)s has an invalid value. (Line " diff --git a/django/conf/locale/it/LC_MESSAGES/django.mo b/django/conf/locale/it/LC_MESSAGES/django.mo index 3b8a31b26ab189ac594c5f8a16f1c10713e1de4e..ad976523833bb633bbbb6b5c715b2db3d2651c9b 100644 GIT binary patch delta 22 dcmaFd$oROCaf5&cyRm|yk(GhjW^s)(5&&3_2Ic?& delta 22 dcmaFd$oROCaf5&cyODySnU#U*W^s)(5&&4C2Iv3) diff --git a/django/conf/locale/it/LC_MESSAGES/django.po b/django/conf/locale/it/LC_MESSAGES/django.po index 652f308151..f2de2f36b4 100644 --- a/django/conf/locale/it/LC_MESSAGES/django.po +++ b/django/conf/locale/it/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-11-12 16:05-0600\n" +"POT-Creation-Date: 2005-11-13 12:06-0600\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -728,6 +728,10 @@ msgid "Serbian" msgstr "Serbo" #: conf/global_settings.py:51 +msgid "Swedish" +msgstr "" + +#: conf/global_settings.py:52 msgid "Simplified Chinese" msgstr "" @@ -842,59 +846,59 @@ msgstr "XML malformato: %s" msgid "Invalid URL: %s" msgstr "URL non valida: %s" -#: core/validators.py:203 +#: core/validators.py:205 core/validators.py:207 #, python-format msgid "The URL %s is a broken link." msgstr "L'URL %s un link rotto." -#: core/validators.py:209 +#: core/validators.py:213 msgid "Enter a valid U.S. state abbreviation." msgstr "Inserire un nome di stato americano abbreviato valido." -#: core/validators.py:224 +#: core/validators.py:228 #, python-format msgid "Watch your mouth! The word %s is not allowed here." msgid_plural "Watch your mouth! The words %s are not allowed here." msgstr[0] "Attenzione! La parola %s non ammessa qui." msgstr[1] "Attenzione! Le parole %s non sono ammesse qui." -#: core/validators.py:231 +#: core/validators.py:235 #, python-format msgid "This field must match the '%s' field." msgstr "Questo campo deve corrispondere al campo '%s'." -#: core/validators.py:250 +#: core/validators.py:254 msgid "Please enter something for at least one field." msgstr "Inserire almeno un campo." -#: core/validators.py:259 core/validators.py:270 +#: core/validators.py:263 core/validators.py:274 msgid "Please enter both fields or leave them both empty." msgstr "Inserire entrambi i campi o lasciarli entrambi vuoti." -#: core/validators.py:277 +#: core/validators.py:281 #, python-format msgid "This field must be given if %(field)s is %(value)s" msgstr "Il campo obbligatorio se %(field)s %(value)s" -#: core/validators.py:289 +#: core/validators.py:293 #, python-format msgid "This field must be given if %(field)s is not %(value)s" msgstr "Il campo non pu essere valorizzato se %(field)s non %(value)s" -#: core/validators.py:308 +#: core/validators.py:312 msgid "Duplicate values are not allowed." msgstr "Non sono ammessi valori duplicati." -#: core/validators.py:331 +#: core/validators.py:335 #, python-format msgid "This value must be a power of %s." msgstr "Il valore deve essere una potenza di %s." -#: core/validators.py:342 +#: core/validators.py:346 msgid "Please enter a valid decimal number." msgstr "Inserire un numero decimale valido." -#: core/validators.py:344 +#: core/validators.py:348 #, python-format msgid "Please enter a valid decimal number with at most %s total digit." msgid_plural "" @@ -902,7 +906,7 @@ msgid_plural "" msgstr[0] "Inserire un numero decimale con non pi di %s cifre totali." msgstr[1] "" -#: core/validators.py:347 +#: core/validators.py:351 #, python-format msgid "Please enter a valid decimal number with at most %s decimal place." msgid_plural "" @@ -910,30 +914,30 @@ msgid_plural "" msgstr[0] "Inserire un decimale con non pi di %s cifre decimali." msgstr[1] "" -#: core/validators.py:357 +#: core/validators.py:361 #, python-format msgid "Make sure your uploaded file is at least %s bytes big." msgstr "Verifica che il file inserito sia almeno di %s byte." -#: core/validators.py:358 +#: core/validators.py:362 #, python-format msgid "Make sure your uploaded file is at most %s bytes big." msgstr "Verifica che il file inserito sia al massimo %d byte." -#: core/validators.py:371 +#: core/validators.py:375 msgid "The format for this field is wrong." msgstr "Formato del file non valido." -#: core/validators.py:386 +#: core/validators.py:390 msgid "This field is invalid." msgstr "Il campo non valido." -#: core/validators.py:421 +#: core/validators.py:425 #, python-format msgid "Could not retrieve anything from %s." msgstr "Impossibile recuperare alcunch da %s." -#: core/validators.py:424 +#: core/validators.py:428 #, python-format msgid "" "The URL %(url)s returned the invalid Content-Type header '%(contenttype)s'." @@ -941,7 +945,7 @@ msgstr "" "L'URL %(url)s restituisce un Content-Type header non valido '%(contenttype)" "s'." -#: core/validators.py:457 +#: core/validators.py:461 #, python-format msgid "" "Please close the unclosed %(tag)s tag from line %(line)s. (Line starts with " @@ -950,7 +954,7 @@ msgstr "" "Il tag %(tag)s alla linea %(line)s non chiuso. (La linea comincia con \"%" "(start)s\".)" -#: core/validators.py:461 +#: core/validators.py:465 #, python-format msgid "" "Some text starting on line %(line)s is not allowed in that context. (Line " @@ -959,7 +963,7 @@ msgstr "" "Il testo che comincia a linea %(line)s non e' ammesso in questo contesto. " "(La linea comincia con \"%(start)s\".)" -#: core/validators.py:466 +#: core/validators.py:470 #, python-format msgid "" "\"%(attr)s\" on line %(line)s is an invalid attribute. (Line starts with \"%" @@ -968,7 +972,7 @@ msgstr "" "\"%(attr)s\" alla linea %(line)s un attributo invalido. (La linea comincia " "con \"%(start)s\".)" -#: core/validators.py:471 +#: core/validators.py:475 #, python-format msgid "" "\"<%(tag)s>\" on line %(line)s is an invalid tag. (Line starts with \"%" @@ -977,7 +981,7 @@ msgstr "" "\"<%(tag)s>\" alla linea %(line)s tag non valido. (La linea comincia con \"%" "(start)s\".)" -#: core/validators.py:475 +#: core/validators.py:479 #, python-format msgid "" "A tag on line %(line)s is missing one or more required attributes. (Line " @@ -986,7 +990,7 @@ msgstr "" "Un tag alla linea %(line)s manca di uno o pi attributi richiesti. (La linea " "comincia con \"%(start)s\".)" -#: core/validators.py:480 +#: core/validators.py:484 #, python-format msgid "" "The \"%(attr)s\" attribute on line %(line)s has an invalid value. (Line " diff --git a/django/conf/locale/no/LC_MESSAGES/django.mo b/django/conf/locale/no/LC_MESSAGES/django.mo index 3dbccf7282cc1e33fe3c395bb2232b2b841c971e..10b6fbdda96f763f05fc14a2997d03f98ded15c1 100644 GIT binary patch delta 22 dcmZ3`#<-x3aYMc)yRm|yk(Ghj<}%Gyk^oh52MGWG delta 22 dcmZ3`#<-x3aYMc)yODySnU#U*<}%Gyk^ohN2MYiI diff --git a/django/conf/locale/no/LC_MESSAGES/django.po b/django/conf/locale/no/LC_MESSAGES/django.po index 1ce4850cd3..d90e0d1b61 100644 --- a/django/conf/locale/no/LC_MESSAGES/django.po +++ b/django/conf/locale/no/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-11-12 16:05-0600\n" +"POT-Creation-Date: 2005-11-13 12:06-0600\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Espen Grndhaug \n" "Language-Team: Norwegian\n" @@ -728,6 +728,10 @@ msgid "Serbian" msgstr "Serbisk" #: conf/global_settings.py:51 +msgid "Swedish" +msgstr "" + +#: conf/global_settings.py:52 msgid "Simplified Chinese" msgstr "Simpel Kinesisk" @@ -844,59 +848,59 @@ msgstr "Ikke godkjent XML: %s" msgid "Invalid URL: %s" msgstr "Ikke godkjent internettadresse: %s" -#: core/validators.py:203 +#: core/validators.py:205 core/validators.py:207 #, python-format msgid "The URL %s is a broken link." msgstr "Internettadresse fører til en side som ikke virker." -#: core/validators.py:209 +#: core/validators.py:213 msgid "Enter a valid U.S. state abbreviation." msgstr "Skriv inn en godkjent amerikansk stats forkortelse." -#: core/validators.py:224 +#: core/validators.py:228 #, python-format msgid "Watch your mouth! The word %s is not allowed here." msgid_plural "Watch your mouth! The words %s are not allowed here." msgstr[0] "Pass munnen din! Ordet %s er ikke tillatt her." msgstr[1] "Pass munnen din! Ordene %s er ikke tillatt her." -#: core/validators.py:231 +#: core/validators.py:235 #, python-format msgid "This field must match the '%s' field." msgstr "Dette felte må være det samme som i '%s' feltet." -#: core/validators.py:250 +#: core/validators.py:254 msgid "Please enter something for at least one field." msgstr "Vennligst skriv inn noe i minst et felt." -#: core/validators.py:259 core/validators.py:270 +#: core/validators.py:263 core/validators.py:274 msgid "Please enter both fields or leave them both empty." msgstr "Vennligst skriv inn noe i begge felta, eller la dem stå blanke." -#: core/validators.py:277 +#: core/validators.py:281 #, python-format msgid "This field must be given if %(field)s is %(value)s" msgstr "Dette feltet må bare brukes vist %(field)s er lik %(value)s" -#: core/validators.py:289 +#: core/validators.py:293 #, python-format msgid "This field must be given if %(field)s is not %(value)s" msgstr "Dette feltet må bare brukes vist %(field)s ikke er lik %(value)s" -#: core/validators.py:308 +#: core/validators.py:312 msgid "Duplicate values are not allowed." msgstr "Like verdier er ikke tillatt." -#: core/validators.py:331 +#: core/validators.py:335 #, python-format msgid "This value must be a power of %s." msgstr "Denne verdien må være 'power' av %s." -#: core/validators.py:342 +#: core/validators.py:346 msgid "Please enter a valid decimal number." msgstr "Vennligst skriv inn et godkjent desimal tall." -#: core/validators.py:344 +#: core/validators.py:348 #, python-format msgid "Please enter a valid decimal number with at most %s total digit." msgid_plural "" @@ -904,7 +908,7 @@ msgid_plural "" msgstr[0] "Skriv inn et desimal tall med maksimum %s total antall tall." msgstr[1] "Skriv inn et desimal tall med maksimum %s total antall tall." -#: core/validators.py:347 +#: core/validators.py:351 #, python-format msgid "Please enter a valid decimal number with at most %s decimal place." msgid_plural "" @@ -912,32 +916,32 @@ msgid_plural "" msgstr[0] "Skriv inn et desimal tall med maksimum %s tall bak komma. " msgstr[1] "Skriv inn et desimal tall med maksimum %s tall bak komma. " -#: core/validators.py:357 +#: core/validators.py:361 #, python-format msgid "Make sure your uploaded file is at least %s bytes big." msgstr "" "Er du sikker på at fila du prøver å laste opp er minimum %s bytes stor?" -#: core/validators.py:358 +#: core/validators.py:362 #, python-format msgid "Make sure your uploaded file is at most %s bytes big." msgstr "" "Er du sikker på at fila du prøver å laste opp er maksimum %s bytes stor?" -#: core/validators.py:371 +#: core/validators.py:375 msgid "The format for this field is wrong." msgstr "Formatet i dette feltet er feil." -#: core/validators.py:386 +#: core/validators.py:390 msgid "This field is invalid." msgstr "Dette feltet er feil." -#: core/validators.py:421 +#: core/validators.py:425 #, python-format msgid "Could not retrieve anything from %s." msgstr "Klarte ikke å motta noe fra %s." -#: core/validators.py:424 +#: core/validators.py:428 #, python-format msgid "" "The URL %(url)s returned the invalid Content-Type header '%(contenttype)s'." @@ -945,7 +949,7 @@ msgstr "" "Tnternettadressen %(url)s returnerte en ikke godkjent Content-Type '%" "(contenttype)s'." -#: core/validators.py:457 +#: core/validators.py:461 #, python-format msgid "" "Please close the unclosed %(tag)s tag from line %(line)s. (Line starts with " @@ -954,7 +958,7 @@ msgstr "" "Vennligst lukk taggen %(tag)s på linje %(line)s. (Linja starer med \"%(start)" "s\".)" -#: core/validators.py:461 +#: core/validators.py:465 #, python-format msgid "" "Some text starting on line %(line)s is not allowed in that context. (Line " @@ -963,7 +967,7 @@ msgstr "" "Noe av teksten som starter på linje %(line)s er ikke tillatt. (Linja starter " "med \"%(start)s\".)" -#: core/validators.py:466 +#: core/validators.py:470 #, python-format msgid "" "\"%(attr)s\" on line %(line)s is an invalid attribute. (Line starts with \"%" @@ -972,7 +976,7 @@ msgstr "" "\"%(attr)s\" på linje %(line)s er ikke en godkjent tillegg. (Linja starter " "med \"%(start)s\".)" -#: core/validators.py:471 +#: core/validators.py:475 #, python-format msgid "" "\"<%(tag)s>\" on line %(line)s is an invalid tag. (Line starts with \"%" @@ -981,7 +985,7 @@ msgstr "" "\"<%(tag)s>\" på linje %(line)s er ikke en godkjent tag. (linja starter med " "\"%(start)s\".)" -#: core/validators.py:475 +#: core/validators.py:479 #, python-format msgid "" "A tag on line %(line)s is missing one or more required attributes. (Line " @@ -990,7 +994,7 @@ msgstr "" "En tag på linje %(line)s mangler en av de påbydte tillegga. (linja starter " "med \"%(start)s\".)" -#: core/validators.py:480 +#: core/validators.py:484 #, python-format msgid "" "The \"%(attr)s\" attribute on line %(line)s has an invalid value. (Line " diff --git a/django/conf/locale/pt_BR/LC_MESSAGES/django.mo b/django/conf/locale/pt_BR/LC_MESSAGES/django.mo index d90741a0d52da1ff79fd3d54ef0be1cf6a2fb78d..a4fc09d70f13f8faf48765095d154e4b1ba3f0c2 100644 GIT binary patch delta 22 dcmX@vz<9EOal5&41N=BmrbE2l)U1 delta 22 dcmX@vz<9EOal\n" "Language-Team: Português do Brasil \n" @@ -732,6 +732,10 @@ msgid "Serbian" msgstr "Sérvio" #: conf/global_settings.py:51 +msgid "Swedish" +msgstr "" + +#: conf/global_settings.py:52 msgid "Simplified Chinese" msgstr "" @@ -846,59 +850,59 @@ msgstr "XML mal formado: %s" msgid "Invalid URL: %s" msgstr "URL inválida: %s" -#: core/validators.py:203 +#: core/validators.py:205 core/validators.py:207 #, python-format msgid "The URL %s is a broken link." msgstr "A URL %s é um link quebrado." -#: core/validators.py:209 +#: core/validators.py:213 msgid "Enter a valid U.S. state abbreviation." msgstr "Informe uma abreviação válida de nome de um estado dos EUA." -#: core/validators.py:224 +#: core/validators.py:228 #, python-format msgid "Watch your mouth! The word %s is not allowed here." msgid_plural "Watch your mouth! The words %s are not allowed here." msgstr[0] "Lave sua boca! A palavra %s não é permitida aqui." msgstr[1] "Lave sua boca! As palavras %s não são permitidas aqui." -#: core/validators.py:231 +#: core/validators.py:235 #, python-format msgid "This field must match the '%s' field." msgstr "Este campo deve ser igual ao campo '%s'." -#: core/validators.py:250 +#: core/validators.py:254 msgid "Please enter something for at least one field." msgstr "Informe algo em pelo menos um campo." -#: core/validators.py:259 core/validators.py:270 +#: core/validators.py:263 core/validators.py:274 msgid "Please enter both fields or leave them both empty." msgstr "Informe ambos os campos ou deixe ambos vazios." -#: core/validators.py:277 +#: core/validators.py:281 #, python-format msgid "This field must be given if %(field)s is %(value)s" msgstr "Este campo deve ser informado se o campo %(field)s for %(value)s." -#: core/validators.py:289 +#: core/validators.py:293 #, python-format msgid "This field must be given if %(field)s is not %(value)s" msgstr "Este campo deve ser dado se o campo %(field)s não for %(value)s." -#: core/validators.py:308 +#: core/validators.py:312 msgid "Duplicate values are not allowed." msgstr "Valores duplicados não são permitidos." -#: core/validators.py:331 +#: core/validators.py:335 #, python-format msgid "This value must be a power of %s." msgstr "Este valor deve ser uma potência de %s." -#: core/validators.py:342 +#: core/validators.py:346 msgid "Please enter a valid decimal number." msgstr "Informe um número decimal." -#: core/validators.py:344 +#: core/validators.py:348 #, python-format msgid "Please enter a valid decimal number with at most %s total digit." msgid_plural "" @@ -906,7 +910,7 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: core/validators.py:347 +#: core/validators.py:351 #, python-format msgid "Please enter a valid decimal number with at most %s decimal place." msgid_plural "" @@ -914,30 +918,30 @@ msgid_plural "" msgstr[0] "Informe um número decimal com no máximo %s casa decimal." msgstr[1] "Informe um número decimal com no máximo %s casas decimais." -#: core/validators.py:357 +#: core/validators.py:361 #, python-format msgid "Make sure your uploaded file is at least %s bytes big." msgstr "Verifique se o arquivo enviado tem pelo menos %s bytes." -#: core/validators.py:358 +#: core/validators.py:362 #, python-format msgid "Make sure your uploaded file is at most %s bytes big." msgstr "Verifique se o arquivo enviado tem no máximo %s bytes." -#: core/validators.py:371 +#: core/validators.py:375 msgid "The format for this field is wrong." msgstr "O formato deste campo está errado." -#: core/validators.py:386 +#: core/validators.py:390 msgid "This field is invalid." msgstr "Este campo é inválido." -#: core/validators.py:421 +#: core/validators.py:425 #, python-format msgid "Could not retrieve anything from %s." msgstr "Não foi possível receber dados de %s." -#: core/validators.py:424 +#: core/validators.py:428 #, python-format msgid "" "The URL %(url)s returned the invalid Content-Type header '%(contenttype)s'." @@ -945,7 +949,7 @@ msgstr "" "A URL %(url)s retornou um cabeçalho '%(contenttype)s' de Content-Type " "inválido." -#: core/validators.py:457 +#: core/validators.py:461 #, python-format msgid "" "Please close the unclosed %(tag)s tag from line %(line)s. (Line starts with " @@ -954,7 +958,7 @@ msgstr "" "Por favor, feche a tag %(tag)s na linha %(line)s. (A linha começa com \"%" "(start)s\".)" -#: core/validators.py:461 +#: core/validators.py:465 #, python-format msgid "" "Some text starting on line %(line)s is not allowed in that context. (Line " @@ -963,7 +967,7 @@ msgstr "" "Algum texto começando na linha %(line)s não é permitido no contexto. (Linha " "começa com \"%(start)s\".)" -#: core/validators.py:466 +#: core/validators.py:470 #, python-format msgid "" "\"%(attr)s\" on line %(line)s is an invalid attribute. (Line starts with \"%" @@ -972,7 +976,7 @@ msgstr "" "\"%(attr)s\" na linha %(line)s não é um atributo válido. (Linha começa com " "\"%(start)s\".)" -#: core/validators.py:471 +#: core/validators.py:475 #, python-format msgid "" "\"<%(tag)s>\" on line %(line)s is an invalid tag. (Line starts with \"%" @@ -981,7 +985,7 @@ msgstr "" "\"<%(tag)s>\" na linha %(line)s é uma tag inválida. (Linha começa com \"%" "(start)s\".)" -#: core/validators.py:475 +#: core/validators.py:479 #, python-format msgid "" "A tag on line %(line)s is missing one or more required attributes. (Line " @@ -990,7 +994,7 @@ msgstr "" "Uma tag na linha %(line)s está não apresenta um ou mais atributos exigidos." "(Linha começa com \"%(start)s\".)" -#: core/validators.py:480 +#: core/validators.py:484 #, python-format msgid "" "The \"%(attr)s\" attribute on line %(line)s has an invalid value. (Line " diff --git a/django/conf/locale/ro/LC_MESSAGES/django.mo b/django/conf/locale/ro/LC_MESSAGES/django.mo index e9b58d551c821393a6c196a4c06d2ab6da3c7847..efb1fff4a9f74416a6e32fbe0414d5196f37ee23 100644 GIT binary patch delta 22 dcmdne#<-=8all2d)4B diff --git a/django/conf/locale/ro/LC_MESSAGES/django.po b/django/conf/locale/ro/LC_MESSAGES/django.po index 43a2279923..5d5beec95e 100644 --- a/django/conf/locale/ro/LC_MESSAGES/django.po +++ b/django/conf/locale/ro/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Django \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-11-12 23:04+0100\n" +"POT-Creation-Date: 2005-11-13 19:05+0100\n" "PO-Revision-Date: 2005-11-08 19:06+GMT+2\n" "Last-Translator: Tiberiu Micu \n" "Language-Team: Romanian \n" @@ -728,6 +728,10 @@ msgid "Serbian" msgstr "Sîrbă" #: conf/global_settings.py:51 +msgid "Swedish" +msgstr "" + +#: conf/global_settings.py:52 msgid "Simplified Chinese" msgstr "Chineză simplificată" @@ -846,60 +850,60 @@ msgstr "Format XML invalid: %s" msgid "Invalid URL: %s" msgstr "URL invalid: %s" -#: core/validators.py:203 +#: core/validators.py:205 core/validators.py:207 #, python-format msgid "The URL %s is a broken link." msgstr "URL-ul %s e invalid." -#: core/validators.py:209 +#: core/validators.py:213 msgid "Enter a valid U.S. state abbreviation." msgstr "Introduceţi o abreviere validă în U.S." -#: core/validators.py:224 +#: core/validators.py:228 #, python-format msgid "Watch your mouth! The word %s is not allowed here." msgid_plural "Watch your mouth! The words %s are not allowed here." msgstr[0] "Îngrijiţi-vă limbajul! Cuvîntul %s nu este permis aici." msgstr[1] "Îngrijiţi-vă limbajul! Cuvintele %s nu sînt permise aici." -#: core/validators.py:231 +#: core/validators.py:235 #, python-format msgid "This field must match the '%s' field." msgstr "" -#: core/validators.py:250 +#: core/validators.py:254 #, fuzzy msgid "Please enter something for at least one field." msgstr "Vă rog comletaţi ambele cîmpuri sau lăsaţi-le goale pe ambele." -#: core/validators.py:259 core/validators.py:270 +#: core/validators.py:263 core/validators.py:274 msgid "Please enter both fields or leave them both empty." msgstr "Vă rog comletaţi ambele cîmpuri sau lăsaţi-le goale pe ambele." -#: core/validators.py:277 +#: core/validators.py:281 #, python-format msgid "This field must be given if %(field)s is %(value)s" msgstr "Acest cîmp e necesar dacă %(field)s este %(value)s" -#: core/validators.py:289 +#: core/validators.py:293 #, python-format msgid "This field must be given if %(field)s is not %(value)s" msgstr "Acest cîmp e necesar dacă %(field)s nu este %(value)s" -#: core/validators.py:308 +#: core/validators.py:312 msgid "Duplicate values are not allowed." msgstr "Valorile duplicate nu sînt permise." -#: core/validators.py:331 +#: core/validators.py:335 #, python-format msgid "This value must be a power of %s." msgstr "Această valoare trebuie să fie o putere a lui %s." -#: core/validators.py:342 +#: core/validators.py:346 msgid "Please enter a valid decimal number." msgstr "Vă rog introduceţi un număr zecimal valid." -#: core/validators.py:344 +#: core/validators.py:348 #, python-format msgid "Please enter a valid decimal number with at most %s total digit." msgid_plural "" @@ -907,7 +911,7 @@ msgid_plural "" msgstr[0] "Vă rog introduceţi un număr zecimal valid cu cel mult %s cifră." msgstr[1] "Vă rog introduceţi un număr zecimal valid cu cel mult %s cifre." -#: core/validators.py:347 +#: core/validators.py:351 #, python-format msgid "Please enter a valid decimal number with at most %s decimal place." msgid_plural "" @@ -915,37 +919,37 @@ msgid_plural "" msgstr[0] "Vă rog introduceţi un număr zecimal valid cu cel mult %s zecimală." msgstr[1] "Vă rog introduceţi un număr zecimal valid cu cel mult %s zecimale." -#: core/validators.py:357 +#: core/validators.py:361 #, python-format msgid "Make sure your uploaded file is at least %s bytes big." msgstr "Asigură-te că fişierul încărcact are cel puţin %s octeţi." -#: core/validators.py:358 +#: core/validators.py:362 #, python-format msgid "Make sure your uploaded file is at most %s bytes big." msgstr "Asigură-te că fişierul încărcact are cel mult %s octeţi." -#: core/validators.py:371 +#: core/validators.py:375 msgid "The format for this field is wrong." msgstr "Formatul acestui cîmp este invalid." -#: core/validators.py:386 +#: core/validators.py:390 msgid "This field is invalid." msgstr "Cîmpul este invalid." -#: core/validators.py:421 +#: core/validators.py:425 #, python-format msgid "Could not retrieve anything from %s." msgstr "Nu pot prelua nimic de la %s." -#: core/validators.py:424 +#: core/validators.py:428 #, python-format msgid "" "The URL %(url)s returned the invalid Content-Type header '%(contenttype)s'." msgstr "" "URL-ul %(url)s a returnat un header Content-Type invalid '%(contenttype)s'." -#: core/validators.py:457 +#: core/validators.py:461 #, python-format msgid "" "Please close the unclosed %(tag)s tag from line %(line)s. (Line starts with " @@ -954,7 +958,7 @@ msgstr "" "Te rog închide tagurile %(tag)s din linia %(line)s. ( Linia începe cu \"%" "(start)s\".)" -#: core/validators.py:461 +#: core/validators.py:465 #, python-format msgid "" "Some text starting on line %(line)s is not allowed in that context. (Line " @@ -963,7 +967,7 @@ msgstr "" "Textul începînd cu linia %(line)s nu e permis în acest context. (Linia " "începînd cu \"%(start)s\".)" -#: core/validators.py:466 +#: core/validators.py:470 #, python-format msgid "" "\"%(attr)s\" on line %(line)s is an invalid attribute. (Line starts with \"%" @@ -972,7 +976,7 @@ msgstr "" "\"%(attr)s\" în linia %(line)s e un atribut invalid. (Linia începînd cu \"%" "(start)s\".)" -#: core/validators.py:471 +#: core/validators.py:475 #, python-format msgid "" "\"<%(tag)s>\" on line %(line)s is an invalid tag. (Line starts with \"%" @@ -981,7 +985,7 @@ msgstr "" "\"<%(tag)s>\" în linia %(line)s este un tag invalid. (Linia începe cu \"%" "(start)s\"." -#: core/validators.py:475 +#: core/validators.py:479 #, python-format msgid "" "A tag on line %(line)s is missing one or more required attributes. (Line " @@ -990,7 +994,7 @@ msgstr "" "Unui tag din linia %(line)s îi lipseşte unul sau mai multe atribute. (Linia " "începe cu \"%(start)s\".)" -#: core/validators.py:480 +#: core/validators.py:484 #, python-format msgid "" "The \"%(attr)s\" attribute on line %(line)s has an invalid value. (Line " diff --git a/django/conf/locale/ru/LC_MESSAGES/django.mo b/django/conf/locale/ru/LC_MESSAGES/django.mo index 3b760d9fece47f0b430dc3082078ffa510141073..d037353f3e3788223546e2af2c26743696cbb2ef 100644 GIT binary patch delta 20 bcmeCv=+oHnj+@\n" "Language-Team: LANGUAGE \n" @@ -722,6 +722,10 @@ msgid "Serbian" msgstr "" #: conf/global_settings.py:51 +msgid "Swedish" +msgstr "" + +#: conf/global_settings.py:52 msgid "Simplified Chinese" msgstr "" @@ -833,59 +837,59 @@ msgstr "" msgid "Invalid URL: %s" msgstr "" -#: core/validators.py:203 +#: core/validators.py:205 core/validators.py:207 #, python-format msgid "The URL %s is a broken link." msgstr "" -#: core/validators.py:209 +#: core/validators.py:213 msgid "Enter a valid U.S. state abbreviation." msgstr "" -#: core/validators.py:224 +#: core/validators.py:228 #, python-format msgid "Watch your mouth! The word %s is not allowed here." msgid_plural "Watch your mouth! The words %s are not allowed here." msgstr[0] "" msgstr[1] "" -#: core/validators.py:231 +#: core/validators.py:235 #, python-format msgid "This field must match the '%s' field." msgstr "" -#: core/validators.py:250 +#: core/validators.py:254 msgid "Please enter something for at least one field." msgstr "" -#: core/validators.py:259 core/validators.py:270 +#: core/validators.py:263 core/validators.py:274 msgid "Please enter both fields or leave them both empty." msgstr "" -#: core/validators.py:277 +#: core/validators.py:281 #, python-format msgid "This field must be given if %(field)s is %(value)s" msgstr "" -#: core/validators.py:289 +#: core/validators.py:293 #, python-format msgid "This field must be given if %(field)s is not %(value)s" msgstr "" -#: core/validators.py:308 +#: core/validators.py:312 msgid "Duplicate values are not allowed." msgstr "" -#: core/validators.py:331 +#: core/validators.py:335 #, python-format msgid "This value must be a power of %s." msgstr "" -#: core/validators.py:342 +#: core/validators.py:346 msgid "Please enter a valid decimal number." msgstr "" -#: core/validators.py:344 +#: core/validators.py:348 #, python-format msgid "Please enter a valid decimal number with at most %s total digit." msgid_plural "" @@ -893,7 +897,7 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: core/validators.py:347 +#: core/validators.py:351 #, python-format msgid "Please enter a valid decimal number with at most %s decimal place." msgid_plural "" @@ -901,71 +905,71 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: core/validators.py:357 +#: core/validators.py:361 #, python-format msgid "Make sure your uploaded file is at least %s bytes big." msgstr "" -#: core/validators.py:358 +#: core/validators.py:362 #, python-format msgid "Make sure your uploaded file is at most %s bytes big." msgstr "" -#: core/validators.py:371 +#: core/validators.py:375 msgid "The format for this field is wrong." msgstr "" -#: core/validators.py:386 +#: core/validators.py:390 msgid "This field is invalid." msgstr "" -#: core/validators.py:421 +#: core/validators.py:425 #, python-format msgid "Could not retrieve anything from %s." msgstr "" -#: core/validators.py:424 +#: core/validators.py:428 #, python-format msgid "" "The URL %(url)s returned the invalid Content-Type header '%(contenttype)s'." msgstr "" -#: core/validators.py:457 +#: core/validators.py:461 #, python-format msgid "" "Please close the unclosed %(tag)s tag from line %(line)s. (Line starts with " "\"%(start)s\".)" msgstr "" -#: core/validators.py:461 +#: core/validators.py:465 #, python-format msgid "" "Some text starting on line %(line)s is not allowed in that context. (Line " "starts with \"%(start)s\".)" msgstr "" -#: core/validators.py:466 +#: core/validators.py:470 #, python-format msgid "" "\"%(attr)s\" on line %(line)s is an invalid attribute. (Line starts with \"%" "(start)s\".)" msgstr "" -#: core/validators.py:471 +#: core/validators.py:475 #, python-format msgid "" "\"<%(tag)s>\" on line %(line)s is an invalid tag. (Line starts with \"%" "(start)s\".)" msgstr "" -#: core/validators.py:475 +#: core/validators.py:479 #, python-format msgid "" "A tag on line %(line)s is missing one or more required attributes. (Line " "starts with \"%(start)s\".)" msgstr "" -#: core/validators.py:480 +#: core/validators.py:484 #, python-format msgid "" "The \"%(attr)s\" attribute on line %(line)s has an invalid value. (Line " diff --git a/django/conf/locale/sk/LC_MESSAGES/django.mo b/django/conf/locale/sk/LC_MESSAGES/django.mo index 66d28f818d63ef0a7d493f4dfc4225c8c73310a3..8b64189e885d59cbad65d29ce83e74a71990e637 100644 GIT binary patch delta 22 dcmeC|WbEu@+@P\n" "Language-Team: Slovak \n" @@ -727,6 +727,10 @@ msgid "Serbian" msgstr "Srbský" #: conf/global_settings.py:51 +msgid "Swedish" +msgstr "" + +#: conf/global_settings.py:52 msgid "Simplified Chinese" msgstr "Zjednodušená činština " @@ -840,60 +844,60 @@ msgstr "Zle formované XML: %s" msgid "Invalid URL: %s" msgstr "Neplatný URL %s" -#: core/validators.py:203 +#: core/validators.py:205 core/validators.py:207 #, python-format msgid "The URL %s is a broken link." msgstr "Odkaz na URL %s je neplatný." -#: core/validators.py:209 +#: core/validators.py:213 msgid "Enter a valid U.S. state abbreviation." msgstr "Vložte platnú skratku U.S. štátu." -#: core/validators.py:224 +#: core/validators.py:228 #, python-format msgid "Watch your mouth! The word %s is not allowed here." msgid_plural "Watch your mouth! The words %s are not allowed here." msgstr[0] "Vyjadrujte sa slušne! Slovo %s tu nie je dovolené použivať." msgstr[1] "Vyjadrujte sa slušne! Slová %s tu nie je dovolené použivať." -#: core/validators.py:231 +#: core/validators.py:235 #, python-format msgid "This field must match the '%s' field." msgstr "Toto pole sa musí zhodovať s poľom '%s'. " -#: core/validators.py:250 +#: core/validators.py:254 msgid "Please enter something for at least one field." msgstr "Prosím vložte niečo aspoň pre jedno pole." -#: core/validators.py:259 core/validators.py:270 +#: core/validators.py:263 core/validators.py:274 msgid "Please enter both fields or leave them both empty." msgstr "Prosím vložte obidve polia, alebo nechajte ich obe prázdne. " -#: core/validators.py:277 +#: core/validators.py:281 #, python-format msgid "This field must be given if %(field)s is %(value)s" msgstr "Toto pole musí byť vyplnené tak, že %(field)s obsahuje %(value)s" -#: core/validators.py:289 +#: core/validators.py:293 #, python-format msgid "This field must be given if %(field)s is not %(value)s" msgstr "" "Toto pole musí byť vyplnené tak, že %(field)s nesmie obsahovať %(value)s" -#: core/validators.py:308 +#: core/validators.py:312 msgid "Duplicate values are not allowed." msgstr "Duplicitné hodnoty nie sú povolené." -#: core/validators.py:331 +#: core/validators.py:335 #, python-format msgid "This value must be a power of %s." msgstr "Táto hodnota musí byť mocninou %s." -#: core/validators.py:342 +#: core/validators.py:346 msgid "Please enter a valid decimal number." msgstr "Prosím vložte platné desiatkové číslo. " -#: core/validators.py:344 +#: core/validators.py:348 #, python-format msgid "Please enter a valid decimal number with at most %s total digit." msgid_plural "" @@ -901,7 +905,7 @@ msgid_plural "" msgstr[0] "Prosím vložte platné desiatkové číslo s najviac %s číslicou." msgstr[1] "Prosím vložte platné desiatkové číslo s najviac %s číslicami." -#: core/validators.py:347 +#: core/validators.py:351 #, python-format msgid "Please enter a valid decimal number with at most %s decimal place." msgid_plural "" @@ -911,37 +915,37 @@ msgstr[0] "" msgstr[1] "" "Prosím vložte platné desatinné číslo s najviac %s desatinnými miestami." -#: core/validators.py:357 +#: core/validators.py:361 #, python-format msgid "Make sure your uploaded file is at least %s bytes big." msgstr "Presvedčte sa, že posielaný súbor nemá menej ako %s bytov." -#: core/validators.py:358 +#: core/validators.py:362 #, python-format msgid "Make sure your uploaded file is at most %s bytes big." msgstr "Presvedčte sa, že posielaný súbor nemá viac ako %s bytov." -#: core/validators.py:371 +#: core/validators.py:375 msgid "The format for this field is wrong." msgstr "Formát pre toto pole je chybný." -#: core/validators.py:386 +#: core/validators.py:390 msgid "This field is invalid." msgstr "Toto pole nie je platné." -#: core/validators.py:421 +#: core/validators.py:425 #, python-format msgid "Could not retrieve anything from %s." msgstr "Nič som nemohol získať z %s." -#: core/validators.py:424 +#: core/validators.py:428 #, python-format msgid "" "The URL %(url)s returned the invalid Content-Type header '%(contenttype)s'." msgstr "" " URL %(url)s vrátilo neplatnú hlavičku Content-Type '%(contenttype)s'." -#: core/validators.py:457 +#: core/validators.py:461 #, python-format msgid "" "Please close the unclosed %(tag)s tag from line %(line)s. (Line starts with " @@ -950,7 +954,7 @@ msgstr "" "Prosím zavrite nezavretý %(tag)s popisovač v riadku %(line)s. (Riadok " "začína s \"%(start)s\".)" -#: core/validators.py:461 +#: core/validators.py:465 #, python-format msgid "" "Some text starting on line %(line)s is not allowed in that context. (Line " @@ -959,7 +963,7 @@ msgstr "" "Nejaký text začínajúci na riadku %(line)s nie je povolený v tomto kontexte. " "(Riadok začína s \"%(start)s\".)" -#: core/validators.py:466 +#: core/validators.py:470 #, python-format msgid "" "\"%(attr)s\" on line %(line)s is an invalid attribute. (Line starts with \"%" @@ -968,7 +972,7 @@ msgstr "" "\"%(attr)s\" na riadku %(line)s je neplatný atribút. (Riadok začína s \"%" "(start)s\".)" -#: core/validators.py:471 +#: core/validators.py:475 #, python-format msgid "" "\"<%(tag)s>\" on line %(line)s is an invalid tag. (Line starts with \"%" @@ -977,7 +981,7 @@ msgstr "" "\"<%(tag)s>\" na riadku %(line)s je neplatný popisovač. (Riadok začína s \"%" "(start)s\".)" -#: core/validators.py:475 +#: core/validators.py:479 #, python-format msgid "" "A tag on line %(line)s is missing one or more required attributes. (Line " @@ -986,7 +990,7 @@ msgstr "" "Popisovaču na riadku %(line)s chýba jeden alebo viac atribútov. (Riadok " "začína s \"%(start)s\".)" -#: core/validators.py:480 +#: core/validators.py:484 #, python-format msgid "" "The \"%(attr)s\" attribute on line %(line)s has an invalid value. (Line " diff --git a/django/conf/locale/sr/LC_MESSAGES/django.mo b/django/conf/locale/sr/LC_MESSAGES/django.mo index bfd62e8c1e64e662cc5bdcd582923591b19f4c87..daf25877b20f70dae2846cfac06a5e9b5b142cea 100644 GIT binary patch delta 17 YcmX?Cf3ALmusVyef}zo7arNyI06%~Q{{R30 delta 17 YcmX?Cf3ALmusVy8f}z=FarNyI06&ig0ssI2 diff --git a/django/conf/locale/sr/LC_MESSAGES/django.po b/django/conf/locale/sr/LC_MESSAGES/django.po index 476e23797a..c5cb82d0b9 100644 --- a/django/conf/locale/sr/LC_MESSAGES/django.po +++ b/django/conf/locale/sr/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Django Serbian (latin) translation v1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-11-12 16:05-0600\n" +"POT-Creation-Date: 2005-11-13 12:05-0600\n" "PO-Revision-Date: 2005-11-03 00:28+0100\n" "Last-Translator: Petar Marić \n" "Language-Team: Nesh & Petar \" on line %(line)s is an invalid tag. (Line starts with \"%" @@ -984,7 +988,7 @@ msgid "" msgstr "" "Tag \"<%(tag)s>\" u redu %(line)s je neispravan. (Red počinje \"%(start)s\".)" -#: core/validators.py:475 +#: core/validators.py:479 #, python-format msgid "" "A tag on line %(line)s is missing one or more required attributes. (Line " @@ -993,7 +997,7 @@ msgstr "" "Tag-u u redu %(line)s nedostaje jedan ili više atributa. (Red počinje sa \"%" "(start)s\".)" -#: core/validators.py:480 +#: core/validators.py:484 #, python-format msgid "" "The \"%(attr)s\" attribute on line %(line)s has an invalid value. (Line " diff --git a/django/conf/locale/sv/LC_MESSAGES/django.mo b/django/conf/locale/sv/LC_MESSAGES/django.mo index 322a5ebc34eeb0d83bc264769f94c6dea1f884e2..2723988c53094550792f108f176559b40bb251b7 100644 GIT binary patch delta 19 acmX@w#dx%faf5>vi;AqCC= delta 19 acmX@w#dx%faf5>vi-DDa(PkGdMri;=_XWrR diff --git a/django/conf/locale/sv/LC_MESSAGES/django.po b/django/conf/locale/sv/LC_MESSAGES/django.po index ba775ea867..1a37557bab 100644 --- a/django/conf/locale/sv/LC_MESSAGES/django.po +++ b/django/conf/locale/sv/LC_MESSAGES/django.po @@ -2,1009 +2,1012 @@ # Copyright (C) 2005 # This file is distributed under the same license as the Django package. # Robin Sonefors , 2005. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-11-13 10:02-0600\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: contrib/admin/models/admin.py:6 -msgid "action time" -msgstr "tid för händelse" - -#: contrib/admin/models/admin.py:9 -msgid "object id" -msgstr "objektets id" - -#: contrib/admin/models/admin.py:10 -msgid "object repr" -msgstr "objektets repr" - -#: contrib/admin/models/admin.py:11 -msgid "action flag" -msgstr "händelseflagga" - -#: contrib/admin/models/admin.py:12 -msgid "change message" -msgstr "ändra meddelande" - -#: contrib/admin/models/admin.py:15 -msgid "log entry" -msgstr "loggpost" - -#: contrib/admin/models/admin.py:16 -msgid "log entries" -msgstr "loggpost" - -#: contrib/admin/templates/admin/object_history.html:5 -#: contrib/admin/templates/admin/500.html:4 -#: contrib/admin/templates/admin/base.html:29 -#: contrib/admin/templates/registration/password_change_done.html:4 -#: contrib/admin/templates/registration/password_reset_form.html:4 -#: contrib/admin/templates/registration/logged_out.html:4 -#: contrib/admin/templates/registration/password_reset_done.html:4 -#: contrib/admin/templates/registration/password_change_form.html:4 -msgid "Home" -msgstr "Hem" - -#: contrib/admin/templates/admin/object_history.html:5 -msgid "History" -msgstr "Historik" - -#: contrib/admin/templates/admin/object_history.html:18 -msgid "Date/time" -msgstr "Datum/tid" - -#: contrib/admin/templates/admin/object_history.html:19 models/auth.py:47 -msgid "User" -msgstr "Användare" - -#: contrib/admin/templates/admin/object_history.html:20 -msgid "Action" -msgstr "Händelse" - -#: contrib/admin/templates/admin/object_history.html:26 -msgid "DATE_WITH_TIME_FULL" -msgstr "D j F Y, H:i:s" - -#: contrib/admin/templates/admin/object_history.html:36 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" -"Det här objektet har ingen ändringshistorik. Det lades antagligen inte till " -"i den här admin-sidan" - -#: contrib/admin/templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "Djangos sidadministration" - -#: contrib/admin/templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "Administration för Django" - -#: contrib/admin/templates/admin/500.html:4 -msgid "Server error" -msgstr "Serverfel" - -#: contrib/admin/templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "Serverfel (500)" - -#: contrib/admin/templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "Serverfel (500)" - -#: contrib/admin/templates/admin/500.html:10 -msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." -msgstr "" -"Ett fel har uppstått. Sidadministratören har meddelats via e-post och " -"felet bör åtgärdas snart. Tack för ditt tålamod." - -#: contrib/admin/templates/admin/404.html:4 -#: contrib/admin/templates/admin/404.html:8 -msgid "Page not found" -msgstr "Sidan kunde inte hittas" - -#: contrib/admin/templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "Vi är ledsna, men den efterfrågade sidan kunde inte hittas." - -#: contrib/admin/templates/admin/index.html:27 -msgid "Add" -msgstr "Lägg till" - -#: contrib/admin/templates/admin/index.html:33 -msgid "Change" -msgstr "Ändra" - -#: contrib/admin/templates/admin/index.html:43 -msgid "You don't have permission to edit anything." -msgstr "Du har inte rättigheter att ändra något." - -#: contrib/admin/templates/admin/index.html:51 -msgid "Recent Actions" -msgstr "Senaste händelserna" - -#: contrib/admin/templates/admin/index.html:52 -msgid "My Actions" -msgstr "Mina händelser" - -#: contrib/admin/templates/admin/index.html:56 -msgid "None available" -msgstr "Inga tillgängliga" - -#: contrib/admin/templates/admin/login.html:15 -msgid "Username:" -msgstr "Användarnamn:" - -#: contrib/admin/templates/admin/login.html:18 -msgid "Password:" -msgstr "Lösenord:" - -#: contrib/admin/templates/admin/login.html:20 -msgid "Have you forgotten your password?" -msgstr "Har du glömt ditt lösenord?" - -#: contrib/admin/templates/admin/login.html:24 -msgid "Log in" -msgstr "Logga in" - -#: contrib/admin/templates/admin/base.html:23 -msgid "Welcome," -msgstr "Välkommen," - -#: contrib/admin/templates/admin/base.html:23 -msgid "Change password" -msgstr "Ändra lösenord" - -#: contrib/admin/templates/admin/base.html:23 -msgid "Log out" -msgstr "Logga ut" - -#: contrib/admin/templates/admin/delete_confirmation.html:7 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(object)s' would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" -"Att ta bort %(object_name)s '%(object)s' skulle innebära att besläktade " -"objekt togs bort, men ditt konto har inte rättigheter att ta bort följande " -"objekttyper:" - -#: contrib/admin/templates/admin/delete_confirmation.html:14 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(object)s\"? All of " -"the following related items will be deleted:" -msgstr "" -"Är du säker på att du vill ta bort %(object_name)s \"%(object)s\"? Följande " -"besläktade föremål kommer att tas bort:" - -#: contrib/admin/templates/admin/delete_confirmation.html:18 -msgid "Yes, I'm sure" -msgstr "Ja, jag är säker" - -#: contrib/admin/templates/registration/password_change_done.html:4 -#: contrib/admin/templates/registration/password_change_form.html:4 -#: contrib/admin/templates/registration/password_change_form.html:6 -#: contrib/admin/templates/registration/password_change_form.html:10 -msgid "Password change" -msgstr "Ändra lösenord" - -#: contrib/admin/templates/registration/password_change_done.html:6 -#: contrib/admin/templates/registration/password_change_done.html:10 -msgid "Password change successful" -msgstr "Lösenordet ändrades" - -#: contrib/admin/templates/registration/password_change_done.html:12 -msgid "Your password was changed." -msgstr "Ditt lösenord har ändrats." - -#: contrib/admin/templates/registration/password_reset_form.html:4 -#: contrib/admin/templates/registration/password_reset_form.html:6 -#: contrib/admin/templates/registration/password_reset_done.html:4 -msgid "Password reset" -msgstr "Nollställ lösenordet" - -#: contrib/admin/templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll reset " -"your password and e-mail the new one to you." -msgstr "" -"Har du glömt ditt lösenord? Fyll i din e-postadress nedan, så nollställer vi " -"ditt lösenord och mailar det nya till dig." - -#: contrib/admin/templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "E-postadress:" - -#: contrib/admin/templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "Nollställ mitt lösenord" - -#: contrib/admin/templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "Tack för att du spenderade kvalitetstid med webbsidan idag." - -#: contrib/admin/templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "Logga in igen" - -#: contrib/admin/templates/registration/password_reset_done.html:6 -#: contrib/admin/templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "Nollställning av lösenordet lyckades" - -#: contrib/admin/templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed a new password to the e-mail address you submitted. You " -"should be receiving it shortly." -msgstr "" -"Vi har skickat ett nytt lösenord till e-postadressen du fyllde i. Det bör " -"anlända snarast." - -#: contrib/admin/templates/registration/password_change_form.html:12 -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 "" -"Var god fyll i ditt gamla lösenord, för säkerhets skull, och skriv sedan in " -"det nya lösenordet två gånger så vi kan kontrollera att du skrev det rätt." - -#: contrib/admin/templates/registration/password_change_form.html:17 -msgid "Old password:" -msgstr "Gamla lösenordet:" - -#: contrib/admin/templates/registration/password_change_form.html:19 -msgid "New password:" -msgstr "Nytt lösenord:" - -#: contrib/admin/templates/registration/password_change_form.html:21 -msgid "Confirm password:" -msgstr "Bekräfta lösenord:" - -#: contrib/admin/templates/registration/password_change_form.html:23 -msgid "Change my password" -msgstr "Ändra mitt lösenord" - -#: contrib/admin/templates/registration/password_reset_email.html:2 -msgid "You're receiving this e-mail because you requested a password reset" -msgstr "Du får det här mailet eftersom du bad om att få lösenordet nollställt" - -#: contrib/admin/templates/registration/password_reset_email.html:3 -#, python-format -msgid "for your user account at %(site_name)s" -msgstr "för ditt användarkonto på %(site_name)s" - -#: contrib/admin/templates/registration/password_reset_email.html:5 -#, python-format -msgid "Your new password is: %(new_password)s" -msgstr "Ditt nya lösenord är: %(new_password)s" - -#: contrib/admin/templates/registration/password_reset_email.html:7 -msgid "Feel free to change this password by going to this page:" -msgstr "" -"Känn dig välkommen att ändra det här lösenordet genom att gå till den här " -"sidan:" - -#: contrib/admin/templates/registration/password_reset_email.html:11 -msgid "Your username, in case you've forgotten:" -msgstr "Ditt användarnamn, om du har glömt:" - -#: contrib/admin/templates/registration/password_reset_email.html:13 -msgid "Thanks for using our site!" -msgstr "Tack för att du använder vår sida!" - -#: contrib/admin/templates/registration/password_reset_email.html:15 -#, python-format -msgid "The %(site_name)s team" -msgstr "%(site_name)s-laget" - -#: contrib/redirects/models/redirects.py:7 -msgid "redirect from" -msgstr "vidarebefodra från" - -#: contrib/redirects/models/redirects.py:8 -msgid "" -"This should be an absolute path, excluding the domain name. Example: '/" -"events/search/'." -msgstr "" -"Det här bör vara en absolut sökväg, förutom domännamnet. Exempel: '/" -"handelser/sok/'." - -#: contrib/redirects/models/redirects.py:9 -msgid "redirect to" -msgstr "vidarebefodra till" - -#: contrib/redirects/models/redirects.py:10 -msgid "" -"This can be either an absolute path (as above) or a full URL starting with " -"'http://'." -msgstr "" -"Det här kan vara antingen en absolut sökväg (som ovan), eller en komplett " -"adress som börjar med 'http://'." - -#: contrib/redirects/models/redirects.py:12 -msgid "redirect" -msgstr "vidarebefodra" - -#: contrib/redirects/models/redirects.py:13 -msgid "redirects" -msgstr "vidarebefodringar" - -#: contrib/flatpages/models/flatpages.py:6 -msgid "URL" -msgstr "URL" - -#: contrib/flatpages/models/flatpages.py:7 -msgid "" -"Example: '/about/contact/'. Make sure to have leading and trailing slashes." -msgstr "" -"Exempel: '/om/kontakt/'. Se till att ha inledande och avslutande snedsträck." - -#: contrib/flatpages/models/flatpages.py:8 -msgid "title" -msgstr "titel" - -#: contrib/flatpages/models/flatpages.py:9 -msgid "content" -msgstr "innehåll" - -#: contrib/flatpages/models/flatpages.py:10 -msgid "enable comments" -msgstr "aktivera kommentarer" - -#: contrib/flatpages/models/flatpages.py:11 -msgid "template name" -msgstr "mallnamn" - -#: contrib/flatpages/models/flatpages.py:12 -#, fuzzy -msgid "" -"Example: 'flatpages/contact_page'. If this isn't provided, the system will " -"use 'flatpages/default'." -msgstr "" -"Exempel: 'flatfiles/kontakt_sida'. Om det här inte fylls i kommer systemet " -"att använda 'flatfiles/default'." - -#: contrib/flatpages/models/flatpages.py:13 -msgid "registration required" -msgstr "registrering krävs" - -#: contrib/flatpages/models/flatpages.py:13 -msgid "If this is checked, only logged-in users will be able to view the page." -msgstr "" -"Om det här bockas i kommer endast inloggade användare att kunna visa sidan" - -#: contrib/flatpages/models/flatpages.py:17 -msgid "flat page" -msgstr "flatsida" - -#: contrib/flatpages/models/flatpages.py:18 -msgid "flat pages" -msgstr "flatsidor" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "måndag" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "tisdag" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "onsdag" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "torsdag" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "fredag" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "lördag" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "söndag" - -#: utils/dates.py:14 -msgid "January" -msgstr "januari" - -#: utils/dates.py:14 -msgid "February" -msgstr "februari" - -#: utils/dates.py:14 utils/dates.py:27 -msgid "March" -msgstr "mars" - -#: utils/dates.py:14 utils/dates.py:27 -msgid "April" -msgstr "april" - -#: utils/dates.py:14 utils/dates.py:27 -msgid "May" -msgstr "maj" - -#: utils/dates.py:14 utils/dates.py:27 -msgid "June" -msgstr "juni" - -#: utils/dates.py:15 utils/dates.py:27 -msgid "July" -msgstr "juli" - -#: utils/dates.py:15 -msgid "August" -msgstr "augusti" - -#: utils/dates.py:15 -msgid "September" -msgstr "september" - -#: utils/dates.py:15 -msgid "October" -msgstr "oktober" - -#: utils/dates.py:15 -msgid "November" -msgstr "november" - -#: utils/dates.py:16 -msgid "December" -msgstr "december" - -#: utils/dates.py:27 -msgid "Jan." -msgstr "jan" - -#: utils/dates.py:27 -msgid "Feb." -msgstr "feb" - -#: utils/dates.py:28 -msgid "Aug." -msgstr "aug" - -#: utils/dates.py:28 -msgid "Sept." -msgstr "sept" - -#: utils/dates.py:28 -msgid "Oct." -msgstr "okt" - -#: utils/dates.py:28 -msgid "Nov." -msgstr "nov" - -#: utils/dates.py:28 -msgid "Dec." -msgstr "dec" - -#: utils/translation.py:335 -msgid "DATE_FORMAT" -msgstr "Y-m-d" - -#: utils/translation.py:336 -msgid "DATETIME_FORMAT" -msgstr "Y-m-d, H:i" - -#: utils/translation.py:337 -msgid "TIME_FORMAT" -msgstr "H:i:s" - -#: models/core.py:7 -msgid "domain name" -msgstr "domännamn" - -#: models/core.py:8 -msgid "display name" -msgstr "visat namn" - -#: models/core.py:10 -msgid "site" -msgstr "sida" - -#: models/core.py:11 -msgid "sites" -msgstr "sidor" - -#: models/core.py:28 -msgid "label" -msgstr "etikett" - -#: models/core.py:29 models/core.py:40 models/auth.py:6 models/auth.py:19 -msgid "name" -msgstr "namn" - -#: models/core.py:31 -msgid "package" -msgstr "paket" - -#: models/core.py:32 -msgid "packages" -msgstr "paket" - -#: models/core.py:42 -msgid "python module name" -msgstr "pythonmodulnamn" - -#: models/core.py:44 -msgid "content type" -msgstr "innehållstyp" - -#: models/core.py:45 -msgid "content types" -msgstr "innehållstyper" - -#: models/core.py:67 -msgid "session key" -msgstr "sessionsnyckel" - -#: models/core.py:68 -msgid "session data" -msgstr "sessionsdata" - -#: models/core.py:69 -msgid "expire date" -msgstr "bäst före" - -#: models/core.py:71 -msgid "session" -msgstr "session" - -#: models/core.py:72 -msgid "sessions" -msgstr "sessioner" - -#: models/auth.py:8 -msgid "codename" -msgstr "kodnamn" - -#: models/auth.py:10 -msgid "Permission" -msgstr "Rättighet" - -#: models/auth.py:11 models/auth.py:58 -msgid "Permissions" -msgstr "Rättigheter" - -#: models/auth.py:22 -msgid "Group" -msgstr "Grupp" - -#: models/auth.py:23 models/auth.py:60 -msgid "Groups" -msgstr "Grupper" - -#: models/auth.py:33 -msgid "username" -msgstr "användarnamn" - -#: models/auth.py:34 -msgid "first name" -msgstr "förnamn" - -#: models/auth.py:35 -msgid "last name" -msgstr "efternamn" - -#: models/auth.py:36 -msgid "e-mail address" -msgstr "e-postadress" - -#: models/auth.py:37 -msgid "password" -msgstr "lösenord" - -#: models/auth.py:37 -msgid "Use an MD5 hash -- not the raw password." -msgstr "Använd en MD5-hash -- inte lösenordet i ren text." - -#: models/auth.py:38 -msgid "staff status" -msgstr "personal?" - -#: models/auth.py:38 -msgid "Designates whether the user can log into this admin site." -msgstr "Avgör om användaren kan logga in till den här administrationssidan." - -#: models/auth.py:39 -msgid "active" -msgstr "aktiv" - -#: models/auth.py:40 -msgid "superuser status" -msgstr "superanvändare" - -#: models/auth.py:41 -msgid "last login" -msgstr "senaste inloggning" - -#: models/auth.py:42 -msgid "date joined" -msgstr "registreringsdatum" - -#: models/auth.py:44 -msgid "" -"In addition to the permissions manually assigned, this user will also get " -"all permissions granted to each group he/she is in." -msgstr "" -"Förutom de rättigheterna som utdelas manuellt så kommer användaren dessutom " -"få samma rättigheter som de grupper där han/hon är medlem." - -#: models/auth.py:48 -msgid "Users" -msgstr "Användare" - -#: models/auth.py:57 -msgid "Personal info" -msgstr "Personlig information" - -#: models/auth.py:59 -msgid "Important dates" -msgstr "Viktiga datum" - -#: models/auth.py:182 -msgid "Message" -msgstr "Meddelande" - -#: conf/global_settings.py:36 -msgid "Bengali" -msgstr "Bengaliska" - -#: conf/global_settings.py:37 -msgid "Czech" -msgstr "Tjeckiska" - -#: conf/global_settings.py:38 -msgid "Welsh" -msgstr "Walesiska" - -#: conf/global_settings.py:39 -msgid "German" -msgstr "Tyska" - -#: conf/global_settings.py:40 -msgid "English" -msgstr "Engelska" - -#: conf/global_settings.py:41 -msgid "Spanish" -msgstr "Spanska" - -#: conf/global_settings.py:42 -msgid "French" -msgstr "Franska" - -#: conf/global_settings.py:43 -msgid "Galician" -msgstr "Galisiska" - -#: conf/global_settings.py:44 -msgid "Italian" -msgstr "Italienska" - -#: conf/global_settings.py:45 -msgid "Norwegian" -msgstr "Norska" - -#: conf/global_settings.py:46 -msgid "Brazilian" -msgstr "Brasilianska" - -#: conf/global_settings.py:47 -msgid "Romanian" -msgstr "Rumänska" - -#: conf/global_settings.py:48 -msgid "Russian" -msgstr "Ryska" - -#: conf/global_settings.py:49 -msgid "Slovak" -msgstr "Slovakiska" - -#: conf/global_settings.py:50 -msgid "Serbian" -msgstr "Serbiska" - -#: conf/global_settings.py:51 -msgid "Simplified Chinese" -msgstr "Förenklad kinesiska" - -#: core/validators.py:59 -msgid "This value must contain only letters, numbers and underscores." -msgstr "Det här värdet får bara innehålla bokstäver, tal och understräck." - -#: core/validators.py:63 -msgid "This value must contain only letters, numbers, underscores and slashes." -msgstr "" -"Det här värdet får bara innehålla bokstäver, tal, understräck och snedsträck" - -#: core/validators.py:71 -msgid "Uppercase letters are not allowed here." -msgstr "Stora bokstäver är inte tillåtna här." - -#: core/validators.py:75 -msgid "Lowercase letters are not allowed here." -msgstr "Små bokstäver är inte tillåtna här." - -#: core/validators.py:82 -msgid "Enter only digits separated by commas." -msgstr "Fyll enbart i siffror avskillda med kommatecken." - -#: core/validators.py:94 -msgid "Enter valid e-mail addresses separated by commas." -msgstr "Fyll i giltiga e-postadresser avskillda med kommatecken." - -#: core/validators.py:98 -msgid "Please enter a valid IP address." -msgstr "Var god fyll i ett giltigt IP-nummer." - -#: core/validators.py:102 -msgid "Empty values are not allowed here." -msgstr "Tomma värden är inte tillåtna här." - -#: core/validators.py:106 -msgid "Non-numeric characters aren't allowed here." -msgstr "Icke-numeriska tecken är inte tillåtna här." - -#: core/validators.py:110 -msgid "This value can't be comprised solely of digits." -msgstr "Det här värdet kan inte enbart bestå av siffror." - -#: core/validators.py:115 -msgid "Enter a whole number." -msgstr "Fyll i ett heltal." - -#: core/validators.py:119 -msgid "Only alphabetical characters are allowed here." -msgstr "Endast alfabetiska bokstäver är tillåtna här." - -#: core/validators.py:123 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "Fyll i ett giltigt datum i formatet ÅÅÅÅ-MM-DD." - -#: core/validators.py:127 -msgid "Enter a valid time in HH:MM format." -msgstr "Fyll i en giltig tid i formatet TT:MM" - -#: core/validators.py:131 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM format." -msgstr "Fyll i en giltig tidpunkt i formatet ÅÅÅÅ-MM-DD TT:MM" - -#: core/validators.py:135 -msgid "Enter a valid e-mail address." -msgstr "Fyll i en giltig e-postadress." - -#: core/validators.py:147 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" -"Ladda upp en giltig bild. Filen du laddade upp var antingen inte en bild, " -"eller så var det en korrupt bild." - -#: core/validators.py:154 -#, python-format -msgid "The URL %s does not point to a valid image." -msgstr "Adressen %s pekar inte till en giltig bild." - -#: core/validators.py:158 -#, python-format -msgid "Phone numbers must be in XXX-XXX-XXXX format. \"%s\" is invalid." -msgstr "" -"Telefonnummer måste vara i det amerikanska formatet " -"XXX-XXX-XXXX. \"%s\" är ogiltigt." - -#: core/validators.py:166 -#, python-format -msgid "The URL %s does not point to a valid QuickTime video." -msgstr "Adressen %s pekar inte till en giltig QuickTime-video." - -#: core/validators.py:170 -msgid "A valid URL is required." -msgstr "En giltig adress krävs." - -#: core/validators.py:184 -#, python-format -msgid "" -"Valid HTML is required. Specific errors are:\n" -"%s" -msgstr "" -"Giltig HTML krävs. Specifika fel är:\n" -"%s" - -#: core/validators.py:191 -#, python-format -msgid "Badly formed XML: %s" -msgstr "Missformad XML: %s" - -#: core/validators.py:201 -#, python-format -msgid "Invalid URL: %s" -msgstr "Felaktig adress: %s" - -#: core/validators.py:205 core/validators.py:207 -#, python-format -msgid "The URL %s is a broken link." -msgstr "Adressen %s är en trasig länk." - -#: core/validators.py:213 -msgid "Enter a valid U.S. state abbreviation." -msgstr "Fyll i en giltig förkortning för en amerikansk delstat" - -#: core/validators.py:228 -#, python-format -msgid "Watch your mouth! The word %s is not allowed here." -msgid_plural "Watch your mouth! The words %s are not allowed here." -msgstr[0] "Håll i tungan! Ordet %s är inte tillåtet här." -msgstr[1] "Håll i tungan! Orden %s är inte tillåtna här." - -#: core/validators.py:235 -#, python-format -msgid "This field must match the '%s' field." -msgstr "Det här fältet måste matcha fältet '%s'." - -#: core/validators.py:254 -msgid "Please enter something for at least one field." -msgstr "Fyll i något i minst ett fält." - -#: core/validators.py:263 core/validators.py:274 -msgid "Please enter both fields or leave them both empty." -msgstr "Fyll antingen i båda fälten, eller lämna båda tomma" - -#: core/validators.py:281 -#, python-format -msgid "This field must be given if %(field)s is %(value)s" -msgstr "Det är fältet måste anges om %(field)s är %(value)s" - -#: core/validators.py:293 -#, python-format -msgid "This field must be given if %(field)s is not %(value)s" -msgstr "Det här fältet måste anges om %(field)s inte är %(value)s" - -#: core/validators.py:312 -msgid "Duplicate values are not allowed." -msgstr "Upprepade värden är inte tillåtna." - -#: core/validators.py:335 -#, python-format -msgid "This value must be a power of %s." -msgstr "Det här värdet måste vara en multipel av %s." - -#: core/validators.py:346 -msgid "Please enter a valid decimal number." -msgstr "Fyll i ett giltigt decimaltal." - -#: core/validators.py:348 -#, python-format -msgid "Please enter a valid decimal number with at most %s total digit." -msgid_plural "" -"Please enter a valid decimal number with at most %s total digits." -msgstr[0] "Fyll i ett giltigt decimaltal med mindre än %s siffra totalt." -msgstr[1] "Fyll i ett giltigt decimaltal med mindre än %s siffror totalt." - -#: core/validators.py:351 -#, python-format -msgid "Please enter a valid decimal number with at most %s decimal place." -msgid_plural "" -"Please enter a valid decimal number with at most %s decimal places." -msgstr[0] "Fyll i ett giltigt decimaltal med som mest %s decimalsiffra." -msgstr[1] "Fyll i ett giltigt decimaltal med som mest %s decimalsiffror." - -#: core/validators.py:361 -#, python-format -msgid "Make sure your uploaded file is at least %s bytes big." -msgstr "Se till att filen du laddade upp är minst %s bytes stor." - -#: core/validators.py:362 -#, python-format -msgid "Make sure your uploaded file is at most %s bytes big." -msgstr "Se till att filen du laddade upp är max %s bytes stor." - -#: core/validators.py:375 -msgid "The format for this field is wrong." -msgstr "Formatet på det här fältet är fel." - -#: core/validators.py:390 -msgid "This field is invalid." -msgstr "Det här fältet är ogiltigt." - -#: core/validators.py:425 -#, python-format -msgid "Could not retrieve anything from %s." -msgstr "Kunde inte hämta något från %s." - -#: core/validators.py:428 -#, python-format -msgid "" -"The URL %(url)s returned the invalid Content-Type header '%(contenttype)s'." -msgstr "" -"Adressen %(url)s returnerade det ogiltiga innehållstyphuvudet " -"(Content-Type header) '%(contenttype)" -"s'" - -#: core/validators.py:461 -#, python-format -msgid "" -"Please close the unclosed %(tag)s tag from line %(line)s. (Line starts with " -"\"%(start)s\".)" -msgstr "" -"Var god avsluta den oavslutade taggen %(tag)s på rad %(line)s. (Raden börjar " -"med \"%(start)s\".)" - -#: core/validators.py:465 -#, python-format -msgid "" -"Some text starting on line %(line)s is not allowed in that context. (Line " -"starts with \"%(start)s\".)" -msgstr "" -"En del text från rad %(line)s är inte tillåtet i det sammanhanget. (Raden " -"börjar med \"%(start)s\".)" - -#: core/validators.py:470 -#, python-format -msgid "" -"\"%(attr)s\" on line %(line)s is an invalid attribute. (Line starts with \"%" -"(start)s\".)" -msgstr "" -"\"%(attr)s\" på rad %(line)s är inte ett gilltigt attribut. (Raden startar " -"med \"%(start)s\".)" - -#: core/validators.py:475 -#, python-format -msgid "" -"\"<%(tag)s>\" on line %(line)s is an invalid tag. (Line starts with \"%" -"(start)s\".)" -msgstr "" -"\"<%(tag)s>\" på rad %(line)s är inte en giltig tagg. (Raden börjar med \"%" -"(start)s\".)" - -#: core/validators.py:479 -#, python-format -msgid "" -"A tag on line %(line)s is missing one or more required attributes. (Line " -"starts with \"%(start)s\".)" -msgstr "" -"En tagg på rad %(line)s saknar en eller flera nödvändiga attribut. (Raden " -"börjar med \"%(start)s\".)" - -#: core/validators.py:484 -#, python-format -msgid "" -"The \"%(attr)s\" attribute on line %(line)s has an invalid value. (Line " -"starts with \"%(start)s\".)" -msgstr "" -"Attributet \"%(attr)s\" på rad %(line)s har ett ogiltigt värde. (Raden " -"börjar med \"%(start)s\".)" - -#: core/meta/fields.py:111 -msgid " Separate multiple IDs with commas." -msgstr " Separera flera ID:n med kommatecken." - -#: core/meta/fields.py:114 -msgid "" -" Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "" -" Håll ner \"Control\", eller \"Command\" på en Mac, för att välja mer än en." +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2005-11-13 12:06-0600\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: contrib/admin/models/admin.py:6 +msgid "action time" +msgstr "tid för händelse" + +#: contrib/admin/models/admin.py:9 +msgid "object id" +msgstr "objektets id" + +#: contrib/admin/models/admin.py:10 +msgid "object repr" +msgstr "objektets repr" + +#: contrib/admin/models/admin.py:11 +msgid "action flag" +msgstr "händelseflagga" + +#: contrib/admin/models/admin.py:12 +msgid "change message" +msgstr "ändra meddelande" + +#: contrib/admin/models/admin.py:15 +msgid "log entry" +msgstr "loggpost" + +#: contrib/admin/models/admin.py:16 +msgid "log entries" +msgstr "loggpost" + +#: contrib/admin/templates/admin/object_history.html:5 +#: contrib/admin/templates/admin/500.html:4 +#: contrib/admin/templates/admin/base.html:29 +#: contrib/admin/templates/registration/password_change_done.html:4 +#: contrib/admin/templates/registration/password_reset_form.html:4 +#: contrib/admin/templates/registration/logged_out.html:4 +#: contrib/admin/templates/registration/password_reset_done.html:4 +#: contrib/admin/templates/registration/password_change_form.html:4 +msgid "Home" +msgstr "Hem" + +#: contrib/admin/templates/admin/object_history.html:5 +msgid "History" +msgstr "Historik" + +#: contrib/admin/templates/admin/object_history.html:18 +msgid "Date/time" +msgstr "Datum/tid" + +#: contrib/admin/templates/admin/object_history.html:19 models/auth.py:47 +msgid "User" +msgstr "Användare" + +#: contrib/admin/templates/admin/object_history.html:20 +msgid "Action" +msgstr "Händelse" + +#: contrib/admin/templates/admin/object_history.html:26 +msgid "DATE_WITH_TIME_FULL" +msgstr "D j F Y, H:i:s" + +#: contrib/admin/templates/admin/object_history.html:36 +msgid "" +"This object doesn't have a change history. It probably wasn't added via this " +"admin site." +msgstr "" +"Det här objektet har ingen ändringshistorik. Det lades antagligen inte till " +"i den här admin-sidan" + +#: contrib/admin/templates/admin/base_site.html:4 +msgid "Django site admin" +msgstr "Djangos sidadministration" + +#: contrib/admin/templates/admin/base_site.html:7 +msgid "Django administration" +msgstr "Administration för Django" + +#: contrib/admin/templates/admin/500.html:4 +msgid "Server error" +msgstr "Serverfel" + +#: contrib/admin/templates/admin/500.html:6 +msgid "Server error (500)" +msgstr "Serverfel (500)" + +#: contrib/admin/templates/admin/500.html:9 +msgid "Server Error (500)" +msgstr "Serverfel (500)" + +#: contrib/admin/templates/admin/500.html:10 +msgid "" +"There's been an error. It's been reported to the site administrators via e-" +"mail and should be fixed shortly. Thanks for your patience." +msgstr "" +"Ett fel har uppstått. Sidadministratören har meddelats via e-post och felet " +"bör åtgärdas snart. Tack för ditt tålamod." + +#: contrib/admin/templates/admin/404.html:4 +#: contrib/admin/templates/admin/404.html:8 +msgid "Page not found" +msgstr "Sidan kunde inte hittas" + +#: contrib/admin/templates/admin/404.html:10 +msgid "We're sorry, but the requested page could not be found." +msgstr "Vi är ledsna, men den efterfrågade sidan kunde inte hittas." + +#: contrib/admin/templates/admin/index.html:27 +msgid "Add" +msgstr "Lägg till" + +#: contrib/admin/templates/admin/index.html:33 +msgid "Change" +msgstr "Ändra" + +#: contrib/admin/templates/admin/index.html:43 +msgid "You don't have permission to edit anything." +msgstr "Du har inte rättigheter att ändra något." + +#: contrib/admin/templates/admin/index.html:51 +msgid "Recent Actions" +msgstr "Senaste händelserna" + +#: contrib/admin/templates/admin/index.html:52 +msgid "My Actions" +msgstr "Mina händelser" + +#: contrib/admin/templates/admin/index.html:56 +msgid "None available" +msgstr "Inga tillgängliga" + +#: contrib/admin/templates/admin/login.html:15 +msgid "Username:" +msgstr "Användarnamn:" + +#: contrib/admin/templates/admin/login.html:18 +msgid "Password:" +msgstr "Lösenord:" + +#: contrib/admin/templates/admin/login.html:20 +msgid "Have you forgotten your password?" +msgstr "Har du glömt ditt lösenord?" + +#: contrib/admin/templates/admin/login.html:24 +msgid "Log in" +msgstr "Logga in" + +#: contrib/admin/templates/admin/base.html:23 +msgid "Welcome," +msgstr "Välkommen," + +#: contrib/admin/templates/admin/base.html:23 +msgid "Change password" +msgstr "Ändra lösenord" + +#: contrib/admin/templates/admin/base.html:23 +msgid "Log out" +msgstr "Logga ut" + +#: contrib/admin/templates/admin/delete_confirmation.html:7 +#, python-format +msgid "" +"Deleting the %(object_name)s '%(object)s' would result in deleting related " +"objects, but your account doesn't have permission to delete the following " +"types of objects:" +msgstr "" +"Att ta bort %(object_name)s '%(object)s' skulle innebära att besläktade " +"objekt togs bort, men ditt konto har inte rättigheter att ta bort följande " +"objekttyper:" + +#: contrib/admin/templates/admin/delete_confirmation.html:14 +#, python-format +msgid "" +"Are you sure you want to delete the %(object_name)s \"%(object)s\"? All of " +"the following related items will be deleted:" +msgstr "" +"Är du säker på att du vill ta bort %(object_name)s \"%(object)s\"? Följande " +"besläktade föremål kommer att tas bort:" + +#: contrib/admin/templates/admin/delete_confirmation.html:18 +msgid "Yes, I'm sure" +msgstr "Ja, jag är säker" + +#: contrib/admin/templates/registration/password_change_done.html:4 +#: contrib/admin/templates/registration/password_change_form.html:4 +#: contrib/admin/templates/registration/password_change_form.html:6 +#: contrib/admin/templates/registration/password_change_form.html:10 +msgid "Password change" +msgstr "Ändra lösenord" + +#: contrib/admin/templates/registration/password_change_done.html:6 +#: contrib/admin/templates/registration/password_change_done.html:10 +msgid "Password change successful" +msgstr "Lösenordet ändrades" + +#: contrib/admin/templates/registration/password_change_done.html:12 +msgid "Your password was changed." +msgstr "Ditt lösenord har ändrats." + +#: contrib/admin/templates/registration/password_reset_form.html:4 +#: contrib/admin/templates/registration/password_reset_form.html:6 +#: contrib/admin/templates/registration/password_reset_done.html:4 +msgid "Password reset" +msgstr "Nollställ lösenordet" + +#: contrib/admin/templates/registration/password_reset_form.html:12 +msgid "" +"Forgotten your password? Enter your e-mail address below, and we'll reset " +"your password and e-mail the new one to you." +msgstr "" +"Har du glömt ditt lösenord? Fyll i din e-postadress nedan, så nollställer vi " +"ditt lösenord och mailar det nya till dig." + +#: contrib/admin/templates/registration/password_reset_form.html:16 +msgid "E-mail address:" +msgstr "E-postadress:" + +#: contrib/admin/templates/registration/password_reset_form.html:16 +msgid "Reset my password" +msgstr "Nollställ mitt lösenord" + +#: contrib/admin/templates/registration/logged_out.html:8 +msgid "Thanks for spending some quality time with the Web site today." +msgstr "Tack för att du spenderade kvalitetstid med webbsidan idag." + +#: contrib/admin/templates/registration/logged_out.html:10 +msgid "Log in again" +msgstr "Logga in igen" + +#: contrib/admin/templates/registration/password_reset_done.html:6 +#: contrib/admin/templates/registration/password_reset_done.html:10 +msgid "Password reset successful" +msgstr "Nollställning av lösenordet lyckades" + +#: contrib/admin/templates/registration/password_reset_done.html:12 +msgid "" +"We've e-mailed a new password to the e-mail address you submitted. You " +"should be receiving it shortly." +msgstr "" +"Vi har skickat ett nytt lösenord till e-postadressen du fyllde i. Det bör " +"anlända snarast." + +#: contrib/admin/templates/registration/password_change_form.html:12 +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 "" +"Var god fyll i ditt gamla lösenord, för säkerhets skull, och skriv sedan in " +"det nya lösenordet två gånger så vi kan kontrollera att du skrev det rätt." + +#: contrib/admin/templates/registration/password_change_form.html:17 +msgid "Old password:" +msgstr "Gamla lösenordet:" + +#: contrib/admin/templates/registration/password_change_form.html:19 +msgid "New password:" +msgstr "Nytt lösenord:" + +#: contrib/admin/templates/registration/password_change_form.html:21 +msgid "Confirm password:" +msgstr "Bekräfta lösenord:" + +#: contrib/admin/templates/registration/password_change_form.html:23 +msgid "Change my password" +msgstr "Ändra mitt lösenord" + +#: contrib/admin/templates/registration/password_reset_email.html:2 +msgid "You're receiving this e-mail because you requested a password reset" +msgstr "Du får det här mailet eftersom du bad om att få lösenordet nollställt" + +#: contrib/admin/templates/registration/password_reset_email.html:3 +#, python-format +msgid "for your user account at %(site_name)s" +msgstr "för ditt användarkonto på %(site_name)s" + +#: contrib/admin/templates/registration/password_reset_email.html:5 +#, python-format +msgid "Your new password is: %(new_password)s" +msgstr "Ditt nya lösenord är: %(new_password)s" + +#: contrib/admin/templates/registration/password_reset_email.html:7 +msgid "Feel free to change this password by going to this page:" +msgstr "" +"Känn dig välkommen att ändra det här lösenordet genom att gå till den här " +"sidan:" + +#: contrib/admin/templates/registration/password_reset_email.html:11 +msgid "Your username, in case you've forgotten:" +msgstr "Ditt användarnamn, om du har glömt:" + +#: contrib/admin/templates/registration/password_reset_email.html:13 +msgid "Thanks for using our site!" +msgstr "Tack för att du använder vår sida!" + +#: contrib/admin/templates/registration/password_reset_email.html:15 +#, python-format +msgid "The %(site_name)s team" +msgstr "%(site_name)s-laget" + +#: contrib/redirects/models/redirects.py:7 +msgid "redirect from" +msgstr "vidarebefodra från" + +#: contrib/redirects/models/redirects.py:8 +msgid "" +"This should be an absolute path, excluding the domain name. Example: '/" +"events/search/'." +msgstr "" +"Det här bör vara en absolut sökväg, förutom domännamnet. Exempel: '/" +"handelser/sok/'." + +#: contrib/redirects/models/redirects.py:9 +msgid "redirect to" +msgstr "vidarebefodra till" + +#: contrib/redirects/models/redirects.py:10 +msgid "" +"This can be either an absolute path (as above) or a full URL starting with " +"'http://'." +msgstr "" +"Det här kan vara antingen en absolut sökväg (som ovan), eller en komplett " +"adress som börjar med 'http://'." + +#: contrib/redirects/models/redirects.py:12 +msgid "redirect" +msgstr "vidarebefodra" + +#: contrib/redirects/models/redirects.py:13 +msgid "redirects" +msgstr "vidarebefodringar" + +#: contrib/flatpages/models/flatpages.py:6 +msgid "URL" +msgstr "URL" + +#: contrib/flatpages/models/flatpages.py:7 +msgid "" +"Example: '/about/contact/'. Make sure to have leading and trailing slashes." +msgstr "" +"Exempel: '/om/kontakt/'. Se till att ha inledande och avslutande snedsträck." + +#: contrib/flatpages/models/flatpages.py:8 +msgid "title" +msgstr "titel" + +#: contrib/flatpages/models/flatpages.py:9 +msgid "content" +msgstr "innehåll" + +#: contrib/flatpages/models/flatpages.py:10 +msgid "enable comments" +msgstr "aktivera kommentarer" + +#: contrib/flatpages/models/flatpages.py:11 +msgid "template name" +msgstr "mallnamn" + +#: contrib/flatpages/models/flatpages.py:12 +#, fuzzy +msgid "" +"Example: 'flatpages/contact_page'. If this isn't provided, the system will " +"use 'flatpages/default'." +msgstr "" +"Exempel: 'flatfiles/kontakt_sida'. Om det här inte fylls i kommer systemet " +"att använda 'flatfiles/default'." + +#: contrib/flatpages/models/flatpages.py:13 +msgid "registration required" +msgstr "registrering krävs" + +#: contrib/flatpages/models/flatpages.py:13 +msgid "If this is checked, only logged-in users will be able to view the page." +msgstr "" +"Om det här bockas i kommer endast inloggade användare att kunna visa sidan" + +#: contrib/flatpages/models/flatpages.py:17 +msgid "flat page" +msgstr "flatsida" + +#: contrib/flatpages/models/flatpages.py:18 +msgid "flat pages" +msgstr "flatsidor" + +#: utils/translation.py:335 +msgid "DATE_FORMAT" +msgstr "Y-m-d" + +#: utils/translation.py:336 +msgid "DATETIME_FORMAT" +msgstr "Y-m-d, H:i" + +#: utils/translation.py:337 +msgid "TIME_FORMAT" +msgstr "H:i:s" + +#: utils/dates.py:6 +msgid "Monday" +msgstr "måndag" + +#: utils/dates.py:6 +msgid "Tuesday" +msgstr "tisdag" + +#: utils/dates.py:6 +msgid "Wednesday" +msgstr "onsdag" + +#: utils/dates.py:6 +msgid "Thursday" +msgstr "torsdag" + +#: utils/dates.py:6 +msgid "Friday" +msgstr "fredag" + +#: utils/dates.py:7 +msgid "Saturday" +msgstr "lördag" + +#: utils/dates.py:7 +msgid "Sunday" +msgstr "söndag" + +#: utils/dates.py:14 +msgid "January" +msgstr "januari" + +#: utils/dates.py:14 +msgid "February" +msgstr "februari" + +#: utils/dates.py:14 utils/dates.py:27 +msgid "March" +msgstr "mars" + +#: utils/dates.py:14 utils/dates.py:27 +msgid "April" +msgstr "april" + +#: utils/dates.py:14 utils/dates.py:27 +msgid "May" +msgstr "maj" + +#: utils/dates.py:14 utils/dates.py:27 +msgid "June" +msgstr "juni" + +#: utils/dates.py:15 utils/dates.py:27 +msgid "July" +msgstr "juli" + +#: utils/dates.py:15 +msgid "August" +msgstr "augusti" + +#: utils/dates.py:15 +msgid "September" +msgstr "september" + +#: utils/dates.py:15 +msgid "October" +msgstr "oktober" + +#: utils/dates.py:15 +msgid "November" +msgstr "november" + +#: utils/dates.py:16 +msgid "December" +msgstr "december" + +#: utils/dates.py:27 +msgid "Jan." +msgstr "jan" + +#: utils/dates.py:27 +msgid "Feb." +msgstr "feb" + +#: utils/dates.py:28 +msgid "Aug." +msgstr "aug" + +#: utils/dates.py:28 +msgid "Sept." +msgstr "sept" + +#: utils/dates.py:28 +msgid "Oct." +msgstr "okt" + +#: utils/dates.py:28 +msgid "Nov." +msgstr "nov" + +#: utils/dates.py:28 +msgid "Dec." +msgstr "dec" + +#: models/core.py:7 +msgid "domain name" +msgstr "domännamn" + +#: models/core.py:8 +msgid "display name" +msgstr "visat namn" + +#: models/core.py:10 +msgid "site" +msgstr "sida" + +#: models/core.py:11 +msgid "sites" +msgstr "sidor" + +#: models/core.py:28 +msgid "label" +msgstr "etikett" + +#: models/core.py:29 models/core.py:40 models/auth.py:6 models/auth.py:19 +msgid "name" +msgstr "namn" + +#: models/core.py:31 +msgid "package" +msgstr "paket" + +#: models/core.py:32 +msgid "packages" +msgstr "paket" + +#: models/core.py:42 +msgid "python module name" +msgstr "pythonmodulnamn" + +#: models/core.py:44 +msgid "content type" +msgstr "innehållstyp" + +#: models/core.py:45 +msgid "content types" +msgstr "innehållstyper" + +#: models/core.py:67 +msgid "session key" +msgstr "sessionsnyckel" + +#: models/core.py:68 +msgid "session data" +msgstr "sessionsdata" + +#: models/core.py:69 +msgid "expire date" +msgstr "bäst före" + +#: models/core.py:71 +msgid "session" +msgstr "session" + +#: models/core.py:72 +msgid "sessions" +msgstr "sessioner" + +#: models/auth.py:8 +msgid "codename" +msgstr "kodnamn" + +#: models/auth.py:10 +msgid "Permission" +msgstr "Rättighet" + +#: models/auth.py:11 models/auth.py:58 +msgid "Permissions" +msgstr "Rättigheter" + +#: models/auth.py:22 +msgid "Group" +msgstr "Grupp" + +#: models/auth.py:23 models/auth.py:60 +msgid "Groups" +msgstr "Grupper" + +#: models/auth.py:33 +msgid "username" +msgstr "användarnamn" + +#: models/auth.py:34 +msgid "first name" +msgstr "förnamn" + +#: models/auth.py:35 +msgid "last name" +msgstr "efternamn" + +#: models/auth.py:36 +msgid "e-mail address" +msgstr "e-postadress" + +#: models/auth.py:37 +msgid "password" +msgstr "lösenord" + +#: models/auth.py:37 +msgid "Use an MD5 hash -- not the raw password." +msgstr "Använd en MD5-hash -- inte lösenordet i ren text." + +#: models/auth.py:38 +msgid "staff status" +msgstr "personal?" + +#: models/auth.py:38 +msgid "Designates whether the user can log into this admin site." +msgstr "Avgör om användaren kan logga in till den här administrationssidan." + +#: models/auth.py:39 +msgid "active" +msgstr "aktiv" + +#: models/auth.py:40 +msgid "superuser status" +msgstr "superanvändare" + +#: models/auth.py:41 +msgid "last login" +msgstr "senaste inloggning" + +#: models/auth.py:42 +msgid "date joined" +msgstr "registreringsdatum" + +#: models/auth.py:44 +msgid "" +"In addition to the permissions manually assigned, this user will also get " +"all permissions granted to each group he/she is in." +msgstr "" +"Förutom de rättigheterna som utdelas manuellt så kommer användaren dessutom " +"få samma rättigheter som de grupper där han/hon är medlem." + +#: models/auth.py:48 +msgid "Users" +msgstr "Användare" + +#: models/auth.py:57 +msgid "Personal info" +msgstr "Personlig information" + +#: models/auth.py:59 +msgid "Important dates" +msgstr "Viktiga datum" + +#: models/auth.py:182 +msgid "Message" +msgstr "Meddelande" + +#: conf/global_settings.py:36 +msgid "Bengali" +msgstr "Bengaliska" + +#: conf/global_settings.py:37 +msgid "Czech" +msgstr "Tjeckiska" + +#: conf/global_settings.py:38 +msgid "Welsh" +msgstr "Walesiska" + +#: conf/global_settings.py:39 +msgid "German" +msgstr "Tyska" + +#: conf/global_settings.py:40 +msgid "English" +msgstr "Engelska" + +#: conf/global_settings.py:41 +msgid "Spanish" +msgstr "Spanska" + +#: conf/global_settings.py:42 +msgid "French" +msgstr "Franska" + +#: conf/global_settings.py:43 +msgid "Galician" +msgstr "Galisiska" + +#: conf/global_settings.py:44 +msgid "Italian" +msgstr "Italienska" + +#: conf/global_settings.py:45 +msgid "Norwegian" +msgstr "Norska" + +#: conf/global_settings.py:46 +msgid "Brazilian" +msgstr "Brasilianska" + +#: conf/global_settings.py:47 +msgid "Romanian" +msgstr "Rumänska" + +#: conf/global_settings.py:48 +msgid "Russian" +msgstr "Ryska" + +#: conf/global_settings.py:49 +msgid "Slovak" +msgstr "Slovakiska" + +#: conf/global_settings.py:50 +msgid "Serbian" +msgstr "Serbiska" + +#: conf/global_settings.py:51 +msgid "Swedish" +msgstr "" + +#: conf/global_settings.py:52 +msgid "Simplified Chinese" +msgstr "Förenklad kinesiska" + +#: core/validators.py:59 +msgid "This value must contain only letters, numbers and underscores." +msgstr "Det här värdet får bara innehålla bokstäver, tal och understräck." + +#: core/validators.py:63 +msgid "This value must contain only letters, numbers, underscores and slashes." +msgstr "" +"Det här värdet får bara innehålla bokstäver, tal, understräck och snedsträck" + +#: core/validators.py:71 +msgid "Uppercase letters are not allowed here." +msgstr "Stora bokstäver är inte tillåtna här." + +#: core/validators.py:75 +msgid "Lowercase letters are not allowed here." +msgstr "Små bokstäver är inte tillåtna här." + +#: core/validators.py:82 +msgid "Enter only digits separated by commas." +msgstr "Fyll enbart i siffror avskillda med kommatecken." + +#: core/validators.py:94 +msgid "Enter valid e-mail addresses separated by commas." +msgstr "Fyll i giltiga e-postadresser avskillda med kommatecken." + +#: core/validators.py:98 +msgid "Please enter a valid IP address." +msgstr "Var god fyll i ett giltigt IP-nummer." + +#: core/validators.py:102 +msgid "Empty values are not allowed here." +msgstr "Tomma värden är inte tillåtna här." + +#: core/validators.py:106 +msgid "Non-numeric characters aren't allowed here." +msgstr "Icke-numeriska tecken är inte tillåtna här." + +#: core/validators.py:110 +msgid "This value can't be comprised solely of digits." +msgstr "Det här värdet kan inte enbart bestå av siffror." + +#: core/validators.py:115 +msgid "Enter a whole number." +msgstr "Fyll i ett heltal." + +#: core/validators.py:119 +msgid "Only alphabetical characters are allowed here." +msgstr "Endast alfabetiska bokstäver är tillåtna här." + +#: core/validators.py:123 +msgid "Enter a valid date in YYYY-MM-DD format." +msgstr "Fyll i ett giltigt datum i formatet ÅÅÅÅ-MM-DD." + +#: core/validators.py:127 +msgid "Enter a valid time in HH:MM format." +msgstr "Fyll i en giltig tid i formatet TT:MM" + +#: core/validators.py:131 +msgid "Enter a valid date/time in YYYY-MM-DD HH:MM format." +msgstr "Fyll i en giltig tidpunkt i formatet ÅÅÅÅ-MM-DD TT:MM" + +#: core/validators.py:135 +msgid "Enter a valid e-mail address." +msgstr "Fyll i en giltig e-postadress." + +#: core/validators.py:147 +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Ladda upp en giltig bild. Filen du laddade upp var antingen inte en bild, " +"eller så var det en korrupt bild." + +#: core/validators.py:154 +#, python-format +msgid "The URL %s does not point to a valid image." +msgstr "Adressen %s pekar inte till en giltig bild." + +#: core/validators.py:158 +#, python-format +msgid "Phone numbers must be in XXX-XXX-XXXX format. \"%s\" is invalid." +msgstr "" +"Telefonnummer måste vara i det amerikanska formatet XXX-XXX-XXXX. \"%s\" är " +"ogiltigt." + +#: core/validators.py:166 +#, python-format +msgid "The URL %s does not point to a valid QuickTime video." +msgstr "Adressen %s pekar inte till en giltig QuickTime-video." + +#: core/validators.py:170 +msgid "A valid URL is required." +msgstr "En giltig adress krävs." + +#: core/validators.py:184 +#, python-format +msgid "" +"Valid HTML is required. Specific errors are:\n" +"%s" +msgstr "" +"Giltig HTML krävs. Specifika fel är:\n" +"%s" + +#: core/validators.py:191 +#, python-format +msgid "Badly formed XML: %s" +msgstr "Missformad XML: %s" + +#: core/validators.py:201 +#, python-format +msgid "Invalid URL: %s" +msgstr "Felaktig adress: %s" + +#: core/validators.py:205 core/validators.py:207 +#, python-format +msgid "The URL %s is a broken link." +msgstr "Adressen %s är en trasig länk." + +#: core/validators.py:213 +msgid "Enter a valid U.S. state abbreviation." +msgstr "Fyll i en giltig förkortning för en amerikansk delstat" + +#: core/validators.py:228 +#, python-format +msgid "Watch your mouth! The word %s is not allowed here." +msgid_plural "Watch your mouth! The words %s are not allowed here." +msgstr[0] "Håll i tungan! Ordet %s är inte tillåtet här." +msgstr[1] "Håll i tungan! Orden %s är inte tillåtna här." + +#: core/validators.py:235 +#, python-format +msgid "This field must match the '%s' field." +msgstr "Det här fältet måste matcha fältet '%s'." + +#: core/validators.py:254 +msgid "Please enter something for at least one field." +msgstr "Fyll i något i minst ett fält." + +#: core/validators.py:263 core/validators.py:274 +msgid "Please enter both fields or leave them both empty." +msgstr "Fyll antingen i båda fälten, eller lämna båda tomma" + +#: core/validators.py:281 +#, python-format +msgid "This field must be given if %(field)s is %(value)s" +msgstr "Det är fältet måste anges om %(field)s är %(value)s" + +#: core/validators.py:293 +#, python-format +msgid "This field must be given if %(field)s is not %(value)s" +msgstr "Det här fältet måste anges om %(field)s inte är %(value)s" + +#: core/validators.py:312 +msgid "Duplicate values are not allowed." +msgstr "Upprepade värden är inte tillåtna." + +#: core/validators.py:335 +#, python-format +msgid "This value must be a power of %s." +msgstr "Det här värdet måste vara en multipel av %s." + +#: core/validators.py:346 +msgid "Please enter a valid decimal number." +msgstr "Fyll i ett giltigt decimaltal." + +#: core/validators.py:348 +#, python-format +msgid "Please enter a valid decimal number with at most %s total digit." +msgid_plural "" +"Please enter a valid decimal number with at most %s total digits." +msgstr[0] "Fyll i ett giltigt decimaltal med mindre än %s siffra totalt." +msgstr[1] "Fyll i ett giltigt decimaltal med mindre än %s siffror totalt." + +#: core/validators.py:351 +#, python-format +msgid "Please enter a valid decimal number with at most %s decimal place." +msgid_plural "" +"Please enter a valid decimal number with at most %s decimal places." +msgstr[0] "Fyll i ett giltigt decimaltal med som mest %s decimalsiffra." +msgstr[1] "Fyll i ett giltigt decimaltal med som mest %s decimalsiffror." + +#: core/validators.py:361 +#, python-format +msgid "Make sure your uploaded file is at least %s bytes big." +msgstr "Se till att filen du laddade upp är minst %s bytes stor." + +#: core/validators.py:362 +#, python-format +msgid "Make sure your uploaded file is at most %s bytes big." +msgstr "Se till att filen du laddade upp är max %s bytes stor." + +#: core/validators.py:375 +msgid "The format for this field is wrong." +msgstr "Formatet på det här fältet är fel." + +#: core/validators.py:390 +msgid "This field is invalid." +msgstr "Det här fältet är ogiltigt." + +#: core/validators.py:425 +#, python-format +msgid "Could not retrieve anything from %s." +msgstr "Kunde inte hämta något från %s." + +#: core/validators.py:428 +#, python-format +msgid "" +"The URL %(url)s returned the invalid Content-Type header '%(contenttype)s'." +msgstr "" +"Adressen %(url)s returnerade det ogiltiga innehållstyphuvudet (Content-Type " +"header) '%(contenttype)s'" + +#: core/validators.py:461 +#, python-format +msgid "" +"Please close the unclosed %(tag)s tag from line %(line)s. (Line starts with " +"\"%(start)s\".)" +msgstr "" +"Var god avsluta den oavslutade taggen %(tag)s på rad %(line)s. (Raden börjar " +"med \"%(start)s\".)" + +#: core/validators.py:465 +#, python-format +msgid "" +"Some text starting on line %(line)s is not allowed in that context. (Line " +"starts with \"%(start)s\".)" +msgstr "" +"En del text från rad %(line)s är inte tillåtet i det sammanhanget. (Raden " +"börjar med \"%(start)s\".)" + +#: core/validators.py:470 +#, python-format +msgid "" +"\"%(attr)s\" on line %(line)s is an invalid attribute. (Line starts with \"%" +"(start)s\".)" +msgstr "" +"\"%(attr)s\" på rad %(line)s är inte ett gilltigt attribut. (Raden startar " +"med \"%(start)s\".)" + +#: core/validators.py:475 +#, python-format +msgid "" +"\"<%(tag)s>\" on line %(line)s is an invalid tag. (Line starts with \"%" +"(start)s\".)" +msgstr "" +"\"<%(tag)s>\" på rad %(line)s är inte en giltig tagg. (Raden börjar med \"%" +"(start)s\".)" + +#: core/validators.py:479 +#, python-format +msgid "" +"A tag on line %(line)s is missing one or more required attributes. (Line " +"starts with \"%(start)s\".)" +msgstr "" +"En tagg på rad %(line)s saknar en eller flera nödvändiga attribut. (Raden " +"börjar med \"%(start)s\".)" + +#: core/validators.py:484 +#, python-format +msgid "" +"The \"%(attr)s\" attribute on line %(line)s has an invalid value. (Line " +"starts with \"%(start)s\".)" +msgstr "" +"Attributet \"%(attr)s\" på rad %(line)s har ett ogiltigt värde. (Raden " +"börjar med \"%(start)s\".)" + +#: core/meta/fields.py:111 +msgid " Separate multiple IDs with commas." +msgstr " Separera flera ID:n med kommatecken." + +#: core/meta/fields.py:114 +msgid "" +" Hold down \"Control\", or \"Command\" on a Mac, to select more than one." +msgstr "" +" Håll ner \"Control\", eller \"Command\" på en Mac, för att välja mer än en." diff --git a/django/conf/locale/zh_CN/LC_MESSAGES/django.mo b/django/conf/locale/zh_CN/LC_MESSAGES/django.mo index e0963c8b25f85e80350b1fe7cd7eed2a604802dc..e140bfcec3adf796653551024b67af5a20972126 100644 GIT binary patch delta 19 acmcc6#CV~JaYKtHi?M>C(dG`#6XF0%eg^>n delta 19 acmcc6#CV~JaYKtHi;;q%+2#(-6XF0%jRyn( diff --git a/django/conf/locale/zh_CN/LC_MESSAGES/django.po b/django/conf/locale/zh_CN/LC_MESSAGES/django.po index fef8c1355d..4f16e9f8fd 100644 --- a/django/conf/locale/zh_CN/LC_MESSAGES/django.po +++ b/django/conf/locale/zh_CN/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: django v1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-11-12 16:05-0600\n" +"POT-Creation-Date: 2005-11-13 12:05-0600\n" "PO-Revision-Date: 2005-11-11 13:55+0800\n" "Last-Translator: limodou \n" "Language-Team: Simplified Chinese \n" @@ -717,6 +717,10 @@ msgid "Serbian" msgstr "塞尔维亚语" #: conf/global_settings.py:51 +msgid "Swedish" +msgstr "" + +#: conf/global_settings.py:52 msgid "Simplified Chinese" msgstr "简体中文" @@ -828,101 +832,101 @@ msgstr "格式错误的 XML: %s" msgid "Invalid URL: %s" msgstr "无效 URL: %s" -#: core/validators.py:203 +#: core/validators.py:205 core/validators.py:207 #, python-format msgid "The URL %s is a broken link." msgstr "URL %s 是一个断开的链接。" -#: core/validators.py:209 +#: core/validators.py:213 msgid "Enter a valid U.S. state abbreviation." msgstr "输入一个有效的 U.S. 州缩写。" -#: core/validators.py:224 +#: core/validators.py:228 #, python-format msgid "Watch your mouth! The word %s is not allowed here." msgid_plural "Watch your mouth! The words %s are not allowed here." msgstr[0] "看住你的嘴!%s 不允许在这里出现。" -#: core/validators.py:231 +#: core/validators.py:235 #, python-format msgid "This field must match the '%s' field." msgstr "这个字段必须与 '%s' 字段相匹配。" -#: core/validators.py:250 +#: core/validators.py:254 msgid "Please enter something for at least one field." msgstr "请至少在一个字段上输入些什么。" -#: core/validators.py:259 core/validators.py:270 +#: core/validators.py:263 core/validators.py:274 msgid "Please enter both fields or leave them both empty." msgstr "请要么两个字段都输入或者两个字段都空着。" -#: core/validators.py:277 +#: core/validators.py:281 #, python-format msgid "This field must be given if %(field)s is %(value)s" msgstr "如果 %(field)s 是 %(value)s 时这个字段必须给出" -#: core/validators.py:289 +#: core/validators.py:293 #, python-format msgid "This field must be given if %(field)s is not %(value)s" msgstr "如果 %(field)s 不是 %(value)s 时这个字段必须给出" -#: core/validators.py:308 +#: core/validators.py:312 msgid "Duplicate values are not allowed." msgstr "重复值不允许。" -#: core/validators.py:331 +#: core/validators.py:335 #, python-format msgid "This value must be a power of %s." msgstr "这个值必须是 %s 的乘方。" -#: core/validators.py:342 +#: core/validators.py:346 msgid "Please enter a valid decimal number." msgstr "请输入一个有效的小数。" -#: core/validators.py:344 +#: core/validators.py:348 #, python-format msgid "Please enter a valid decimal number with at most %s total digit." msgid_plural "" "Please enter a valid decimal number with at most %s total digits." msgstr[0] "请输入一个有效的小数,最多 %s 个数字。 " -#: core/validators.py:347 +#: core/validators.py:351 #, python-format msgid "Please enter a valid decimal number with at most %s decimal place." msgid_plural "" "Please enter a valid decimal number with at most %s decimal places." msgstr[0] "请输入一个有效的小数,最多 %s 个小数位。 " -#: core/validators.py:357 +#: core/validators.py:361 #, python-format msgid "Make sure your uploaded file is at least %s bytes big." msgstr "请确保你上传的文件至少 %s 字节大。" -#: core/validators.py:358 +#: core/validators.py:362 #, python-format msgid "Make sure your uploaded file is at most %s bytes big." msgstr "请确保你上传的文件至多 %s 字节大。" -#: core/validators.py:371 +#: core/validators.py:375 msgid "The format for this field is wrong." msgstr "这个字段的格式不正确。" -#: core/validators.py:386 +#: core/validators.py:390 msgid "This field is invalid." msgstr "这个字段无效。" -#: core/validators.py:421 +#: core/validators.py:425 #, python-format msgid "Could not retrieve anything from %s." msgstr "不能从 %s 得到任何东西。" -#: core/validators.py:424 +#: core/validators.py:428 #, python-format msgid "" "The URL %(url)s returned the invalid Content-Type header '%(contenttype)s'." msgstr "URL %(url)s 返回了无效的 Content-Type 头 '%(contenttype)s'。" -#: core/validators.py:457 +#: core/validators.py:461 #, python-format msgid "" "Please close the unclosed %(tag)s tag from line %(line)s. (Line starts with " @@ -930,7 +934,7 @@ msgid "" msgstr "" "请关闭未关闭的 %(tag)s 标签从第 %(line)s 行。(行开始于 \"%(start)s\"。)" -#: core/validators.py:461 +#: core/validators.py:465 #, python-format msgid "" "Some text starting on line %(line)s is not allowed in that context. (Line " @@ -938,7 +942,7 @@ msgid "" msgstr "" "在 %(line)s 行开始的一些文本不允许在那个上下文中。(行开始于 \"%(start)s\"。)" -#: core/validators.py:466 +#: core/validators.py:470 #, python-format msgid "" "\"%(attr)s\" on line %(line)s is an invalid attribute. (Line starts with \"%" @@ -946,7 +950,7 @@ msgid "" msgstr "" "在 %(line)s 行的\"%(attr)s\"不是一个有效的属性。(行开始于 \"%(start)s\"。)" -#: core/validators.py:471 +#: core/validators.py:475 #, python-format msgid "" "\"<%(tag)s>\" on line %(line)s is an invalid tag. (Line starts with \"%" @@ -954,7 +958,7 @@ msgid "" msgstr "" "在 %(line)s 行的\"<%(tag)s>\"不是一个有效的标签。(行开始于 \"%(start)s\"。)" -#: core/validators.py:475 +#: core/validators.py:479 #, python-format msgid "" "A tag on line %(line)s is missing one or more required attributes. (Line " @@ -962,7 +966,7 @@ msgid "" msgstr "" "在行 %(line)s 的标签少了一个或多个必须的属性。(行开始于 \"%(start)s\"。)" -#: core/validators.py:480 +#: core/validators.py:484 #, python-format msgid "" "The \"%(attr)s\" attribute on line %(line)s has an invalid value. (Line " From fdf2738f0efe108152fb5812fb04d0ae79f39ca8 Mon Sep 17 00:00:00 2001 From: Georg Bauer Date: Sun, 13 Nov 2005 19:38:31 +0000 Subject: [PATCH 19/23] fixes #751, added new icelandic translation (thx Dagur), updated the serbian translation and updated .po files for updated global_settings (because of the new language) git-svn-id: http://code.djangoproject.com/svn/django/trunk@1217 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/conf/global_settings.py | 1 + django/conf/locale/bn/LC_MESSAGES/django.mo | Bin 27102 -> 27102 bytes django/conf/locale/bn/LC_MESSAGES/django.po | 22 ++++--- django/conf/locale/cs/LC_MESSAGES/django.mo | Bin 17639 -> 17639 bytes django/conf/locale/cs/LC_MESSAGES/django.po | 22 ++++--- django/conf/locale/cy/LC_MESSAGES/django.mo | Bin 17077 -> 17077 bytes django/conf/locale/cy/LC_MESSAGES/django.po | 22 ++++--- django/conf/locale/de/LC_MESSAGES/django.mo | Bin 18309 -> 18346 bytes django/conf/locale/de/LC_MESSAGES/django.po | 22 ++++--- django/conf/locale/en/LC_MESSAGES/django.mo | Bin 536 -> 536 bytes django/conf/locale/en/LC_MESSAGES/django.po | 22 ++++--- django/conf/locale/es/LC_MESSAGES/django.mo | Bin 5203 -> 5203 bytes django/conf/locale/es/LC_MESSAGES/django.po | 22 ++++--- django/conf/locale/fr/LC_MESSAGES/django.mo | Bin 17549 -> 17549 bytes django/conf/locale/fr/LC_MESSAGES/django.po | 22 ++++--- django/conf/locale/gl/LC_MESSAGES/django.mo | Bin 5322 -> 5322 bytes django/conf/locale/gl/LC_MESSAGES/django.po | 22 ++++--- django/conf/locale/it/LC_MESSAGES/django.mo | Bin 16611 -> 16611 bytes django/conf/locale/it/LC_MESSAGES/django.po | 22 ++++--- django/conf/locale/no/LC_MESSAGES/django.mo | Bin 17184 -> 17184 bytes django/conf/locale/no/LC_MESSAGES/django.po | 22 ++++--- .../conf/locale/pt_BR/LC_MESSAGES/django.mo | Bin 16457 -> 16457 bytes .../conf/locale/pt_BR/LC_MESSAGES/django.po | 22 ++++--- django/conf/locale/ro/LC_MESSAGES/django.mo | Bin 17204 -> 17204 bytes django/conf/locale/ro/LC_MESSAGES/django.po | 22 ++++--- django/conf/locale/ru/LC_MESSAGES/django.mo | Bin 5134 -> 5134 bytes django/conf/locale/ru/LC_MESSAGES/django.po | 22 ++++--- django/conf/locale/sk/LC_MESSAGES/django.mo | Bin 17545 -> 17545 bytes django/conf/locale/sk/LC_MESSAGES/django.po | 22 ++++--- django/conf/locale/sr/LC_MESSAGES/django.mo | Bin 16334 -> 17377 bytes django/conf/locale/sr/LC_MESSAGES/django.po | 60 +++++++++--------- django/conf/locale/sv/LC_MESSAGES/django.mo | Bin 17733 -> 17733 bytes django/conf/locale/sv/LC_MESSAGES/django.po | 22 ++++--- .../conf/locale/zh_CN/LC_MESSAGES/django.mo | Bin 16720 -> 16720 bytes .../conf/locale/zh_CN/LC_MESSAGES/django.po | 22 ++++--- 35 files changed, 240 insertions(+), 173 deletions(-) diff --git a/django/conf/global_settings.py b/django/conf/global_settings.py index 2a15477295..17337aa3fe 100644 --- a/django/conf/global_settings.py +++ b/django/conf/global_settings.py @@ -41,6 +41,7 @@ LANGUAGES = ( ('es', _('Spanish')), ('fr', _('French')), ('gl', _('Galician')), + ('is', _('Icelandic')), ('it', _('Italian')), ('no', _('Norwegian')), ('pt-br', _('Brazilian')), diff --git a/django/conf/locale/bn/LC_MESSAGES/django.mo b/django/conf/locale/bn/LC_MESSAGES/django.mo index 9551ed4cc4b04da40b56a26d576d7e5b4e67ec05..340a4198dcf2ee4c35a62280d193db0ecc2c3976 100644 GIT binary patch delta 19 acmcb2nepCb#tr^jEXGzQhMR-6y6pi~BnMsq delta 19 acmcb2nepCb#tr^jEJjuaW}Abxy6pi~9S2?j diff --git a/django/conf/locale/bn/LC_MESSAGES/django.po b/django/conf/locale/bn/LC_MESSAGES/django.po index df2ff41d0c..c710e23028 100644 --- a/django/conf/locale/bn/LC_MESSAGES/django.po +++ b/django/conf/locale/bn/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Django CVS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-11-13 12:06-0600\n" +"POT-Creation-Date: 2005-11-13 13:41-0600\n" "PO-Revision-Date: 2005-11-12 20:05+0530\n" "Last-Translator: Baishampayan Ghose \n" "Language-Team: Ankur Bangla \n" @@ -695,38 +695,42 @@ msgid "Galician" msgstr "গ্যালিসিয়" #: conf/global_settings.py:44 +msgid "Icelandic" +msgstr "" + +#: conf/global_settings.py:45 msgid "Italian" msgstr "ইতালিয়" -#: conf/global_settings.py:45 +#: conf/global_settings.py:46 msgid "Norwegian" msgstr "নরওয়েজিয়" -#: conf/global_settings.py:46 +#: conf/global_settings.py:47 msgid "Brazilian" msgstr "ব্রাজিলীয়" -#: conf/global_settings.py:47 +#: conf/global_settings.py:48 msgid "Romanian" msgstr "রোমানীয়" -#: conf/global_settings.py:48 +#: conf/global_settings.py:49 msgid "Russian" msgstr "রুশ" -#: conf/global_settings.py:49 +#: conf/global_settings.py:50 msgid "Slovak" msgstr "স্লোভাক" -#: conf/global_settings.py:50 +#: conf/global_settings.py:51 msgid "Serbian" msgstr "সার্বিয়ান" -#: conf/global_settings.py:51 +#: conf/global_settings.py:52 msgid "Swedish" msgstr "" -#: conf/global_settings.py:52 +#: conf/global_settings.py:53 msgid "Simplified Chinese" msgstr "সরলীকৃত চীনা" diff --git a/django/conf/locale/cs/LC_MESSAGES/django.mo b/django/conf/locale/cs/LC_MESSAGES/django.mo index 300be1d14a6c0c6c0b35cefa941e0a6658821e5d..36953fd16dcc04ee1d71d312ad065da98a787e23 100644 GIT binary patch delta 19 acmaFf$@sjJaRaL+i?Nl7!Ddd)d(r?%qXu*U delta 19 acmaFf$@sjJaRaL+i;\n" "Language-Team: Czech\n" @@ -702,38 +702,42 @@ msgid "Galician" msgstr "Galicijsky" #: conf/global_settings.py:44 +msgid "Icelandic" +msgstr "" + +#: conf/global_settings.py:45 msgid "Italian" msgstr "Italsky" -#: conf/global_settings.py:45 +#: conf/global_settings.py:46 msgid "Norwegian" msgstr "Norsky" -#: conf/global_settings.py:46 +#: conf/global_settings.py:47 msgid "Brazilian" msgstr "Brazilsky" -#: conf/global_settings.py:47 +#: conf/global_settings.py:48 msgid "Romanian" msgstr "Rumunsky" -#: conf/global_settings.py:48 +#: conf/global_settings.py:49 msgid "Russian" msgstr "Rusky" -#: conf/global_settings.py:49 +#: conf/global_settings.py:50 msgid "Slovak" msgstr "Slovensky" -#: conf/global_settings.py:50 +#: conf/global_settings.py:51 msgid "Serbian" msgstr "Srbsky" -#: conf/global_settings.py:51 +#: conf/global_settings.py:52 msgid "Swedish" msgstr "" -#: conf/global_settings.py:52 +#: conf/global_settings.py:53 msgid "Simplified Chinese" msgstr "Jednoduchá čínština" diff --git a/django/conf/locale/cy/LC_MESSAGES/django.mo b/django/conf/locale/cy/LC_MESSAGES/django.mo index b15ee65ada47b515e00bc4cbb5d3d1ed879e40e0..17da2b83276e07d2cd2d822e585e81c1c7278fdd 100644 GIT binary patch delta 19 acmdnm%DA\n" "Language-Team: Cymraeg \n" @@ -698,38 +698,42 @@ msgid "Galician" msgstr "Galisieg" #: conf/global_settings.py:44 +msgid "Icelandic" +msgstr "" + +#: conf/global_settings.py:45 msgid "Italian" msgstr "Eidaleg" -#: conf/global_settings.py:45 +#: conf/global_settings.py:46 msgid "Norwegian" msgstr "Norwyeg" -#: conf/global_settings.py:46 +#: conf/global_settings.py:47 msgid "Brazilian" msgstr "Brasileg" -#: conf/global_settings.py:47 +#: conf/global_settings.py:48 msgid "Romanian" msgstr "" -#: conf/global_settings.py:48 +#: conf/global_settings.py:49 msgid "Russian" msgstr "Rwsieg" -#: conf/global_settings.py:49 +#: conf/global_settings.py:50 msgid "Slovak" msgstr "" -#: conf/global_settings.py:50 +#: conf/global_settings.py:51 msgid "Serbian" msgstr "Serbeg" -#: conf/global_settings.py:51 +#: conf/global_settings.py:52 msgid "Swedish" msgstr "" -#: conf/global_settings.py:52 +#: conf/global_settings.py:53 msgid "Simplified Chinese" msgstr "Tsieinëeg Symledig" diff --git a/django/conf/locale/de/LC_MESSAGES/django.mo b/django/conf/locale/de/LC_MESSAGES/django.mo index 7d333c52660086c6fb08b3c274cbd18fb16565f1..e752b2bcb46293dc122fd3a8b3c973c6075b5546 100644 GIT binary patch delta 4639 zcmYk=3s6^80>|-#JpMpHqM#x|h=PcZFkv&T6<-;`nx+Yvp@gXaLU2W`#Jm^@qNc5X z4K-hA;v)lH($dg&-Kv4=VB_xHcYna=q8f6lr8`#9&^bMK#8 zyfR?-$^hp=yP!3O@+Ij)PKOwi5@5{oNNqJHshu$+uq$@M={O#j;lub1K8YFajp>9w z

HP24V{a<6Afv4`UGakMZy4m;qGyX9n}(!SNV|lTas`hFrtU#5=JHqw!_zj$2U| z_`rVuG2TJ@-^jJhRn+-zp)Tx+H6|1zu+cci#8SDB4XwyObAu0EAff}K#zfSGvoRUR zpgLNCsaT0=xE1^32~5D>Q8Sj%(LL`F)c*O{4;NxC*Ef5q6ytBG9!_B%)x#1TfMqxj zcc5k@G0rswwO?=B&O*(^{kA<6vuWp`I=mEh{#B?MsYhodl?Eyr;Z=Mdf3fXnI=ctf zq7GbX+pBGRgS7$Gu||x*H&7Qmggx*m{t2&P7IuwyJDMNQ{A-as!3G^rggTKI!*LdB z9ads5tiveWj~c;ysE(aN&BPbBeI9kb|DcY)ihc1X)bXjTbPYJG3-eE>%m_BX64>V&)T&-gYzhCg8vj^)PJ;B0&Wf5Gm!Akmn6umRPP(^!jv&Ry<> zm!THjdelhvphmFYwhyE3?fa;XowVPdMFwRqpr-y;)YIZga_x+o(LSg(mWev=TGV!D zi`}pTHNs}p$lgKC%&#~ZV|f%<&}J^?;&RlzJcqh9Q9K$tlhJ87U4p@V_;ARZQov5|Ygqnd?9EMkr zLrrh4su>)I>OdJEn&EouHVonVrkRQs-vJE8W9Y$CsC#-Ab)k!>6I{33Z`pQuPxtr^ zs8yYU+Aj;Wc!yvZ=GpcHR0oUD(MXoqFIHd}?RBUVY_siV45EF|wvX8FKSXu(G=}1N z>t)m;{K2*Z(%k`sqt4q2!?1fg^B+s4FB^2C;iwVk*&QE4owx+mfihHwD^UAAhi$P2 zHAD6G`|YUXUdL_$#=MDM+UI)lB;e5A?i!iZoB7XU!$)j*8awhW>(5kU2=2geY(ic5 zAlBl$s1A+fVb*?ms1c7t4P+WdVwwGZ0rLA}s!_LSEo$I99V&NGIf9y+3)X9>6W_4y zTd0nNu~K#67}N;k@Bk*`L--ZyJ(8TkU@#MVU>-){9MscPjXK`hPUSu-O{i6W1xI5N zKT+I1Q;z&I>-bPdPhci~i-RzUhdBo);XG_abufXSLd`@n>Q^zHj|MD64OA!Ld&fjj z(PD^kH<(1!$Wv{*4`$QOLe0QD)U8-#+qIZWdlhPg7qAk)$7uBOmeK_)Q5~yAoqxH% z&HeY;FV>=_WFu;EHQIIyrqOOi&CF%g1v7bl>4a6N7tdl;2kTH5SdHq?t9U2wMkd!B zvh8m%oa>vLRCJ;c=3gDS1J#Z}O<^4B1YMDJYWiUe7TWC%D7KGk- z!%-KWj2e&^HIUh;TQ}c+Up0vPuN{`MAs&6Go;IUS*ovL-6V%jRL3Q*;)Nuv(yC*I} zeeXrxiaE%GV4g+I*iJ0LGpG&@dcggocESV9KZ7(I*uW!g&R`-2GR#y=#!Z-mkK+}L z!{LLC8HI&75_h5Yzm9*!PTB4YW-02PU&5XkJA`9#Fpk3)9V+ViIn;SJ%@p4t0y1$y7AeUet5C z0C{rEUQENw*af3lC>lvG)c%uDi?SSpQ46UpE=FDG71UF(88yI0)UDlz{*EIZam-1( z!#VrKMbs+3Zrh#*-FqC1I&lK3=c&j-HW?U_Z56A@QBp-zm`3v%d6zs( zcm&KUvYX5%DqF}RvXFdCUL(asMRTW;P4?=BeW(`YO){74Bnc#sq!HZ|l~l5Xq!Xsf zzkDA>l@l)JDSVyuA-l*avWNV!%%SljsU#n1jpk69LU`6p83`eJuN@;5MCG`P|35pX z`;J9*b565GKXfX3Hw^UGjQIynw)L)fkm%8zPxR<}NGs99p?6U}(JMejPnt@Ni~sLV z9ze5^JVWLYy$<3vZ)2%!BPuVDCURB{$`LZgUvoeH1#b{uHztXw=>4No=i*;7<+gsC zr>S(ajgI&^*+(AHLf=e_eH7bJ#kC!>kVD6)(st6@tRP9;l87HJ`` zl2DRKf{02HS*eOvM=4pa2IYMh|K|oi-}yuPW$F>67rBRQB_EIpWET0mZ(rN?P9wE` z5K5L3xt=(_eG{562+t>&QdoZSovhV7NnFN#0gd5}k2|9y4Nd{3#A#ahjYS@x%{lxv{a(_Mw*!VZnK%O9fA>NkYcGaHH;*!#$vZ>zUmYO(kbWs0+nHeoV Xrq2%xTA#P*8f87-xmaqa&Prsd%x delta 4603 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\n" "Language-Team: \n" @@ -702,38 +702,42 @@ msgid "Galician" msgstr "Galicisch" #: conf/global_settings.py:44 +msgid "Icelandic" +msgstr "Islndisch" + +#: conf/global_settings.py:45 msgid "Italian" msgstr "Italienisch" -#: conf/global_settings.py:45 +#: conf/global_settings.py:46 msgid "Norwegian" msgstr "Norwegisch" -#: conf/global_settings.py:46 +#: conf/global_settings.py:47 msgid "Brazilian" msgstr "Brasilianisch" -#: conf/global_settings.py:47 +#: conf/global_settings.py:48 msgid "Romanian" msgstr "Rumnisch" -#: conf/global_settings.py:48 +#: conf/global_settings.py:49 msgid "Russian" msgstr "Russisch" -#: conf/global_settings.py:49 +#: conf/global_settings.py:50 msgid "Slovak" msgstr "Slovakisch" -#: conf/global_settings.py:50 +#: conf/global_settings.py:51 msgid "Serbian" msgstr "Serbisch" -#: conf/global_settings.py:51 +#: conf/global_settings.py:52 msgid "Swedish" msgstr "Schwedisch" -#: conf/global_settings.py:52 +#: conf/global_settings.py:53 msgid "Simplified Chinese" msgstr "vereinfachtes Chinesisch" diff --git a/django/conf/locale/en/LC_MESSAGES/django.mo b/django/conf/locale/en/LC_MESSAGES/django.mo index e1f8b8e7e28f55cbc358eb97e104de0e76d6b0db..250538b096efaac0d265170079d4f6672e8db5de 100644 GIT binary patch delta 16 XcmbQiGJ|D\n" "Language-Team: LANGUAGE \n" @@ -673,38 +673,42 @@ msgid "Galician" msgstr "" #: conf/global_settings.py:44 -msgid "Italian" +msgid "Icelandic" msgstr "" #: conf/global_settings.py:45 -msgid "Norwegian" +msgid "Italian" msgstr "" #: conf/global_settings.py:46 -msgid "Brazilian" +msgid "Norwegian" msgstr "" #: conf/global_settings.py:47 -msgid "Romanian" +msgid "Brazilian" msgstr "" #: conf/global_settings.py:48 -msgid "Russian" +msgid "Romanian" msgstr "" #: conf/global_settings.py:49 -msgid "Slovak" +msgid "Russian" msgstr "" #: conf/global_settings.py:50 -msgid "Serbian" +msgid "Slovak" msgstr "" #: conf/global_settings.py:51 -msgid "Swedish" +msgid "Serbian" msgstr "" #: conf/global_settings.py:52 +msgid "Swedish" +msgstr "" + +#: conf/global_settings.py:53 msgid "Simplified Chinese" msgstr "" diff --git a/django/conf/locale/es/LC_MESSAGES/django.mo b/django/conf/locale/es/LC_MESSAGES/django.mo index f67c04932fa691e80873da63063119b34442c62f..19c9db8c69067987bc8c778f4cef5b18c853005d 100644 GIT binary patch delta 17 Ycmcbtaam)-M{X8lD-(mwU%BHr076{`kpKVy delta 17 Ycmcbtaam)-M{X7)D+9C5U%BHr076^_k^lez diff --git a/django/conf/locale/es/LC_MESSAGES/django.po b/django/conf/locale/es/LC_MESSAGES/django.po index 9e54b32e9f..7a4a716ef7 100644 --- a/django/conf/locale/es/LC_MESSAGES/django.po +++ b/django/conf/locale/es/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: django\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-11-13 12:06-0600\n" +"POT-Creation-Date: 2005-11-13 13:40-0600\n" "PO-Revision-Date: 2005-10-04 20:59GMT\n" "Last-Translator: Ricardo Javier Crdenes Medina \n" @@ -697,38 +697,42 @@ msgid "Galician" msgstr "" #: conf/global_settings.py:44 -msgid "Italian" +msgid "Icelandic" msgstr "" #: conf/global_settings.py:45 -msgid "Norwegian" +msgid "Italian" msgstr "" #: conf/global_settings.py:46 -msgid "Brazilian" +msgid "Norwegian" msgstr "" #: conf/global_settings.py:47 -msgid "Romanian" +msgid "Brazilian" msgstr "" #: conf/global_settings.py:48 -msgid "Russian" +msgid "Romanian" msgstr "" #: conf/global_settings.py:49 -msgid "Slovak" +msgid "Russian" msgstr "" #: conf/global_settings.py:50 -msgid "Serbian" +msgid "Slovak" msgstr "" #: conf/global_settings.py:51 -msgid "Swedish" +msgid "Serbian" msgstr "" #: conf/global_settings.py:52 +msgid "Swedish" +msgstr "" + +#: conf/global_settings.py:53 msgid "Simplified Chinese" msgstr "" diff --git a/django/conf/locale/fr/LC_MESSAGES/django.mo b/django/conf/locale/fr/LC_MESSAGES/django.mo index 9dfdac1c52230ce0d66dd916a989aaf7191ad14d..8d75186e5e65fda6b21880fe1f9767fe2b73f152 100644 GIT binary patch delta 19 acmeC}WbEx^+`ys1Vr*q%u$f1rQ3e1zz6EFi delta 19 acmeC}WbEx^+`ys1Vq|4twwXtxQ3e1zy#;9i diff --git a/django/conf/locale/fr/LC_MESSAGES/django.po b/django/conf/locale/fr/LC_MESSAGES/django.po index 0b09c2eaed..8e351cc1ac 100644 --- a/django/conf/locale/fr/LC_MESSAGES/django.po +++ b/django/conf/locale/fr/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: django\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-11-13 12:06-0600\n" +"POT-Creation-Date: 2005-11-13 13:40-0600\n" "PO-Revision-Date: 2005-10-18 12:27+0200\n" "Last-Translator: Laurent Rahuel \n" "Language-Team: franais \n" @@ -706,40 +706,44 @@ msgid "Galician" msgstr "Galicien" #: conf/global_settings.py:44 +msgid "Icelandic" +msgstr "" + +#: conf/global_settings.py:45 #, fuzzy msgid "Italian" msgstr "Italien" -#: conf/global_settings.py:45 +#: conf/global_settings.py:46 msgid "Norwegian" msgstr "" -#: conf/global_settings.py:46 +#: conf/global_settings.py:47 msgid "Brazilian" msgstr "Brsilien" -#: conf/global_settings.py:47 +#: conf/global_settings.py:48 msgid "Romanian" msgstr "" -#: conf/global_settings.py:48 +#: conf/global_settings.py:49 msgid "Russian" msgstr "Russe" -#: conf/global_settings.py:49 +#: conf/global_settings.py:50 msgid "Slovak" msgstr "" -#: conf/global_settings.py:50 +#: conf/global_settings.py:51 #, fuzzy msgid "Serbian" msgstr "Serbe" -#: conf/global_settings.py:51 +#: conf/global_settings.py:52 msgid "Swedish" msgstr "" -#: conf/global_settings.py:52 +#: conf/global_settings.py:53 msgid "Simplified Chinese" msgstr "" diff --git a/django/conf/locale/gl/LC_MESSAGES/django.mo b/django/conf/locale/gl/LC_MESSAGES/django.mo index e1c0b2cabfbedbb1a87fcf60cf1b83ef39ef58cb..2b5b058c2134da7713ddecfd657624af0ce7bced 100644 GIT binary patch delta 17 ZcmX@5c}jD`M{X8lD-(mwU%9Vx002Ts2KWE~ delta 17 ZcmX@5c}jD`M{X7)D+ANbU%9Vx002Tl2KWE~ diff --git a/django/conf/locale/gl/LC_MESSAGES/django.po b/django/conf/locale/gl/LC_MESSAGES/django.po index 44a65084c7..88153e6a0b 100644 --- a/django/conf/locale/gl/LC_MESSAGES/django.po +++ b/django/conf/locale/gl/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: django\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-11-13 12:05-0600\n" +"POT-Creation-Date: 2005-11-13 13:40-0600\n" "PO-Revision-Date: 2005-10-16 14:29+0100\n" "Last-Translator: Afonso Fernández Nogueira \n" "Language-Team: Galego\n" @@ -696,38 +696,42 @@ msgid "Galician" msgstr "" #: conf/global_settings.py:44 -msgid "Italian" +msgid "Icelandic" msgstr "" #: conf/global_settings.py:45 -msgid "Norwegian" +msgid "Italian" msgstr "" #: conf/global_settings.py:46 -msgid "Brazilian" +msgid "Norwegian" msgstr "" #: conf/global_settings.py:47 -msgid "Romanian" +msgid "Brazilian" msgstr "" #: conf/global_settings.py:48 -msgid "Russian" +msgid "Romanian" msgstr "" #: conf/global_settings.py:49 -msgid "Slovak" +msgid "Russian" msgstr "" #: conf/global_settings.py:50 -msgid "Serbian" +msgid "Slovak" msgstr "" #: conf/global_settings.py:51 -msgid "Swedish" +msgid "Serbian" msgstr "" #: conf/global_settings.py:52 +msgid "Swedish" +msgstr "" + +#: conf/global_settings.py:53 msgid "Simplified Chinese" msgstr "" diff --git a/django/conf/locale/it/LC_MESSAGES/django.mo b/django/conf/locale/it/LC_MESSAGES/django.mo index ad976523833bb633bbbb6b5c715b2db3d2651c9b..2e35910d42a0d8faf7b40b6cb86d5730a7eba846 100644 GIT binary patch delta 19 acmaFd$oROCaf7f1i?Nl7;bw7-GZFwtzy@Lf delta 19 acmaFd$oROCaf7f1i;\n" "Language-Team: LANGUAGE \n" @@ -699,39 +699,43 @@ msgid "Galician" msgstr "Galiziano" #: conf/global_settings.py:44 +msgid "Icelandic" +msgstr "" + +#: conf/global_settings.py:45 msgid "Italian" msgstr "Italiano" -#: conf/global_settings.py:45 +#: conf/global_settings.py:46 msgid "Norwegian" msgstr "" -#: conf/global_settings.py:46 +#: conf/global_settings.py:47 msgid "Brazilian" msgstr "Brasiliano" -#: conf/global_settings.py:47 +#: conf/global_settings.py:48 msgid "Romanian" msgstr "" -#: conf/global_settings.py:48 +#: conf/global_settings.py:49 msgid "Russian" msgstr "Russo" -#: conf/global_settings.py:49 +#: conf/global_settings.py:50 msgid "Slovak" msgstr "" -#: conf/global_settings.py:50 +#: conf/global_settings.py:51 #, fuzzy msgid "Serbian" msgstr "Serbo" -#: conf/global_settings.py:51 +#: conf/global_settings.py:52 msgid "Swedish" msgstr "" -#: conf/global_settings.py:52 +#: conf/global_settings.py:53 msgid "Simplified Chinese" msgstr "" diff --git a/django/conf/locale/no/LC_MESSAGES/django.mo b/django/conf/locale/no/LC_MESSAGES/django.mo index 10b6fbdda96f763f05fc14a2997d03f98ded15c1..c38207c876c40f6917451efbc0cd94494a9b6bbe 100644 GIT binary patch delta 19 acmZ3`#<-x3aYK\n" "Language-Team: Norwegian\n" @@ -700,38 +700,42 @@ msgid "Galician" msgstr "Galisisk" #: conf/global_settings.py:44 +msgid "Icelandic" +msgstr "" + +#: conf/global_settings.py:45 msgid "Italian" msgstr "Italiensk" -#: conf/global_settings.py:45 +#: conf/global_settings.py:46 msgid "Norwegian" msgstr "Norsk" -#: conf/global_settings.py:46 +#: conf/global_settings.py:47 msgid "Brazilian" msgstr "Brasiliansk" -#: conf/global_settings.py:47 +#: conf/global_settings.py:48 msgid "Romanian" msgstr "" -#: conf/global_settings.py:48 +#: conf/global_settings.py:49 msgid "Russian" msgstr "Russisk" -#: conf/global_settings.py:49 +#: conf/global_settings.py:50 msgid "Slovak" msgstr "" -#: conf/global_settings.py:50 +#: conf/global_settings.py:51 msgid "Serbian" msgstr "Serbisk" -#: conf/global_settings.py:51 +#: conf/global_settings.py:52 msgid "Swedish" msgstr "" -#: conf/global_settings.py:52 +#: conf/global_settings.py:53 msgid "Simplified Chinese" msgstr "Simpel Kinesisk" diff --git a/django/conf/locale/pt_BR/LC_MESSAGES/django.mo b/django/conf/locale/pt_BR/LC_MESSAGES/django.mo index a4fc09d70f13f8faf48765095d154e4b1ba3f0c2..0de0d6efacd9810e59d3489231b195629efe17f2 100644 GIT binary patch delta 19 acmX@vz<9EOal=nF7Go\n" "Language-Team: Português do Brasil \n" @@ -703,39 +703,43 @@ msgid "Galician" msgstr "Galiciano" #: conf/global_settings.py:44 +msgid "Icelandic" +msgstr "" + +#: conf/global_settings.py:45 msgid "Italian" msgstr "Italiano" -#: conf/global_settings.py:45 +#: conf/global_settings.py:46 msgid "Norwegian" msgstr "" -#: conf/global_settings.py:46 +#: conf/global_settings.py:47 msgid "Brazilian" msgstr "Brazileiro" -#: conf/global_settings.py:47 +#: conf/global_settings.py:48 msgid "Romanian" msgstr "" -#: conf/global_settings.py:48 +#: conf/global_settings.py:49 msgid "Russian" msgstr "Russo" -#: conf/global_settings.py:49 +#: conf/global_settings.py:50 msgid "Slovak" msgstr "" -#: conf/global_settings.py:50 +#: conf/global_settings.py:51 #, fuzzy msgid "Serbian" msgstr "Sérvio" -#: conf/global_settings.py:51 +#: conf/global_settings.py:52 msgid "Swedish" msgstr "" -#: conf/global_settings.py:52 +#: conf/global_settings.py:53 msgid "Simplified Chinese" msgstr "" diff --git a/django/conf/locale/ro/LC_MESSAGES/django.mo b/django/conf/locale/ro/LC_MESSAGES/django.mo index efb1fff4a9f74416a6e32fbe0414d5196f37ee23..013f4e1b96a63b821763908218dc32ad79b9ffc4 100644 GIT binary patch delta 20 bcmdne#<-=8al;)ARwDx|6NAkUHG-u8Q>h18 delta 20 bcmdne#<-=8al;)ARzpiG1Jlh9HG-u8Q}PF5 diff --git a/django/conf/locale/ro/LC_MESSAGES/django.po b/django/conf/locale/ro/LC_MESSAGES/django.po index 5d5beec95e..4b1b2c4b0b 100644 --- a/django/conf/locale/ro/LC_MESSAGES/django.po +++ b/django/conf/locale/ro/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Django \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-11-13 19:05+0100\n" +"POT-Creation-Date: 2005-11-13 20:40+0100\n" "PO-Revision-Date: 2005-11-08 19:06+GMT+2\n" "Last-Translator: Tiberiu Micu \n" "Language-Team: Romanian \n" @@ -700,38 +700,42 @@ msgid "Galician" msgstr "Galiciană" #: conf/global_settings.py:44 +msgid "Icelandic" +msgstr "" + +#: conf/global_settings.py:45 msgid "Italian" msgstr "Italiană" -#: conf/global_settings.py:45 +#: conf/global_settings.py:46 msgid "Norwegian" msgstr "Norvegiană" -#: conf/global_settings.py:46 +#: conf/global_settings.py:47 msgid "Brazilian" msgstr "Braziliană" -#: conf/global_settings.py:47 +#: conf/global_settings.py:48 msgid "Romanian" msgstr "" -#: conf/global_settings.py:48 +#: conf/global_settings.py:49 msgid "Russian" msgstr "Rusă" -#: conf/global_settings.py:49 +#: conf/global_settings.py:50 msgid "Slovak" msgstr "" -#: conf/global_settings.py:50 +#: conf/global_settings.py:51 msgid "Serbian" msgstr "Sîrbă" -#: conf/global_settings.py:51 +#: conf/global_settings.py:52 msgid "Swedish" msgstr "" -#: conf/global_settings.py:52 +#: conf/global_settings.py:53 msgid "Simplified Chinese" msgstr "Chineză simplificată" diff --git a/django/conf/locale/ru/LC_MESSAGES/django.mo b/django/conf/locale/ru/LC_MESSAGES/django.mo index d037353f3e3788223546e2af2c26743696cbb2ef..f7f9280aca32e5868e180a46215ec31ba521bcdc 100644 GIT binary patch delta 17 YcmeCv=+oHnk(\n" "Language-Team: LANGUAGE \n" @@ -694,38 +694,42 @@ msgid "Galician" msgstr "" #: conf/global_settings.py:44 -msgid "Italian" +msgid "Icelandic" msgstr "" #: conf/global_settings.py:45 -msgid "Norwegian" +msgid "Italian" msgstr "" #: conf/global_settings.py:46 -msgid "Brazilian" +msgid "Norwegian" msgstr "" #: conf/global_settings.py:47 -msgid "Romanian" +msgid "Brazilian" msgstr "" #: conf/global_settings.py:48 -msgid "Russian" +msgid "Romanian" msgstr "" #: conf/global_settings.py:49 -msgid "Slovak" +msgid "Russian" msgstr "" #: conf/global_settings.py:50 -msgid "Serbian" +msgid "Slovak" msgstr "" #: conf/global_settings.py:51 -msgid "Swedish" +msgid "Serbian" msgstr "" #: conf/global_settings.py:52 +msgid "Swedish" +msgstr "" + +#: conf/global_settings.py:53 msgid "Simplified Chinese" msgstr "" diff --git a/django/conf/locale/sk/LC_MESSAGES/django.mo b/django/conf/locale/sk/LC_MESSAGES/django.mo index 8b64189e885d59cbad65d29ce83e74a71990e637..0c5a1dd7305c5fe851cd1b7c27bc36cb16805dda 100644 GIT binary patch delta 19 acmeC|WbEu@++d{1Vr*q%xY\n" "Language-Team: Slovak \n" @@ -699,38 +699,42 @@ msgid "Galician" msgstr "Galicijský" #: conf/global_settings.py:44 +msgid "Icelandic" +msgstr "" + +#: conf/global_settings.py:45 msgid "Italian" msgstr "Taliansky" -#: conf/global_settings.py:45 +#: conf/global_settings.py:46 msgid "Norwegian" msgstr "Nórsky" -#: conf/global_settings.py:46 +#: conf/global_settings.py:47 msgid "Brazilian" msgstr "Brazílsky" -#: conf/global_settings.py:47 +#: conf/global_settings.py:48 msgid "Romanian" msgstr "" -#: conf/global_settings.py:48 +#: conf/global_settings.py:49 msgid "Russian" msgstr "Ruský" -#: conf/global_settings.py:49 +#: conf/global_settings.py:50 msgid "Slovak" msgstr "" -#: conf/global_settings.py:50 +#: conf/global_settings.py:51 msgid "Serbian" msgstr "Srbský" -#: conf/global_settings.py:51 +#: conf/global_settings.py:52 msgid "Swedish" msgstr "" -#: conf/global_settings.py:52 +#: conf/global_settings.py:53 msgid "Simplified Chinese" msgstr "Zjednodušená činština " diff --git a/django/conf/locale/sr/LC_MESSAGES/django.mo b/django/conf/locale/sr/LC_MESSAGES/django.mo index daf25877b20f70dae2846cfac06a5e9b5b142cea..324e87e6c9e45a4956606657a2f34cd790e76d69 100644 GIT binary patch delta 5406 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 delta 4342 zcmY+`4{%h)0mt!8E(8b=k`N3@NOIATf0vL;2s9)CQvwqHgoKg+DgloGlJZA5lF*dO zSt}$|5%mbQK#>AMD+1EfLKOj_gJLT<)y$}^Fm(!3oGDf5Oc}=h`Tp+hIqeR=`|Q4Z z_ulTl-537c9d#)XxRMmpYbbA#kt8S9n5ZaYiU#YbG2R4YreG=FgX^&gcVPp5fs3&w z(U=jqAGw4%g)Tgg{qSws~1xy{4WDYdoKwRQ{VOAsmOa~uBu?P9Bc^-4{ zCDes4<1p+){r(2(2Dfkk-p275#Yw}l3U!^?m~8^av{KOxHsRgai~aE==Hpo$gEue( zGw7{mq6&4vMVN~nScgzuERJtf74e z)v>C(>=fcu+I6S_JcEzoUfa%0an2u&>c}|TuCnb~4CsqGD(XNz>ajPWZsfx}Y{PN* zERMx@P#yd?>KVuI;C220)O8Xt4pVRl-i;pgVmvND-FL+Z=3i5@#vbTGU1%ffhnsOU zZb$v_JZhwWz%=~K9{(4n(jLr*)<7<*16~}2RjBJt#rv@t-FPgO`QJ?CeGWX1^SEjb zeu8EAA5;g*(v9gxAF3laP>bj`s>5+?9StN2H8bg`j%1_0_aLX5G01u}4cLl{1NMXq zsHwYz6R{69!emz5A}m23tJ#KHTnAB);w#kD=4U$Fw+Xd4*P;g2i_JJP%lW+@HLxwH zM;bUqWfYZLI3H8p%mVtc1mDGMyn_>QB#o)~AZo<>Q6qdAHMOr|9>%kk@^KvMSueuy z_D0RnYUKI>(@y1K4jjO5;b6MI3@4+0a2R!?*HF*!G-|}Z$6CCNxme9}(~PyEZoCl( z;UQ}XHN$66kMIKa*Z%LLqE-JX>IR>qet6p+k70V$PDK4M1GNZ??D1;UVyi=Sc#dti zpgOkPwzt{uccQL$KyB`CUZE0$uiF#O*b^?IM&5^7G*@i>(YGBo<^QNJ$*NnQ~LJahy(n>`qwjr-`(}}u4H|qOd)DL&zifDR{^|TWToDnX> z2HKl&I`*N~lDp99P#4D1-iEr~4(skh=D(8z`#7K;rFxtbGf^WRg#)p|9-oA~h0Qe7 zqi8|iL1ra#3G)PMv_ARl5Ke(GWVHD$R)&i<@MH|_bT8+0LqH9e>w z9z*__lYCU-HDu!$cd@hTYfv3uj!c5tfco3HR6k? zsrmqQs~=!=Njt9U!XenHM+I`GE71Y#DuXbKo zjX0Ec3u+s#LjIYpeB|M~sNa8unwj_sPRD97iT3mf%)h3%g#&|eDXM3F)GFP8>fjc< z3wNSAa2&O&PoT~_hk8WsqdIa8wF~<3CsV&4XidXH+8)&P<_4&!1FP(T4jfMVDbxk_ zp>A{#)xqPa^G~B5-38RP`UtfM|6;vmk4N)-GC3ZPdL+fD4wqX4lk69bsO>iob%O<{ zMYII7a0}{(zeHW=1ZwI}V-$XeY$Y!ftpyb==1AF2g;T?C&1djMa!C7s7!{RuM9)g) zdt?du715|wW|4X_Nezk?5>%zTDP%Hvj>PN!C&*Ir zL$ZN9Nwi%aC6RJ~N_AkrJFoO9wI8Sq&Qq-0pkPYM`W(X z&s)*_nmkQZ^2xVJCgFu<){;~*f~a(oUh+JNAg)JW z@sLg7n)9&|lE`852B{?~-*x!rGmYBMNi>-gs!yzl4sIRR9?VEC4Bbpli4L`;%yES- zr0sD9S7kQFy7R|+y#>L~GuuP{tQ)Z*U+#QYOj)IOZ1Bwjx5qoi?e$icRd~FmUT@q? z-@5kVCckg>x|P26NBouU#-;5(zq{V&Z~JX`&{vomDk^-#75uVzV{r56+)#PRtmx36 hN)uh7f0p;Sf;|;;BX>(5-x=CF{_WV%nwqt){{o`>x�K diff --git a/django/conf/locale/sr/LC_MESSAGES/django.po b/django/conf/locale/sr/LC_MESSAGES/django.po index c5cb82d0b9..7059b14da2 100644 --- a/django/conf/locale/sr/LC_MESSAGES/django.po +++ b/django/conf/locale/sr/LC_MESSAGES/django.po @@ -2,9 +2,9 @@ msgid "" msgstr "" "Project-Id-Version: Django Serbian (latin) translation v1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-11-13 12:05-0600\n" -"PO-Revision-Date: 2005-11-03 00:28+0100\n" -"Last-Translator: Petar Marić \n" +"POT-Creation-Date: 2005-11-13 13:40-0600\n" +"PO-Revision-Date: 2005-11-13 19:21+0100\n" +"Last-Translator: Nebojša Đorđević \n" "Language-Team: Nesh & Petar \n" "MIME-Version: 1.0\n" @@ -93,9 +93,8 @@ msgid "Django administration" msgstr "Django administracija" #: contrib/admin/templates/admin/500.html:4 -#, fuzzy msgid "Server error" -msgstr "Greška na serveru (500)" +msgstr "Greška na serveru" #: contrib/admin/templates/admin/500.html:6 msgid "Server error (500)" @@ -175,7 +174,7 @@ msgid "Log out" msgstr "Odjavi se" #: contrib/admin/templates/admin/delete_confirmation.html:7 -#, fuzzy, python-format +#, python-format msgid "" "Deleting the %(object_name)s '%(object)s' would result in deleting related " "objects, but your account doesn't have permission to delete the following " @@ -373,7 +372,6 @@ msgid "template name" msgstr "ime templejta" #: contrib/flatpages/models/flatpages.py:12 -#, fuzzy msgid "" "Example: 'flatpages/contact_page'. If this isn't provided, the system will " "use 'flatpages/default'." @@ -401,15 +399,15 @@ msgstr "statične strane" #: utils/translation.py:335 msgid "DATE_FORMAT" -msgstr "" +msgstr "D, d.m.Y." #: utils/translation.py:336 msgid "DATETIME_FORMAT" -msgstr "" +msgstr "d.m.Y. H:i:s" #: utils/translation.py:337 msgid "TIME_FORMAT" -msgstr "" +msgstr "H:i:s" #: utils/dates.py:6 msgid "Monday" @@ -672,7 +670,7 @@ msgstr "Poruka" #: conf/global_settings.py:36 msgid "Bengali" -msgstr "" +msgstr "Bengalski" #: conf/global_settings.py:37 msgid "Czech" @@ -680,7 +678,7 @@ msgstr "Češki" #: conf/global_settings.py:38 msgid "Welsh" -msgstr "" +msgstr "Welšski" #: conf/global_settings.py:39 msgid "German" @@ -703,40 +701,44 @@ msgid "Galician" msgstr "" #: conf/global_settings.py:44 +msgid "Icelandic" +msgstr "" + +#: conf/global_settings.py:45 msgid "Italian" msgstr "Italijanski" -#: conf/global_settings.py:45 -msgid "Norwegian" -msgstr "" - #: conf/global_settings.py:46 +msgid "Norwegian" +msgstr "Norveški" + +#: conf/global_settings.py:47 msgid "Brazilian" msgstr "Brazilski" -#: conf/global_settings.py:47 -msgid "Romanian" -msgstr "" - #: conf/global_settings.py:48 +msgid "Romanian" +msgstr "Rumunski" + +#: conf/global_settings.py:49 msgid "Russian" msgstr "Ruski" -#: conf/global_settings.py:49 -msgid "Slovak" -msgstr "" - #: conf/global_settings.py:50 +msgid "Slovak" +msgstr "Slovački" + +#: conf/global_settings.py:51 msgid "Serbian" msgstr "Srpski" -#: conf/global_settings.py:51 -msgid "Swedish" -msgstr "" - #: conf/global_settings.py:52 +msgid "Swedish" +msgstr "Švedski" + +#: conf/global_settings.py:53 msgid "Simplified Chinese" -msgstr "" +msgstr "Kineski (pojednostavljen)" # nesh: Ovo je opis za stari SlugField #: core/validators.py:59 diff --git a/django/conf/locale/sv/LC_MESSAGES/django.mo b/django/conf/locale/sv/LC_MESSAGES/django.mo index 2723988c53094550792f108f176559b40bb251b7..004c6a00d21f7e35178361b18b3b3d84425774a2 100644 GIT binary patch delta 19 acmX@w#dx%faf5>vi?Nl7;bs>tMri;>C{ delta 19 acmX@w#dx%faf5>vi;AqCC= diff --git a/django/conf/locale/sv/LC_MESSAGES/django.po b/django/conf/locale/sv/LC_MESSAGES/django.po index 1a37557bab..67c985cad3 100644 --- a/django/conf/locale/sv/LC_MESSAGES/django.po +++ b/django/conf/locale/sv/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-11-13 12:06-0600\n" +"POT-Creation-Date: 2005-11-13 13:41-0600\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -701,38 +701,42 @@ msgid "Galician" msgstr "Galisiska" #: conf/global_settings.py:44 +msgid "Icelandic" +msgstr "" + +#: conf/global_settings.py:45 msgid "Italian" msgstr "Italienska" -#: conf/global_settings.py:45 +#: conf/global_settings.py:46 msgid "Norwegian" msgstr "Norska" -#: conf/global_settings.py:46 +#: conf/global_settings.py:47 msgid "Brazilian" msgstr "Brasilianska" -#: conf/global_settings.py:47 +#: conf/global_settings.py:48 msgid "Romanian" msgstr "Rumänska" -#: conf/global_settings.py:48 +#: conf/global_settings.py:49 msgid "Russian" msgstr "Ryska" -#: conf/global_settings.py:49 +#: conf/global_settings.py:50 msgid "Slovak" msgstr "Slovakiska" -#: conf/global_settings.py:50 +#: conf/global_settings.py:51 msgid "Serbian" msgstr "Serbiska" -#: conf/global_settings.py:51 +#: conf/global_settings.py:52 msgid "Swedish" msgstr "" -#: conf/global_settings.py:52 +#: conf/global_settings.py:53 msgid "Simplified Chinese" msgstr "Förenklad kinesiska" diff --git a/django/conf/locale/zh_CN/LC_MESSAGES/django.mo b/django/conf/locale/zh_CN/LC_MESSAGES/django.mo index e140bfcec3adf796653551024b67af5a20972126..dab46d08140246352a8be32b9b74b3b7d037c0fe 100644 GIT binary patch delta 19 acmcc6#CV~JaYMT%i?Nl7!RBtwqv8Nefd?M| delta 19 acmcc6#CV~JaYMT%i;E>?Dqv8NedIui> diff --git a/django/conf/locale/zh_CN/LC_MESSAGES/django.po b/django/conf/locale/zh_CN/LC_MESSAGES/django.po index 4f16e9f8fd..0651d1b65d 100644 --- a/django/conf/locale/zh_CN/LC_MESSAGES/django.po +++ b/django/conf/locale/zh_CN/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: django v1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-11-13 12:05-0600\n" +"POT-Creation-Date: 2005-11-13 13:40-0600\n" "PO-Revision-Date: 2005-11-11 13:55+0800\n" "Last-Translator: limodou \n" "Language-Team: Simplified Chinese \n" @@ -689,38 +689,42 @@ msgid "Galician" msgstr "加利西亚语" #: conf/global_settings.py:44 +msgid "Icelandic" +msgstr "" + +#: conf/global_settings.py:45 msgid "Italian" msgstr "意大利语" -#: conf/global_settings.py:45 +#: conf/global_settings.py:46 msgid "Norwegian" msgstr "挪威语" -#: conf/global_settings.py:46 +#: conf/global_settings.py:47 msgid "Brazilian" msgstr "巴西语" -#: conf/global_settings.py:47 +#: conf/global_settings.py:48 msgid "Romanian" msgstr "罗马尼亚语" -#: conf/global_settings.py:48 +#: conf/global_settings.py:49 msgid "Russian" msgstr "俄语" -#: conf/global_settings.py:49 +#: conf/global_settings.py:50 msgid "Slovak" msgstr "斯洛伐克语" -#: conf/global_settings.py:50 +#: conf/global_settings.py:51 msgid "Serbian" msgstr "塞尔维亚语" -#: conf/global_settings.py:51 +#: conf/global_settings.py:52 msgid "Swedish" msgstr "" -#: conf/global_settings.py:52 +#: conf/global_settings.py:53 msgid "Simplified Chinese" msgstr "简体中文" From e70be1181444a8a364feeaf27a79dcc8effc3171 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Sun, 13 Nov 2005 22:59:51 +0000 Subject: [PATCH 20/23] Added 'Safety and security' section to docs/design_philosophies.txt git-svn-id: http://code.djangoproject.com/svn/django/trunk@1218 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/design_philosophies.txt | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/docs/design_philosophies.txt b/docs/design_philosophies.txt index 2988672f02..89a537da17 100644 --- a/docs/design_philosophies.txt +++ b/docs/design_philosophies.txt @@ -175,7 +175,9 @@ a common header, footer, navigation bar, etc. The Django template system should make it easy to store those elements in a single place, eliminating duplicate code. -This is the philosophy behind template inheritance. +This is the philosophy behind `template inheritance`_. + +.. _template inheritance: http://www.djangoproject.com/documentation/templates/#template-inheritance Be decoupled from HTML ---------------------- @@ -197,7 +199,8 @@ Treat whitespace obviously The template system shouldn't do magic things with whitespace. If a template includes whitespace, the system should treat the whitespace as it treats text --- just display it. +-- just display it. Any whitespace that's not in a template tag should be +displayed. Don't invent a programming language ----------------------------------- @@ -211,6 +214,18 @@ The goal is not to invent a programming language. The goal is to offer just enough programming-esque functionality, such as branching and looping, that is essential for making presentation-related decisions. +The Django template system recognizes that templates are most often written by +*designers*, not *programmers*, and therefore should not assume Python +knowledge. + +Safety and security +------------------- + +The template system, out of the box, should forbid the inclusion of malicious +code -- such as commands that delete database records. + +This is another reason the template system doesn't allow arbitrary Python code. + Extensibility ------------- From 27eaf5a8917db785606831d0def7f09cadba3e8d Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Sun, 13 Nov 2005 23:10:27 +0000 Subject: [PATCH 21/23] Fixed #782 -- Fixed broken link in docs/overview.txt. Thanks, frederik git-svn-id: http://code.djangoproject.com/svn/django/trunk@1219 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/overview.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/overview.txt b/docs/overview.txt index 9f0b1db521..1f251efcb6 100644 --- a/docs/overview.txt +++ b/docs/overview.txt @@ -288,6 +288,6 @@ features: The next obvious steps are for you to `download Django`_, read `the tutorial`_ and join `the community`_. Thanks for your interest! -.. _download Django: http://www.djangoproject.com/documentation/ +.. _download Django: http://www.djangoproject.com/download/ .. _the tutorial: http://www.djangoproject.com/documentation/tutorial1/ .. _the community: http://www.djangoproject.com/community/ From 8a0137446f27374795962bfa351e98929e15d40f Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Sun, 13 Nov 2005 23:18:22 +0000 Subject: [PATCH 22/23] Added Icelandic and Swedish translations to docs/settings.txt LANGUAGES section git-svn-id: http://code.djangoproject.com/svn/django/trunk@1220 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/settings.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/settings.txt b/docs/settings.txt index fbce44807a..37a3228ada 100644 --- a/docs/settings.txt +++ b/docs/settings.txt @@ -414,6 +414,7 @@ Default: A tuple of all available languages. Currently, this is:: ('es', _('Spanish')), ('fr', _('French')), ('gl', _('Galician')), + ('is', _('Icelandic')), ('it', _('Italian')), ('no', _('Norwegian')), ('pt-br', _('Brazilian')), @@ -421,6 +422,7 @@ Default: A tuple of all available languages. Currently, this is:: ('ru', _('Russian')), ('sk', _('Slovak')), ('sr', _('Serbian')), + ('sv', _('Swedish')), ('zh-cn', _('Simplified Chinese')), ) From 6e40d8c29f2b6ed926cf764f5c9cdce07bc9a069 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Sun, 13 Nov 2005 23:33:05 +0000 Subject: [PATCH 23/23] Fixed #783 -- Added AnonymousUser.id = None. Thanks, EABinGA git-svn-id: http://code.djangoproject.com/svn/django/trunk@1221 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/parts/auth/anonymoususers.py | 2 ++ docs/authentication.txt | 1 + 2 files changed, 3 insertions(+) diff --git a/django/parts/auth/anonymoususers.py b/django/parts/auth/anonymoususers.py index 03f294915c..b279d99d06 100644 --- a/django/parts/auth/anonymoususers.py +++ b/django/parts/auth/anonymoususers.py @@ -1,4 +1,6 @@ class AnonymousUser: + id = None + def __init__(self): pass diff --git a/docs/authentication.txt b/docs/authentication.txt index 9aa581cf13..63beb43031 100644 --- a/docs/authentication.txt +++ b/docs/authentication.txt @@ -172,6 +172,7 @@ Anonymous users ``django.parts.auth.anonymoususers.AnonymousUser`` is a class that implements the ``django.models.auth.users.User`` interface, with these differences: + * ``id`` is always ``None``. * ``is_anonymous()`` returns ``True`` instead of ``False``. * ``has_perm()`` always returns ``False``. * ``set_password()``, ``check_password()``, ``set_groups()`` and