From d0ec43298a4c55917a9ef1830bb7fe2877bef7c3 Mon Sep 17 00:00:00 2001 From: Jacob Kaplan-Moss Date: Tue, 15 Nov 2005 05:52:25 +0000 Subject: [PATCH 01/12] Fixed bug in postgresql backend that prevented the user of passwords with spaces in them. Use pass *phrases*, folks, they're grrrrreat! git-svn-id: http://code.djangoproject.com/svn/django/trunk@1236 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/core/db/backends/postgresql.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/core/db/backends/postgresql.py b/django/core/db/backends/postgresql.py index 1db6fe40c3..b1b2d9cb52 100644 --- a/django/core/db/backends/postgresql.py +++ b/django/core/db/backends/postgresql.py @@ -24,7 +24,7 @@ class DatabaseWrapper: if DATABASE_USER: conn_string = "user=%s %s" % (DATABASE_USER, conn_string) if DATABASE_PASSWORD: - conn_string += " password=%s" % DATABASE_PASSWORD + conn_string += " password='%s'" % DATABASE_PASSWORD if DATABASE_HOST: conn_string += " host=%s" % DATABASE_HOST if DATABASE_PORT: From a411d68a10fdc43c4318b8edd9a67f052488b9e3 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Tue, 15 Nov 2005 07:34:18 +0000 Subject: [PATCH 02/12] Added extra paragraphs to 'Why did you write all of Django from scratch' FAQ question git-svn-id: http://code.djangoproject.com/svn/django/trunk@1237 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/faq.txt | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/faq.txt b/docs/faq.txt index 062bce730b..671657dec6 100644 --- a/docs/faq.txt +++ b/docs/faq.txt @@ -143,6 +143,16 @@ problems in similar ways, but it was too late to integrate outside code: We'd already written, tested and implemented our own framework bits in several production settings -- and our own code met our needs delightfully. +In most cases, however, we found that existing frameworks/tools inevitably had +some sort of fundamental, fatal flaw that made us squeamish. No tool fit our +philosophies. + +Like we said: We're picky. + +We've documented our philosophies on the `design philosophies page`_. + +.. _design philosophies page: http://www.djangoproject.com/documentation/design_philosophies/ + Do you have any of those nifty "screencast" things? --------------------------------------------------- From ed92d36825f6d812bb9e5f801f49b26ae9567364 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Tue, 15 Nov 2005 07:36:09 +0000 Subject: [PATCH 03/12] Followup faq change to [1237] git-svn-id: http://code.djangoproject.com/svn/django/trunk@1238 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/faq.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/faq.txt b/docs/faq.txt index 671657dec6..58caf32b30 100644 --- a/docs/faq.txt +++ b/docs/faq.txt @@ -145,7 +145,7 @@ production settings -- and our own code met our needs delightfully. In most cases, however, we found that existing frameworks/tools inevitably had some sort of fundamental, fatal flaw that made us squeamish. No tool fit our -philosophies. +philosophies 100%. Like we said: We're picky. From 705a568854a56840e0cf064f110559f6ef10a9c1 Mon Sep 17 00:00:00 2001 From: Georg Bauer Date: Tue, 15 Nov 2005 13:51:31 +0000 Subject: [PATCH 04/12] added missing docstring to the blocktrans template tag git-svn-id: http://code.djangoproject.com/svn/django/trunk@1241 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/templatetags/i18n.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/django/templatetags/i18n.py b/django/templatetags/i18n.py index 8873586c24..bf752ed598 100644 --- a/django/templatetags/i18n.py +++ b/django/templatetags/i18n.py @@ -163,6 +163,23 @@ def do_translate(parser, token): def do_block_translate(parser, token): """ + This will translate a block of text with parameters. + + Format is like this:: + + {% blocktrans with foo|filter as bar and baz|filter as boo %} + This is {{ bar }} and {{ boo }}. + {% endblocktrans %} + + Additionally this supports pluralization:: + + {% blocktrans count var|length as count %} + There is {{ count }} object. + {% plural %} + There are {{ count }} objects. + {% endblocktrans %} + + This is much like ngettext, only in template syntax. """ class BlockTranslateParser(TokenParser): From d6aa904487527d468a6b8bc097028d7af9a668e6 Mon Sep 17 00:00:00 2001 From: Jacob Kaplan-Moss Date: Tue, 15 Nov 2005 14:35:24 +0000 Subject: [PATCH 05/12] Fixed #799: any setting with "SECRET" or "PASSWORD" in the name is escaped in the debug view output (this can be expanded if there are other "naughty words" we want to strip out in the future. Thanks, Ian git-svn-id: http://code.djangoproject.com/svn/django/trunk@1242 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/views/debug.py | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/django/views/debug.py b/django/views/debug.py index d5323c0b59..4eb95c91d9 100644 --- a/django/views/debug.py +++ b/django/views/debug.py @@ -1,3 +1,4 @@ +import re import os import sys import inspect @@ -6,6 +7,8 @@ from os.path import dirname, join as pathjoin from django.core.template import Template, Context from django.utils.httpwrappers import HttpResponseServerError, HttpResponseNotFound +HIDDEN_SETTINGS = re.compile('SECRET|PASSWORD') + def technical_500_response(request, exc_type, exc_value, tb): """ Create a technical server error response. The last three arguments are @@ -30,7 +33,17 @@ def technical_500_response(request, exc_type, exc_value, tb): 'pre_context_lineno' : pre_context_lineno, }) tb = tb.tb_next - + + # Turn the settings module into a dict, filtering out anything that + # matches HIDDEN_SETTINGS along the way. + settings_dict = {} + for k in dir(settings): + if k.isupper(): + if HIDDEN_SETTINGS.search(k): + settings_dict[k] = '********************' + else: + settings_dict[k] = getattr(settings, k) + t = Template(TECHNICAL_500_TEMPLATE) c = Context({ 'exception_type' : exc_type.__name__, @@ -39,7 +52,7 @@ def technical_500_response(request, exc_type, exc_value, tb): 'lastframe' : frames[-1], 'request' : request, 'request_protocol' : os.environ.get("HTTPS") == "on" and "https" or "http", - 'settings' : dict([(k, getattr(settings, k)) for k in dir(settings) if k.isupper()]), + 'settings' : settings_dict, }) return HttpResponseServerError(t.render(c)) From 2c61aff52339ad1dc65f70a8c79b5f0b48266c21 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Tue, 15 Nov 2005 14:43:56 +0000 Subject: [PATCH 06/12] Fixed #796 -- Gave AnonymousUser a has_module_perms method. git-svn-id: http://code.djangoproject.com/svn/django/trunk@1243 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/parts/auth/anonymoususers.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/django/parts/auth/anonymoususers.py b/django/parts/auth/anonymoususers.py index b279d99d06..fea93e2f5a 100644 --- a/django/parts/auth/anonymoususers.py +++ b/django/parts/auth/anonymoususers.py @@ -34,6 +34,9 @@ class AnonymousUser: def has_perm(self, perm): return False + def has_module_perms(self, module): + return False + def get_and_delete_messages(self): return [] From dcb5bc32e0a475a514d3fdec8699c5fbe564b7ee Mon Sep 17 00:00:00 2001 From: Jacob Kaplan-Moss Date: Tue, 15 Nov 2005 16:55:26 +0000 Subject: [PATCH 07/12] Added django.views.generic.simple.direct_to_template which renders a given template along with any other params from the URL pattern. git-svn-id: http://code.djangoproject.com/svn/django/trunk@1247 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/views/generic/simple.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 django/views/generic/simple.py diff --git a/django/views/generic/simple.py b/django/views/generic/simple.py new file mode 100644 index 0000000000..4dffd69a47 --- /dev/null +++ b/django/views/generic/simple.py @@ -0,0 +1,9 @@ +from django.core import template_loader +from django.core.extensions import DjangoContext +from django.utils.httpwrappers import HttpResponse + +def direct_to_template(request, template, **kwargs): + """Render a given template with any extra parameters in the context.""" + t = template_loader.get_template(template) + c = DjangoContext(request, {'params' : kwargs}) + return HttpResponse(t.render(c)) \ No newline at end of file From 400cf5658da46fc748e64a7570a6df0dd21cbff2 Mon Sep 17 00:00:00 2001 From: Jacob Kaplan-Moss Date: Tue, 15 Nov 2005 17:19:33 +0000 Subject: [PATCH 08/12] Added django.views.generic.simple.redirect_to view for issuing simple redirects. Also updated direct_to_template to use render_to_response to be consistant with coding style, and documented the simple generic views. git-svn-id: http://code.djangoproject.com/svn/django/trunk@1249 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/views/generic/simple.py | 33 +++++++++++++++++++++------ docs/generic_views.txt | 41 ++++++++++++++++++++++++++++++++-- 2 files changed, 65 insertions(+), 9 deletions(-) diff --git a/django/views/generic/simple.py b/django/views/generic/simple.py index 4dffd69a47..8a054e1ce7 100644 --- a/django/views/generic/simple.py +++ b/django/views/generic/simple.py @@ -1,9 +1,28 @@ -from django.core import template_loader -from django.core.extensions import DjangoContext -from django.utils.httpwrappers import HttpResponse +from django.core.extensions import DjangoContext, render_to_response +from django.utils.httpwrappers import HttpResponse, HttpResponseRedirect, HttpResponseGone def direct_to_template(request, template, **kwargs): - """Render a given template with any extra parameters in the context.""" - t = template_loader.get_template(template) - c = DjangoContext(request, {'params' : kwargs}) - return HttpResponse(t.render(c)) \ No newline at end of file + """ + Render a given template with any extra URL parameters in the context as + ``{{ params }}``. + """ + return render_to_response(template, {'params' : kwargs}, context_instance=DjangoContext(request)) + +def redirect_to(request, url, **kwargs): + """ + Redirect to a given URL. + + The given url may contain dict-style string formatting which will be + interpolated against the params in the URL. For example, to redirect from + ``/foo//`` to ``/bar//``, you could use the following urlpattern:: + + urlpatterns = patterns('', + ('^foo/(?p\d+)/$', 'django.views.generic.simple.redirect_to', {'url' : '/bar/%(id)s/'}), + ) + + If the given url is ``None``, a HttpResponseGone (410) will be issued. + """ + if url is not None: + return HttpResponseRedirect(url % kwargs) + else: + return HttpResponseGone() \ No newline at end of file diff --git a/docs/generic_views.txt b/docs/generic_views.txt index 1c0de07a7a..9db1577d71 100644 --- a/docs/generic_views.txt +++ b/docs/generic_views.txt @@ -57,8 +57,8 @@ arguments may either come from the URL pattern (as ``month``, ``day``, ``year``, etc. do above) or from the additional-information dictionary (as for ``app_label``, ``module_name``, etc.). -All the generic views that follow require the ``app_label`` and ``module_name`` keys. -These values are easiest to explain through example:: +Most of the generic views that follow require the ``app_label`` and +``module_name`` keys. These values are easiest to explain through example:: >>> from django.models.blog import entries @@ -68,6 +68,42 @@ holds all your model definitions) and ``entries`` is the ``module_name`` of the ``module_name`` option of your model). In the docs below, these keys will not be repeated, but each generic view requires them. +Using "simple" generic views +============================ + +The ``django.views.generic.simple`` module contains simple views to handle a +couple of common cases: rendering a template when no view logic is needed, +and issuing a redirect. These views are: + +``direct_to_template`` + Renders a given template using any extra parameters passed in the + urlpattern; requires the ``template`` argument. + + For example, given the following URL patterns:: + + urlpatterns = patterns('django.views.generic.simple', + (r'^foo/$', 'direct_to_template', {'template' : 'foo_index'}), + (r'^foo/(?P\d+)/$', 'direct_to_template', {'template' : 'foo_detail'}), + ) + + ... a request to ``/foo/`` would cause the ``foo_index`` template to be + rendered, and a request to ``/foo/15/`` would cause the ``foo_detail`` + template to be rendered with a context variable ``{{ params.id }}`` that is + set to ``15``. + +``redirect_to`` + Issue a redirect to a given URL. + + The given url may contain dict-style string formatting which will be + interpolated against the params in the URL. For example, to redirect from + ``/foo//`` to ``/bar//``, you could use the following urlpattern:: + + urlpatterns = patterns('django.views.generic.simple', + ('^foo/(?p\d+)/$', 'redirect_to', {'url' : '/bar/%(id)s/'}), + ) + + If the given url is ``None``, a HttpResponseGone (410) will be issued. + Using date-based generic views ============================== @@ -322,3 +358,4 @@ The create/update/delete views are: object The object about to be deleted + From 29be17533acb7efc5c395192d41948d16e3ddc52 Mon Sep 17 00:00:00 2001 From: Georg Bauer Date: Tue, 15 Nov 2005 18:37:41 +0000 Subject: [PATCH 09/12] added new danish translation git-svn-id: http://code.djangoproject.com/svn/django/trunk@1250 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 | 37 +- django/conf/locale/cs/LC_MESSAGES/django.mo | Bin 17872 -> 17872 bytes django/conf/locale/cs/LC_MESSAGES/django.po | 260 +++-- django/conf/locale/cy/LC_MESSAGES/django.mo | Bin 17077 -> 17077 bytes django/conf/locale/cy/LC_MESSAGES/django.po | 37 +- django/conf/locale/da/LC_MESSAGES/django.mo | Bin 0 -> 16930 bytes django/conf/locale/da/LC_MESSAGES/django.po | 1023 +++++++++++++++++ django/conf/locale/de/LC_MESSAGES/django.mo | Bin 18346 -> 18377 bytes django/conf/locale/de/LC_MESSAGES/django.po | 36 +- django/conf/locale/en/LC_MESSAGES/django.mo | Bin 536 -> 536 bytes django/conf/locale/en/LC_MESSAGES/django.po | 36 +- django/conf/locale/es/LC_MESSAGES/django.mo | Bin 5203 -> 5203 bytes django/conf/locale/es/LC_MESSAGES/django.po | 36 +- django/conf/locale/fr/LC_MESSAGES/django.mo | Bin 17549 -> 17549 bytes django/conf/locale/fr/LC_MESSAGES/django.po | 37 +- django/conf/locale/gl/LC_MESSAGES/django.mo | Bin 5322 -> 5322 bytes django/conf/locale/gl/LC_MESSAGES/django.po | 36 +- django/conf/locale/is/LC_MESSAGES/django.mo | Bin 17844 -> 17844 bytes django/conf/locale/is/LC_MESSAGES/django.po | 37 +- django/conf/locale/it/LC_MESSAGES/django.mo | Bin 16611 -> 16611 bytes django/conf/locale/it/LC_MESSAGES/django.po | 37 +- django/conf/locale/no/LC_MESSAGES/django.mo | Bin 17184 -> 17184 bytes django/conf/locale/no/LC_MESSAGES/django.po | 37 +- .../conf/locale/pt_BR/LC_MESSAGES/django.mo | Bin 16457 -> 16457 bytes .../conf/locale/pt_BR/LC_MESSAGES/django.po | 37 +- django/conf/locale/ro/LC_MESSAGES/django.mo | Bin 17204 -> 17204 bytes django/conf/locale/ro/LC_MESSAGES/django.po | 37 +- django/conf/locale/ru/LC_MESSAGES/django.mo | Bin 5134 -> 5134 bytes django/conf/locale/ru/LC_MESSAGES/django.po | 36 +- django/conf/locale/sk/LC_MESSAGES/django.mo | Bin 17767 -> 17767 bytes django/conf/locale/sk/LC_MESSAGES/django.po | 60 +- django/conf/locale/sr/LC_MESSAGES/django.mo | Bin 17377 -> 17377 bytes django/conf/locale/sr/LC_MESSAGES/django.po | 37 +- django/conf/locale/sv/LC_MESSAGES/django.mo | Bin 17733 -> 17733 bytes django/conf/locale/sv/LC_MESSAGES/django.po | 37 +- .../conf/locale/zh_CN/LC_MESSAGES/django.mo | Bin 16720 -> 16720 bytes .../conf/locale/zh_CN/LC_MESSAGES/django.po | 37 +- 39 files changed, 1557 insertions(+), 374 deletions(-) create mode 100644 django/conf/locale/da/LC_MESSAGES/django.mo create mode 100644 django/conf/locale/da/LC_MESSAGES/django.po diff --git a/django/conf/global_settings.py b/django/conf/global_settings.py index 17337aa3fe..ad7a0a54f7 100644 --- a/django/conf/global_settings.py +++ b/django/conf/global_settings.py @@ -36,6 +36,7 @@ LANGUAGES = ( ('bn', _('Bengali')), ('cs', _('Czech')), ('cy', _('Welsh')), + ('da', _('Danish')), ('de', _('German')), ('en', _('English')), ('es', _('Spanish')), diff --git a/django/conf/locale/bn/LC_MESSAGES/django.mo b/django/conf/locale/bn/LC_MESSAGES/django.mo index 340a4198dcf2ee4c35a62280d193db0ecc2c3976..14e21598bcdfb622b8a375369b3b84ef499e1356 100644 GIT binary patch delta 19 acmcb2nepCb#tlANET#&EMw\n" "Language-Team: Ankur Bangla \n" @@ -658,7 +658,7 @@ msgstr "ব্যক্তিগত তথ্য" msgid "Important dates" msgstr "গুরুত্বপূর্ণ তারিখ" -#: models/auth.py:182 +#: models/auth.py:195 msgid "Message" msgstr "বার্তা" @@ -675,62 +675,67 @@ msgid "Welsh" msgstr "ওয়েল্শ" #: conf/global_settings.py:39 +#, fuzzy +msgid "Danish" +msgstr "স্প্যানিশ" + +#: conf/global_settings.py:40 msgid "German" msgstr "জার্মান" -#: conf/global_settings.py:40 +#: conf/global_settings.py:41 msgid "English" msgstr "ইংরেজী" -#: conf/global_settings.py:41 +#: conf/global_settings.py:42 msgid "Spanish" msgstr "স্প্যানিশ" -#: conf/global_settings.py:42 +#: conf/global_settings.py:43 msgid "French" msgstr "ফরাসী" -#: conf/global_settings.py:43 +#: conf/global_settings.py:44 msgid "Galician" msgstr "গ্যালিসিয়" -#: conf/global_settings.py:44 +#: conf/global_settings.py:45 msgid "Icelandic" msgstr "" -#: conf/global_settings.py:45 +#: conf/global_settings.py:46 msgid "Italian" msgstr "ইতালিয়" -#: conf/global_settings.py:46 +#: conf/global_settings.py:47 msgid "Norwegian" msgstr "নরওয়েজিয়" -#: conf/global_settings.py:47 +#: conf/global_settings.py:48 msgid "Brazilian" msgstr "ব্রাজিলীয়" -#: conf/global_settings.py:48 +#: conf/global_settings.py:49 msgid "Romanian" msgstr "রোমানীয়" -#: conf/global_settings.py:49 +#: conf/global_settings.py:50 msgid "Russian" msgstr "রুশ" -#: conf/global_settings.py:50 +#: conf/global_settings.py:51 msgid "Slovak" msgstr "স্লোভাক" -#: conf/global_settings.py:51 +#: conf/global_settings.py:52 msgid "Serbian" msgstr "সার্বিয়ান" -#: conf/global_settings.py:52 +#: conf/global_settings.py:53 msgid "Swedish" msgstr "" -#: conf/global_settings.py:53 +#: conf/global_settings.py:54 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 2c513f29281943627837968ae1d5dde4b4880f10..a2d3d3e8ed08a43251351baca6ea0b625aebbe4b 100644 GIT binary patch delta 19 acmcc6&3K`kal;Z#7E=X7qs=QcHDmxyeg?V# delta 19 acmcc6&3K`kal;Z#7GniN\n" "Language-Team: Czech\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Poedit-Language: Czech\n" "X-Poedit-Country: CZECH REPUBLIC\n" @@ -65,8 +66,7 @@ msgstr "Historie" msgid "Date/time" msgstr "Datum/čas" -#: contrib/admin/templates/admin/object_history.html:19 -#: models/auth.py:47 +#: contrib/admin/templates/admin/object_history.html:19 models/auth.py:47 msgid "User" msgstr "Uživatel" @@ -79,8 +79,12 @@ msgid "DATE_WITH_TIME_FULL" msgstr "Plné datum s časem" #: 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 objekt nemá historii změn. Pravděpodobně nebyl přidán přes administrátorské rozhraní." +msgid "" +"This object doesn't have a change history. It probably wasn't added via this " +"admin site." +msgstr "" +"Tento objekt nemá historii změn. Pravděpodobně nebyl přidán přes " +"administrátorské rozhraní." #: contrib/admin/templates/admin/base_site.html:4 msgid "Django site admin" @@ -103,8 +107,12 @@ msgid "Server Error (500)" msgstr "Chyba serveru (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 "Nastala chyba. Ta byla oznámena administrátorovi serveru pomocí e-mailu a měla by být brzy odstraněna. Děkujeme za trpělivost." +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 "" +"Nastala chyba. Ta byla oznámena administrátorovi serveru pomocí e-mailu a " +"měla by být brzy odstraněna. Děkujeme za trpělivost." #: contrib/admin/templates/admin/404.html:4 #: contrib/admin/templates/admin/404.html:8 @@ -169,13 +177,22 @@ msgstr "Odhlásit se" #: contrib/admin/templates/admin/delete_confirmation.html:7 #, fuzzy, 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 "Mazání %(object_name)s '%(object)s' by vyústilo ve vymazání souvisejících objektů, ale Váš účet nemá oprávnění pro mazání následujících typů objektů:" +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 "" +"Mazání %(object_name)s '%(object)s' by vyústilo ve vymazání souvisejících " +"objektů, ale Váš účet nemá oprávnění pro mazání následujících typů objektů:" #: 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 "Jste si jist(á), že chcete smazat %(object_name)s \"%(object)s\"? Všechny následující související položky budou smazány:" +msgid "" +"Are you sure you want to delete the %(object_name)s \"%(object)s\"? All of " +"the following related items will be deleted:" +msgstr "" +"Jste si jist(á), že chcete smazat %(object_name)s \"%(object)s\"? Všechny " +"následující související položky budou smazány:" #: contrib/admin/templates/admin/delete_confirmation.html:18 msgid "Yes, I'm sure" @@ -204,8 +221,12 @@ msgid "Password reset" msgstr "Obnovení 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 "Zapomněl(a) jste heslo? Vložte níže Vaši e-mailovou adresu a my Vaše heslo obnovíme a zašleme Vám e-mailem nové." +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 "" +"Zapomněl(a) jste heslo? Vložte níže Vaši e-mailovou adresu a my Vaše heslo " +"obnovíme a zašleme Vám e-mailem nové." #: contrib/admin/templates/registration/password_reset_form.html:16 msgid "E-mail address:" @@ -229,12 +250,20 @@ msgid "Password reset successful" msgstr "Obnovení hesla bylo úspěšné" #: 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 jsme Vám e-mailem nové heslo na adresu, kterou jste zadal(a). Měl(a) byste ji dostat během okamžiku." +msgid "" +"We've e-mailed a new password to the e-mail address you submitted. You " +"should be receiving it shortly." +msgstr "" +"Poslali jsme Vám e-mailem nové heslo na adresu, kterou jste zadal(a). Měl(a) " +"byste ji dostat během okamžiku." #: 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 "Prosíme, pro zabezpečení vložte svoje staré heslo a poté vložte dvakrát nové heslo, takže můžeme ověřit, že jste ho napsal(a) správně." +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 "" +"Prosíme, pro zabezpečení vložte svoje staré heslo a poté vložte dvakrát nové " +"heslo, takže můžeme ověřit, že jste ho napsal(a) správně." #: contrib/admin/templates/registration/password_change_form.html:17 msgid "Old password:" @@ -288,16 +317,23 @@ msgid "redirect from" msgstr "přesměrovat z" #: contrib/redirects/models/redirects.py:8 -msgid "This should be an absolute path, excluding the domain name. Example: '/events/search/'." -msgstr "Toto by měla být absolutní cesta, bez domény. Např. '/udalosti/hledat/'." +msgid "" +"This should be an absolute path, excluding the domain name. Example: '/" +"events/search/'." +msgstr "" +"Toto by měla být absolutní cesta, bez domény. Např. '/udalosti/hledat/'." #: contrib/redirects/models/redirects.py:9 msgid "redirect to" msgstr "přesměrovat na" #: contrib/redirects/models/redirects.py:10 -msgid "This can be either an absolute path (as above) or a full URL starting with 'http://'." -msgstr "Toto může být buď absolutní cesta (jako nahoře) nebo plné URL začínající na 'http://'." +msgid "" +"This can be either an absolute path (as above) or a full URL starting with " +"'http://'." +msgstr "" +"Toto může být buď absolutní cesta (jako nahoře) nebo plné URL začínající na " +"'http://'." #: contrib/redirects/models/redirects.py:12 msgid "redirect" @@ -312,8 +348,10 @@ msgid "URL" msgstr "URL" #: contrib/flatpages/models/flatpages.py:7 -msgid "Example: '/about/contact/'. Make sure to have leading and trailing slashes." -msgstr "Příklad: '/o/kontakt/'. Ujistěte se, že máte počáteční a konečná lomítka." +msgid "" +"Example: '/about/contact/'. Make sure to have leading and trailing slashes." +msgstr "" +"Příklad: '/o/kontakt/'. Ujistěte se, že máte počáteční a konečná lomítka." #: contrib/flatpages/models/flatpages.py:8 msgid "title" @@ -333,8 +371,12 @@ msgstr "jméno šablony" #: contrib/flatpages/models/flatpages.py:12 #, fuzzy -msgid "Example: 'flatpages/contact_page'. If this isn't provided, the system will use 'flatpages/default'." -msgstr "Například: 'flatfiles/kontaktni_stranka'. Pokud toto není zadáno, systém použije 'flatfiles/default'." +msgid "" +"Example: 'flatpages/contact_page'. If this isn't provided, the system will " +"use 'flatpages/default'." +msgstr "" +"Například: 'flatfiles/kontaktni_stranka'. Pokud toto není zadáno, systém " +"použije 'flatfiles/default'." #: contrib/flatpages/models/flatpages.py:13 msgid "registration required" @@ -342,7 +384,9 @@ msgstr "nutná registrace" #: contrib/flatpages/models/flatpages.py:13 msgid "If this is checked, only logged-in users will be able to view the page." -msgstr "Pokud je zaškrtnuto, pouze přihlášení uživatelé budou moci prohlížet tuto stránku." +msgstr "" +"Pokud je zaškrtnuto, pouze přihlášení uživatelé budou moci prohlížet tuto " +"stránku." #: contrib/flatpages/models/flatpages.py:17 msgid "flat page" @@ -400,28 +444,23 @@ msgstr "Leden" msgid "February" msgstr "Únor" -#: utils/dates.py:14 -#: utils/dates.py:27 +#: utils/dates.py:14 utils/dates.py:27 msgid "March" msgstr "Březen" -#: utils/dates.py:14 -#: utils/dates.py:27 +#: utils/dates.py:14 utils/dates.py:27 msgid "April" msgstr "Duben" -#: utils/dates.py:14 -#: utils/dates.py:27 +#: utils/dates.py:14 utils/dates.py:27 msgid "May" msgstr "Květen" -#: utils/dates.py:14 -#: utils/dates.py:27 +#: utils/dates.py:14 utils/dates.py:27 msgid "June" msgstr "Červen" -#: utils/dates.py:15 -#: utils/dates.py:27 +#: utils/dates.py:15 utils/dates.py:27 msgid "July" msgstr "Červenec" @@ -493,10 +532,7 @@ msgstr "weby" msgid "label" msgstr "nadpis" -#: models/core.py:29 -#: models/core.py:40 -#: models/auth.py:6 -#: models/auth.py:19 +#: models/core.py:29 models/core.py:40 models/auth.py:6 models/auth.py:19 msgid "name" msgstr "jméno" @@ -548,8 +584,7 @@ msgstr "codename" msgid "Permission" msgstr "Oprávnění" -#: models/auth.py:11 -#: models/auth.py:58 +#: models/auth.py:11 models/auth.py:58 msgid "Permissions" msgstr "Oprávnění" @@ -557,8 +592,7 @@ msgstr "Oprávnění" msgid "Group" msgstr "Skupina" -#: models/auth.py:23 -#: models/auth.py:60 +#: models/auth.py:23 models/auth.py:60 msgid "Groups" msgstr "Skupiny" @@ -612,8 +646,12 @@ msgid "date joined" msgstr "datum zaregistrování" #: 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 "Kromě manuálně přidělených oprávnění uživatel dostane všechna oprávnění pro každou skupinu, ve které je." +msgid "" +"In addition to the permissions manually assigned, this user will also get " +"all permissions granted to each group he/she is in." +msgstr "" +"Kromě manuálně přidělených oprávnění uživatel dostane všechna oprávnění pro " +"každou skupinu, ve které je." #: models/auth.py:48 msgid "Users" @@ -627,7 +665,7 @@ msgstr "Osobní informace" msgid "Important dates" msgstr "Důležitá data" -#: models/auth.py:182 +#: models/auth.py:195 msgid "Message" msgstr "Zpráva" @@ -644,62 +682,67 @@ msgid "Welsh" msgstr "Welšsky" #: conf/global_settings.py:39 +#, fuzzy +msgid "Danish" +msgstr "Španělsky" + +#: conf/global_settings.py:40 msgid "German" msgstr "Německy" -#: conf/global_settings.py:40 +#: conf/global_settings.py:41 msgid "English" msgstr "Anglicky" -#: conf/global_settings.py:41 +#: conf/global_settings.py:42 msgid "Spanish" msgstr "Španělsky" -#: conf/global_settings.py:42 +#: conf/global_settings.py:43 msgid "French" msgstr "Francouzsky" -#: conf/global_settings.py:43 +#: conf/global_settings.py:44 msgid "Galician" msgstr "Galicijsky" -#: conf/global_settings.py:44 +#: conf/global_settings.py:45 msgid "Icelandic" msgstr "Islandština" -#: conf/global_settings.py:45 +#: conf/global_settings.py:46 msgid "Italian" msgstr "Italsky" -#: conf/global_settings.py:46 +#: conf/global_settings.py:47 msgid "Norwegian" msgstr "Norsky" -#: conf/global_settings.py:47 +#: conf/global_settings.py:48 msgid "Brazilian" msgstr "Brazilsky" -#: conf/global_settings.py:48 +#: conf/global_settings.py:49 msgid "Romanian" msgstr "Rumunsky" -#: conf/global_settings.py:49 +#: conf/global_settings.py:50 msgid "Russian" msgstr "Rusky" -#: conf/global_settings.py:50 +#: conf/global_settings.py:51 msgid "Slovak" msgstr "Slovensky" -#: conf/global_settings.py:51 +#: conf/global_settings.py:52 msgid "Serbian" msgstr "Srbsky" -#: conf/global_settings.py:52 +#: conf/global_settings.py:53 msgid "Swedish" msgstr "Švédsky" -#: conf/global_settings.py:53 +#: conf/global_settings.py:54 msgid "Simplified Chinese" msgstr "Jednoduchá čínština" @@ -709,7 +752,8 @@ msgstr "Tato hodnota musí obsahovat pouze znaky, čísla nebo podtržítka." #: core/validators.py:63 msgid "This value must contain only letters, numbers, underscores and slashes." -msgstr "Tato hodnota musí obsahovat pouze znaky, čísla, podtržítka nebo lomítka." +msgstr "" +"Tato hodnota musí obsahovat pouze znaky, čísla, podtržítka nebo lomítka." #: core/validators.py:71 msgid "Uppercase letters are not allowed here." @@ -768,8 +812,12 @@ msgid "Enter a valid e-mail address." msgstr "Vložte platnou e-mailovou 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 na server platný obrázek. Soubor, který jste nahrál(a) nebyl obrázek, nebo byl porušen." +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Nahrajte na server platný obrázek. Soubor, který jste nahrál(a) nebyl " +"obrázek, nebo byl porušen." #: core/validators.py:154 #, python-format @@ -809,8 +857,7 @@ msgstr "Špatně formované XML: %s" msgid "Invalid URL: %s" msgstr "Neplatné URL: %s" -#: core/validators.py:205 -#: core/validators.py:207 +#: 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ý." @@ -836,8 +883,7 @@ msgstr "Toto pole se musí shodovat s polem '%s'." msgid "Please enter something for at least one field." msgstr "Prosíme, vložte něco alespoň pro jedno pole." -#: core/validators.py:263 -#: core/validators.py:274 +#: 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á." @@ -867,7 +913,8 @@ msgstr "Prosíme, vložte platné číslo." #: 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." +msgid_plural "" +"Please enter a valid decimal number with at most %s total digits." 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." @@ -875,10 +922,16 @@ msgstr[2] "Prosíme, vložte platné číslo s nejvíce %s ciframi celkem." #: 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] "Prosíme, vložte platné číslo s nejvíce %s cifrou za desetinnou čárkou celkem." -msgstr[1] "Prosíme, vložte platné číslo s nejvíce %s ciframi za desetinnou čárkou celkem." -msgstr[2] "Prosíme, vložte platné číslo s nejvíce %s ciframi za desetinnou čárkou celkem." +msgid_plural "" +"Please enter a valid decimal number with at most %s decimal places." +msgstr[0] "" +"Prosíme, vložte platné číslo s nejvíce %s cifrou za desetinnou čárkou celkem." +msgstr[1] "" +"Prosíme, vložte platné číslo s nejvíce %s ciframi za desetinnou čárkou " +"celkem." +msgstr[2] "" +"Prosíme, vložte platné číslo s nejvíce %s ciframi za desetinnou čárkou " +"celkem." #: core/validators.py:361 #, python-format @@ -905,44 +958,71 @@ msgstr "Nemohl jsem získat nic z %s." #: core/validators.py:428 #, python-format -msgid "The URL %(url)s returned the invalid Content-Type header '%(contenttype)s'." +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:461 #, python-format -msgid "Please close the unclosed %(tag)s tag from line %(line)s. (Line starts with \"%(start)s\".)" -msgstr "Prosíme, zavřete nezavřenou značku %(tag)s z řádky %(line)s. (Řádka začíná s \"%(start)s\".)" +msgid "" +"Please close the unclosed %(tag)s tag from line %(line)s. (Line starts with " +"\"%(start)s\".)" +msgstr "" +"Prosíme, zavřete nezavřenou značku %(tag)s z řádky %(line)s. (Řádka začíná s " +"\"%(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 "Nějaký text začínající na řádce %(line)s není povolen v tomto kontextu. (Řádka začíná s \"%(start)s\".)" +msgid "" +"Some text starting on line %(line)s is not allowed in that context. (Line " +"starts with \"%(start)s\".)" +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:470 #, python-format -msgid "\"%(attr)s\" on line %(line)s is an invalid attribute. (Line starts with \"%(start)s\".)" -msgstr "\"%(attr)s\" na řádce %(line)s je neplatný atribut. (Řádka začíná s \"%(start)s\".)" +msgid "" +"\"%(attr)s\" on line %(line)s is an invalid attribute. (Line starts with \"%" +"(start)s\".)" +msgstr "" +"\"%(attr)s\" na řádce %(line)s je neplatný atribut. (Řádka začíná s \"%" +"(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>\" na řádce %(line)s je neplatná značka. (Řádka začíná s \"%(start)s\".)" +msgid "" +"\"<%(tag)s>\" on line %(line)s is an invalid tag. (Line starts with \"%" +"(start)s\".)" +msgstr "" +"\"<%(tag)s>\" na řádce %(line)s je neplatná značka. (Řádka začíná s \"%" +"(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 "Značce na řádce %(line)s schází jeden nebo více požadovaných atributů. (Řádka začíná s \"%(start)s\".)" +msgid "" +"A tag on line %(line)s is missing one or more required attributes. (Line " +"starts with \"%(start)s\".)" +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:484 #, python-format -msgid "The \"%(attr)s\" attribute on line %(line)s has an invalid value. (Line starts with \"%(start)s\".)" -msgstr "Atribut \"%(attr)s\" na řádce %(line)s má neplatnou hodnotu. (Řádka začína s \"%(start)s\".)" +msgid "" +"The \"%(attr)s\" attribute on line %(line)s has an invalid value. (Line " +"starts with \"%(start)s\".)" +msgstr "" +"Atribut \"%(attr)s\" na řádce %(line)s má neplatnou hodnotu. (Řádka začína s " +"\"%(start)s\".)" #: core/meta/fields.py:111 msgid " Separate multiple IDs with commas." msgstr "Oddělte více identifikátorů čárkami." #: core/meta/fields.py:114 -msgid " Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "Podržte \"Control\", nebo \"Command\" na Macu pro vybrání více jak jedné položky." - +msgid "" +" Hold down \"Control\", or \"Command\" on a Mac, to select more than one." +msgstr "" +"Podržte \"Control\", nebo \"Command\" na Macu pro vybrání více jak jedné " +"položky." diff --git a/django/conf/locale/cy/LC_MESSAGES/django.mo b/django/conf/locale/cy/LC_MESSAGES/django.mo index 17da2b83276e07d2cd2d822e585e81c1c7278fdd..775b57495547e4f7f17a319fe5441320186c9691 100644 GIT binary patch delta 22 dcmdnm%DA\n" "Language-Team: Cymraeg \n" @@ -661,7 +661,7 @@ msgstr "Gwybodaeth personol" msgid "Important dates" msgstr "Dyddiadau pwysig" -#: models/auth.py:182 +#: models/auth.py:195 msgid "Message" msgstr "Neges" @@ -678,62 +678,67 @@ msgid "Welsh" msgstr "Cymraeg" #: conf/global_settings.py:39 +#, fuzzy +msgid "Danish" +msgstr "Spaeneg" + +#: conf/global_settings.py:40 msgid "German" msgstr "Almaeneg" -#: conf/global_settings.py:40 +#: conf/global_settings.py:41 msgid "English" msgstr "Saesneg" -#: conf/global_settings.py:41 +#: conf/global_settings.py:42 msgid "Spanish" msgstr "Spaeneg" -#: conf/global_settings.py:42 +#: conf/global_settings.py:43 msgid "French" msgstr "Ffrangeg" -#: conf/global_settings.py:43 +#: conf/global_settings.py:44 msgid "Galician" msgstr "Galisieg" -#: conf/global_settings.py:44 +#: conf/global_settings.py:45 msgid "Icelandic" msgstr "" -#: conf/global_settings.py:45 +#: conf/global_settings.py:46 msgid "Italian" msgstr "Eidaleg" -#: conf/global_settings.py:46 +#: conf/global_settings.py:47 msgid "Norwegian" msgstr "Norwyeg" -#: conf/global_settings.py:47 +#: conf/global_settings.py:48 msgid "Brazilian" msgstr "Brasileg" -#: conf/global_settings.py:48 +#: conf/global_settings.py:49 msgid "Romanian" msgstr "" -#: conf/global_settings.py:49 +#: conf/global_settings.py:50 msgid "Russian" msgstr "Rwsieg" -#: conf/global_settings.py:50 +#: conf/global_settings.py:51 msgid "Slovak" msgstr "" -#: conf/global_settings.py:51 +#: conf/global_settings.py:52 msgid "Serbian" msgstr "Serbeg" -#: conf/global_settings.py:52 +#: conf/global_settings.py:53 msgid "Swedish" msgstr "" -#: conf/global_settings.py:53 +#: conf/global_settings.py:54 msgid "Simplified Chinese" msgstr "Tsieinëeg Symledig" diff --git a/django/conf/locale/da/LC_MESSAGES/django.mo b/django/conf/locale/da/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..8fbe645ff29998891c77f08aecfc32910e9af6fa GIT binary patch literal 16930 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

we`FL1D)*lY4VM++>< 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 literal 0 HcmV?d00001 diff --git a/django/conf/locale/da/LC_MESSAGES/django.po b/django/conf/locale/da/LC_MESSAGES/django.po new file mode 100644 index 0000000000..8197e48f6d --- /dev/null +++ b/django/conf/locale/da/LC_MESSAGES/django.po @@ -0,0 +1,1023 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2005 and beyond +# This file is distributed under the same license as the PACKAGE package. +# Morten Bagai , Nov 2005. +# +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2005-11-15 12:41-0600\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Morten Bagai \n" +"Language-Team: Danish\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 "handlingstid" + +#: contrib/admin/models/admin.py:9 +msgid "object id" +msgstr "objekt id" + +#: contrib/admin/models/admin.py:10 +msgid "object repr" +msgstr "objekt repr" + +#: contrib/admin/models/admin.py:11 +msgid "action flag" +msgstr "handlingsflag" + +#: contrib/admin/models/admin.py:12 +msgid "change message" +msgstr "ændringsmeddelelse" + +#: contrib/admin/models/admin.py:15 +msgid "log entry" +msgstr "logmeddelelse" + +#: contrib/admin/models/admin.py:16 +msgid "log entries" +msgstr "logmeddelelser" + +#: 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 "Hjem" + +#: contrib/admin/templates/admin/object_history.html:5 +msgid "History" +msgstr "Historik" + +#: contrib/admin/templates/admin/object_history.html:18 +msgid "Date/time" +msgstr "Dato/tid" + +#: contrib/admin/templates/admin/object_history.html:19 models/auth.py:47 +msgid "User" +msgstr "Bruger" + +#: contrib/admin/templates/admin/object_history.html:20 +msgid "Action" +msgstr "Funktion" + +#: contrib/admin/templates/admin/object_history.html:26 +msgid "DATE_WITH_TIME_FULL" +msgstr "N j, Y, P" + +#: 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 "" +"Dette objekt har ingen ændringshistorik. Det blev formentlig ikke tilføjet " +"via dette administrations-site" + +#: contrib/admin/templates/admin/base_site.html:4 +msgid "Django site admin" +msgstr "Django site administration" + +#: contrib/admin/templates/admin/base_site.html:7 +msgid "Django administration" +msgstr "Django administration" + +#: contrib/admin/templates/admin/500.html:4 +msgid "Server error" +msgstr "Serverfejl" + +#: contrib/admin/templates/admin/500.html:6 +msgid "Server error (500)" +msgstr "Serverfejl (500)" + +#: contrib/admin/templates/admin/500.html:9 +msgid "Server Error (500)" +msgstr "Serverfejl (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 "" +"Der opstod en fejl. Fejlen er rapporteret til site-administratoren via e-" +"mail, og vil blive rettet hurtigst muligt. Tak for din tålmodighed." + +#: contrib/admin/templates/admin/404.html:4 +#: contrib/admin/templates/admin/404.html:8 +msgid "Page not found" +msgstr "Siden blev ikke fundet" + +#: contrib/admin/templates/admin/404.html:10 +msgid "We're sorry, but the requested page could not be found." +msgstr "Vi Beklager, men den ønskede side kunne ikke findes" + +#: contrib/admin/templates/admin/index.html:27 +msgid "Add" +msgstr "Tilføj" + +#: contrib/admin/templates/admin/index.html:33 +msgid "Change" +msgstr "Ændre" + +#: contrib/admin/templates/admin/index.html:43 +msgid "You don't have permission to edit anything." +msgstr "Du har ikke rettigehed til at foretage ændringer" + +#: contrib/admin/templates/admin/index.html:51 +msgid "Recent Actions" +msgstr "Seneste handlinger" + +#: contrib/admin/templates/admin/index.html:52 +msgid "My Actions" +msgstr "Mine handlinger" + +#: contrib/admin/templates/admin/index.html:56 +msgid "None available" +msgstr "Ingen tilgængelige" + +#: contrib/admin/templates/admin/login.html:15 +msgid "Username:" +msgstr "Brugernavn:" + +#: contrib/admin/templates/admin/login.html:18 +msgid "Password:" +msgstr "Adgangskode:" + +#: contrib/admin/templates/admin/login.html:20 +msgid "Have you forgotten your password?" +msgstr "Har du glemt din adgangskode?" + +#: contrib/admin/templates/admin/login.html:24 +msgid "Log in" +msgstr "Log ind" + +#: contrib/admin/templates/admin/base.html:23 +msgid "Welcome," +msgstr "Velkommen" + +#: contrib/admin/templates/admin/base.html:23 +msgid "Change password" +msgstr "Ændre adgangskode" + +#: contrib/admin/templates/admin/base.html:23 +msgid "Log out" +msgstr "Log ud" + +#: 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 "" +"Hvis du sletter %(object_name)s '%(object)s' vil du også slette relaterede " +"objekter, men du har ikke rettigheder til at slette flg. typer objekter:" + +#: 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 "" +"Er du sikker på at du vil slette %(object_name) \"%(object)s\"? Alle de " +"følgende relaterede objekter vil blive slettet:" + +#: contrib/admin/templates/admin/delete_confirmation.html:18 +msgid "Yes, I'm sure" +msgstr "Ja, jeg er sikker" + +#: 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 "Ændre passord" + +#: contrib/admin/templates/registration/password_change_done.html:6 +#: contrib/admin/templates/registration/password_change_done.html:10 +msgid "Password change successful" +msgstr "Adgangskoden er ændret" + +#: contrib/admin/templates/registration/password_change_done.html:12 +msgid "Your password was changed." +msgstr "Din adgangskode er ændret" + +#: 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 "Nulstil adgangskode" + +#: 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 din adgangskode? Indtast din email-adresse nedenfor, så sender vi dig en " +"ny kode via e-mail" + +#: contrib/admin/templates/registration/password_reset_form.html:16 +msgid "E-mail address:" +msgstr "E-mail adresse:" + +#: contrib/admin/templates/registration/password_reset_form.html:16 +msgid "Reset my password" +msgstr "Nulstil min adgangskode" + +#: contrib/admin/templates/registration/logged_out.html:8 +msgid "Thanks for spending some quality time with the Web site today." +msgstr "Tak for den tid du brugte på sitet idag" + +#: contrib/admin/templates/registration/logged_out.html:10 +msgid "Log in again" +msgstr "Log ind igen" + +#: contrib/admin/templates/registration/password_reset_done.html:6 +#: contrib/admin/templates/registration/password_reset_done.html:10 +msgid "Password reset successful" +msgstr "Adgangskoden blev nulstillet" + +#: 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 e-mailet en ny adgangskode til dig. Du skulle modtage den om ganske " +"kort tid." + +#: 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 "" +"Indtast venligst din gamle adgangskode af sikkerhedsgrunde, og indtast så " +"dit nye password to gange, så vi kan være sikre på, at det er indtastet " +"korrekt" + +#: contrib/admin/templates/registration/password_change_form.html:17 +msgid "Old password:" +msgstr "Gammel adgangskode:" + +#: contrib/admin/templates/registration/password_change_form.html:19 +msgid "New password:" +msgstr "Ny adgangskode:" + +#: contrib/admin/templates/registration/password_change_form.html:21 +msgid "Confirm password:" +msgstr "Bekræft ny adgangskode:" + +#: contrib/admin/templates/registration/password_change_form.html:23 +msgid "Change my password" +msgstr "Ændre adgangskode" + +#: contrib/admin/templates/registration/password_reset_email.html:2 +msgid "You're receiving this e-mail because you requested a password reset" +msgstr "" +"Du modtager denne e-mail, fordi du har bedt om at få nulstillet dit password" + +#: contrib/admin/templates/registration/password_reset_email.html:3 +#, python-format +msgid "for your user account at %(site_name)s" +msgstr "for din konto hos %(site_name)s" + +#: contrib/admin/templates/registration/password_reset_email.html:5 +#, python-format +msgid "Your new password is: %(new_password)s" +msgstr "Din nye adgangskode er: %(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 "Du kan ændre din adgangskode ved at gå til denne side" + +#: contrib/admin/templates/registration/password_reset_email.html:11 +msgid "Your username, in case you've forgotten:" +msgstr "I det tilfælde, at du har glemt dit brugernavn er det:" + +#: contrib/admin/templates/registration/password_reset_email.html:13 +msgid "Thanks for using our site!" +msgstr "Tak, fordi du brugte vores site!" + +#: contrib/admin/templates/registration/password_reset_email.html:15 +#, python-format +msgid "The %(site_name)s team" +msgstr "Med venlig hilsen %(site_name)s" + +#: contrib/redirects/models/redirects.py:7 +msgid "redirect from" +msgstr "omadresser fra" + +#: contrib/redirects/models/redirects.py:8 +msgid "" +"This should be an absolute path, excluding the domain name. Example: '/" +"events/search/'." +msgstr "" +"Dette skal være en absolut sti uden domænenavnet. For eksempel: '/nyheder/" +"find/" + +#: contrib/redirects/models/redirects.py:9 +msgid "redirect to" +msgstr "omadresser til" + +#: contrib/redirects/models/redirects.py:10 +msgid "" +"This can be either an absolute path (as above) or a full URL starting with " +"'http://'." +msgstr "" +"Dette kan enten være en absolut sti (som over), eller en komplet URL " +"startende med 'http://'" + +#: contrib/redirects/models/redirects.py:12 +msgid "redirect" +msgstr "omadressering" + +#: contrib/redirects/models/redirects.py:13 +msgid "redirects" +msgstr "omaddresseringer" + +#: contrib/flatpages/models/flatpages.py:6 +msgid "URL" +msgstr "Internetadresse" + +#: contrib/flatpages/models/flatpages.py:7 +msgid "" +"Example: '/about/contact/'. Make sure to have leading and trailing slashes." +msgstr "" +"Eksempel: '/om/kontakt/'. Vær sikker på at du har en skråstreg foran og og " +"bagefter." + +#: contrib/flatpages/models/flatpages.py:8 +msgid "title" +msgstr "titel" + +#: contrib/flatpages/models/flatpages.py:9 +msgid "content" +msgstr "indhold" + +#: contrib/flatpages/models/flatpages.py:10 +msgid "enable comments" +msgstr "tillad kommentarer" + +#: contrib/flatpages/models/flatpages.py:11 +msgid "template name" +msgstr "skabelonnavn" + +#: contrib/flatpages/models/flatpages.py:12 +#, fuzzy +msgid "" +"Example: 'flatpages/contact_page'. If this isn't provided, the system will " +"use 'flatpages/default'." +msgstr "" +"Eksempel: 'fladesider/kontakt_side'. Vist denne ikke denne er gitt, vill " +"'flatfiles/default' bli brukt." + +#: contrib/flatpages/models/flatpages.py:13 +msgid "registration required" +msgstr "registrering kreves" + +#: contrib/flatpages/models/flatpages.py:13 +msgid "If this is checked, only logged-in users will be able to view the page." +msgstr "" +"Hvis denne box er krydset af, vil kun brugere, der er logget ind, kunne se " +"siden." + +#: contrib/flatpages/models/flatpages.py:17 +msgid "flat page" +msgstr "flad side" + +#: contrib/flatpages/models/flatpages.py:18 +msgid "flat pages" +msgstr "flade sider" + +#: 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 "Mandag" + +#: utils/dates.py:6 +msgid "Tuesday" +msgstr "Tirsdag" + +#: 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 "Januar" + +#: utils/dates.py:14 +msgid "February" +msgstr "Februar" + +#: utils/dates.py:14 utils/dates.py:27 +msgid "March" +msgstr "Marts" + +#: 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 "August" + +#: 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ænenavn" + +#: models/core.py:8 +msgid "display name" +msgstr "vist navn" + +#: models/core.py:10 +msgid "site" +msgstr "side" + +#: models/core.py:11 +msgid "sites" +msgstr "sider" + +#: models/core.py:28 +msgid "label" +msgstr "mærkat" + +#: models/core.py:29 models/core.py:40 models/auth.py:6 models/auth.py:19 +msgid "name" +msgstr "navn" + +#: models/core.py:31 +msgid "package" +msgstr "pakke" + +#: models/core.py:32 +msgid "packages" +msgstr "pakker" + +#: models/core.py:42 +msgid "python module name" +msgstr "python modulnavn" + +#: models/core.py:44 +msgid "content type" +msgstr "indholdstype" + +#: models/core.py:45 +msgid "content types" +msgstr "indholdstyper" + +#: models/core.py:67 +msgid "session key" +msgstr "sessionsnøgle" + +#: models/core.py:68 +msgid "session data" +msgstr "sessionsdata" + +#: models/core.py:69 +msgid "expire date" +msgstr "udløbsdato" + +#: models/core.py:71 +msgid "session" +msgstr "session" + +#: models/core.py:72 +msgid "sessions" +msgstr "sessioner" + +#: models/auth.py:8 +msgid "codename" +msgstr "kodenavn" + +#: models/auth.py:10 +msgid "Permission" +msgstr "Rettighed" + +#: models/auth.py:11 models/auth.py:58 +msgid "Permissions" +msgstr "Rettigheder" + +#: models/auth.py:22 +msgid "Group" +msgstr "Gruppe" + +#: models/auth.py:23 models/auth.py:60 +msgid "Groups" +msgstr "Grupper" + +#: models/auth.py:33 +msgid "username" +msgstr "brugernavn" + +#: models/auth.py:34 +msgid "first name" +msgstr "fornavn" + +#: models/auth.py:35 +msgid "last name" +msgstr "efternavn" + +#: models/auth.py:36 +msgid "e-mail address" +msgstr "e-mail adresse" + +#: models/auth.py:37 +msgid "password" +msgstr "adgangskode" + +#: models/auth.py:37 +msgid "Use an MD5 hash -- not the raw password." +msgstr "Brug et MD5 hash -- ikke adgangskoden i klartekst" + +#: models/auth.py:38 +msgid "staff status" +msgstr "administrationsstatus" + +#: models/auth.py:38 +msgid "Designates whether the user can log into this admin site." +msgstr "Bestemmer om brugeren kan logge ind på dette administrationssite" + +#: models/auth.py:39 +msgid "active" +msgstr "aktiv" + +#: models/auth.py:40 +msgid "superuser status" +msgstr "superbruger" + +#: models/auth.py:41 +msgid "last login" +msgstr "sidst logget ind" + +#: models/auth.py:42 +msgid "date joined" +msgstr "registreringsdato" + +#: 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 "" +"I tillæg til de rettighder, som manuelt er tildelt brugeren, vil denne også " +"få alle rettigheder tildelt hver gruppe han/hun er medlem af" + +#: models/auth.py:48 +msgid "Users" +msgstr "Brugere" + +#: models/auth.py:57 +msgid "Personal info" +msgstr "Personlig information" + +#: models/auth.py:59 +msgid "Important dates" +msgstr "Vigtige datoer" + +#: models/auth.py:195 +msgid "Message" +msgstr "Meddelelse" + +#: conf/global_settings.py:36 +msgid "Bengali" +msgstr "" + +#: conf/global_settings.py:37 +msgid "Czech" +msgstr "Tjekkisk" + +#: conf/global_settings.py:38 +msgid "Welsh" +msgstr "Walisisk" + +#: conf/global_settings.py:39 +#, fuzzy +msgid "Danish" +msgstr "Spansk" + +#: conf/global_settings.py:40 +msgid "German" +msgstr "Tysk" + +#: conf/global_settings.py:41 +msgid "English" +msgstr "Engelsk" + +#: conf/global_settings.py:42 +msgid "Spanish" +msgstr "Spansk" + +#: conf/global_settings.py:43 +msgid "French" +msgstr "Fransk" + +#: conf/global_settings.py:44 +msgid "Galician" +msgstr "Galicisk" + +#: conf/global_settings.py:45 +msgid "Icelandic" +msgstr "Islandsk" + +#: conf/global_settings.py:46 +msgid "Italian" +msgstr "Italiensk" + +#: conf/global_settings.py:47 +msgid "Norwegian" +msgstr "Norsk" + +#: conf/global_settings.py:48 +msgid "Brazilian" +msgstr "Brasiliansk" + +#: conf/global_settings.py:49 +msgid "Romanian" +msgstr "Rumænsk" + +#: conf/global_settings.py:50 +msgid "Russian" +msgstr "Russisk" + +#: conf/global_settings.py:51 +msgid "Slovak" +msgstr "Slovakisk" + +#: conf/global_settings.py:52 +msgid "Serbian" +msgstr "Serbisk" + +#: conf/global_settings.py:53 +msgid "Swedish" +msgstr "Svensk" + +#: conf/global_settings.py:54 +msgid "Simplified Chinese" +msgstr "Simpel Kinesisk" + +#: core/validators.py:59 +msgid "This value must contain only letters, numbers and underscores." +msgstr "Dette felt må kun indeholde bogstaver, tal og understreger." + +#: core/validators.py:63 +msgid "This value must contain only letters, numbers, underscores and slashes." +msgstr "" +"Dette felt må kun indeholde bogstaver, tal, understreger og skråstreger." + +#: core/validators.py:71 +msgid "Uppercase letters are not allowed here." +msgstr "Store bogstaver er ikke tilladt her" + +#: core/validators.py:75 +msgid "Lowercase letters are not allowed here." +msgstr "Små bogstaver er ikke tilladt her" + +#: core/validators.py:82 +msgid "Enter only digits separated by commas." +msgstr "Indtast kun tal adskilt af kommaer." + +#: core/validators.py:94 +msgid "Enter valid e-mail addresses separated by commas." +msgstr "Indtast gyldige email-adresser adskilt af kommaer" + +#: core/validators.py:98 +msgid "Please enter a valid IP address." +msgstr "Venlist indtast en gyldig email-adresse." + +#: core/validators.py:102 +msgid "Empty values are not allowed here." +msgstr "Dette felt kan ikke være tomt." + +#: core/validators.py:106 +msgid "Non-numeric characters aren't allowed here." +msgstr "Der må kun være tal her" + +#: core/validators.py:110 +msgid "This value can't be comprised solely of digits." +msgstr "Denne værdi kan ikke kun bestå af tal." + +#: core/validators.py:115 +msgid "Enter a whole number." +msgstr "Indtast et heltal." + +#: core/validators.py:119 +msgid "Only alphabetical characters are allowed here." +msgstr "Her er kun bogstaver tilladt." + +#: core/validators.py:123 +msgid "Enter a valid date in YYYY-MM-DD format." +msgstr "Indtast en dato i ÅÅÅÅ-MM-DD format." + +#: core/validators.py:127 +msgid "Enter a valid time in HH:MM format." +msgstr "Indtast tid i TT:MM format." + +#: core/validators.py:131 +msgid "Enter a valid date/time in YYYY-MM-DD HH:MM format." +msgstr "Indtast dato og tid i ÅÅÅÅ-MM-DD TT:MM format." + +#: core/validators.py:135 +msgid "Enter a valid e-mail address." +msgstr "Indtast en gyldig email-adresse." + +#: core/validators.py:147 +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Upload en billed-fil. Filen du uploadede var enten ikke et billede eller en " +"ødelagt billed-fil" + +#: core/validators.py:154 +#, python-format +msgid "The URL %s does not point to a valid image." +msgstr "URLen %s viser ikke til en gyldig billed-fil" + +#: core/validators.py:158 +#, python-format +msgid "Phone numbers must be in XXX-XXX-XXXX format. \"%s\" is invalid." +msgstr "" +"Telefonnumre skal være i XXX-XXX-XXXX formatet. \"%s\" er ikke godkjent." + +#: core/validators.py:166 +#, python-format +msgid "The URL %s does not point to a valid QuickTime video." +msgstr "URLen %s viser ikke til en gyldig QuickTime-film." + +#: core/validators.py:170 +msgid "A valid URL is required." +msgstr "En gyldig URL er påkrævet" + +#: core/validators.py:184 +#, python-format +msgid "" +"Valid HTML is required. Specific errors are:\n" +"%s" +msgstr "" +"Gyldig HTML er påkrævet. Fejlene er:\n" +"%s" + +#: core/validators.py:191 +#, python-format +msgid "Badly formed XML: %s" +msgstr "Ugyldig XML: %s" + +#: core/validators.py:201 +#, python-format +msgid "Invalid URL: %s" +msgstr "Ugyldig URL: %s" + +#: core/validators.py:205 core/validators.py:207 +#, python-format +msgid "The URL %s is a broken link." +msgstr "Denne URL %s linker ikke til en gyldig side eller fil" + +#: core/validators.py:213 +msgid "Enter a valid U.S. state abbreviation." +msgstr "Indtast en gyldig amerikansk statsforkortelse" + +#: 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] "Var din mund! Ordet %s er ikke tilladt her." +msgstr[1] "Var din mund! Ordene %s er ikke tilladt her." + +#: core/validators.py:235 +#, python-format +msgid "This field must match the '%s' field." +msgstr "Dette felt skal matche '%s' feltet." + +#: core/validators.py:254 +msgid "Please enter something for at least one field." +msgstr "Indtast venligst noget i mindst et felt" + +#: core/validators.py:263 core/validators.py:274 +msgid "Please enter both fields or leave them both empty." +msgstr "Udfyld begge felter, eller lad dem begge være blanke" + +#: core/validators.py:281 +#, python-format +msgid "This field must be given if %(field)s is %(value)s" +msgstr "Dette felt skal udfyldes, hvis %(field)s er lig %(value)s" + +#: core/validators.py:293 +#, python-format +msgid "This field must be given if %(field)s is not %(value)s" +msgstr "Dette felt skal udfyldes, hvis %(field)s ikke er lig %(value)s" + +#: core/validators.py:312 +msgid "Duplicate values are not allowed." +msgstr "Duplikate værdier er ikke tilladt her" + +#: core/validators.py:335 +#, python-format +msgid "This value must be a power of %s." +msgstr "Denne værdi skal være en potens af %s." + +#: core/validators.py:346 +msgid "Please enter a valid decimal number." +msgstr "Indtast venligst et gyldigt decimaltal." + +#: core/validators.py:348 +#, fuzzy, 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] "Indtast en gyldig decimal med max %s tal ialt" +msgstr[1] "Indtast en gyldig decimal med max %s tal ialt" + +#: 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] "Indtast en gyldig decimal med max %s tal efter kommaet" +msgstr[1] "Indtast en gyldig decimal med max %s tal efter kommaet" + +#: core/validators.py:361 +#, python-format +msgid "Make sure your uploaded file is at least %s bytes big." +msgstr "Tjek at den uploadede fil er mindst % bytes." + +#: core/validators.py:362 +#, python-format +msgid "Make sure your uploaded file is at most %s bytes big." +msgstr "Tjek at den uploadede file er max %s bytes." + +#: core/validators.py:375 +msgid "The format for this field is wrong." +msgstr "Formatet i dette feltet er feil." + +#: core/validators.py:390 +msgid "This field is invalid." +msgstr "Dette felt er ugyldigt." + +#: core/validators.py:425 +#, python-format +msgid "Could not retrieve anything from %s." +msgstr "Kunne ikke finde noget i %s." + +#: core/validators.py:428 +#, python-format +msgid "" +"The URL %(url)s returned the invalid Content-Type header '%(contenttype)s'." +msgstr "" +"URLen %(url)s returnerede ikke en godkendt Content-Type '%(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 "" +"Luk venligst %(tag)s på linje %(line)s. (Linjen starer 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 af teksten som starter på linje %(line)s er ikke tilladt. (Linjen " +"starter 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å linje %(line)s er ikke en gyldig attribut. (Linjen starter " +"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å linje %(line)s er ikke et gyldigt tag. (Linjen starter 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 "" +"Et tag på linje %(line)s mangler en obligatorisk attribut. (Linjen starter " +"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 "" +"\"%(attr)s\" attributten på linje $(line)s har en ugyldig værdi. (Linjen " +"starter med \"%(start)s\".)" + +#: core/meta/fields.py:111 +msgid " Separate multiple IDs with commas." +msgstr "Adskil id'er med kommaer." + +#: core/meta/fields.py:114 +msgid "" +" Hold down \"Control\", or \"Command\" on a Mac, to select more than one." +msgstr "" +"Hold \"Kontrol\", eller \"Æbletasten\" på Mac, nede for at vælge mere end en." + +#~ msgid "Traditional Chinese" +#~ msgstr "Traditionel Kinesisk" diff --git a/django/conf/locale/de/LC_MESSAGES/django.mo b/django/conf/locale/de/LC_MESSAGES/django.mo index e752b2bcb46293dc122fd3a8b3c973c6075b5546..decd50215778023df9019a4af90b4723016c79f0 100644 GIT binary patch delta 4687 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 delta 4671 zcmYk=2~bx>0LSq~jz18RA|Q$&pdbn!By^}HUKv7`X+mbGnHn8nqE=!)iURRYG}OG% z#3KWXv^2D`(=^Rev!>O@nKYnX@eYAnaLxD31ECe#H!u-|`-SJD0& zxt6(rI^Si~g?&-R1Y;Q18^@R^DmSp98Tn@}@u3TZMKfxQM_o7@lkj#_M@umU%PF@4zb5flFA33 z)}cC9k74){>Vo^Q8y>`K@dwPp#8|JR`LWEu7Rfzq&;gTBCn~~FoQ_(DWtfK57>>J9 zBX}3pv7@M&_{_GyLY?nh)bSUv7yf}dK82O80cUk${^^t%#s+;c5gEKGL0zC4)sY(1 zqFRqS;SRhBU&p)f4@|&O-1thIfluLI*cIo-8*>fTp*nH`tI*%+>|J;vYSFDhjbtZk z1iNi}KkDATkLuVF`~4|oQ05G3>i4O>woY($Oh z4b;s1jT116M}Y-xW??QaLfy;Ls9O`xqroJYeyCNSkCj-4cVa6x>i7cGOq3vN!ZDku zB(vcQEWj(6uN|4U-na|7hWQ57u~zIn90#Fhsv0$-<>-%VP`6|~cEdk06%$gtwUUFH z!I2oK=f8l8E>wuqa0y0DJaI2zS~ zVm>s(wbsoT#Pv-h6)nC!7>w_s509em=_%BO&Z16m(QdzN+o9dPcV@m3g1L^XgCkE z_RB+!crPQGHRTqv# zjj#jm!6du|zd*f5lKL9TuVns*~`&W5TFtF+_SBOgw7j zDYo4cvuS6cW?(kzRy=9jRhUbAIckJwund33wphelN*63cb*u_?{zYz^`(IgeyN;|d0NC!U1*z6fmU+i(h=M0K$Ljou%%V{c^s8Khau1|Dg1664XIVWwabuE!j_8_#1096HdL5m<=B zaXV`Ni}(n}WP2}|1*m)eJ$A>aK^%(%aWp>dP*KlMqegTVHG-dT9R7;BCAounk7Frn zzul-8%mLdzg6;rtF5CTwc<+O9ET?@4b=(N9uBTx%>J~W@sA#H-P|xXHRKd1`?vjDWHBGHGvQTtto`hFPd_)+M?yHV$#jIFu8d5DU3 zoP)YxC8|TUs0*z_KYWg;v?HC}nlY?bw~XO)iLF;y#R_teloJ&u)f^{plE;X{6JeH< z9b^Vk*+`xw^T@~K1u~haXew2*$u9CCQF)cjBHKtD$s?&mw@4+0%qKkv6X!1GJ9Yn6 z4!fVmJb*8fo@6^YN_LX}mzgx4CS~L!l0znvfuxuO5xwQ!Bc(*;kcaypA=7MKM3|c2 z!lRuNRP`IEqSr=0w`R;+IKkEvaWBzRJBR44;3LgM&y8MF`9yCA6+MJ1l^*V&q&%Bu z9eI?@CVErEY7RzG*-TWPA`Rq}8k7U%cDLqzyaO*0-b5yWsOZ(CQtjccrV?9k;Xx{0 zY@)u zO;pl}-k5FFpiCwAlTXMIqSBRo?$&sd;v&*W0!c^0t#W^_PGWb`ho~fz*T^dJg!|VC zm0B{MJWN_juB{xi`eOlkmei4Z$gQM^#FI`2`_ud<0 F{sRtz*B<}? diff --git a/django/conf/locale/de/LC_MESSAGES/django.po b/django/conf/locale/de/LC_MESSAGES/django.po index 681e6a3737..51444acfb8 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-13 13:40-0600\n" +"POT-Creation-Date: 2005-11-15 12:40-0600\n" "PO-Revision-Date: 2005-11-06 13:54+0100\n" "Last-Translator: Lukas Kolbe \n" "Language-Team: \n" @@ -665,7 +665,7 @@ msgstr "Pers msgid "Important dates" msgstr "Wichtige Daten" -#: models/auth.py:182 +#: models/auth.py:195 msgid "Message" msgstr "Mitteilung" @@ -682,62 +682,66 @@ msgid "Welsh" msgstr "Walisisch" #: conf/global_settings.py:39 +msgid "Danish" +msgstr "Dnisch" + +#: conf/global_settings.py:40 msgid "German" msgstr "Deutsch" -#: conf/global_settings.py:40 +#: conf/global_settings.py:41 msgid "English" msgstr "Englisch" -#: conf/global_settings.py:41 +#: conf/global_settings.py:42 msgid "Spanish" msgstr "Spanisch" -#: conf/global_settings.py:42 +#: conf/global_settings.py:43 msgid "French" msgstr "Franzsisch" -#: conf/global_settings.py:43 +#: conf/global_settings.py:44 msgid "Galician" msgstr "Galicisch" -#: conf/global_settings.py:44 +#: conf/global_settings.py:45 msgid "Icelandic" msgstr "Islndisch" -#: conf/global_settings.py:45 +#: conf/global_settings.py:46 msgid "Italian" msgstr "Italienisch" -#: conf/global_settings.py:46 +#: conf/global_settings.py:47 msgid "Norwegian" msgstr "Norwegisch" -#: conf/global_settings.py:47 +#: conf/global_settings.py:48 msgid "Brazilian" msgstr "Brasilianisch" -#: conf/global_settings.py:48 +#: conf/global_settings.py:49 msgid "Romanian" msgstr "Rumnisch" -#: conf/global_settings.py:49 +#: conf/global_settings.py:50 msgid "Russian" msgstr "Russisch" -#: conf/global_settings.py:50 +#: conf/global_settings.py:51 msgid "Slovak" msgstr "Slovakisch" -#: conf/global_settings.py:51 +#: conf/global_settings.py:52 msgid "Serbian" msgstr "Serbisch" -#: conf/global_settings.py:52 +#: conf/global_settings.py:53 msgid "Swedish" msgstr "Schwedisch" -#: conf/global_settings.py:53 +#: conf/global_settings.py:54 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 250538b096efaac0d265170079d4f6672e8db5de..3d48f0fd09ccc23d41bc0822c8820d3fe17b2b9f 100644 GIT binary patch delta 16 XcmbQiGJ|D<3?qxFf}zo51;!r$BtQgi delta 16 XcmbQiGJ|D<3?qxNf}!zb1;!r$BsBzW diff --git a/django/conf/locale/en/LC_MESSAGES/django.po b/django/conf/locale/en/LC_MESSAGES/django.po index 9aaa527be6..1fe02130be 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-13 13:40-0600\n" +"POT-Creation-Date: 2005-11-15 12:40-0600\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -636,7 +636,7 @@ msgstr "" msgid "Important dates" msgstr "" -#: models/auth.py:182 +#: models/auth.py:195 msgid "Message" msgstr "" @@ -653,62 +653,66 @@ msgid "Welsh" msgstr "" #: conf/global_settings.py:39 -msgid "German" +msgid "Danish" msgstr "" #: conf/global_settings.py:40 -msgid "English" +msgid "German" msgstr "" #: conf/global_settings.py:41 -msgid "Spanish" +msgid "English" msgstr "" #: conf/global_settings.py:42 -msgid "French" +msgid "Spanish" msgstr "" #: conf/global_settings.py:43 -msgid "Galician" +msgid "French" msgstr "" #: conf/global_settings.py:44 -msgid "Icelandic" +msgid "Galician" msgstr "" #: conf/global_settings.py:45 -msgid "Italian" +msgid "Icelandic" msgstr "" #: conf/global_settings.py:46 -msgid "Norwegian" +msgid "Italian" msgstr "" #: conf/global_settings.py:47 -msgid "Brazilian" +msgid "Norwegian" msgstr "" #: conf/global_settings.py:48 -msgid "Romanian" +msgid "Brazilian" msgstr "" #: conf/global_settings.py:49 -msgid "Russian" +msgid "Romanian" msgstr "" #: conf/global_settings.py:50 -msgid "Slovak" +msgid "Russian" msgstr "" #: conf/global_settings.py:51 -msgid "Serbian" +msgid "Slovak" msgstr "" #: conf/global_settings.py:52 -msgid "Swedish" +msgid "Serbian" msgstr "" #: conf/global_settings.py:53 +msgid "Swedish" +msgstr "" + +#: conf/global_settings.py:54 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 19c9db8c69067987bc8c778f4cef5b18c853005d..a8fe0475b89346cefa6d2a38a515e88ef0896ebd 100644 GIT binary patch delta 17 Ycmcbtaam)-J8l+J1w*6FpSTk_06}a9bpQYW delta 17 Ycmcbtaam)-J8l+Z1w-S_pSTk_06|~|bN~PV diff --git a/django/conf/locale/es/LC_MESSAGES/django.po b/django/conf/locale/es/LC_MESSAGES/django.po index 7a4a716ef7..27547d34e7 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 13:40-0600\n" +"POT-Creation-Date: 2005-11-15 12:40-0600\n" "PO-Revision-Date: 2005-10-04 20:59GMT\n" "Last-Translator: Ricardo Javier Crdenes Medina \n" @@ -660,7 +660,7 @@ msgstr "" msgid "Important dates" msgstr "" -#: models/auth.py:182 +#: models/auth.py:195 msgid "Message" msgstr "" @@ -677,62 +677,66 @@ msgid "Welsh" msgstr "" #: conf/global_settings.py:39 -msgid "German" +msgid "Danish" msgstr "" #: conf/global_settings.py:40 -msgid "English" +msgid "German" msgstr "" #: conf/global_settings.py:41 -msgid "Spanish" +msgid "English" msgstr "" #: conf/global_settings.py:42 -msgid "French" +msgid "Spanish" msgstr "" #: conf/global_settings.py:43 -msgid "Galician" +msgid "French" msgstr "" #: conf/global_settings.py:44 -msgid "Icelandic" +msgid "Galician" msgstr "" #: conf/global_settings.py:45 -msgid "Italian" +msgid "Icelandic" msgstr "" #: conf/global_settings.py:46 -msgid "Norwegian" +msgid "Italian" msgstr "" #: conf/global_settings.py:47 -msgid "Brazilian" +msgid "Norwegian" msgstr "" #: conf/global_settings.py:48 -msgid "Romanian" +msgid "Brazilian" msgstr "" #: conf/global_settings.py:49 -msgid "Russian" +msgid "Romanian" msgstr "" #: conf/global_settings.py:50 -msgid "Slovak" +msgid "Russian" msgstr "" #: conf/global_settings.py:51 -msgid "Serbian" +msgid "Slovak" msgstr "" #: conf/global_settings.py:52 -msgid "Swedish" +msgid "Serbian" msgstr "" #: conf/global_settings.py:53 +msgid "Swedish" +msgstr "" + +#: conf/global_settings.py:54 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 8d75186e5e65fda6b21880fe1f9767fe2b73f152..ef76060be32bdf47be3fa04f9db75853d9329a56 100644 GIT binary patch delta 19 acmeC}WbEx^+`y{AVya+hw3$<*MFs#m%>_&V delta 19 acmeC}WbEx^+`y{AVys|jyqQy@MFs#m!39eI diff --git a/django/conf/locale/fr/LC_MESSAGES/django.po b/django/conf/locale/fr/LC_MESSAGES/django.po index 8e351cc1ac..5f0ed1e39a 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 13:40-0600\n" +"POT-Creation-Date: 2005-11-15 12:40-0600\n" "PO-Revision-Date: 2005-10-18 12:27+0200\n" "Last-Translator: Laurent Rahuel \n" "Language-Team: franais \n" @@ -669,7 +669,7 @@ msgstr "Information personnelle" msgid "Important dates" msgstr "Dates importantes" -#: models/auth.py:182 +#: models/auth.py:195 msgid "Message" msgstr "Message" @@ -686,64 +686,69 @@ msgid "Welsh" msgstr "" #: conf/global_settings.py:39 +#, fuzzy +msgid "Danish" +msgstr "Espagnol" + +#: conf/global_settings.py:40 msgid "German" msgstr "Allemand" -#: conf/global_settings.py:40 +#: conf/global_settings.py:41 msgid "English" msgstr "Anglais" -#: conf/global_settings.py:41 +#: conf/global_settings.py:42 msgid "Spanish" msgstr "Espagnol" -#: conf/global_settings.py:42 +#: conf/global_settings.py:43 msgid "French" msgstr "Franais" -#: conf/global_settings.py:43 +#: conf/global_settings.py:44 msgid "Galician" msgstr "Galicien" -#: conf/global_settings.py:44 +#: conf/global_settings.py:45 msgid "Icelandic" msgstr "" -#: conf/global_settings.py:45 +#: conf/global_settings.py:46 #, fuzzy msgid "Italian" msgstr "Italien" -#: conf/global_settings.py:46 +#: conf/global_settings.py:47 msgid "Norwegian" msgstr "" -#: conf/global_settings.py:47 +#: conf/global_settings.py:48 msgid "Brazilian" msgstr "Brsilien" -#: conf/global_settings.py:48 +#: conf/global_settings.py:49 msgid "Romanian" msgstr "" -#: conf/global_settings.py:49 +#: conf/global_settings.py:50 msgid "Russian" msgstr "Russe" -#: conf/global_settings.py:50 +#: conf/global_settings.py:51 msgid "Slovak" msgstr "" -#: conf/global_settings.py:51 +#: conf/global_settings.py:52 #, fuzzy msgid "Serbian" msgstr "Serbe" -#: conf/global_settings.py:52 +#: conf/global_settings.py:53 msgid "Swedish" msgstr "" -#: conf/global_settings.py:53 +#: conf/global_settings.py:54 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 2b5b058c2134da7713ddecfd657624af0ce7bced..b9611236d806e522784ea6a73dc60d43be9316dc 100644 GIT binary patch delta 17 ZcmX@5c}jD`J8l+J1w*6FpSW*u002Q)2HXGu delta 17 ZcmX@5c}jD`J8l+Z1w-S_pSW*u002Qu2HOAt diff --git a/django/conf/locale/gl/LC_MESSAGES/django.po b/django/conf/locale/gl/LC_MESSAGES/django.po index 88153e6a0b..e9c8e3b99a 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 13:40-0600\n" +"POT-Creation-Date: 2005-11-15 12:40-0600\n" "PO-Revision-Date: 2005-10-16 14:29+0100\n" "Last-Translator: Afonso Fernández Nogueira \n" "Language-Team: Galego\n" @@ -659,7 +659,7 @@ msgstr "" msgid "Important dates" msgstr "" -#: models/auth.py:182 +#: models/auth.py:195 msgid "Message" msgstr "" @@ -676,62 +676,66 @@ msgid "Welsh" msgstr "" #: conf/global_settings.py:39 -msgid "German" +msgid "Danish" msgstr "" #: conf/global_settings.py:40 -msgid "English" +msgid "German" msgstr "" #: conf/global_settings.py:41 -msgid "Spanish" +msgid "English" msgstr "" #: conf/global_settings.py:42 -msgid "French" +msgid "Spanish" msgstr "" #: conf/global_settings.py:43 -msgid "Galician" +msgid "French" msgstr "" #: conf/global_settings.py:44 -msgid "Icelandic" +msgid "Galician" msgstr "" #: conf/global_settings.py:45 -msgid "Italian" +msgid "Icelandic" msgstr "" #: conf/global_settings.py:46 -msgid "Norwegian" +msgid "Italian" msgstr "" #: conf/global_settings.py:47 -msgid "Brazilian" +msgid "Norwegian" msgstr "" #: conf/global_settings.py:48 -msgid "Romanian" +msgid "Brazilian" msgstr "" #: conf/global_settings.py:49 -msgid "Russian" +msgid "Romanian" msgstr "" #: conf/global_settings.py:50 -msgid "Slovak" +msgid "Russian" msgstr "" #: conf/global_settings.py:51 -msgid "Serbian" +msgid "Slovak" msgstr "" #: conf/global_settings.py:52 -msgid "Swedish" +msgid "Serbian" msgstr "" #: conf/global_settings.py:53 +msgid "Swedish" +msgstr "" + +#: conf/global_settings.py:54 msgid "Simplified Chinese" msgstr "" diff --git a/django/conf/locale/is/LC_MESSAGES/django.mo b/django/conf/locale/is/LC_MESSAGES/django.mo index 184eea60005eb52aed970962d69c693f71bd267c..0c8f34dde2eba17ef73846865ef39ece7b3662dc 100644 GIT binary patch delta 19 bcmdne&A6qTal;Kw7E=X7qs@0TZ%6|GPDuxu delta 19 bcmdne&A6qTal;Kw7GniN\n" "Language-Team: \n" @@ -663,7 +663,7 @@ msgstr "Persónuupplýsingar" msgid "Important dates" msgstr "Mikilvægar dagsetningar" -#: models/auth.py:182 +#: models/auth.py:195 msgid "Message" msgstr "Skilaboð" @@ -680,62 +680,67 @@ msgid "Welsh" msgstr "Velska" #: conf/global_settings.py:39 +#, fuzzy +msgid "Danish" +msgstr "Spænska" + +#: conf/global_settings.py:40 msgid "German" msgstr "Þýska" -#: conf/global_settings.py:40 +#: conf/global_settings.py:41 msgid "English" msgstr "Enska" -#: conf/global_settings.py:41 +#: conf/global_settings.py:42 msgid "Spanish" msgstr "Spænska" -#: conf/global_settings.py:42 +#: conf/global_settings.py:43 msgid "French" msgstr "Franska" -#: conf/global_settings.py:43 +#: conf/global_settings.py:44 msgid "Galician" msgstr "Galíska" -#: conf/global_settings.py:44 +#: conf/global_settings.py:45 msgid "Icelandic" msgstr "" -#: conf/global_settings.py:45 +#: conf/global_settings.py:46 msgid "Italian" msgstr "Ítalska" -#: conf/global_settings.py:46 +#: conf/global_settings.py:47 msgid "Norwegian" msgstr "Norska" -#: conf/global_settings.py:47 +#: conf/global_settings.py:48 msgid "Brazilian" msgstr "Brasilíska" -#: conf/global_settings.py:48 +#: conf/global_settings.py:49 msgid "Romanian" msgstr "Rúmenska" -#: conf/global_settings.py:49 +#: conf/global_settings.py:50 msgid "Russian" msgstr "Rússneska" -#: conf/global_settings.py:50 +#: conf/global_settings.py:51 msgid "Slovak" msgstr "Slóvanska" -#: conf/global_settings.py:51 +#: conf/global_settings.py:52 msgid "Serbian" msgstr "Serbíska" -#: conf/global_settings.py:52 +#: conf/global_settings.py:53 msgid "Swedish" msgstr "" -#: conf/global_settings.py:53 +#: conf/global_settings.py:54 msgid "Simplified Chinese" msgstr "Einfölduð Kínverska " diff --git a/django/conf/locale/it/LC_MESSAGES/django.mo b/django/conf/locale/it/LC_MESSAGES/django.mo index 2e35910d42a0d8faf7b40b6cb86d5730a7eba846..cac3321286844f94d8f31bf092e88180f991928e 100644 GIT binary patch delta 22 dcmaFd$oROCaf5&cyQzYqk(G(TW^s)(5&&4A2Ic?& delta 22 dcmaFd$oROCaf5&cyRm|yv6YG8W^s)(5&&412Ic?& diff --git a/django/conf/locale/it/LC_MESSAGES/django.po b/django/conf/locale/it/LC_MESSAGES/django.po index 9790016b25..32089bdf19 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-13 13:41-0600\n" +"POT-Creation-Date: 2005-11-15 12:40-0600\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -662,7 +662,7 @@ msgstr "Informazioni personali" msgid "Important dates" msgstr "Date importanti" -#: models/auth.py:182 +#: models/auth.py:195 msgid "Message" msgstr "Messaggio" @@ -679,63 +679,68 @@ msgid "Welsh" msgstr "" #: conf/global_settings.py:39 +#, fuzzy +msgid "Danish" +msgstr "Spagnolo" + +#: conf/global_settings.py:40 msgid "German" msgstr "Tedesco" -#: conf/global_settings.py:40 +#: conf/global_settings.py:41 msgid "English" msgstr "Inglese" -#: conf/global_settings.py:41 +#: conf/global_settings.py:42 msgid "Spanish" msgstr "Spagnolo" -#: conf/global_settings.py:42 +#: conf/global_settings.py:43 msgid "French" msgstr "Francese" -#: conf/global_settings.py:43 +#: conf/global_settings.py:44 msgid "Galician" msgstr "Galiziano" -#: conf/global_settings.py:44 +#: conf/global_settings.py:45 msgid "Icelandic" msgstr "" -#: conf/global_settings.py:45 +#: conf/global_settings.py:46 msgid "Italian" msgstr "Italiano" -#: conf/global_settings.py:46 +#: conf/global_settings.py:47 msgid "Norwegian" msgstr "" -#: conf/global_settings.py:47 +#: conf/global_settings.py:48 msgid "Brazilian" msgstr "Brasiliano" -#: conf/global_settings.py:48 +#: conf/global_settings.py:49 msgid "Romanian" msgstr "" -#: conf/global_settings.py:49 +#: conf/global_settings.py:50 msgid "Russian" msgstr "Russo" -#: conf/global_settings.py:50 +#: conf/global_settings.py:51 msgid "Slovak" msgstr "" -#: conf/global_settings.py:51 +#: conf/global_settings.py:52 #, fuzzy msgid "Serbian" msgstr "Serbo" -#: conf/global_settings.py:52 +#: conf/global_settings.py:53 msgid "Swedish" msgstr "" -#: conf/global_settings.py:53 +#: conf/global_settings.py:54 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 c38207c876c40f6917451efbc0cd94494a9b6bbe..f4a59d3323745b3827a0c9a818076d1b844febff 100644 GIT binary patch delta 22 dcmZ3`#<-x3aYMc)yQzYqk(G(T<}%Gyk^ohL2MGWG delta 22 dcmZ3`#<-x3aYMc)yRm|yv6YG8<}%Gyk^ohC2MGWG diff --git a/django/conf/locale/no/LC_MESSAGES/django.po b/django/conf/locale/no/LC_MESSAGES/django.po index 27270520d9..75b198bcc7 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-13 13:41-0600\n" +"POT-Creation-Date: 2005-11-15 12:40-0600\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Espen Grndhaug \n" "Language-Team: Norwegian\n" @@ -663,7 +663,7 @@ msgstr "Personlig informasjon" msgid "Important dates" msgstr "Viktige datoer" -#: models/auth.py:182 +#: models/auth.py:195 msgid "Message" msgstr "Meldinger" @@ -680,62 +680,67 @@ msgid "Welsh" msgstr "" #: conf/global_settings.py:39 +#, fuzzy +msgid "Danish" +msgstr "Spansk" + +#: conf/global_settings.py:40 msgid "German" msgstr "Tysk" -#: conf/global_settings.py:40 +#: conf/global_settings.py:41 msgid "English" msgstr "Engelsk" -#: conf/global_settings.py:41 +#: conf/global_settings.py:42 msgid "Spanish" msgstr "Spansk" -#: conf/global_settings.py:42 +#: conf/global_settings.py:43 msgid "French" msgstr "Fransk" -#: conf/global_settings.py:43 +#: conf/global_settings.py:44 msgid "Galician" msgstr "Galisisk" -#: conf/global_settings.py:44 +#: conf/global_settings.py:45 msgid "Icelandic" msgstr "" -#: conf/global_settings.py:45 +#: conf/global_settings.py:46 msgid "Italian" msgstr "Italiensk" -#: conf/global_settings.py:46 +#: conf/global_settings.py:47 msgid "Norwegian" msgstr "Norsk" -#: conf/global_settings.py:47 +#: conf/global_settings.py:48 msgid "Brazilian" msgstr "Brasiliansk" -#: conf/global_settings.py:48 +#: conf/global_settings.py:49 msgid "Romanian" msgstr "" -#: conf/global_settings.py:49 +#: conf/global_settings.py:50 msgid "Russian" msgstr "Russisk" -#: conf/global_settings.py:50 +#: conf/global_settings.py:51 msgid "Slovak" msgstr "" -#: conf/global_settings.py:51 +#: conf/global_settings.py:52 msgid "Serbian" msgstr "Serbisk" -#: conf/global_settings.py:52 +#: conf/global_settings.py:53 msgid "Swedish" msgstr "" -#: conf/global_settings.py:53 +#: conf/global_settings.py:54 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 0de0d6efacd9810e59d3489231b195629efe17f2..3926f10489d5a361f4f480cf53f6b012cea83d7d 100644 GIT binary patch delta 19 acmX@vz<9EOal\n" "Language-Team: Português do Brasil \n" @@ -666,7 +666,7 @@ msgstr "Informações pessoais" msgid "Important dates" msgstr "Datas importantes" -#: models/auth.py:182 +#: models/auth.py:195 msgid "Message" msgstr "Mensagem" @@ -683,63 +683,68 @@ msgid "Welsh" msgstr "" #: conf/global_settings.py:39 +#, fuzzy +msgid "Danish" +msgstr "Espanhol" + +#: conf/global_settings.py:40 msgid "German" msgstr "Alemão" -#: conf/global_settings.py:40 +#: conf/global_settings.py:41 msgid "English" msgstr "Inglês" -#: conf/global_settings.py:41 +#: conf/global_settings.py:42 msgid "Spanish" msgstr "Espanhol" -#: conf/global_settings.py:42 +#: conf/global_settings.py:43 msgid "French" msgstr "Francês" -#: conf/global_settings.py:43 +#: conf/global_settings.py:44 msgid "Galician" msgstr "Galiciano" -#: conf/global_settings.py:44 +#: conf/global_settings.py:45 msgid "Icelandic" msgstr "" -#: conf/global_settings.py:45 +#: conf/global_settings.py:46 msgid "Italian" msgstr "Italiano" -#: conf/global_settings.py:46 +#: conf/global_settings.py:47 msgid "Norwegian" msgstr "" -#: conf/global_settings.py:47 +#: conf/global_settings.py:48 msgid "Brazilian" msgstr "Brazileiro" -#: conf/global_settings.py:48 +#: conf/global_settings.py:49 msgid "Romanian" msgstr "" -#: conf/global_settings.py:49 +#: conf/global_settings.py:50 msgid "Russian" msgstr "Russo" -#: conf/global_settings.py:50 +#: conf/global_settings.py:51 msgid "Slovak" msgstr "" -#: conf/global_settings.py:51 +#: conf/global_settings.py:52 #, fuzzy msgid "Serbian" msgstr "Sérvio" -#: conf/global_settings.py:52 +#: conf/global_settings.py:53 msgid "Swedish" msgstr "" -#: conf/global_settings.py:53 +#: conf/global_settings.py:54 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 013f4e1b96a63b821763908218dc32ad79b9ffc4..aae27633613ed3ea05ba4c5f6b88a2b4d5c3d8aa 100644 GIT binary patch delta 19 acmdne#<-=8al\n" "Language-Team: Romanian \n" @@ -663,7 +663,7 @@ msgstr "Informaţii personale" msgid "Important dates" msgstr "Date importante" -#: models/auth.py:182 +#: models/auth.py:195 msgid "Message" msgstr "Mesaj" @@ -680,62 +680,67 @@ msgid "Welsh" msgstr "" #: conf/global_settings.py:39 +#, fuzzy +msgid "Danish" +msgstr "Spaniolă" + +#: conf/global_settings.py:40 msgid "German" msgstr "Germană" -#: conf/global_settings.py:40 +#: conf/global_settings.py:41 msgid "English" msgstr "Engleză" -#: conf/global_settings.py:41 +#: conf/global_settings.py:42 msgid "Spanish" msgstr "Spaniolă" -#: conf/global_settings.py:42 +#: conf/global_settings.py:43 msgid "French" msgstr "Franceză" -#: conf/global_settings.py:43 +#: conf/global_settings.py:44 msgid "Galician" msgstr "Galiciană" -#: conf/global_settings.py:44 +#: conf/global_settings.py:45 msgid "Icelandic" msgstr "" -#: conf/global_settings.py:45 +#: conf/global_settings.py:46 msgid "Italian" msgstr "Italiană" -#: conf/global_settings.py:46 +#: conf/global_settings.py:47 msgid "Norwegian" msgstr "Norvegiană" -#: conf/global_settings.py:47 +#: conf/global_settings.py:48 msgid "Brazilian" msgstr "Braziliană" -#: conf/global_settings.py:48 +#: conf/global_settings.py:49 msgid "Romanian" msgstr "" -#: conf/global_settings.py:49 +#: conf/global_settings.py:50 msgid "Russian" msgstr "Rusă" -#: conf/global_settings.py:50 +#: conf/global_settings.py:51 msgid "Slovak" msgstr "" -#: conf/global_settings.py:51 +#: conf/global_settings.py:52 msgid "Serbian" msgstr "Sîrbă" -#: conf/global_settings.py:52 +#: conf/global_settings.py:53 msgid "Swedish" msgstr "" -#: conf/global_settings.py:53 +#: conf/global_settings.py:54 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 f7f9280aca32e5868e180a46215ec31ba521bcdc..0a6adbba276a89b99b191cc89d53fa88bf489c3c 100644 GIT binary patch delta 17 YcmeCv=+oHnj+@0)!O&>)CvF)I060PgrT_o{ delta 17 YcmeCv=+oHnj+@0;!O(c~CvF)I05~=Ur2qf` diff --git a/django/conf/locale/ru/LC_MESSAGES/django.po b/django/conf/locale/ru/LC_MESSAGES/django.po index ea0e6cc07b..f82d0a3c4b 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-13 13:40-0600\n" +"POT-Creation-Date: 2005-11-15 12:40-0600\n" "PO-Revision-Date: 2005-10-05 00:00\n" "Last-Translator: Dmitry Sorokin \n" "Language-Team: LANGUAGE \n" @@ -657,7 +657,7 @@ msgstr "" msgid "Important dates" msgstr "" -#: models/auth.py:182 +#: models/auth.py:195 msgid "Message" msgstr "" @@ -674,62 +674,66 @@ msgid "Welsh" msgstr "" #: conf/global_settings.py:39 -msgid "German" +msgid "Danish" msgstr "" #: conf/global_settings.py:40 -msgid "English" +msgid "German" msgstr "" #: conf/global_settings.py:41 -msgid "Spanish" +msgid "English" msgstr "" #: conf/global_settings.py:42 -msgid "French" +msgid "Spanish" msgstr "" #: conf/global_settings.py:43 -msgid "Galician" +msgid "French" msgstr "" #: conf/global_settings.py:44 -msgid "Icelandic" +msgid "Galician" msgstr "" #: conf/global_settings.py:45 -msgid "Italian" +msgid "Icelandic" msgstr "" #: conf/global_settings.py:46 -msgid "Norwegian" +msgid "Italian" msgstr "" #: conf/global_settings.py:47 -msgid "Brazilian" +msgid "Norwegian" msgstr "" #: conf/global_settings.py:48 -msgid "Romanian" +msgid "Brazilian" msgstr "" #: conf/global_settings.py:49 -msgid "Russian" +msgid "Romanian" msgstr "" #: conf/global_settings.py:50 -msgid "Slovak" +msgid "Russian" msgstr "" #: conf/global_settings.py:51 -msgid "Serbian" +msgid "Slovak" msgstr "" #: conf/global_settings.py:52 -msgid "Swedish" +msgid "Serbian" msgstr "" #: conf/global_settings.py:53 +msgid "Swedish" +msgstr "" + +#: conf/global_settings.py:54 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 b0e31e6d18dd70c213747907f0e9daa92cd9aea6..a119c4b6d24c890e4835c01ea54275a69e2f723e 100644 GIT binary patch delta 25 gcmaFf#rV97ali_VBP$aFT?4bt4>a4Q0ea4Q0e>Y3>i_@% diff --git a/django/conf/locale/sk/LC_MESSAGES/django.po b/django/conf/locale/sk/LC_MESSAGES/django.po index 4ddcbd8c81..2915e01041 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-14 07:26-0500\n" +"POT-Creation-Date: 2005-11-15 12:40-0600\n" "PO-Revision-Date: 2005-11-10 23:22-0500\n" "Last-Translator: Vladimir Labath \n" "Language-Team: Slovak \n" @@ -393,6 +393,18 @@ msgstr "plochá stránka" msgid "flat pages" msgstr "ploché stránky" +#: utils/translation.py:335 +msgid "DATE_FORMAT" +msgstr "DATUM_FORMAT" + +#: utils/translation.py:336 +msgid "DATETIME_FORMAT" +msgstr "DATUMCAS_FORMAT" + +#: utils/translation.py:337 +msgid "TIME_FORMAT" +msgstr "CAS_FORMAT" + #: utils/dates.py:6 msgid "Monday" msgstr "Pondelok" @@ -497,18 +509,6 @@ msgstr "" msgid "Dec." msgstr "" -#: utils/translation.py:335 -msgid "DATE_FORMAT" -msgstr "DATUM_FORMAT" - -#: utils/translation.py:336 -msgid "DATETIME_FORMAT" -msgstr "DATUMCAS_FORMAT" - -#: utils/translation.py:337 -msgid "TIME_FORMAT" -msgstr "CAS_FORMAT" - #: models/core.py:7 msgid "domain name" msgstr "meno domény" @@ -679,62 +679,67 @@ msgid "Welsh" msgstr "" #: conf/global_settings.py:39 +#, fuzzy +msgid "Danish" +msgstr "Španielsky" + +#: conf/global_settings.py:40 msgid "German" msgstr "Nemecký" -#: conf/global_settings.py:40 +#: conf/global_settings.py:41 msgid "English" msgstr "Anglický" -#: conf/global_settings.py:41 +#: conf/global_settings.py:42 msgid "Spanish" msgstr "Španielsky" -#: conf/global_settings.py:42 +#: conf/global_settings.py:43 msgid "French" msgstr "Francúzsky" -#: conf/global_settings.py:43 +#: conf/global_settings.py:44 msgid "Galician" msgstr "Galicijský" -#: conf/global_settings.py:44 +#: conf/global_settings.py:45 msgid "Icelandic" msgstr "" -#: conf/global_settings.py:45 +#: conf/global_settings.py:46 msgid "Italian" msgstr "Taliansky" -#: conf/global_settings.py:46 +#: conf/global_settings.py:47 msgid "Norwegian" msgstr "Nórsky" -#: conf/global_settings.py:47 +#: conf/global_settings.py:48 msgid "Brazilian" msgstr "Brazílsky" -#: conf/global_settings.py:48 +#: conf/global_settings.py:49 msgid "Romanian" msgstr "" -#: conf/global_settings.py:49 +#: conf/global_settings.py:50 msgid "Russian" msgstr "Ruský" -#: conf/global_settings.py:50 +#: conf/global_settings.py:51 msgid "Slovak" msgstr "Slovenský" -#: conf/global_settings.py:51 +#: conf/global_settings.py:52 msgid "Serbian" msgstr "Srbský" -#: conf/global_settings.py:52 +#: conf/global_settings.py:53 msgid "Swedish" msgstr "Švédsky" -#: conf/global_settings.py:53 +#: conf/global_settings.py:54 msgid "Simplified Chinese" msgstr "Zjednodušená činština " @@ -1013,4 +1018,3 @@ msgid "" msgstr "" " Podržte \"Control\", alebo \"Command\" na Mac_u, na výber viac ako jednej " "položky." - diff --git a/django/conf/locale/sr/LC_MESSAGES/django.mo b/django/conf/locale/sr/LC_MESSAGES/django.mo index 324e87e6c9e45a4956606657a2f34cd790e76d69..2d67dd538775a115730a669dfb7ed4175a04d4d8 100644 GIT binary patch delta 19 acmaFZ&iJsMal\n" "Language-Team: Nesh & Petar ZR4(Pl?27HI%QF$J*z delta 19 acmX@w#dx%faf7WEi?M>C@n%OY7HI%QB?Yhm diff --git a/django/conf/locale/sv/LC_MESSAGES/django.po b/django/conf/locale/sv/LC_MESSAGES/django.po index 67c985cad3..39c01c4efb 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 13:41-0600\n" +"POT-Creation-Date: 2005-11-15 12:41-0600\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -664,7 +664,7 @@ msgstr "Personlig information" msgid "Important dates" msgstr "Viktiga datum" -#: models/auth.py:182 +#: models/auth.py:195 msgid "Message" msgstr "Meddelande" @@ -681,62 +681,67 @@ msgid "Welsh" msgstr "Walesiska" #: conf/global_settings.py:39 +#, fuzzy +msgid "Danish" +msgstr "Spanska" + +#: conf/global_settings.py:40 msgid "German" msgstr "Tyska" -#: conf/global_settings.py:40 +#: conf/global_settings.py:41 msgid "English" msgstr "Engelska" -#: conf/global_settings.py:41 +#: conf/global_settings.py:42 msgid "Spanish" msgstr "Spanska" -#: conf/global_settings.py:42 +#: conf/global_settings.py:43 msgid "French" msgstr "Franska" -#: conf/global_settings.py:43 +#: conf/global_settings.py:44 msgid "Galician" msgstr "Galisiska" -#: conf/global_settings.py:44 +#: conf/global_settings.py:45 msgid "Icelandic" msgstr "" -#: conf/global_settings.py:45 +#: conf/global_settings.py:46 msgid "Italian" msgstr "Italienska" -#: conf/global_settings.py:46 +#: conf/global_settings.py:47 msgid "Norwegian" msgstr "Norska" -#: conf/global_settings.py:47 +#: conf/global_settings.py:48 msgid "Brazilian" msgstr "Brasilianska" -#: conf/global_settings.py:48 +#: conf/global_settings.py:49 msgid "Romanian" msgstr "Rumänska" -#: conf/global_settings.py:49 +#: conf/global_settings.py:50 msgid "Russian" msgstr "Ryska" -#: conf/global_settings.py:50 +#: conf/global_settings.py:51 msgid "Slovak" msgstr "Slovakiska" -#: conf/global_settings.py:51 +#: conf/global_settings.py:52 msgid "Serbian" msgstr "Serbiska" -#: conf/global_settings.py:52 +#: conf/global_settings.py:53 msgid "Swedish" msgstr "" -#: conf/global_settings.py:53 +#: conf/global_settings.py:54 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 dab46d08140246352a8be32b9b74b3b7d037c0fe..065b308b948c5affe6004ca0792eb19b4475cde3 100644 GIT binary patch delta 19 acmcc6#CV~JaYKtHi>ZR4(dG`#6XF0%kOu<* delta 19 acmcc6#CV~JaYKtHi?M>C@#YTA6XF0%ga-lu diff --git a/django/conf/locale/zh_CN/LC_MESSAGES/django.po b/django/conf/locale/zh_CN/LC_MESSAGES/django.po index 0651d1b65d..0534a77b88 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 13:40-0600\n" +"POT-Creation-Date: 2005-11-15 12:40-0600\n" "PO-Revision-Date: 2005-11-11 13:55+0800\n" "Last-Translator: limodou \n" "Language-Team: Simplified Chinese \n" @@ -652,7 +652,7 @@ msgstr "个人信息" msgid "Important dates" msgstr "重要日期" -#: models/auth.py:182 +#: models/auth.py:195 msgid "Message" msgstr "消息" @@ -669,62 +669,67 @@ msgid "Welsh" msgstr "威尔士语" #: conf/global_settings.py:39 +#, fuzzy +msgid "Danish" +msgstr "西斑牙语" + +#: conf/global_settings.py:40 msgid "German" msgstr "德语" -#: conf/global_settings.py:40 +#: conf/global_settings.py:41 msgid "English" msgstr "英语" -#: conf/global_settings.py:41 +#: conf/global_settings.py:42 msgid "Spanish" msgstr "西斑牙语" -#: conf/global_settings.py:42 +#: conf/global_settings.py:43 msgid "French" msgstr "法语" -#: conf/global_settings.py:43 +#: conf/global_settings.py:44 msgid "Galician" msgstr "加利西亚语" -#: conf/global_settings.py:44 +#: conf/global_settings.py:45 msgid "Icelandic" msgstr "" -#: conf/global_settings.py:45 +#: conf/global_settings.py:46 msgid "Italian" msgstr "意大利语" -#: conf/global_settings.py:46 +#: conf/global_settings.py:47 msgid "Norwegian" msgstr "挪威语" -#: conf/global_settings.py:47 +#: conf/global_settings.py:48 msgid "Brazilian" msgstr "巴西语" -#: conf/global_settings.py:48 +#: conf/global_settings.py:49 msgid "Romanian" msgstr "罗马尼亚语" -#: conf/global_settings.py:49 +#: conf/global_settings.py:50 msgid "Russian" msgstr "俄语" -#: conf/global_settings.py:50 +#: conf/global_settings.py:51 msgid "Slovak" msgstr "斯洛伐克语" -#: conf/global_settings.py:51 +#: conf/global_settings.py:52 msgid "Serbian" msgstr "塞尔维亚语" -#: conf/global_settings.py:52 +#: conf/global_settings.py:53 msgid "Swedish" msgstr "" -#: conf/global_settings.py:53 +#: conf/global_settings.py:54 msgid "Simplified Chinese" msgstr "简体中文" From 9b3b25029183821c41985f3d6f4112e9e4da0346 Mon Sep 17 00:00:00 2001 From: Georg Bauer Date: Tue, 15 Nov 2005 18:40:10 +0000 Subject: [PATCH 10/12] added danish translation to the settings documentation git-svn-id: http://code.djangoproject.com/svn/django/trunk@1251 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/settings.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/settings.txt b/docs/settings.txt index 37a3228ada..8098856f85 100644 --- a/docs/settings.txt +++ b/docs/settings.txt @@ -409,6 +409,7 @@ Default: A tuple of all available languages. Currently, this is:: ('bn', _('Bengali')), ('cs', _('Czech')), ('cy', _('Welsh')), + ('da', _('Danish')), ('de', _('German')), ('en', _('English')), ('es', _('Spanish')), From 14695dc02ad62fa4cf4692b22df46e3332f42e67 Mon Sep 17 00:00:00 2001 From: Georg Bauer Date: Tue, 15 Nov 2005 20:08:46 +0000 Subject: [PATCH 11/12] fixes #804 - updated slovak translation git-svn-id: http://code.djangoproject.com/svn/django/trunk@1252 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/conf/locale/sk/LC_MESSAGES/django.mo | Bin 17767 -> 17905 bytes django/conf/locale/sk/LC_MESSAGES/django.po | 67 +++++++++----------- 2 files changed, 31 insertions(+), 36 deletions(-) diff --git a/django/conf/locale/sk/LC_MESSAGES/django.mo b/django/conf/locale/sk/LC_MESSAGES/django.mo index a119c4b6d24c890e4835c01ea54275a69e2f723e..2d1d2277e991e65566b371ba46e743c929932681 100644 GIT binary patch delta 4568 zcmYk;3sjc%0mtz_cQ8O-!26BRp@0~OGE|mVyp-Lr6f~(f1T+D0q>*K>0^-D+C5x4Y zeJ4hX-343A-@=Vi#!?7DxaTK-ad_TMm zM}+ik$45u(ACG7 z!I*^_p?u_&*?_vf0aNif-iR4ib?!^h{(Sarky79EN9aX{C)(fbHT*Pqv8|wNS zI0Apfbc`Qh%s5iU5=8WT|0=b$=LgxqSLw8yt1Z8JMj^?iVP@CnpfX&=b=tHMqW+=*8)7ZZ3DVzCNq za2Hl$5)-Y(_ZE)9v#5py4`IG>9I8P_P;06cHFe*hI&j(U{{z*ae|zi+|DnFlnjWYj zjz_KjH0uo1(B+~Q&!eackK5y|cK_ja_PZI^rSs+Va zQ!oMb9VkSt<|@<(?8S$0G_Qmzs78&zcGTQ|jz7a7Zpy(VoR8Ib2X-P=m~e(q4I7O! z_5PPo&=4I&_2?)D;7Qa}oWT(|oZ9u;&A~uii5kMy7=+cR2i0N`9>$+zTs)n@1*q$f zp`O=*L3;ncq@Xo$9yJ12a2m$&REj1CHH02i1Gb@txY^oKhbC8!=$*!@aW12>~a;9YzCFzUJ!s0X## z{SMT~U9$UE(W48#rJ$CY1gGVpRu^g!4zT;ls2-%F?wgKbct7fkw*Xa78LGz>sO#2a zD87Jdz&2Ea8xt6RUAUVAz3>3)0nPS;FHkrB88iKi>B70}4^DDk!xgASS&v$Df5&{x z8s#kFeW?3SqNb?L`X_vX{R^WQf1Suqc2;#RYN*SsPor8|gBpqF@HT8jz2C3nP&|U_ z`32O}UBYnu4t1SB9|_$TgKAJL?#BcVg;^BNp@uMyC9ILiK+WxJR0U;rzY@dP--j%4 z<3(;Y=TNUQp_Y|-I+Yp>so^hj%h%>wx41VdVZkr7=^{DPRmZADr(0i7{b+R zc^PV?p0WE?sGe*=_53C4tEkuRHB>{ptXEMZ`z>m!Zeo<){~Ufp%Q&zMdtoQ)#%@%_ z|3WRAo7TXw&d`QoG{^g(8kmT~F&!u2Lez(5J8BBgqw48G)q4p;_5OELh~U5t)SLy5 zbAFCpsEY4G-7pW;<2-8->b^2e#Ai`IHv3TbH6uR{rVUkZH)?9WM~!5EhB=Jqn^+Yv z5hHOd&cJD?)m)2wUClMzjxNTx7T-kHm&wR*dR&Ow--8?ROJs;m-gsxER-m4<9@T&? z=ux5Go@hYzbT8^RU_Yvdt*D_skNOf`L(OH_1pY6?7*vmIQ1@>|J!l*1x?M=8&3@EK zUBW!N+M0B@k) zdl#+O98X3~)m&6PZoB`u-LF73a2=|_8&Ff`*-Alky90aT0aOn@LA{P`7=vBd2fstT zM&XRN&bzE}n96<{>Olpl>zAP(Sc&S`X4HL+7^wIEZ3wD7dOLB^2x$nLuCh`x*VQet?_aiZ;Ga+oY3pOTk}wj@&H zD>=V|L6qON`&#bzl1+C1B=Q|F+v?nr(YZ4yts}?CEb{-GJ_*key&$E8@1yTuLhx|-GvV}ZN^cHA~bTIRrfj8!t9N26RK8X9s@9h3()^tpc3kMxG!alKCWqXlr&bAK)R9O|tAUv(*+p!hxii3?fs=cB1V~5=Ewyr--)u$q{d| zE6qQ+ptQ(cywsZ)ofZ_DUr_8WUA#2kyQSZcK_Saa+@(w1rQS_Lu7w26FDNcw;;o2x z2ZW5BkTNDYWt_JwAtfM;+naY5moIzD8=1U1sK@Mb)lj~y`G|MJn2o_9CC!IRbuwc7 S(a_NO?&1R9sWVd=0{#nf@AR_( delta 4436 zcmYk;2~bs40LJk{fZzrKB8rAPf{Fr)Nh*tqn3%gJDpDXS83d`gggkdpG*R4_T*}lI zEuWcdW>!YhjEyzgo?~S*HL2B%%T)IN-aSm->GOB)efOUIUb$_l|4ThtZ zv?8VTj0yEJ=9@;kYD{d9F=-fw?Qsr{!EHDkZ(Tegn_sOX~R@w2i%LQ@Duy{MQq6V56FM!H~vw5s@)$N z;42t{iFg7-@h=Rbeba!mwp?h1YA^}g;V|^WVvNLj7=^pA2iD-j_z!AkS~hbkPDb57 z7UQrKGw>kh;yqNyCWjf*oA%8#3MIG;H3MPHql`e^*wLPMLybJap7+5N&ikV}x&(c& z64S8?HJ~fF0DrOPQ(HLqm!L}zmQm1y%dM5D4pgDG!6wvwFJmWs9ed&Dn1Bt#osOlV z);t|`e+H_a(bxbdU}Ma~E;uus`46D5lM7n2gQyW7Lsf7V^*{}F!^^1q>$P-77K&Ul z9Z}a)kUp8=sQU6z4bMdFkup?$D=`T-w`Be^DO~148;s)>SdOD`F@A~Kbdy-c|dzeIL@4IfR_1`07Gp>egeeK>T)X0b8SiFR) zAevV}BTqrC`AqDHui|*Th)-ZNm2}5N$fM>hRL3r1ItDY1nvn^p8OlX(z5g>PXbGOh zPFRCccnf_noYpjjtx>x_8r4vDoQB!>2%g8Ocpr8D)JUhnBGj7CLyf!~2cR1x_5RDItZ$-A zoA0>2P>UMD7pRJ_p&Gh@eB{hsR7HW&&WOWM_jN#jj74=I5!K-&)XWUTCO8sRe~$gV zD4O}#gC$((>qT#HH0P%}JFi`nF3x65Ky9{4%*7v3yLWI`r{O%*5*1o!<1Efg?fEU# zX1;@(*}xd5gW)mEzhl75SN-p9pO)`ezRANwI2*rX%(m;%&mw;lN;m`ljMF@K;&6dvpB z>NwPEnuXJ_3Ulxds$&!ROQd?H;B?%E>bT2?r!;jNV?&>gX(M z8ER=NFc`055&nfuFpoc#y1xWf-$K+Lsc>|e)f6

o5d&qB`Qn4tNHW@ki7Lr9)3= z?Q&5S<)bPtM0LCb8>0(V?`rIgTT%61Lf!v8`s@9_?kVs-q8_}9>_6kj_fmgM;!zI{ zMLzdtJgVXn)RHVg&EOu?NDo-u7{K{y9E7!~%^Six@X<7La2xHLtrS*bFXoqhW6q*R ze8Zl1r~4~7&q7V{bqv9KsD=X)9YawaXoVVKBbXqR2d@BKdL1e#6k|1N zq`r?j6$GIwY=OG3Ju(Q>4K+hka5ApJQ2ZS;(5H_xkP#Tkc^PWv_M-kaoWqUyQy=Dk zB8Aev&QxE)ft>$=kK-f#*nqeUC*ffnj)80hR>@?e8d#6|rk_N0;67?EWH61Ip)u%< z6Hx=r#!mQIvdd}cE*CVy^b}`vjY6&Qcw}`<9xlY~sPl(YxrSp<4V*yD)L9I|3)l+3 z#UXeP)zP&6&eT7HdcDhC6tt#CQEOC#>iK1R{)0XL9ra1Qjq2z>sHO5}*jm%37>H4* zj`v2rerebg$6+&^fqH8e+uvQ~wy+ubCYS@LhQ3BUa23_y9n{FYSszs#imE6QHS#W~ z4ke&wBo(y@2czm6fg0#I)Ijr*4!g`83aYr={;&l#b^A~ie1Lk5YEdKn+Ft(^y*d9A zeegDFll_hDFg(p^s2{3B8K{{UgTb_K}^0jc=YLPY`vct!>{kVvUwJ$a83lN8558k5Q;5 z48YUx^H@t#h~5?*Pm@v-MkWv~%{cNrX-?iCF+|6HQa_G=4wK#0F#%y&FHvHl&3i=0 zDRPudB_EQFL`P?`#8WcnHS{H~+w;LVlvLRB_i-E9RJ}VOB$L%KW#lv&L>@dcIaxtk zkQt;G(OXh?ET%A<uU;Jb$g)P(Dcdkx23Z zsXLyc@Db66M#poc3t3I{v06pu5^cr@k1@`w@PD#gU1@(Ag?q`1_PoZLfZc6bY$4}J zC0Rfwk;$YrsXJbwP(%vJA$u_vKPKzQa_x$l6kZ_hiH2z&)9khFvTir498cPjY!X3q93ex94_QidJVSCxW0FKp zkh7#Kd6g89Vsea(CHztJ9A~WWpqq>!Y4(~~V+$uSoaB?1B$;d`Iu4K^(w~$N9mB|R zcR^5(hur%^;(XoLn*Z(V{w3l!KlfLWPkQ^sKiV@kCbpM5wR5buyEJC5uls&{MLqZ0 N#FPH+vHiDu{|7wV!8rf` diff --git a/django/conf/locale/sk/LC_MESSAGES/django.po b/django/conf/locale/sk/LC_MESSAGES/django.po index 2915e01041..3f22b1efa7 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-15 12:40-0600\n" +"POT-Creation-Date: 2005-11-15 14:02-0500\n" "PO-Revision-Date: 2005-11-10 23:22-0500\n" "Last-Translator: Vladimir Labath \n" "Language-Team: Slovak \n" @@ -393,18 +393,6 @@ msgstr "plochá stránka" msgid "flat pages" msgstr "ploché stránky" -#: utils/translation.py:335 -msgid "DATE_FORMAT" -msgstr "DATUM_FORMAT" - -#: utils/translation.py:336 -msgid "DATETIME_FORMAT" -msgstr "DATUMCAS_FORMAT" - -#: utils/translation.py:337 -msgid "TIME_FORMAT" -msgstr "CAS_FORMAT" - #: utils/dates.py:6 msgid "Monday" msgstr "Pondelok" @@ -509,6 +497,18 @@ msgstr "" msgid "Dec." msgstr "" +#: utils/translation.py:335 +msgid "DATE_FORMAT" +msgstr "DATUM_FORMAT" + +#: utils/translation.py:336 +msgid "DATETIME_FORMAT" +msgstr "DATUMCAS_FORMAT" + +#: utils/translation.py:337 +msgid "TIME_FORMAT" +msgstr "CAS_FORMAT" + #: models/core.py:7 msgid "domain name" msgstr "meno domény" @@ -668,7 +668,7 @@ msgstr "Zpráva" #: conf/global_settings.py:36 msgid "Bengali" -msgstr "" +msgstr "Bengálsky" #: conf/global_settings.py:37 msgid "Czech" @@ -676,70 +676,65 @@ msgstr "Český" #: conf/global_settings.py:38 msgid "Welsh" -msgstr "" +msgstr "Waleský" #: conf/global_settings.py:39 -#, fuzzy -msgid "Danish" -msgstr "Španielsky" - -#: conf/global_settings.py:40 msgid "German" msgstr "Nemecký" -#: conf/global_settings.py:41 +#: conf/global_settings.py:40 msgid "English" msgstr "Anglický" -#: conf/global_settings.py:42 +#: conf/global_settings.py:41 msgid "Spanish" msgstr "Španielsky" -#: conf/global_settings.py:43 +#: conf/global_settings.py:42 msgid "French" msgstr "Francúzsky" -#: conf/global_settings.py:44 +#: conf/global_settings.py:43 msgid "Galician" msgstr "Galicijský" -#: conf/global_settings.py:45 +#: conf/global_settings.py:44 msgid "Icelandic" -msgstr "" +msgstr "Islandský" -#: conf/global_settings.py:46 +#: conf/global_settings.py:45 msgid "Italian" msgstr "Taliansky" -#: conf/global_settings.py:47 +#: conf/global_settings.py:46 msgid "Norwegian" msgstr "Nórsky" -#: conf/global_settings.py:48 +#: conf/global_settings.py:47 msgid "Brazilian" msgstr "Brazílsky" -#: conf/global_settings.py:49 +#: conf/global_settings.py:48 msgid "Romanian" -msgstr "" +msgstr "Rumúnsky" -#: conf/global_settings.py:50 +#: conf/global_settings.py:49 msgid "Russian" msgstr "Ruský" -#: conf/global_settings.py:51 +#: conf/global_settings.py:50 msgid "Slovak" msgstr "Slovenský" -#: conf/global_settings.py:52 +#: conf/global_settings.py:51 msgid "Serbian" msgstr "Srbský" -#: conf/global_settings.py:53 +#: conf/global_settings.py:52 msgid "Swedish" msgstr "Švédsky" -#: conf/global_settings.py:54 +#: conf/global_settings.py:53 msgid "Simplified Chinese" msgstr "Zjednodušená činština " From 991039dd1e1f89dc1d20c35cdd216abb110a3bee Mon Sep 17 00:00:00 2001 From: Jacob Kaplan-Moss Date: Tue, 15 Nov 2005 23:28:43 +0000 Subject: [PATCH 12/12] Fixed #587 - iteration through formfields in a FormWrapper is now allowed (thanks, Boffbowsh) git-svn-id: http://code.djangoproject.com/svn/django/trunk@1253 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/core/formfields.py | 1 + 1 file changed, 1 insertion(+) diff --git a/django/core/formfields.py b/django/core/formfields.py index 0333d09304..e31867ce6e 100644 --- a/django/core/formfields.py +++ b/django/core/formfields.py @@ -108,6 +108,7 @@ class FormWrapper: def __init__(self, manipulator, data, error_dict): self.manipulator, self.data = manipulator, data self.error_dict = error_dict + self.fields = [self.__getitem__(field.field_name) for field in self.manipulator.fields] def __repr__(self): return repr(self.data)